-- MySQL dump 10.11
--
-- Host: localhost    Database: magento
-- ------------------------------------------------------
-- Server version	5.0.51a

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `admin_assert`
--

DROP TABLE IF EXISTS `admin_assert`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `admin_assert` (
  `assert_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Assert ID',
  `assert_type` varchar(20) NOT NULL COMMENT 'Assert Type',
  `assert_data` text COMMENT 'Assert Data',
  PRIMARY KEY  (`assert_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Assert Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `admin_assert`
--

LOCK TABLES `admin_assert` WRITE;
/*!40000 ALTER TABLE `admin_assert` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_assert` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_role`
--

DROP TABLE IF EXISTS `admin_role`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `admin_role` (
  `role_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Role ID',
  `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent Role ID',
  `tree_level` smallint(5) unsigned NOT NULL default '0' COMMENT 'Role Tree Level',
  `sort_order` smallint(5) unsigned NOT NULL default '0' COMMENT 'Role Sort Order',
  `role_type` varchar(1) NOT NULL default '0' COMMENT 'Role Type',
  `user_id` int(10) unsigned NOT NULL default '0' COMMENT 'User ID',
  `role_name` varchar(50) NOT NULL COMMENT 'Role Name',
  PRIMARY KEY  (`role_id`),
  KEY `IDX_ADMIN_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`),
  KEY `IDX_ADMIN_ROLE_TREE_LEVEL` (`tree_level`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Admin Role Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `admin_role`
--

LOCK TABLES `admin_role` WRITE;
/*!40000 ALTER TABLE `admin_role` DISABLE KEYS */;
INSERT INTO `admin_role` VALUES (1,0,1,1,'G',0,'Administrators'),(3,1,2,0,'U',1,'Adam'),(4,0,1,0,'G',0,'Shop Manager'),(8,4,2,0,'U',2,'Gerry');
/*!40000 ALTER TABLE `admin_role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_rule`
--

DROP TABLE IF EXISTS `admin_rule`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `admin_rule` (
  `rule_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rule ID',
  `role_id` int(10) unsigned NOT NULL default '0' COMMENT 'Role ID',
  `resource_id` varchar(255) NOT NULL COMMENT 'Resource ID',
  `privileges` varchar(20) default NULL COMMENT 'Privileges',
  `assert_id` int(10) unsigned NOT NULL default '0' COMMENT 'Assert ID',
  `role_type` varchar(1) default NULL COMMENT 'Role Type',
  `permission` varchar(10) default NULL COMMENT 'Permission',
  PRIMARY KEY  (`rule_id`),
  KEY `IDX_ADMIN_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`),
  KEY `IDX_ADMIN_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`),
  CONSTRAINT `FK_ADMIN_RULE_ROLE_ID_ADMIN_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `admin_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=556 DEFAULT CHARSET=utf8 COMMENT='Admin Rule Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `admin_rule`
--

LOCK TABLES `admin_rule` WRITE;
/*!40000 ALTER TABLE `admin_rule` DISABLE KEYS */;
INSERT INTO `admin_rule` VALUES (1,1,'all','',0,'G','allow'),(367,4,'all',NULL,0,'G','deny'),(368,4,'admin',NULL,0,'G','deny'),(369,4,'admin/dashboard',NULL,0,'G','allow'),(370,4,'admin/system',NULL,0,'G','allow'),(371,4,'admin/system/acl',NULL,0,'G','deny'),(372,4,'admin/system/acl/roles',NULL,0,'G','deny'),(373,4,'admin/system/acl/users',NULL,0,'G','deny'),(374,4,'admin/system/store',NULL,0,'G','deny'),(375,4,'admin/system/design',NULL,0,'G','deny'),(376,4,'admin/system/config',NULL,0,'G','deny'),(377,4,'admin/system/config/general',NULL,0,'G','deny'),(378,4,'admin/system/config/web',NULL,0,'G','deny'),(379,4,'admin/system/config/design',NULL,0,'G','deny'),(380,4,'admin/system/config/system',NULL,0,'G','deny'),(381,4,'admin/system/config/advanced',NULL,0,'G','deny'),(382,4,'admin/system/config/trans_email',NULL,0,'G','deny'),(383,4,'admin/system/config/dev',NULL,0,'G','deny'),(384,4,'admin/system/config/currency',NULL,0,'G','deny'),(385,4,'admin/system/config/sendfriend',NULL,0,'G','deny'),(386,4,'admin/system/config/admin',NULL,0,'G','deny'),(387,4,'admin/system/config/cms',NULL,0,'G','deny'),(388,4,'admin/system/config/customer',NULL,0,'G','deny'),(389,4,'admin/system/config/catalog',NULL,0,'G','deny'),(390,4,'admin/system/config/payment',NULL,0,'G','deny'),(391,4,'admin/system/config/payment_services',NULL,0,'G','deny'),(392,4,'admin/system/config/sales',NULL,0,'G','deny'),(393,4,'admin/system/config/sales_email',NULL,0,'G','deny'),(394,4,'admin/system/config/sales_pdf',NULL,0,'G','deny'),(395,4,'admin/system/config/cataloginventory',NULL,0,'G','deny'),(396,4,'admin/system/config/shipping',NULL,0,'G','deny'),(397,4,'admin/system/config/carriers',NULL,0,'G','deny'),(398,4,'admin/system/config/checkout',NULL,0,'G','deny'),(399,4,'admin/system/config/paypal',NULL,0,'G','deny'),(400,4,'admin/system/config/google',NULL,0,'G','deny'),(401,4,'admin/system/config/reports',NULL,0,'G','deny'),(402,4,'admin/system/config/tax',NULL,0,'G','deny'),(403,4,'admin/system/config/wishlist',NULL,0,'G','deny'),(404,4,'admin/system/config/contacts',NULL,0,'G','deny'),(405,4,'admin/system/config/sitemap',NULL,0,'G','deny'),(406,4,'admin/system/config/rss',NULL,0,'G','deny'),(407,4,'admin/system/config/api',NULL,0,'G','deny'),(408,4,'admin/system/config/downloadable',NULL,0,'G','deny'),(409,4,'admin/system/config/persistent',NULL,0,'G','deny'),(410,4,'admin/system/config/newsletter',NULL,0,'G','deny'),(411,4,'admin/system/config/feed',NULL,0,'G','deny'),(412,4,'admin/system/config/moneybookers',NULL,0,'G','deny'),(413,4,'admin/system/currency',NULL,0,'G','deny'),(414,4,'admin/system/email_template',NULL,0,'G','deny'),(415,4,'admin/system/variable',NULL,0,'G','deny'),(416,4,'admin/system/myaccount',NULL,0,'G','deny'),(417,4,'admin/system/tools',NULL,0,'G','deny'),(418,4,'admin/system/tools/backup',NULL,0,'G','deny'),(419,4,'admin/system/tools/compiler',NULL,0,'G','deny'),(420,4,'admin/system/convert',NULL,0,'G','deny'),(421,4,'admin/system/convert/gui',NULL,0,'G','deny'),(422,4,'admin/system/convert/profiles',NULL,0,'G','deny'),(423,4,'admin/system/convert/import',NULL,0,'G','deny'),(424,4,'admin/system/convert/export',NULL,0,'G','deny'),(425,4,'admin/system/cache',NULL,0,'G','deny'),(426,4,'admin/system/extensions',NULL,0,'G','deny'),(427,4,'admin/system/extensions/local',NULL,0,'G','deny'),(428,4,'admin/system/extensions/custom',NULL,0,'G','deny'),(429,4,'admin/system/adminnotification',NULL,0,'G','deny'),(430,4,'admin/system/adminnotification/show_toolbar',NULL,0,'G','deny'),(431,4,'admin/system/adminnotification/show_list',NULL,0,'G','deny'),(432,4,'admin/system/adminnotification/mark_as_read',NULL,0,'G','deny'),(433,4,'admin/system/adminnotification/remove',NULL,0,'G','deny'),(434,4,'admin/system/index',NULL,0,'G','allow'),(435,4,'admin/system/order_statuses',NULL,0,'G','deny'),(436,4,'admin/system/api',NULL,0,'G','deny'),(437,4,'admin/system/api/users',NULL,0,'G','deny'),(438,4,'admin/system/api/roles',NULL,0,'G','deny'),(439,4,'admin/global_search',NULL,0,'G','deny'),(440,4,'admin/cms',NULL,0,'G','allow'),(441,4,'admin/cms/block',NULL,0,'G','allow'),(442,4,'admin/cms/page',NULL,0,'G','allow'),(443,4,'admin/cms/page/save',NULL,0,'G','allow'),(444,4,'admin/cms/page/delete',NULL,0,'G','allow'),(445,4,'admin/cms/media_gallery',NULL,0,'G','deny'),(446,4,'admin/cms/poll',NULL,0,'G','allow'),(447,4,'admin/cms/widget_instance',NULL,0,'G','allow'),(448,4,'admin/customer',NULL,0,'G','allow'),(449,4,'admin/customer/group',NULL,0,'G','allow'),(450,4,'admin/customer/manage',NULL,0,'G','allow'),(451,4,'admin/customer/online',NULL,0,'G','allow'),(452,4,'admin/catalog',NULL,0,'G','allow'),(453,4,'admin/catalog/attributes',NULL,0,'G','allow'),(454,4,'admin/catalog/attributes/attributes',NULL,0,'G','allow'),(455,4,'admin/catalog/attributes/sets',NULL,0,'G','allow'),(456,4,'admin/catalog/categories',NULL,0,'G','allow'),(457,4,'admin/catalog/products',NULL,0,'G','allow'),(458,4,'admin/catalog/update_attributes',NULL,0,'G','allow'),(459,4,'admin/catalog/urlrewrite',NULL,0,'G','allow'),(460,4,'admin/catalog/search',NULL,0,'G','allow'),(461,4,'admin/catalog/reviews_ratings',NULL,0,'G','allow'),(462,4,'admin/catalog/reviews_ratings/reviews',NULL,0,'G','allow'),(463,4,'admin/catalog/reviews_ratings/reviews/all',NULL,0,'G','allow'),(464,4,'admin/catalog/reviews_ratings/reviews/pending',NULL,0,'G','allow'),(465,4,'admin/catalog/reviews_ratings/ratings',NULL,0,'G','allow'),(466,4,'admin/catalog/tag',NULL,0,'G','allow'),(467,4,'admin/catalog/tag/all',NULL,0,'G','allow'),(468,4,'admin/catalog/tag/pending',NULL,0,'G','allow'),(469,4,'admin/catalog/sitemap',NULL,0,'G','allow'),(470,4,'admin/catalog/googleshopping',NULL,0,'G','allow'),(471,4,'admin/catalog/googleshopping/types',NULL,0,'G','allow'),(472,4,'admin/catalog/googleshopping/items',NULL,0,'G','allow'),(473,4,'admin/promo',NULL,0,'G','allow'),(474,4,'admin/promo/catalog',NULL,0,'G','allow'),(475,4,'admin/promo/quote',NULL,0,'G','allow'),(476,4,'admin/sales',NULL,0,'G','allow'),(477,4,'admin/sales/order',NULL,0,'G','allow'),(478,4,'admin/sales/order/actions',NULL,0,'G','allow'),(479,4,'admin/sales/order/actions/create',NULL,0,'G','allow'),(480,4,'admin/sales/order/actions/view',NULL,0,'G','allow'),(481,4,'admin/sales/order/actions/email',NULL,0,'G','deny'),(482,4,'admin/sales/order/actions/reorder',NULL,0,'G','allow'),(483,4,'admin/sales/order/actions/edit',NULL,0,'G','allow'),(484,4,'admin/sales/order/actions/cancel',NULL,0,'G','allow'),(485,4,'admin/sales/order/actions/review_payment',NULL,0,'G','allow'),(486,4,'admin/sales/order/actions/capture',NULL,0,'G','allow'),(487,4,'admin/sales/order/actions/invoice',NULL,0,'G','allow'),(488,4,'admin/sales/order/actions/creditmemo',NULL,0,'G','allow'),(489,4,'admin/sales/order/actions/hold',NULL,0,'G','allow'),(490,4,'admin/sales/order/actions/unhold',NULL,0,'G','allow'),(491,4,'admin/sales/order/actions/ship',NULL,0,'G','allow'),(492,4,'admin/sales/order/actions/comment',NULL,0,'G','allow'),(493,4,'admin/sales/order/actions/emails',NULL,0,'G','allow'),(494,4,'admin/sales/invoice',NULL,0,'G','allow'),(495,4,'admin/sales/shipment',NULL,0,'G','allow'),(496,4,'admin/sales/creditmemo',NULL,0,'G','allow'),(497,4,'admin/sales/transactions',NULL,0,'G','allow'),(498,4,'admin/sales/transactions/fetch',NULL,0,'G','allow'),(499,4,'admin/sales/recurring_profile',NULL,0,'G','allow'),(500,4,'admin/sales/billing_agreement',NULL,0,'G','allow'),(501,4,'admin/sales/billing_agreement/actions',NULL,0,'G','allow'),(502,4,'admin/sales/billing_agreement/actions/view',NULL,0,'G','allow'),(503,4,'admin/sales/billing_agreement/actions/manage',NULL,0,'G','allow'),(504,4,'admin/sales/billing_agreement/actions/use',NULL,0,'G','allow'),(505,4,'admin/sales/checkoutagreement',NULL,0,'G','allow'),(506,4,'admin/sales/tax',NULL,0,'G','allow'),(507,4,'admin/sales/tax/classes_customer',NULL,0,'G','allow'),(508,4,'admin/sales/tax/classes_product',NULL,0,'G','allow'),(509,4,'admin/sales/tax/import_export',NULL,0,'G','allow'),(510,4,'admin/sales/tax/rates',NULL,0,'G','allow'),(511,4,'admin/sales/tax/rules',NULL,0,'G','allow'),(512,4,'admin/report',NULL,0,'G','allow'),(513,4,'admin/report/salesroot',NULL,0,'G','allow'),(514,4,'admin/report/salesroot/paypal_settlement_reports',NULL,0,'G','allow'),(515,4,'admin/report/salesroot/paypal_settlement_reports/view',NULL,0,'G','allow'),(516,4,'admin/report/salesroot/paypal_settlement_reports/fetch',NULL,0,'G','allow'),(517,4,'admin/report/salesroot/sales',NULL,0,'G','allow'),(518,4,'admin/report/salesroot/tax',NULL,0,'G','allow'),(519,4,'admin/report/salesroot/shipping',NULL,0,'G','allow'),(520,4,'admin/report/salesroot/invoiced',NULL,0,'G','allow'),(521,4,'admin/report/salesroot/refunded',NULL,0,'G','allow'),(522,4,'admin/report/salesroot/coupons',NULL,0,'G','allow'),(523,4,'admin/report/shopcart',NULL,0,'G','allow'),(524,4,'admin/report/shopcart/product',NULL,0,'G','allow'),(525,4,'admin/report/shopcart/abandoned',NULL,0,'G','allow'),(526,4,'admin/report/products',NULL,0,'G','allow'),(527,4,'admin/report/products/bestsellers',NULL,0,'G','deny'),(528,4,'admin/report/products/sold',NULL,0,'G','allow'),(529,4,'admin/report/products/viewed',NULL,0,'G','allow'),(530,4,'admin/report/products/lowstock',NULL,0,'G','allow'),(531,4,'admin/report/products/downloads',NULL,0,'G','allow'),(532,4,'admin/report/customers',NULL,0,'G','allow'),(533,4,'admin/report/customers/accounts',NULL,0,'G','allow'),(534,4,'admin/report/customers/totals',NULL,0,'G','allow'),(535,4,'admin/report/customers/orders',NULL,0,'G','allow'),(536,4,'admin/report/review',NULL,0,'G','allow'),(537,4,'admin/report/review/customer',NULL,0,'G','allow'),(538,4,'admin/report/review/product',NULL,0,'G','allow'),(539,4,'admin/report/tags',NULL,0,'G','allow'),(540,4,'admin/report/tags/customer',NULL,0,'G','allow'),(541,4,'admin/report/tags/popular',NULL,0,'G','allow'),(542,4,'admin/report/tags/product',NULL,0,'G','allow'),(543,4,'admin/report/search',NULL,0,'G','allow'),(544,4,'admin/report/statistics',NULL,0,'G','allow'),(545,4,'admin/page_cache',NULL,0,'G','deny'),(546,4,'admin/newsletter',NULL,0,'G','allow'),(547,4,'admin/newsletter/problem',NULL,0,'G','allow'),(548,4,'admin/newsletter/queue',NULL,0,'G','allow'),(549,4,'admin/newsletter/subscriber',NULL,0,'G','allow'),(550,4,'admin/newsletter/template',NULL,0,'G','allow'),(551,4,'admin/xmlconnect',NULL,0,'G','deny'),(552,4,'admin/xmlconnect/mobile',NULL,0,'G','deny'),(553,4,'admin/xmlconnect/history',NULL,0,'G','deny'),(554,4,'admin/xmlconnect/templates',NULL,0,'G','deny'),(555,4,'admin/xmlconnect/queue',NULL,0,'G','deny');
/*!40000 ALTER TABLE `admin_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_user`
--

DROP TABLE IF EXISTS `admin_user`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `admin_user` (
  `user_id` int(10) unsigned NOT NULL auto_increment COMMENT 'User ID',
  `firstname` varchar(32) default NULL COMMENT 'User First Name',
  `lastname` varchar(32) default NULL COMMENT 'User Last Name',
  `email` varchar(128) default NULL COMMENT 'User Email',
  `username` varchar(40) default NULL COMMENT 'User Login',
  `password` varchar(100) default NULL COMMENT 'User Password',
  `created` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP COMMENT 'User Created Time',
  `modified` timestamp NULL default NULL COMMENT 'User Modified Time',
  `logdate` timestamp NULL default NULL COMMENT 'User Last Login Time',
  `lognum` smallint(5) unsigned NOT NULL default '0' COMMENT 'User Login Number',
  `reload_acl_flag` smallint(6) NOT NULL default '0' COMMENT 'Reload ACL',
  `is_active` smallint(6) NOT NULL default '1' COMMENT 'User Is Active',
  `extra` text COMMENT 'User Extra Data',
  `rp_token` text COMMENT 'Reset Password Link Token',
  `rp_token_created_at` timestamp NULL default NULL COMMENT 'Reset Password Link Token Creation Date',
  PRIMARY KEY  (`user_id`),
  UNIQUE KEY `UNQ_ADMIN_USER_USERNAME` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Admin User Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `admin_user`
--

LOCK TABLES `admin_user` WRITE;
/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
INSERT INTO `admin_user` VALUES (1,'Adam','Sykes','adam.sykes@quanano.co.uk','Admin','84798af96a2cebec2ab49d07a046e145:c8','2012-03-29 08:52:39','2010-10-08 12:54:49','2012-03-29 07:52:39',140,0,1,'a:1:{s:11:\"configState\";a:84:{s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"1\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"0\";s:17:\"design_pagination\";s:1:\"0\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"1\";s:17:\"carriers_flatrate\";s:1:\"0\";s:18:\"carriers_tablerate\";s:1:\"1\";s:21:\"carriers_freeshipping\";s:1:\"0\";s:12:\"carriers_ups\";s:1:\"0\";s:13:\"carriers_usps\";s:1:\"0\";s:14:\"carriers_fedex\";s:1:\"0\";s:12:\"carriers_dhl\";s:1:\"0\";s:15:\"shipping_origin\";s:1:\"1\";s:15:\"shipping_option\";s:1:\"1\";s:11:\"tax_classes\";s:1:\"1\";s:15:\"tax_calculation\";s:1:\"1\";s:12:\"tax_defaults\";s:1:\"1\";s:11:\"tax_display\";s:1:\"1\";s:16:\"tax_cart_display\";s:1:\"1\";s:17:\"tax_sales_display\";s:1:\"1\";s:8:\"tax_weee\";s:1:\"1\";s:16:\"checkout_options\";s:1:\"1\";s:13:\"checkout_cart\";s:1:\"1\";s:18:\"checkout_cart_link\";s:1:\"1\";s:16:\"checkout_sidebar\";s:1:\"1\";s:23:\"checkout_payment_failed\";s:1:\"1\";s:14:\"paypal_account\";s:1:\"1\";s:10:\"paypal_api\";s:1:\"1\";s:14:\"paypal_express\";s:1:\"0\";s:10:\"paypal_wps\";s:1:\"0\";s:10:\"paypal_wpp\";s:1:\"0\";s:31:\"paypal_paypal_billing_agreement\";s:1:\"0\";s:13:\"paypal_wpp_pe\";s:1:\"0\";s:15:\"paypal_verisign\";s:1:\"0\";s:17:\"paypal_express_pe\";s:1:\"0\";s:25:\"paypal_settlement_reports\";s:1:\"0\";s:12:\"paypal_style\";s:1:\"1\";s:14:\"payment_ccsave\";s:1:\"1\";s:12:\"payment_free\";s:1:\"0\";s:15:\"payment_checkmo\";s:1:\"1\";s:21:\"payment_purchaseorder\";s:1:\"0\";s:20:\"payment_authorizenet\";s:1:\"0\";s:24:\"cataloginventory_options\";s:1:\"1\";s:29:\"cataloginventory_item_options\";s:1:\"1\";s:25:\"trans_email_ident_general\";s:1:\"1\";s:23:\"trans_email_ident_sales\";s:1:\"1\";s:25:\"trans_email_ident_support\";s:1:\"1\";s:25:\"trans_email_ident_custom1\";s:1:\"1\";s:25:\"trans_email_ident_custom2\";s:1:\"1\";s:11:\"system_cron\";s:1:\"0\";s:11:\"system_smtp\";s:1:\"1\";s:15:\"system_currency\";s:1:\"0\";s:10:\"system_log\";s:1:\"0\";s:24:\"system_adminnotification\";s:1:\"0\";s:14:\"system_smtppro\";s:1:\"1\";s:21:\"system_googlesettings\";s:1:\"0\";s:19:\"system_smtpsettings\";s:1:\"1\";s:17:\"contacts_contacts\";s:1:\"1\";s:14:\"contacts_email\";s:1:\"1\";s:13:\"design_banner\";s:1:\"1\";s:16:\"google_analytics\";s:1:\"1\";s:16:\"google_optimizer\";s:1:\"1\";s:15:\"google_checkout\";s:1:\"0\";s:33:\"google_checkout_shipping_merchant\";s:1:\"1\";s:32:\"google_checkout_shipping_carrier\";s:1:\"1\";s:33:\"google_checkout_shipping_flatrate\";s:1:\"0\";s:32:\"google_checkout_shipping_virtual\";s:1:\"0\";s:21:\"google_googleshopping\";s:1:\"1\";s:12:\"dev_restrict\";s:1:\"0\";s:9:\"dev_debug\";s:1:\"0\";s:12:\"dev_template\";s:1:\"0\";s:20:\"dev_translate_inline\";s:1:\"0\";s:7:\"dev_log\";s:1:\"1\";s:6:\"dev_js\";s:1:\"1\";s:7:\"dev_css\";s:1:\"1\";s:16:\"sitemap_category\";s:1:\"1\";s:15:\"sitemap_product\";s:1:\"1\";s:12:\"sitemap_page\";s:1:\"1\";s:16:\"sitemap_generate\";s:1:\"1\";}}',NULL,NULL),(2,'Gerry','Glendinning','heswallarmynavy@hotmail.com','Gerry','e96532736a99d8090b8b36abbc7aedc0:3v','2012-04-23 08:25:36','2011-12-07 09:43:01','2012-04-23 07:25:36',360,0,1,'N;',NULL,NULL);
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adminnotification_inbox`
--

DROP TABLE IF EXISTS `adminnotification_inbox`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `adminnotification_inbox` (
  `notification_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Notification id',
  `severity` smallint(5) unsigned NOT NULL default '0' COMMENT 'Problem type',
  `date_added` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP COMMENT 'Create date',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  `description` text COMMENT 'Description',
  `url` varchar(255) default NULL COMMENT 'Url',
  `is_read` smallint(5) unsigned NOT NULL default '0' COMMENT 'Flag if notification read',
  `is_remove` smallint(5) unsigned NOT NULL default '0' COMMENT 'Flag if notification might be removed',
  PRIMARY KEY  (`notification_id`),
  KEY `IDX_ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`),
  KEY `IDX_ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`),
  KEY `IDX_ADMINNOTIFICATION_INBOX_IS_REMOVE` (`is_remove`)
) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8 COMMENT='Adminnotification Inbox';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `adminnotification_inbox`
--

LOCK TABLES `adminnotification_inbox` WRITE;
/*!40000 ALTER TABLE `adminnotification_inbox` DISABLE KEYS */;
INSERT INTO `adminnotification_inbox` VALUES (1,4,'2008-07-25 00:24:40','Magento 1.1 Production Version Now Available','We are thrilled to announce the availability of the production release of Magento 1.1. Read more about the release in the Magento Blog.','http://www.magentocommerce.com/blog/comments/magento-11-is-here-1/',0,1),(2,4,'2008-08-02 00:30:16','Updated iPhone Theme is now available','Updated iPhone theme for Magento 1.1 is now available on Magento Connect and for upgrade through your Magento Connect Manager.','http://www.magentocommerce.com/blog/comments/updated-iphone-theme-for-magento-11-is-now-available/',0,1),(3,3,'2008-08-02 00:40:27','Magento version 1.1.2 is now available','Magento version 1.1.2 is now available for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-version-112-is-now-available/',0,1),(4,3,'2008-08-13 16:51:46','Magento version 1.1.3 is now available','Magento version 1.1.3 is now available','http://www.magentocommerce.com/blog/comments/magento-version-113-is-now-available/',0,1),(5,1,'2008-09-02 20:10:31','Magento Version 1.1.4 Security Update Now Available','Magento 1.1.4 Security Update Now Available. If you are using Magento version 1.1.x, we highly recommend upgrading to this version as soon as possible.','http://www.magentocommerce.com/blog/comments/magento-version-114-security-update/',0,1),(6,3,'2008-09-15 21:09:54','Magento version 1.1.5 Now Available','Magento version 1.1.5 Now Available.\n\nThis release includes many bug fixes, a new category manager and a new skin for the default Magento theme.','http://www.magentocommerce.com/blog/comments/magento-version-115-now-available/',0,1),(7,3,'2008-09-17 19:18:35','Magento version 1.1.6 Now Available','Magento version 1.1.6 Now Available.\n\nThis version includes bug fixes for Magento 1.1.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-116-now-available/',0,1),(8,4,'2008-11-07 23:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.','',0,1),(9,3,'2008-11-20 01:31:12','Magento version 1.1.7 Now Available','Magento version 1.1.7 Now Available.\n\nThis version includes over 350 issue resolutions for Magento 1.1.x that are listed in the release notes section, and new functionality that includes:\n\n-Google Website Optimizer integration\n-Google Base integration\n-Scheduled DB logs cleaning option','http://www.magentocommerce.com/blog/comments/magento-version-117-now-available/',0,1),(10,3,'2008-11-26 21:24:50','Magento Version 1.1.8 Now Available','Magento version 1.1.8 now available.\n\nThis version includes some issue resolutions for Magento 1.1.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-118-now-available/',0,1),(11,3,'2008-12-30 07:45:59','Magento version 1.2.0 is now available for download and upgrade','We are extremely happy to announce the availability of Magento version 1.2.0 for download and upgrade.\n\nThis version includes numerous issue resolutions for Magento version 1.1.x and some highly requested new features such as:\n\n    * Support for Downloadable/Digital Products. \n    * Added Layered Navigation to site search result page.\n    * Improved site search to utilize MySQL fulltext search\n    * Added support for fixed-taxes on product level.\n    * Upgraded Zend Framework to the latest stable version 1.7.2','http://www.magentocommerce.com/blog/comments/magento-version-120-is-now-available/',0,1),(12,2,'2008-12-30 21:59:22','Magento version 1.2.0.1 now available','Magento version 1.2.0.1 now available.This version includes some issue resolutions for Magento 1.2.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-1201-available/',0,1),(13,2,'2009-01-12 20:41:49','Magento version 1.2.0.2 now available','Magento version 1.2.0.2 is now available for download and upgrade. This version includes an issue resolutions for Magento version 1.2.0.x as listed in the release notes.','http://www.magentocommerce.com/blog/comments/magento-version-1202-now-available/',0,1),(14,3,'2009-01-24 00:25:56','Magento version 1.2.0.3 now available','Magento version 1.2.0.3 is now available for download and upgrade. This version includes issue resolutions for Magento version 1.2.0.x as listed in the release notes.','http://www.magentocommerce.com/blog/comments/magento-version-1203-now-available/',0,1),(15,3,'2009-02-02 21:57:00','Magento version 1.2.1 is now available for download and upgrade','We are happy to announce the availability of Magento version 1.2.1 for download and upgrade.\n\nThis version includes some issue resolutions for Magento version 1.2.x. A full list of items included in this release can be found on the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-121-now-available/',0,1),(16,3,'2009-02-24 00:45:47','Magento version 1.2.1.1 now available','Magento version 1.2.1.1 now available.This version includes some issue resolutions for Magento 1.2.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-1211-now-available/',0,1),(17,3,'2009-02-27 01:39:24','CSRF Attack Prevention','We have just posted a blog entry about a hypothetical CSRF attack on a Magento admin panel. Please read the post to find out if your Magento installation is at risk at http://www.magentocommerce.com/blog/comments/csrf-vulnerabilities-in-web-application-and-how-to-avoid-them-in-magento/','http://www.magentocommerce.com/blog/comments/csrf-vulnerabilities-in-web-application-and-how-to-avoid-them-in-magento/',0,1),(18,2,'2009-03-03 23:03:58','Magento version 1.2.1.2 now available','Magento version 1.2.1.2 is now available for download and upgrade.\nThis version includes some updates to improve admin security as described in the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-1212-now-available/',0,1),(19,3,'2009-03-31 01:22:40','Magento version 1.3.0 now available','Magento version 1.3.0 is now available for download and upgrade. This version includes numerous issue resolutions for Magento version 1.2.x and new features as described on the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-130-is-now-available/',0,1),(20,3,'2009-04-18 03:06:02','Magento version 1.3.1 now available','Magento version 1.3.1 is now available for download and upgrade. This version includes some issue resolutions for Magento version 1.3.x and new features such as Checkout By Amazon and Amazon Flexible Payment. To see a full list of updates please check the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-131-now-available/',0,1),(21,3,'2009-05-19 21:31:21','Magento version 1.3.1.1 now available','Magento version 1.3.1.1 is now available for download and upgrade. This version includes some issue resolutions for Magento version 1.3.x and a security update for Magento installations that run on multiple domains or sub-domains. If you are running Magento with multiple domains or sub-domains we highly recommend upgrading to this version.','http://www.magentocommerce.com/blog/comments/magento-version-1311-now-available/',0,1),(22,3,'2009-05-29 21:54:06','Magento version 1.3.2 now available','This version includes some improvements and issue resolutions for version 1.3.x that are listed on the release notes page. also included is a Beta version of the Compile module.','http://www.magentocommerce.com/blog/comments/magento-version-132-now-available/',0,1),(23,3,'2009-06-01 18:32:52','Magento version 1.3.2.1 now available','Magento version 1.3.2.1 now available for download and upgrade.\n\nThis release solves an issue for users running Magento with PHP 5.2.0, and changes to index.php to support the new Compiler Module.','http://www.magentocommerce.com/blog/comments/magento-version-1321-now-available/',0,1),(24,3,'2009-07-02 00:21:44','Magento version 1.3.2.2 now available','Magento version 1.3.2.2 is now available for download and upgrade.\n\nThis release includes issue resolution for Magento version 1.3.x. To see a full list of changes please visit the release notes page http://www.magentocommerce.com/download/release_notes.','http://www.magentocommerce.com/blog/comments/magento-version-1322-now-available/',0,1),(25,3,'2009-07-23 05:48:54','Magento version 1.3.2.3 now available','Magento version 1.3.2.3 is now available for download and upgrade.\n\nThis release includes issue resolution for Magento version 1.3.x. We recommend to upgrade to this version if PayPal payment modules are in use. To see a full list of changes please visit the release notes page http://www.magentocommerce.com/download/release_notes.','http://www.magentocommerce.com/blog/comments/magento-version-1323-now-available/',0,1),(26,4,'2009-08-28 17:26:28','PayPal is updating Payflow Pro and Website Payments Pro (Payflow Edition) UK.','If you are using Payflow Pro and/or Website Payments Pro (Payflow Edition) UK.  payment methods, you will need to update the URL‘s in your Magento Administrator Panel in order to process transactions after September 1, 2009. Full details are available here: http://www.magentocommerce.com/wiki/paypal_payflow_changes','http://www.magentocommerce.com/wiki/paypal_payflow_changes',0,1),(27,2,'2009-09-23 19:16:49','Magento Version 1.3.2.4 Security Update','Magento Version 1.3.2.4 is now available. This version includes a security updates for Magento 1.3.x that solves possible XSS vulnerability issue on customer registration page and is available through SVN, Download Page and through the Magento Connect Manager.','http://www.magentocommerce.com/blog/comments/magento-version-1324-security-update/',0,1),(28,4,'2009-09-25 13:57:54','Magento Preview Version 1.4.0.0-alpha2 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-alpha2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-alpha2-now-available/',0,1),(29,4,'2009-10-06 23:55:40','Magento Preview Version 1.4.0.0-alpha3 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-alpha3 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-alpha3-now-available/',0,1),(30,4,'2009-12-08 23:30:36','Magento Preview Version 1.4.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-beta1-now-available/',0,1),(31,4,'2009-12-31 09:22:12','Magento Preview Version 1.4.0.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-rc1-now-available/',0,1),(32,4,'2010-02-13 03:39:53','Magento CE Version 1.4.0.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.0.0 Stable for upgrade and download.','http://bit.ly/c53rpK',0,1),(33,3,'2010-02-20 02:39:36','Magento CE Version 1.4.0.1 Stable is now available','Magento CE 1.4.0.1 Stable is now available for upgrade and download.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1401-stable-now-available/',0,1),(34,4,'2010-04-23 19:09:03','Magento Version CE 1.3.3.0 Stable - Now Available With Support for 3-D Secure','Based on community requests, we are excited to announce the release of Magento CE 1.3.3.0-Stable with support for 3-D Secure. This release is intended for Magento merchants using version 1.3.x, who want to add support for 3-D Secure.','http://www.magentocommerce.com/blog/comments/magento-version-ce-1330-stable-now-available-with-support-for-3-d-secure/',0,1),(35,4,'2010-05-31 16:20:21','Announcing the Launch of Magento Mobile','The Magento team is pleased to announce the launch of Magento mobile, a new product that will allow Magento merchants to easily create branded, native mobile storefront applications that are deeply integrated with Magento’s market-leading eCommerce platform. The product includes a new administrative manager, a native iPhone app that is fully customizable, and a service where Magento manages the submission and maintenance process for the iTunes App Store.\n\nLearn more by visiting the Magento mobile product page and sign-up to be the first to launch a native mobile commerce app, fully integrated with Magento.','http://www.magentocommerce.com/product/mobile',0,1),(36,4,'2010-06-10 19:08:08','Magento CE Version 1.4.1.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.1.0 Stable for upgrade and download. Some of the highlights of this release include: Enhanced PayPal integration (more info to follow), Change of Database structure of the Sales module to no longer use EAV, and much more.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1410-stable-now-available/',0,1),(37,4,'2010-07-26 20:37:34','Magento CE Version 1.4.1.1 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.1.1 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1411-stable-now-available/',0,1),(38,4,'2010-07-28 04:12:12','Magento CE Version 1.4.2.0-beta1 Preview Release Now Available','This release gives a preview of the new Magento Connect Manager.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1420-beta1-now-available/',0,1),(39,4,'2010-07-28 19:15:01','Magento CE Version 1.4.1.1 Patch Available','As some users experienced issues with upgrading to CE 1.4.1.1 through PEAR channels we provided a patch for it that is available on our blog http://www.magentocommerce.com/blog/comments/magento-ce-version-1411-stable-patch/','http://www.magentocommerce.com/blog/comments/magento-ce-version-1411-stable-patch/',0,1),(40,4,'2010-11-08 21:52:06','Magento CE Version 1.4.2.0-RC1 Preview Release Now Available','We are happy to announce the availability of Magento Preview Version 1.4.2.0-RC1 for download.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1420-rc1-now-available/',0,1),(41,4,'2010-12-02 20:33:00','Magento CE Version 1.4.2.0-RC2 Preview Release Now Available','We are happy to announce the availability of Magento Preview Version 1.4.2.0-RC2 for download.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1420-rc2-now-available/',0,1),(42,4,'2010-12-08 22:29:55','Magento CE Version 1.4.2.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.2.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1420-stable-now-available/',0,1),(43,4,'2010-12-17 23:23:55','Magento Preview Version CE 1.5.0.0-alpha1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-alpha1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-alpha1-now-available/',0,1),(44,4,'2010-12-29 23:51:08','Magento Preview Version CE 1.5.0.0-alpha2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-alpha2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-alpha2-now-available/',0,1),(45,4,'2011-01-14 00:35:36','Magento Preview Version CE 1.5.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-beta1-now-available/',0,1),(46,4,'2011-01-21 21:19:09','Magento Preview Version CE 1.5.0.0-beta2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-beta2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-beta2-now-available/',0,1),(47,4,'2011-01-27 21:27:57','Magento Preview Version CE 1.5.0.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-rc1-now-available/',0,1),(48,4,'2011-02-08 19:43:23','Magento CE Version 1.5.0.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.5.0.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-community-professional-and-enterprise-editions-releases-now-availab/',0,1),(49,4,'2011-02-09 23:42:57','Magento CE 1.5.0.1 stable Now Available','We are excited to announce the availability of Magento CE Version 1.5.0.1 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-1501-stable-now-available/',0,1),(50,4,'2011-02-03 21:56:33','Magento Preview Version CE 1.5.0.0-rc2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-rc2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-rc2-now-available/',0,1),(51,4,'2011-03-18 20:15:45','Magento CE 1.5.1.0-beta1 Now Available','We are happy to announce the availability of Magento Preview Version CE 1.5.1.0-beta1 for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1510-beta1-now-available/',0,1),(52,4,'2011-03-31 17:43:02','Magento CE 1.5.1.0-rc1 Now Available','We are happy to announce the availability of Magento Preview Version CE 1.5.1.0-rc1 for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1510-rc1-now-available/',0,1),(53,4,'2011-04-26 18:21:07','Magento CE 1.5.1.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.5.1.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1510-stable-now-available/',0,1),(54,4,'2011-05-26 18:33:23','Magento Preview Version CE 1.6.0.0-alpha1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-alpha1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-alpha1-now-available/',0,1),(55,4,'2011-06-15 17:12:08','Magento Preview Version CE 1.6.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-beta1for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-beta1-now-available/',0,1),(56,4,'2011-06-30 18:03:58','Magento Preview Version CE 1.6.0.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-rc1-now-available/',0,1),(57,4,'2011-07-11 18:07:39','Magento Preview Version CE 1.6.0.0-rc2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-rc2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-rc2-now-available/',0,1),(58,4,'2011-08-19 16:58:31','Magento CE 1.6.0.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.6.0.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1600-stable-now-available/',0,1),(59,4,'2010-10-12 03:13:25','Magento Mobile is now live!','Magento Mobile is now live! Signup today to have your own native iPhone mobile-shopping app in iTunes for the holiday season! Learn more at http://www.magentomobile.com/','http://www.magentomobile.com/',0,1),(60,4,'2011-01-25 03:10:33','Join us for Magento\'s Imagine eCommerce Conference!','Magento\'s Imagine eCommerce Conference is a must-attend event for anyone who uses the Magento platform or is part of the Magento ecosystem. The conference will bring together over 500 retailers, merchants, developers, partners, eCommerce experts, technologists and marketing pros for a fun and intensive conversation about the future of eCommerce.\n\nThe conference is in Los Angeles and kicks off early Monday evening February 7th through Wednesday, February 9th, 2011.\n\nRegister at http://www.magento.com/imagine. First 20 registrants use discount code IMAGINE3X76 for $300 off. *This discount is sponsored by PayPal and is only valid for new registrations.\n\nHope to see you there!\n\nMagento Team','http://www.magento.com/imagine',0,1),(61,4,'2011-09-17 04:31:26','Magento Preview Version CE 1.6.1.0-alpha1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.1.0-alpha1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1610-alpha1-now-available/',0,1),(62,4,'2011-09-17 04:31:26','Magento Preview Version CE 1.6.1.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.1.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1610-beta1-now-available/',0,1),(63,4,'2011-09-29 18:44:10','Magento Preview Version CE 1.6.1.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.1.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1610-rc1-now-available/',0,1),(64,4,'2011-10-19 20:50:05','Magento CE 1.6.1.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.6.1.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1610-stable-now-available/',0,1),(65,4,'2011-12-30 22:39:35','Magento Preview Version CE 1.7.0.0-alpha1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.7.0.0-alpha1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1700-alpha1-now-available/',0,1),(66,4,'2012-01-11 22:24:20','Magento CE 1.6.2.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.6.2.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1620-stable-now-available/',0,1),(67,4,'2012-01-20 21:15:35','Magento\'s Imagine eCommerce Conference 2012 – Registration Now Open!','Registration for the 2012 Imagine eCommerce Conference is officially OPEN! With an expected attendance of over 1000 Magento enthusiasts, this year’s exclusive event is taking place in Las Vegas, April 23rd – 25th at the luxurious M Resort. Join us for an unforgettable experience!','http://www.magentocommerce.com/blog/comments/registration-for-imagine-ecommerce-2012-is-live/',0,1),(68,4,'2012-03-03 00:54:12','Magento Preview Version CE 1.7.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.7.0.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1700-beta1-now-available/',0,1),(69,4,'2012-03-28 23:34:59','Magento Community Preview Version CE 1.7.0.0-RC1 has been released!','Learn more about the exciting new features and updates in this release and how you can take it for a test drive. As this is a preview version, we need to stress that it’s likely unstable and that we DON’T recommend that you use it in any production environment just yet.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1700-rc1-now-available/',0,1);
/*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `api_assert`
--

DROP TABLE IF EXISTS `api_assert`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `api_assert` (
  `assert_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Assert id',
  `assert_type` varchar(20) default NULL COMMENT 'Assert type',
  `assert_data` text COMMENT 'Assert additional data',
  PRIMARY KEY  (`assert_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Asserts';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `api_assert`
--

LOCK TABLES `api_assert` WRITE;
/*!40000 ALTER TABLE `api_assert` DISABLE KEYS */;
/*!40000 ALTER TABLE `api_assert` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `api_role`
--

DROP TABLE IF EXISTS `api_role`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `api_role` (
  `role_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Role id',
  `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent role id',
  `tree_level` smallint(5) unsigned NOT NULL default '0' COMMENT 'Role level in tree',
  `sort_order` smallint(5) unsigned NOT NULL default '0' COMMENT 'Sort order to display on admin area',
  `role_type` varchar(1) NOT NULL default '0' COMMENT 'Role type',
  `user_id` int(10) unsigned NOT NULL default '0' COMMENT 'User id',
  `role_name` varchar(50) default NULL COMMENT 'Role name',
  PRIMARY KEY  (`role_id`),
  KEY `IDX_API_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`),
  KEY `IDX_API_ROLE_TREE_LEVEL` (`tree_level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Roles';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `api_role`
--

LOCK TABLES `api_role` WRITE;
/*!40000 ALTER TABLE `api_role` DISABLE KEYS */;
/*!40000 ALTER TABLE `api_role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `api_rule`
--

DROP TABLE IF EXISTS `api_rule`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `api_rule` (
  `rule_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Api rule Id',
  `role_id` int(10) unsigned NOT NULL default '0' COMMENT 'Api role Id',
  `resource_id` varchar(255) default NULL COMMENT 'Module code',
  `api_privileges` varchar(20) default NULL COMMENT 'Privileges',
  `assert_id` int(10) unsigned NOT NULL default '0' COMMENT 'Assert id',
  `role_type` varchar(1) default NULL COMMENT 'Role type',
  `api_permission` varchar(10) default NULL COMMENT 'Permission',
  PRIMARY KEY  (`rule_id`),
  KEY `IDX_API_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`),
  KEY `IDX_API_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`),
  CONSTRAINT `FK_API_RULE_ROLE_ID_API_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `api_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Rules';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `api_rule`
--

LOCK TABLES `api_rule` WRITE;
/*!40000 ALTER TABLE `api_rule` DISABLE KEYS */;
/*!40000 ALTER TABLE `api_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `api_session`
--

DROP TABLE IF EXISTS `api_session`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `api_session` (
  `user_id` int(10) unsigned NOT NULL default '0' COMMENT 'User id',
  `logdate` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP COMMENT 'Login date',
  `sessid` varchar(40) default NULL COMMENT 'Sessioin id',
  KEY `IDX_API_SESSION_USER_ID` (`user_id`),
  KEY `IDX_API_SESSION_SESSID` (`sessid`),
  CONSTRAINT `FK_API_SESSION_USER_ID_API_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `api_user` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api Sessions';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `api_session`
--

LOCK TABLES `api_session` WRITE;
/*!40000 ALTER TABLE `api_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `api_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `api_user`
--

DROP TABLE IF EXISTS `api_user`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `api_user` (
  `user_id` int(10) unsigned NOT NULL auto_increment COMMENT 'User id',
  `firstname` varchar(32) default NULL COMMENT 'First name',
  `lastname` varchar(32) default NULL COMMENT 'Last name',
  `email` varchar(128) default NULL COMMENT 'Email',
  `username` varchar(40) default NULL COMMENT 'Nickname',
  `api_key` varchar(40) default NULL COMMENT 'Api key',
  `created` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP COMMENT 'User record create date',
  `modified` timestamp NULL default NULL COMMENT 'User record modify date',
  `lognum` smallint(5) unsigned NOT NULL default '0' COMMENT 'Quantity of log ins',
  `reload_acl_flag` smallint(6) NOT NULL default '0' COMMENT 'Refresh ACL flag',
  `is_active` smallint(6) NOT NULL default '1' COMMENT 'Account status',
  PRIMARY KEY  (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api Users';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `api_user`
--

LOCK TABLES `api_user` WRITE;
/*!40000 ALTER TABLE `api_user` DISABLE KEYS */;
/*!40000 ALTER TABLE `api_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banner`
--

DROP TABLE IF EXISTS `banner`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `banner` (
  `banner_id` int(11) unsigned NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `image` varchar(255) NOT NULL default '',
  `url` varchar(500) NOT NULL default '',
  `menu_title` varchar(255) NOT NULL default '',
  `menu_title_strong` varchar(255) NOT NULL default '',
  `store_ids` text,
  `position` int(11) unsigned NOT NULL default '0',
  `status` smallint(6) NOT NULL default '0',
  PRIMARY KEY  (`banner_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Banner';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `banner`
--

LOCK TABLES `banner` WRITE;
/*!40000 ALTER TABLE `banner` DISABLE KEYS */;
INSERT INTO `banner` VALUES (1,'Nikwax-Easier-Safer-Dryer','nikwax-ad.png','http://www.thearmynavystores.com/nikwax-products.html','Nikwax','Nikwax','1',2,1);
/*!40000 ALTER TABLE `banner` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banner_settings`
--

DROP TABLE IF EXISTS `banner_settings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `banner_settings` (
  `banner_settings_id` int(11) unsigned NOT NULL auto_increment,
  `menu_title_color` char(6) NOT NULL default 'aaaaaa',
  `menu_hover_title_color` char(6) NOT NULL default '3c4b77',
  `menu_title_strong_color` char(6) NOT NULL default '999999',
  `menu_hover_title_strong_color` char(6) NOT NULL default '3c4b77',
  `menu_bg_color` char(6) NOT NULL default 'efefef',
  PRIMARY KEY  (`banner_settings_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Banner Settings';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `banner_settings`
--

LOCK TABLES `banner_settings` WRITE;
/*!40000 ALTER TABLE `banner_settings` DISABLE KEYS */;
INSERT INTO `banner_settings` VALUES (1,'#00000','#00000','#00000','#00000','#00000');
/*!40000 ALTER TABLE `banner_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_anc_categs_index_idx`
--

DROP TABLE IF EXISTS `catalog_category_anc_categs_index_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_anc_categs_index_idx` (
  `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID',
  `path` varchar(255) NOT NULL COMMENT 'Path',
  KEY `IDX_CATALOG_CATEGORY_ANC_CATEGS_INDEX_IDX_CATEGORY_ID` (`category_id`),
  KEY `IDX_CATALOG_CATEGORY_ANC_CATEGS_INDEX_IDX_PATH_CATEGORY_ID` (`path`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Indexer Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_anc_categs_index_idx`
--

LOCK TABLES `catalog_category_anc_categs_index_idx` WRITE;
/*!40000 ALTER TABLE `catalog_category_anc_categs_index_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_anc_categs_index_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_anc_categs_index_tmp`
--

DROP TABLE IF EXISTS `catalog_category_anc_categs_index_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_anc_categs_index_tmp` (
  `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID',
  `path` varchar(255) NOT NULL COMMENT 'Path',
  KEY `IDX_CATALOG_CATEGORY_ANC_CATEGS_INDEX_TMP_CATEGORY_ID` (`category_id`),
  KEY `IDX_CATALOG_CATEGORY_ANC_CATEGS_INDEX_TMP_PATH_CATEGORY_ID` (`path`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Indexer Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_anc_categs_index_tmp`
--

LOCK TABLES `catalog_category_anc_categs_index_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_category_anc_categs_index_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_anc_categs_index_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_anc_products_index_idx`
--

DROP TABLE IF EXISTS `catalog_category_anc_products_index_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_anc_products_index_idx` (
  `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `position` int(10) unsigned default NULL COMMENT 'Position',
  KEY `IDX_CAT_CTGR_ANC_PRDS_IDX_IDX_CTGR_ID_PRD_ID_POSITION` (`category_id`,`product_id`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Product Indexer Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_anc_products_index_idx`
--

LOCK TABLES `catalog_category_anc_products_index_idx` WRITE;
/*!40000 ALTER TABLE `catalog_category_anc_products_index_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_anc_products_index_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_anc_products_index_tmp`
--

DROP TABLE IF EXISTS `catalog_category_anc_products_index_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_anc_products_index_tmp` (
  `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `position` int(10) unsigned default NULL COMMENT 'Position',
  KEY `IDX_CAT_CTGR_ANC_PRDS_IDX_TMP_CTGR_ID_PRD_ID_POSITION` (`category_id`,`product_id`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Product Indexer Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_anc_products_index_tmp`
--

LOCK TABLES `catalog_category_anc_products_index_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_category_anc_products_index_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_anc_products_index_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity`
--

DROP TABLE IF EXISTS `catalog_category_entity`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_entity` (
  `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity ID',
  `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attriute Set ID',
  `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent Category ID',
  `created_at` timestamp NULL default NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL default NULL COMMENT 'Update Time',
  `path` varchar(255) NOT NULL COMMENT 'Tree Path',
  `position` int(11) NOT NULL default '0' COMMENT 'Position',
  `level` int(11) NOT NULL default '0' COMMENT 'Tree Level',
  `children_count` int(11) NOT NULL default '0' COMMENT 'Child Count',
  PRIMARY KEY  (`entity_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_LEVEL` (`level`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_PATH_ENTITY_ID` (`path`,`entity_id`)
) ENGINE=InnoDB AUTO_INCREMENT=102 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_entity`
--

LOCK TABLES `catalog_category_entity` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity` DISABLE KEYS */;
INSERT INTO `catalog_category_entity` VALUES (1,3,0,0,'0000-00-00 00:00:00','2010-10-08 12:54:09','1',0,0,69),(2,3,3,1,'2010-10-08 12:54:10','2012-02-21 16:20:45','1/2',1,1,68),(3,3,3,2,'2010-10-17 12:35:46','2010-10-17 12:35:46','1/2/3',14,2,2),(4,3,3,3,'2010-10-17 12:37:27','2010-10-17 12:37:27','1/2/3/4',1,3,0),(5,3,3,3,'2010-10-17 12:39:40','2010-10-17 12:39:40','1/2/3/5',2,3,0),(6,3,3,2,'2010-10-17 12:40:46','2010-11-23 14:00:41','1/2/6',15,2,1),(7,3,3,2,'2010-10-17 12:41:38','2010-10-17 12:41:38','1/2/7',25,2,5),(8,3,3,2,'2010-10-17 12:42:24','2010-11-17 16:19:22','1/2/8',16,2,0),(9,3,3,2,'2010-10-17 12:44:56','2012-01-07 14:06:19','1/2/9',6,2,17),(10,3,3,64,'2010-10-17 12:45:50','2010-10-17 12:45:50','1/2/64/10',5,3,0),(11,3,3,2,'2010-10-17 12:46:21','2010-12-17 13:37:25','1/2/11',13,2,0),(12,3,3,2,'2010-10-17 12:46:48','2012-02-07 15:23:00','1/2/12',26,2,0),(13,3,3,64,'2010-10-17 12:47:20','2010-12-17 15:24:36','1/2/64/13',2,3,0),(14,3,3,64,'2010-10-17 12:47:51','2010-12-17 14:21:21','1/2/64/14',1,3,0),(15,3,3,2,'2010-10-17 12:48:15','2010-12-17 13:33:18','1/2/15',9,2,1),(17,3,3,2,'2010-10-17 12:49:45','2011-01-08 11:02:07','1/2/17',11,2,1),(18,3,3,64,'2010-10-17 12:50:09','2010-12-17 14:31:56','1/2/64/18',4,3,0),(20,3,3,9,'2010-10-17 16:02:50','2010-10-17 16:02:50','1/2/9/20',3,3,0),(21,3,3,7,'2010-10-22 11:50:02','2010-10-22 11:50:02','1/2/7/21',5,3,0),(22,3,3,7,'2010-10-22 11:50:27','2010-10-22 11:50:27','1/2/7/22',1,3,0),(23,3,3,9,'2010-11-11 14:02:30','2010-11-11 14:03:00','1/2/9/23',1,3,0),(24,3,3,9,'2010-11-13 12:32:02','2010-11-13 12:33:45','1/2/9/24',4,3,7),(25,3,3,65,'2010-11-17 12:16:19','2010-11-17 12:16:19','1/2/65/25',2,3,0),(26,3,3,2,'2010-11-17 15:23:40','2010-11-17 16:17:58','1/2/26',2,2,1),(27,3,3,26,'2010-11-17 15:29:23','2010-11-17 15:29:23','1/2/26/27',1,3,0),(33,3,3,24,'2010-11-17 15:42:07','2010-11-17 16:09:42','1/2/9/24/33',1,4,4),(34,3,3,33,'2010-11-17 15:43:30','2010-11-17 16:09:56','1/2/9/24/33/34',1,5,3),(35,3,3,34,'2010-11-17 15:44:32','2010-11-17 16:10:09','1/2/9/24/33/34/35',1,6,2),(36,3,3,35,'2010-11-17 15:46:20','2010-11-17 16:10:23','1/2/9/24/33/34/35/36',1,7,1),(37,3,3,36,'2010-11-17 15:47:08','2010-11-17 16:10:32','1/2/9/24/33/34/35/36/37',1,8,0),(40,3,3,2,'2010-11-19 13:36:33','2010-11-19 13:36:33','1/2/40',7,2,0),(42,3,3,24,'2010-11-19 16:15:08','2010-11-19 16:15:08','1/2/9/24/42',2,4,1),(43,3,3,2,'2010-11-19 16:18:39','2010-11-19 16:19:43','1/2/43',8,2,0),(44,3,3,63,'2010-11-19 16:25:10','2010-11-19 16:25:10','1/2/63/44',1,3,0),(45,3,3,65,'2010-11-19 16:36:53','2010-11-19 16:36:53','1/2/65/45',1,3,0),(47,3,3,64,'2010-11-19 16:44:28','2010-12-17 15:42:19','1/2/64/47',3,3,0),(48,3,3,42,'2010-11-19 17:02:13','2010-11-25 13:37:38','1/2/9/24/42/48',1,5,0),(51,3,3,2,'2010-11-20 12:04:08','2010-11-20 12:04:08','1/2/51',4,2,0),(52,3,3,9,'2010-11-20 15:39:30','2010-11-20 15:39:30','1/2/9/52',6,3,0),(53,3,3,6,'2010-11-23 10:47:35','2010-11-23 10:47:35','1/2/6/53',1,3,0),(54,3,3,17,'2010-11-23 13:52:06','2010-11-23 13:52:06','1/2/17/54',1,3,0),(56,3,3,15,'2010-11-24 13:34:51','2010-12-17 14:22:52','1/2/15/56',1,3,0),(58,3,3,7,'2010-11-24 14:26:22','2010-11-24 14:26:22','1/2/7/58',3,3,0),(61,3,3,9,'2010-11-24 14:44:45','2010-11-24 14:44:45','1/2/9/61',5,3,0),(62,3,3,7,'2010-11-26 16:10:16','2010-11-26 16:10:16','1/2/7/62',4,3,0),(63,3,3,2,'2010-11-30 14:18:49','2010-11-30 14:28:29','1/2/63',3,2,1),(64,3,3,2,'2010-12-17 13:28:20','2010-12-17 15:43:37','1/2/64',1,2,5),(65,3,3,2,'2010-12-17 13:59:14','2011-12-20 15:36:03','1/2/65',21,2,2),(72,3,3,71,'2011-10-24 13:11:15','2011-10-26 10:29:09','1/71/72',21,2,0),(77,3,3,86,'2011-11-08 15:10:09','2011-12-03 11:22:18','1/2/86/77',2,3,0),(78,3,3,7,'2011-11-26 13:01:57','2011-11-28 15:40:10','1/2/7/78',6,3,0),(79,3,3,2,'2011-12-06 14:40:41','2011-12-06 14:40:41','1/2/79',19,2,2),(80,3,3,79,'2011-12-06 14:42:53','2011-12-06 14:42:53','1/2/79/80',1,3,0),(81,3,3,79,'2011-12-06 14:44:06','2011-12-06 14:44:06','1/2/79/81',2,3,0),(83,3,3,9,'2011-12-13 12:11:31','2011-12-13 12:14:59','1/2/9/83',2,3,0),(84,3,3,2,'2011-12-20 14:32:35','2011-12-20 14:32:35','1/2/84',24,2,0),(86,3,3,2,'2011-12-20 15:20:08','2011-12-20 15:37:03','1/2/86',20,2,1),(87,3,3,2,'2011-12-20 15:40:58','2011-12-20 15:40:58','1/2/87',22,2,5),(88,3,3,87,'2011-12-20 15:42:05','2011-12-20 15:42:05','1/2/87/88',1,3,0),(89,3,3,87,'2011-12-20 15:43:01','2011-12-20 15:43:01','1/2/87/89',2,3,0),(90,3,3,87,'2011-12-20 15:43:44','2011-12-20 15:44:54','1/2/87/90',3,3,0),(91,3,3,87,'2011-12-20 15:44:40','2011-12-20 15:44:40','1/2/87/91',4,3,0),(92,3,3,87,'2011-12-20 15:45:46','2011-12-20 15:45:46','1/2/87/92',5,3,0),(93,3,3,2,'2011-12-21 16:46:02','2011-12-21 16:46:02','1/2/93',10,2,0),(94,3,3,9,'2012-01-04 15:32:11','2012-01-04 15:32:11','1/2/9/94',7,3,1),(95,3,3,94,'2012-01-04 15:33:44','2012-01-04 15:33:44','1/2/9/94/95',1,4,0),(96,3,3,9,'2012-01-04 15:56:52','2012-01-04 15:56:52','1/2/9/96',8,3,0),(97,3,3,9,'2012-01-07 13:48:39','2012-01-07 13:48:39','1/2/9/97',9,3,0),(98,3,3,2,'2012-02-21 16:25:07','2012-02-21 16:25:07','1/2/98',12,2,0),(101,3,3,2,'2012-02-22 10:46:46','2012-02-22 10:46:46','1/2/101',5,2,0);
/*!40000 ALTER TABLE `catalog_category_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_datetime`
--

DROP TABLE IF EXISTS `catalog_category_entity_datetime`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_entity_datetime` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `value` datetime default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_CTGR_ENTT_DTIME_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_ENTT_DTIME_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Datetime Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_entity_datetime`
--

LOCK TABLES `catalog_category_entity_datetime` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_datetime` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_datetime` VALUES (1,3,52,0,3,NULL),(2,3,53,0,3,NULL),(3,3,52,0,4,NULL),(4,3,53,0,4,NULL),(5,3,52,0,5,NULL),(6,3,53,0,5,NULL),(7,3,52,0,6,NULL),(8,3,53,0,6,NULL),(9,3,52,0,7,NULL),(10,3,53,0,7,NULL),(11,3,52,0,8,NULL),(12,3,53,0,8,NULL),(13,3,52,0,9,NULL),(14,3,53,0,9,NULL),(15,3,52,0,10,NULL),(16,3,53,0,10,NULL),(17,3,52,0,11,NULL),(18,3,53,0,11,NULL),(19,3,52,0,12,NULL),(20,3,53,0,12,NULL),(21,3,52,0,13,NULL),(22,3,53,0,13,NULL),(23,3,52,0,14,NULL),(24,3,53,0,14,NULL),(25,3,52,0,15,NULL),(26,3,53,0,15,NULL),(29,3,52,0,17,NULL),(30,3,53,0,17,NULL),(31,3,52,0,18,NULL),(32,3,53,0,18,NULL),(35,3,52,0,20,NULL),(36,3,53,0,20,NULL),(37,3,52,0,21,NULL),(38,3,53,0,21,NULL),(39,3,52,0,22,NULL),(40,3,53,0,22,NULL),(41,3,52,0,23,NULL),(42,3,53,0,23,NULL),(43,3,52,0,24,NULL),(44,3,53,0,24,NULL),(45,3,52,0,25,NULL),(46,3,53,0,25,NULL),(47,3,52,0,26,NULL),(48,3,53,0,26,NULL),(49,3,52,0,27,NULL),(50,3,53,0,27,NULL),(61,3,52,0,33,NULL),(62,3,53,0,33,NULL),(63,3,52,0,34,NULL),(64,3,53,0,34,NULL),(65,3,52,0,35,NULL),(66,3,53,0,35,NULL),(67,3,52,0,36,NULL),(68,3,53,0,36,NULL),(69,3,52,0,37,NULL),(70,3,53,0,37,NULL),(75,3,52,0,40,NULL),(76,3,53,0,40,NULL),(79,3,52,0,42,NULL),(80,3,53,0,42,NULL),(81,3,52,0,43,NULL),(82,3,53,0,43,NULL),(83,3,52,0,44,NULL),(84,3,53,0,44,NULL),(85,3,52,0,45,NULL),(86,3,53,0,45,NULL),(89,3,52,0,47,NULL),(90,3,53,0,47,NULL),(91,3,52,0,48,NULL),(92,3,53,0,48,NULL),(97,3,52,0,51,NULL),(98,3,53,0,51,NULL),(99,3,52,0,52,NULL),(100,3,53,0,52,NULL),(101,3,52,0,53,NULL),(102,3,53,0,53,NULL),(103,3,52,0,54,NULL),(104,3,53,0,54,NULL),(107,3,52,0,2,NULL),(108,3,53,0,2,NULL),(109,3,52,0,56,NULL),(110,3,53,0,56,NULL),(113,3,52,0,58,NULL),(114,3,53,0,58,NULL),(119,3,52,0,61,NULL),(120,3,53,0,61,NULL),(121,3,52,0,62,NULL),(122,3,53,0,62,NULL),(123,3,52,0,63,NULL),(124,3,53,0,63,NULL),(125,3,52,0,64,NULL),(126,3,53,0,64,NULL),(127,3,52,0,65,NULL),(128,3,53,0,65,NULL),(141,3,52,0,72,NULL),(142,3,53,0,72,NULL),(151,3,52,0,77,NULL),(152,3,53,0,77,NULL),(153,3,52,0,78,NULL),(154,3,53,0,78,NULL),(155,3,52,0,79,NULL),(156,3,53,0,79,NULL),(157,3,52,0,80,NULL),(158,3,53,0,80,NULL),(159,3,52,0,81,NULL),(160,3,53,0,81,NULL),(163,3,52,0,83,NULL),(164,3,53,0,83,NULL),(165,3,52,0,84,NULL),(166,3,53,0,84,NULL),(169,3,52,0,86,NULL),(170,3,53,0,86,NULL),(171,3,52,0,87,NULL),(172,3,53,0,87,NULL),(173,3,52,0,88,NULL),(174,3,53,0,88,NULL),(175,3,52,0,89,NULL),(176,3,53,0,89,NULL),(177,3,52,0,90,NULL),(178,3,53,0,90,NULL),(179,3,52,0,91,NULL),(180,3,53,0,91,NULL),(181,3,52,0,92,NULL),(182,3,53,0,92,NULL),(183,3,52,0,93,NULL),(184,3,53,0,93,NULL),(185,3,52,0,94,NULL),(186,3,53,0,94,NULL),(187,3,52,0,95,NULL),(188,3,53,0,95,NULL),(189,3,52,0,96,NULL),(190,3,53,0,96,NULL),(191,3,52,0,97,NULL),(192,3,53,0,97,NULL),(193,3,52,0,98,NULL),(194,3,53,0,98,NULL),(199,3,52,0,101,NULL),(200,3,53,0,101,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_decimal`
--

DROP TABLE IF EXISTS `catalog_category_entity_decimal`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_entity_decimal` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `value` decimal(12,4) default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_CTGR_ENTT_DEC_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_ENTT_DEC_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Decimal Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_entity_decimal`
--

LOCK TABLES `catalog_category_entity_decimal` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_int`
--

DROP TABLE IF EXISTS `catalog_category_entity_int`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_entity_int` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `value` int(11) default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_CTGR_ENTT_INT_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_INT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_ENTT_INT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=683 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Integer Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_entity_int`
--

LOCK TABLES `catalog_category_entity_int` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_int` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_int` VALUES (1,3,34,0,2,1),(2,3,34,1,2,1),(3,3,106,0,1,1),(4,3,106,0,2,1),(5,3,34,0,3,1),(6,3,106,0,3,1),(7,3,42,0,3,NULL),(8,3,43,0,3,0),(10,3,34,0,4,1),(11,3,106,0,4,1),(12,3,42,0,4,NULL),(13,3,43,0,4,0),(15,3,34,0,5,1),(16,3,106,0,5,1),(17,3,42,0,5,NULL),(18,3,43,0,5,0),(20,3,34,0,6,1),(21,3,106,0,6,1),(22,3,42,0,6,NULL),(23,3,43,0,6,0),(25,3,34,0,7,1),(26,3,106,0,7,1),(27,3,42,0,7,NULL),(28,3,43,0,7,0),(30,3,34,0,8,1),(31,3,106,0,8,1),(32,3,42,0,8,NULL),(33,3,43,0,8,0),(35,3,34,0,9,1),(36,3,106,0,9,1),(37,3,42,0,9,NULL),(38,3,43,0,9,0),(40,3,34,0,10,1),(41,3,106,0,10,1),(42,3,42,0,10,NULL),(43,3,43,0,10,0),(45,3,34,0,11,1),(46,3,106,0,11,1),(47,3,42,0,11,NULL),(48,3,43,0,11,0),(50,3,34,0,12,1),(51,3,106,0,12,1),(52,3,42,0,12,NULL),(53,3,43,0,12,0),(55,3,34,0,13,1),(56,3,106,0,13,1),(57,3,42,0,13,NULL),(58,3,43,0,13,0),(60,3,34,0,14,1),(61,3,106,0,14,1),(62,3,42,0,14,NULL),(63,3,43,0,14,0),(65,3,34,0,15,1),(66,3,106,0,15,1),(67,3,42,0,15,NULL),(68,3,43,0,15,0),(75,3,34,0,17,1),(76,3,106,0,17,1),(77,3,42,0,17,NULL),(78,3,43,0,17,0),(80,3,34,0,18,1),(81,3,106,0,18,1),(82,3,42,0,18,NULL),(83,3,43,0,18,0),(90,3,34,0,20,1),(91,3,106,0,20,1),(92,3,42,0,20,NULL),(93,3,43,0,20,0),(95,3,34,0,21,1),(96,3,106,0,21,1),(97,3,42,0,21,NULL),(98,3,43,0,21,0),(100,3,34,0,22,1),(101,3,106,0,22,1),(102,3,42,0,22,NULL),(103,3,43,0,22,0),(105,3,34,0,23,1),(106,3,106,0,23,1),(107,3,42,0,23,NULL),(108,3,43,0,23,0),(110,3,34,0,24,1),(111,3,106,0,24,1),(112,3,42,0,24,NULL),(113,3,43,0,24,0),(115,3,34,0,25,1),(116,3,106,0,25,1),(117,3,42,0,25,NULL),(118,3,43,0,25,0),(120,3,34,0,26,1),(121,3,106,0,26,1),(122,3,42,0,26,NULL),(123,3,43,0,26,0),(125,3,34,0,27,1),(126,3,106,0,27,1),(127,3,42,0,27,NULL),(128,3,43,0,27,0),(155,3,34,0,33,1),(156,3,106,0,33,1),(157,3,42,0,33,NULL),(158,3,43,0,33,0),(160,3,34,0,34,1),(161,3,106,0,34,1),(162,3,42,0,34,NULL),(163,3,43,0,34,0),(165,3,34,0,35,1),(166,3,106,0,35,1),(167,3,42,0,35,NULL),(168,3,43,0,35,0),(170,3,34,0,36,1),(171,3,106,0,36,1),(172,3,42,0,36,NULL),(173,3,43,0,36,0),(175,3,34,0,37,1),(176,3,106,0,37,1),(177,3,42,0,37,NULL),(178,3,43,0,37,0),(190,3,34,0,40,1),(191,3,106,0,40,1),(192,3,42,0,40,NULL),(193,3,43,0,40,0),(200,3,34,0,42,1),(201,3,106,0,42,1),(202,3,42,0,42,NULL),(203,3,43,0,42,0),(205,3,34,0,43,1),(206,3,106,0,43,1),(207,3,42,0,43,NULL),(208,3,43,0,43,0),(210,3,34,0,44,1),(211,3,106,0,44,1),(212,3,42,0,44,NULL),(213,3,43,0,44,0),(215,3,34,0,45,1),(216,3,106,0,45,1),(217,3,42,0,45,NULL),(218,3,43,0,45,0),(225,3,34,0,47,1),(226,3,106,0,47,1),(227,3,42,0,47,NULL),(228,3,43,0,47,0),(230,3,34,0,48,1),(231,3,106,0,48,1),(232,3,42,0,48,NULL),(233,3,43,0,48,0),(245,3,34,0,51,1),(246,3,106,0,51,1),(247,3,42,0,51,NULL),(248,3,43,0,51,0),(250,3,34,0,52,1),(251,3,106,0,52,1),(252,3,42,0,52,NULL),(253,3,43,0,52,0),(255,3,34,0,53,1),(256,3,106,0,53,1),(257,3,42,0,53,NULL),(258,3,43,0,53,0),(260,3,34,0,54,1),(261,3,106,0,54,1),(262,3,42,0,54,NULL),(263,3,43,0,54,0),(270,3,42,0,2,NULL),(271,3,43,0,2,0),(273,3,34,0,56,1),(274,3,106,0,56,1),(275,3,42,0,56,NULL),(276,3,43,0,56,0),(283,3,34,0,58,1),(284,3,106,0,58,1),(285,3,42,0,58,NULL),(286,3,43,0,58,0),(298,3,34,0,61,1),(299,3,106,0,61,1),(300,3,42,0,61,NULL),(301,3,43,0,61,0),(303,3,34,0,62,1),(304,3,106,0,62,1),(305,3,42,0,62,NULL),(306,3,43,0,62,0),(308,3,34,0,63,1),(309,3,106,0,63,1),(310,3,42,0,63,NULL),(311,3,43,0,63,0),(313,3,34,0,64,1),(314,3,106,0,64,1),(315,3,42,0,64,NULL),(316,3,43,0,64,0),(318,3,34,0,65,1),(319,3,106,0,65,1),(320,3,42,0,65,NULL),(321,3,43,0,65,0),(323,3,123,0,2,1),(324,3,124,0,2,1),(325,3,123,0,3,1),(326,3,124,0,3,1),(327,3,123,0,4,1),(328,3,124,0,4,1),(329,3,123,0,5,1),(330,3,124,0,5,1),(331,3,123,0,6,1),(332,3,124,0,6,1),(333,3,123,0,7,1),(334,3,124,0,7,1),(335,3,123,0,8,1),(336,3,124,0,8,1),(337,3,123,0,9,1),(338,3,124,0,9,1),(339,3,123,0,10,1),(340,3,124,0,10,1),(341,3,123,0,11,1),(342,3,124,0,11,1),(343,3,123,0,12,1),(344,3,124,0,12,1),(345,3,123,0,13,1),(346,3,124,0,13,1),(347,3,123,0,14,1),(348,3,124,0,14,1),(349,3,123,0,15,1),(350,3,124,0,15,1),(351,3,123,0,17,1),(352,3,124,0,17,1),(353,3,123,0,18,1),(354,3,124,0,18,1),(355,3,123,0,20,1),(356,3,124,0,20,1),(357,3,123,0,21,1),(358,3,124,0,21,1),(359,3,123,0,22,1),(360,3,124,0,22,1),(361,3,123,0,23,1),(362,3,124,0,23,1),(363,3,123,0,24,1),(364,3,124,0,24,1),(365,3,123,0,25,1),(366,3,124,0,25,1),(367,3,123,0,26,1),(368,3,124,0,26,1),(369,3,123,0,27,1),(370,3,124,0,27,1),(371,3,123,0,33,1),(372,3,124,0,33,1),(373,3,123,0,34,1),(374,3,124,0,34,1),(375,3,123,0,35,1),(376,3,124,0,35,1),(377,3,123,0,36,1),(378,3,124,0,36,1),(379,3,123,0,37,1),(380,3,124,0,37,1),(385,3,123,0,40,1),(386,3,124,0,40,1),(389,3,123,0,42,1),(390,3,124,0,42,1),(391,3,123,0,43,1),(392,3,124,0,43,1),(393,3,123,0,44,1),(394,3,124,0,44,1),(395,3,123,0,45,1),(396,3,124,0,45,1),(397,3,123,0,47,1),(398,3,124,0,47,1),(399,3,123,0,48,1),(400,3,124,0,48,1),(401,3,123,0,51,1),(402,3,124,0,51,1),(403,3,123,0,52,1),(404,3,124,0,52,1),(405,3,123,0,53,1),(406,3,124,0,53,1),(407,3,123,0,54,1),(408,3,124,0,54,1),(409,3,123,0,56,1),(410,3,124,0,56,1),(411,3,123,0,58,1),(412,3,124,0,58,1),(417,3,123,0,61,1),(418,3,124,0,61,1),(419,3,123,0,62,1),(420,3,124,0,62,1),(421,3,123,0,63,1),(422,3,124,0,63,1),(423,3,123,0,64,1),(424,3,124,0,64,1),(425,3,123,0,65,1),(426,3,124,0,65,1),(469,3,34,0,72,1),(470,3,106,0,72,1),(471,3,42,0,72,NULL),(472,3,43,0,72,0),(473,3,123,0,72,0),(474,3,124,0,72,0),(475,3,125,0,72,NULL),(483,3,125,0,2,NULL),(505,3,34,0,77,1),(506,3,106,0,77,1),(507,3,42,0,77,NULL),(508,3,43,0,77,0),(509,3,123,0,77,0),(510,3,124,0,77,0),(511,3,125,0,77,NULL),(512,3,34,0,78,1),(513,3,106,0,78,1),(514,3,42,0,78,NULL),(515,3,43,0,78,0),(516,3,123,0,78,0),(517,3,124,0,78,0),(518,3,125,0,78,NULL),(519,3,34,0,79,1),(520,3,106,0,79,1),(521,3,42,0,79,NULL),(522,3,43,0,79,0),(523,3,123,0,79,0),(524,3,124,0,79,0),(525,3,125,0,79,NULL),(526,3,34,0,80,1),(527,3,106,0,80,1),(528,3,42,0,80,NULL),(529,3,43,0,80,0),(530,3,123,0,80,0),(531,3,124,0,80,0),(532,3,125,0,80,NULL),(533,3,34,0,81,1),(534,3,106,0,81,1),(535,3,42,0,81,NULL),(536,3,43,0,81,0),(537,3,123,0,81,0),(538,3,124,0,81,0),(539,3,125,0,81,NULL),(547,3,34,0,83,1),(548,3,106,0,83,1),(549,3,42,0,83,NULL),(550,3,43,0,83,0),(551,3,123,0,83,0),(552,3,124,0,83,0),(553,3,125,0,83,NULL),(554,3,34,0,84,1),(555,3,106,0,84,1),(556,3,42,0,84,NULL),(557,3,43,0,84,0),(558,3,123,0,84,0),(559,3,124,0,84,0),(560,3,125,0,84,NULL),(568,3,34,0,86,1),(569,3,106,0,86,1),(570,3,42,0,86,NULL),(571,3,43,0,86,0),(572,3,123,0,86,0),(573,3,124,0,86,0),(574,3,125,0,86,NULL),(575,3,125,0,65,NULL),(576,3,34,0,87,1),(577,3,106,0,87,1),(578,3,42,0,87,NULL),(579,3,43,0,87,0),(580,3,123,0,87,0),(581,3,124,0,87,0),(582,3,125,0,87,NULL),(583,3,34,0,88,1),(584,3,106,0,88,1),(585,3,42,0,88,NULL),(586,3,43,0,88,0),(587,3,123,0,88,0),(588,3,124,0,88,0),(589,3,125,0,88,NULL),(590,3,34,0,89,1),(591,3,106,0,89,1),(592,3,42,0,89,NULL),(593,3,43,0,89,0),(594,3,123,0,89,0),(595,3,124,0,89,0),(596,3,125,0,89,NULL),(597,3,34,0,90,1),(598,3,106,0,90,1),(599,3,42,0,90,NULL),(600,3,43,0,90,0),(601,3,123,0,90,0),(602,3,124,0,90,0),(603,3,125,0,90,NULL),(604,3,34,0,91,1),(605,3,106,0,91,1),(606,3,42,0,91,NULL),(607,3,43,0,91,0),(608,3,123,0,91,0),(609,3,124,0,91,0),(610,3,125,0,91,NULL),(611,3,34,0,92,1),(612,3,106,0,92,1),(613,3,42,0,92,NULL),(614,3,43,0,92,0),(615,3,123,0,92,0),(616,3,124,0,92,0),(617,3,125,0,92,NULL),(618,3,34,0,93,1),(619,3,106,0,93,1),(620,3,42,0,93,NULL),(621,3,43,0,93,0),(622,3,123,0,93,0),(623,3,124,0,93,0),(624,3,125,0,93,NULL),(625,3,125,0,9,NULL),(626,3,34,0,94,1),(627,3,106,0,94,1),(628,3,42,0,94,NULL),(629,3,43,0,94,0),(630,3,123,0,94,0),(631,3,124,0,94,0),(632,3,125,0,94,NULL),(633,3,34,0,95,1),(634,3,106,0,95,1),(635,3,42,0,95,NULL),(636,3,43,0,95,0),(637,3,123,0,95,0),(638,3,124,0,95,0),(639,3,125,0,95,NULL),(640,3,34,0,96,1),(641,3,106,0,96,1),(642,3,42,0,96,NULL),(643,3,43,0,96,0),(644,3,123,0,96,0),(645,3,124,0,96,0),(646,3,125,0,96,NULL),(647,3,34,0,97,1),(648,3,106,0,97,1),(649,3,42,0,97,NULL),(650,3,43,0,97,0),(651,3,123,0,97,0),(652,3,124,0,97,0),(653,3,125,0,97,NULL),(654,3,125,0,12,NULL),(655,3,34,0,98,1),(656,3,106,0,98,1),(657,3,42,0,98,NULL),(658,3,43,0,98,0),(659,3,123,0,98,0),(660,3,124,0,98,0),(661,3,125,0,98,NULL),(676,3,34,0,101,1),(677,3,106,0,101,1),(678,3,42,0,101,NULL),(679,3,43,0,101,0),(680,3,123,0,101,0),(681,3,124,0,101,0),(682,3,125,0,101,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_text`
--

DROP TABLE IF EXISTS `catalog_category_entity_text`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_entity_text` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `value` text COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_CTGR_ENTT_TEXT_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_ENTT_TEXT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=504 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Text Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_entity_text`
--

LOCK TABLES `catalog_category_entity_text` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_text` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_text` VALUES (1,3,58,0,1,''),(2,3,58,1,1,''),(3,3,58,0,2,''),(4,3,58,1,2,''),(5,3,36,0,3,'Rucksacks'),(6,3,39,0,3,'Rucksacks, Backpacks, Bags, Carry All'),(7,3,40,0,3,'Backpacks'),(8,3,55,0,3,''),(9,3,58,0,3,''),(10,3,36,0,4,'Civilian Rucksacks'),(11,3,39,0,4,'Backpacks, Rucksacks, Carry All, Bags'),(12,3,40,0,4,'Civilian-style Rucksacks'),(13,3,55,0,4,''),(14,3,58,0,4,''),(15,3,36,0,5,'Military Rucksacks'),(16,3,39,0,5,'Military, Rucksacks, Backpacks, Bags, Carry All'),(17,3,40,0,5,'Military-style Rucksacks'),(18,3,55,0,5,''),(19,3,58,0,5,''),(20,3,36,0,6,'Sleeping Bags'),(21,3,39,0,6,'Sleeping Bags, Doss Bags'),(22,3,40,0,6,'Sleeping Bags'),(23,3,55,0,6,''),(24,3,58,0,6,''),(25,3,36,0,7,'Waterproofs'),(26,3,39,0,7,'Waterproofs, Goretex'),(27,3,40,0,7,'Waterproof clothing'),(28,3,55,0,7,''),(29,3,58,0,7,''),(30,3,36,0,8,'Snugpak Jackets'),(31,3,39,0,8,'Snugpak Jackets Softie Elite'),(32,3,40,0,8,'Snugpak Jackets Softie Elite'),(33,3,55,0,8,''),(34,3,58,0,8,''),(35,3,36,0,9,'Footwear'),(36,3,39,0,9,'Footwear, Shoes, Boots, Sandals'),(37,3,40,0,9,'Footwear'),(38,3,55,0,9,''),(39,3,58,0,9,''),(40,3,36,0,10,'Soldier 95 Kit'),(41,3,39,0,10,'Soldier 95 Kit'),(42,3,40,0,10,'Soldier 95 Kit'),(43,3,55,0,10,''),(44,3,58,0,10,''),(45,3,36,0,11,'Nikwax'),(46,3,39,0,11,'Nikwax'),(47,3,40,0,11,'Nikwax'),(48,3,55,0,11,''),(49,3,58,0,11,''),(50,3,36,0,12,'Workwear'),(51,3,39,0,12,'Workwear'),(52,3,40,0,12,'Workwear'),(53,3,55,0,12,''),(54,3,58,0,12,''),(55,3,36,0,13,'Army T-shirts'),(56,3,39,0,13,'Army T-shirts'),(57,3,40,0,13,'Army T-shirts'),(58,3,55,0,13,''),(59,3,58,0,13,''),(60,3,36,0,14,'Army Trousers'),(61,3,39,0,14,'Army Trousers'),(62,3,40,0,14,'Army Trousers'),(63,3,55,0,14,''),(64,3,58,0,14,''),(65,3,36,0,15,'Kids Army Clothing, Kids Camo Clothing, Kids Camoflage Clothing, Kids Military Clothing'),(66,3,39,0,15,'Kids Army Clothing, Kids Camo Clothing, Kids Camoflage Clothing, Kids Military Clothing, Childrens Army Clothing, Childrens Camo Clothing, Childrens Camoflage Clothing, Childrens Military Clothing, Heswall, Wirral, Merseyside, UK'),(67,3,40,0,15,'Kids Army Clothing, Kids Camo Clothing, Kids Camoflage Clothing, Kids Military Clothing from Army Navy Stores, Heswall, Wirral, Merseyside, UK'),(68,3,55,0,15,''),(69,3,58,0,15,''),(75,3,36,0,17,'Military Accessories'),(76,3,39,0,17,'Military Accessories'),(77,3,40,0,17,'Military Accessories'),(78,3,55,0,17,''),(79,3,58,0,17,''),(80,3,36,0,18,'Ghillie Suits'),(81,3,39,0,18,'Ghillie Suits'),(82,3,40,0,18,'Ghillie Suits'),(83,3,55,0,18,''),(84,3,58,0,18,''),(90,3,36,0,20,'Military Footwear'),(91,3,39,0,20,'Military Footwear'),(92,3,40,0,20,'Military Footwear'),(93,3,55,0,20,''),(94,3,58,0,20,''),(95,3,36,0,21,''),(96,3,39,0,21,''),(97,3,40,0,21,''),(98,3,55,0,21,''),(99,3,58,0,21,''),(100,3,36,0,22,''),(101,3,39,0,22,''),(102,3,40,0,22,''),(103,3,55,0,22,''),(104,3,58,0,22,''),(105,3,36,0,23,'Civilian Footwear'),(106,3,39,0,23,'Civilian Footwear'),(107,3,40,0,23,'Civilian Footwear'),(108,3,55,0,23,''),(109,3,58,0,23,''),(110,3,36,0,24,'Socks'),(111,3,39,0,24,'Socks'),(112,3,40,0,24,'Sock'),(113,3,55,0,24,''),(114,3,58,0,24,''),(115,3,36,0,25,'Thermal Underwear'),(116,3,39,0,25,'Thermal Underwear'),(117,3,40,0,25,'Thermal Underwear'),(118,3,55,0,25,''),(119,3,58,0,25,''),(120,3,36,0,26,'Bodywarmers'),(121,3,39,0,26,'Bodywarmers, gilets'),(122,3,40,0,26,'Bodywarmers, gilets.'),(123,3,55,0,26,''),(124,3,58,0,26,''),(125,3,36,0,27,'Handwarmers'),(126,3,39,0,27,'Handwarmers'),(127,3,40,0,27,'Handwarmers'),(128,3,55,0,27,''),(129,3,58,0,27,''),(155,3,36,0,33,'Thermal Socks'),(156,3,39,0,33,'Thermal Socks'),(157,3,40,0,33,'Thermal Socks'),(158,3,55,0,33,''),(159,3,58,0,33,''),(160,3,36,0,34,'Jack Pyke Waterproof Hunting Jackets'),(161,3,39,0,34,'Jack Pyke Waterproof Hunting Jackets'),(162,3,40,0,34,'Jack Pyke Waterproof Hunting Jackets'),(163,3,55,0,34,''),(164,3,58,0,34,''),(165,3,36,0,35,'Hats and Balaclavas'),(166,3,39,0,35,'Hats and Balaclavas'),(167,3,40,0,35,'Hats and Balaclavas'),(168,3,55,0,35,''),(169,3,58,0,35,''),(170,3,36,0,36,'Kids Base Layer Thermal Underwear'),(171,3,39,0,36,'Kids Base Layer Thermal Underwear'),(172,3,40,0,36,'Kids Base Layer Thermal Underwear'),(173,3,55,0,36,''),(174,3,58,0,36,''),(175,3,36,0,37,'Winter Gloves'),(176,3,39,0,37,'Winter Gloves'),(177,3,40,0,37,'Winter Gloves'),(178,3,55,0,37,''),(179,3,58,0,37,''),(190,3,36,0,40,'Gloves and Mitts'),(191,3,39,0,40,'Gloves and Mitts'),(192,3,40,0,40,'Gloves and Mitts'),(193,3,55,0,40,''),(194,3,58,0,40,''),(200,3,36,0,42,'Walking Socks'),(201,3,39,0,42,'Walking Socks'),(202,3,40,0,42,'Walking Socks'),(203,3,55,0,42,''),(204,3,58,0,42,''),(205,3,36,0,43,'Hats &Balaclavas'),(206,3,39,0,43,'Hats &Balaclavas'),(207,3,40,0,43,'Hats &Balaclavas'),(208,3,55,0,43,''),(209,3,58,0,43,''),(210,3,36,0,44,'Parade Shoes'),(211,3,39,0,44,'Parade Shoes'),(212,3,40,0,44,'Parade Shoes'),(213,3,55,0,44,''),(214,3,58,0,44,''),(215,3,36,0,45,'Kids Thermal Underwear'),(216,3,39,0,45,'Kids Thermal Underwear'),(217,3,40,0,45,'Kids Thermal Underwear'),(218,3,55,0,45,''),(219,3,58,0,45,''),(225,3,36,0,47,'Camouflage Jackets, Camo Jackets, Army Jackets, Military Jackets, Jacket'),(226,3,39,0,47,'Camouflage Jackets, Camo Jackets, Army Jackets, Military Jackets, Jacket, Heswall, Wirral, Merseyside, UK'),(227,3,40,0,47,'Camouflage Jackets, Camo Jackets, Army Jackets, Military Jackets, Jacket  from Army Navy Stores, Heswall, Wirral, Merseyside, UK'),(228,3,55,0,47,''),(229,3,58,0,47,''),(230,3,36,0,48,'Long Walking Socks'),(231,3,39,0,48,'Long Walking Socks'),(232,3,40,0,48,'Long Walking Socks'),(233,3,55,0,48,''),(234,3,58,0,48,''),(245,3,36,0,51,'Camping Accessories'),(246,3,39,0,51,'Camping Accessories'),(247,3,40,0,51,'Camping Accessories'),(248,3,55,0,51,''),(249,3,58,0,51,''),(250,3,36,0,52,'Wellingtons'),(251,3,39,0,52,'Wellingtons'),(252,3,40,0,52,'Wellingtons'),(253,3,55,0,52,''),(254,3,58,0,52,''),(255,3,36,0,53,'Shaped Sleeping Bags'),(256,3,39,0,53,'Shaped Sleeping Bags'),(257,3,40,0,53,'Shaped Sleeping Bags'),(258,3,55,0,53,''),(259,3,58,0,53,''),(260,3,36,0,54,'Dog Tags'),(261,3,39,0,54,'Dogtags'),(262,3,40,0,54,'Dogtags'),(263,3,55,0,54,''),(264,3,58,0,54,''),(270,3,36,0,2,''),(271,3,39,0,2,'Default'),(272,3,40,0,2,'Default'),(273,3,55,0,2,''),(274,3,36,0,56,'Kids Army T-shirts'),(275,3,39,0,56,'Kids Army T-shirts'),(276,3,40,0,56,'Kids Army T-shirts'),(277,3,55,0,56,''),(278,3,58,0,56,''),(284,3,36,0,58,'Jack Pyke Waterproof Jackets'),(285,3,39,0,58,'Jack Pyke Waterproof Jackets'),(286,3,40,0,58,'Jack Pyke Waterproof Jackets'),(287,3,55,0,58,''),(288,3,58,0,58,''),(299,3,36,0,61,'Walking poles'),(300,3,39,0,61,'Walking poles'),(301,3,40,0,61,'Walking poles'),(302,3,55,0,61,''),(303,3,58,0,61,''),(304,3,36,0,62,'Jack Pyke Hunting Noiseless Waterprrof Jackets'),(305,3,39,0,62,'Jack Pyke Hunting Noiseless Waterprrof Jackets'),(306,3,40,0,62,'Jack Pyke Hunting Noiseless Waterprrof Jackets'),(307,3,55,0,62,''),(308,3,58,0,62,''),(309,3,36,0,63,'Cadet Kit - Clothing, Accessories and Equipment'),(310,3,39,0,63,'Cadet Kit, Cadet Clothing, Cadet Equipment, Jackets, Boots, Trousers, Socks, T-shirts'),(311,3,40,0,63,'Get fully kitted out for cadets.'),(312,3,55,0,63,''),(313,3,58,0,63,''),(314,3,36,0,64,'Army Clothing, Miltary Clothing, Camoflage Clothing, Camo Clothing'),(315,3,39,0,64,'Army Clothing, Miltary Clothing, Camoflage Clothing, Camo Clothing, Heswall, Wirral, Merseyside, UK'),(316,3,40,0,64,'Army Clothing, Miltary Clothing, Camoflage Clothing and Camo Clothing from Army Navy Stores, Heswall, Wirral, Merseyside, UK'),(317,3,55,0,64,''),(318,3,58,0,64,''),(319,3,36,0,65,'underwear'),(320,3,39,0,65,'Underwear'),(321,3,40,0,65,'Underwear'),(322,3,55,0,65,''),(323,3,58,0,65,''),(354,3,36,0,72,NULL),(355,3,39,0,72,'brownies uniform'),(356,3,40,0,72,'brownies uniform'),(357,3,55,0,72,NULL),(358,3,58,0,72,NULL),(379,3,36,0,77,NULL),(380,3,39,0,77,'kiwi winter lined trousers'),(381,3,40,0,77,NULL),(382,3,55,0,77,NULL),(383,3,58,0,77,NULL),(384,3,36,0,78,NULL),(385,3,39,0,78,'regatta waterproof fleece tectonic'),(386,3,40,0,78,'regata waterproof tectonic fleece'),(387,3,55,0,78,NULL),(388,3,58,0,78,NULL),(389,3,36,0,79,NULL),(390,3,39,0,79,'walkingsocks, socks, workingsocks, cadetsocks, armysocks'),(391,3,40,0,79,NULL),(392,3,55,0,79,NULL),(393,3,58,0,79,NULL),(394,3,36,0,80,NULL),(395,3,39,0,80,'walkingsocks, 1000mile, bridgedalesocks, hikingsocks, trekingsocks, socks'),(396,3,40,0,80,NULL),(397,3,55,0,80,NULL),(398,3,58,0,80,NULL),(399,3,36,0,81,NULL),(400,3,39,0,81,'working socks, thermal sox, woolysocks, socks , sox'),(401,3,40,0,81,NULL),(402,3,55,0,81,NULL),(403,3,58,0,81,NULL),(409,3,36,0,83,'doc marten footwear'),(410,3,39,0,83,'docmartens, docs, classics, docmartins, foot, footwear, '),(411,3,40,0,83,NULL),(412,3,55,0,83,NULL),(413,3,58,0,83,NULL),(414,3,36,0,84,'walking poles'),(415,3,39,0,84,'walkingpoles, hikingsticks, walkingsticks, tips, ferrules'),(416,3,40,0,84,NULL),(417,3,55,0,84,NULL),(418,3,58,0,84,NULL),(424,3,36,0,86,'Trousers'),(425,3,39,0,86,'Trousers'),(426,3,40,0,86,NULL),(427,3,55,0,86,NULL),(428,3,58,0,86,NULL),(429,3,36,0,87,'Uniforms'),(430,3,39,0,87,'Scouts, Brownies, Cubs, Beavers, Rainbows'),(431,3,40,0,87,NULL),(432,3,55,0,87,NULL),(433,3,58,0,87,NULL),(434,3,36,0,88,'Beaver Uniforms'),(435,3,39,0,88,'Beaver Uniforms'),(436,3,40,0,88,NULL),(437,3,55,0,88,NULL),(438,3,58,0,88,NULL),(439,3,36,0,89,'Brownie Uniforms'),(440,3,39,0,89,'Brownie Uniforms'),(441,3,40,0,89,NULL),(442,3,55,0,89,NULL),(443,3,58,0,89,NULL),(444,3,36,0,90,'Cubs Uniforms'),(445,3,39,0,90,'Cubs Uniforms'),(446,3,40,0,90,NULL),(447,3,55,0,90,NULL),(448,3,58,0,90,NULL),(449,3,36,0,91,'Rainbow Uniforms'),(450,3,39,0,91,'Rainbow Uniforms'),(451,3,40,0,91,NULL),(452,3,55,0,91,NULL),(453,3,58,0,91,NULL),(454,3,36,0,92,'Scout Uniforms'),(455,3,39,0,92,'Scout Uniforms'),(456,3,40,0,92,NULL),(457,3,55,0,92,NULL),(458,3,58,0,92,NULL),(459,3,36,0,93,NULL),(460,3,39,0,93,NULL),(461,3,40,0,93,NULL),(462,3,55,0,93,NULL),(463,3,58,0,93,NULL),(464,3,36,0,94,'Walking Boots'),(465,3,39,0,94,'walkingboots, boots, hiking, hikingboots, rambling, '),(466,3,40,0,94,NULL),(467,3,55,0,94,NULL),(468,3,58,0,94,NULL),(469,3,36,0,95,'work boots'),(470,3,39,0,95,'saftyboots, boots, safetys, foot, fotwear, '),(471,3,40,0,95,NULL),(472,3,55,0,95,NULL),(473,3,58,0,95,NULL),(474,3,36,0,96,'Work Boots'),(475,3,39,0,96,'safetyboots, foot, footwear, boots, workboots,'),(476,3,40,0,96,NULL),(477,3,55,0,96,NULL),(478,3,58,0,96,NULL),(479,3,36,0,97,'walking shoes'),(480,3,39,0,97,'walkingshoes, shoes, foot, footwear'),(481,3,40,0,97,NULL),(482,3,55,0,97,NULL),(483,3,58,0,97,NULL),(484,3,36,0,98,NULL),(485,3,39,0,98,NULL),(486,3,40,0,98,NULL),(487,3,55,0,98,NULL),(488,3,58,0,98,NULL),(499,3,36,0,101,NULL),(500,3,39,0,101,NULL),(501,3,40,0,101,NULL),(502,3,55,0,101,NULL),(503,3,58,0,101,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_entity_varchar`
--

DROP TABLE IF EXISTS `catalog_category_entity_varchar`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_entity_varchar` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `value` varchar(255) default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_CTGR_ENTT_VCHR_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_ENTT_VCHR_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=789 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Varchar Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_entity_varchar`
--

LOCK TABLES `catalog_category_entity_varchar` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_varchar` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_varchar` VALUES (1,3,33,0,1,'Root Catalog'),(2,3,33,1,1,'Root Catalog'),(3,3,35,0,1,'root-catalog'),(4,3,33,0,2,'Default'),(6,3,41,1,2,'PRODUCTS'),(7,3,35,0,2,'default-category'),(8,3,33,0,3,'Rucksacks'),(9,3,35,0,3,'rucksacks'),(10,3,38,0,3,'Backpacks'),(11,3,41,0,3,'PRODUCTS'),(12,3,50,0,3,''),(13,3,54,0,3,''),(14,3,33,0,4,'Civilian'),(15,3,35,0,4,'civilian-rucksacks'),(16,3,38,0,4,'Civilian Rucksacks'),(17,3,41,0,4,'PRODUCTS'),(18,3,50,0,4,''),(19,3,54,0,4,''),(20,3,49,1,4,'rucksacks/civilian-rucksacks.html'),(21,3,49,0,4,'rucksacks/civilian-rucksacks.html'),(22,3,33,0,5,'Military'),(23,3,35,0,5,'military-rucksacks'),(24,3,38,0,5,'Military Rucksacks'),(25,3,41,0,5,'PRODUCTS'),(26,3,50,0,5,''),(27,3,54,0,5,''),(28,3,49,1,5,'rucksacks/military-rucksacks.html'),(29,3,49,0,5,'rucksacks/military-rucksacks.html'),(30,3,33,0,6,'Sleeping Bags'),(31,3,35,0,6,'sleeping-bags'),(32,3,38,0,6,'Sleeping Bags'),(33,3,41,0,6,'PRODUCTS'),(34,3,50,0,6,''),(35,3,54,0,6,''),(36,3,33,0,7,'Waterproofs'),(37,3,35,0,7,'waterproofs'),(38,3,38,0,7,'Waterproofs'),(39,3,41,0,7,'PRODUCTS'),(40,3,50,0,7,''),(41,3,54,0,7,''),(42,3,33,0,8,'Snugpak Jackets'),(43,3,35,0,8,'snugpak-jackets'),(44,3,38,0,8,'Snugpak Jackets'),(45,3,41,0,8,'PRODUCTS'),(46,3,50,0,8,''),(47,3,54,0,8,''),(48,3,33,0,9,'Footwear'),(49,3,35,0,9,'footwear'),(50,3,38,0,9,'Footwear'),(51,3,41,0,9,'PRODUCTS'),(52,3,50,0,9,''),(53,3,54,0,9,''),(54,3,33,0,10,'Soldier 95 Kit'),(55,3,35,0,10,'soldier-95-kit'),(56,3,38,0,10,'Soldier 95 Kit'),(57,3,41,0,10,'PRODUCTS'),(58,3,50,0,10,''),(59,3,54,0,10,''),(60,3,33,0,11,'Nikwax'),(61,3,35,0,11,'nikwax'),(62,3,38,0,11,'Nikwax'),(63,3,41,0,11,'PRODUCTS'),(64,3,50,0,11,''),(65,3,54,0,11,''),(66,3,33,0,12,'Workwear'),(67,3,35,0,12,'workwear'),(68,3,38,0,12,'Workwear'),(69,3,41,0,12,'PRODUCTS'),(70,3,50,0,12,''),(71,3,54,0,12,''),(72,3,33,0,13,'Army T-shirts'),(73,3,35,0,13,'army-t-shirts'),(74,3,38,0,13,'Army T-shirts'),(75,3,41,0,13,'PRODUCTS'),(76,3,50,0,13,''),(77,3,54,0,13,''),(78,3,33,0,14,'Army Trousers'),(79,3,35,0,14,'army-trousers'),(80,3,38,0,14,'Army Trousers'),(81,3,41,0,14,'PRODUCTS'),(82,3,50,0,14,''),(83,3,54,0,14,''),(84,3,33,0,15,'Kids Army Clothing'),(85,3,35,0,15,'kids-army-clothing'),(86,3,38,0,15,'Kids Army Clothing, Kids Camo Clothing, Kids Camoflage Clothing, Kids Military Clothing (Army Navy Stores, Heswall, Wirral, Merseyside, UK)'),(87,3,41,0,15,'PRODUCTS'),(88,3,50,0,15,''),(89,3,54,0,15,''),(96,3,33,0,17,'Military Accessories'),(97,3,35,0,17,'military-accessories'),(98,3,38,0,17,'Military Accessories'),(99,3,41,0,17,'PRODUCTS'),(100,3,50,0,17,''),(101,3,54,0,17,''),(102,3,33,0,18,'Ghillie Suits'),(103,3,35,0,18,'ghillie-suits'),(104,3,38,0,18,'Ghillie Suits'),(105,3,41,0,18,'PRODUCTS'),(106,3,50,0,18,''),(107,3,54,0,18,''),(116,3,33,0,20,'Military'),(117,3,35,0,20,'military'),(118,3,38,0,20,'Military Footwear'),(119,3,41,0,20,'PRODUCTS'),(120,3,50,0,20,''),(121,3,54,0,20,''),(122,3,49,1,20,'footwear/military.html'),(123,3,49,0,20,'footwear/military.html'),(124,3,49,1,10,'army-clothing/soldier-95-kit.html'),(125,3,49,0,10,'army-clothing/soldier-95-kit.html'),(126,3,49,1,11,'nikwax.html'),(127,3,49,0,11,'nikwax.html'),(128,3,49,1,12,'workwear.html'),(129,3,49,0,12,'workwear.html'),(130,3,49,1,13,'army-clothing/army-t-shirts.html'),(131,3,49,0,13,'army-clothing/army-t-shirts.html'),(132,3,49,1,14,'army-clothing/army-trousers.html'),(133,3,49,0,14,'army-clothing/army-trousers.html'),(134,3,49,1,15,'kids-army-clothing.html'),(135,3,49,0,15,'kids-army-clothing.html'),(138,3,49,1,17,'military-accessories.html'),(139,3,49,0,17,'military-accessories.html'),(140,3,49,1,18,'army-clothing/ghillie-suits.html'),(141,3,49,0,18,'army-clothing/ghillie-suits.html'),(142,3,49,1,3,'rucksacks.html'),(143,3,49,0,3,'rucksacks.html'),(144,3,49,1,6,'sleeping-bags.html'),(145,3,49,0,6,'sleeping-bags.html'),(146,3,49,1,7,'waterproofs.html'),(147,3,49,0,7,'waterproofs.html'),(148,3,49,1,8,'snugpak-jackets.html'),(149,3,49,0,8,'snugpak-jackets.html'),(150,3,49,1,9,'footwear.html'),(151,3,49,0,9,'footwear.html'),(152,3,33,0,21,'Military'),(153,3,35,0,21,'military'),(154,3,38,0,21,''),(155,3,41,0,21,'PRODUCTS'),(156,3,50,0,21,''),(157,3,54,0,21,''),(158,3,49,1,21,'waterproofs/military.html'),(159,3,49,0,21,'waterproofs/military.html'),(160,3,33,0,22,'Civilian'),(161,3,35,0,22,'civilian'),(162,3,38,0,22,''),(163,3,41,0,22,'PRODUCTS'),(164,3,50,0,22,''),(165,3,54,0,22,''),(166,3,49,1,22,'waterproofs/civilian.html'),(167,3,49,0,22,'waterproofs/civilian.html'),(168,3,33,0,23,'Civilian'),(169,3,35,0,23,'civilian'),(170,3,38,0,23,'Civilian Footwear'),(171,3,41,0,23,'PRODUCTS'),(172,3,50,0,23,''),(173,3,54,0,23,''),(174,3,49,1,23,'footwear/civilian.html'),(175,3,49,0,23,'footwear/civilian.html'),(176,3,33,0,24,'Socks'),(177,3,35,0,24,'socks'),(178,3,38,0,24,'Socks'),(179,3,41,0,24,'PRODUCTS'),(180,3,50,0,24,''),(181,3,54,0,24,''),(182,3,49,1,24,'footwear/socks.html'),(183,3,49,0,24,'footwear/socks.html'),(184,3,33,0,25,'Thermal Underwear'),(185,3,35,0,25,'thermal-underwear'),(186,3,38,0,25,'Thermal Underwear'),(187,3,41,0,25,'PRODUCTS'),(188,3,50,0,25,''),(189,3,54,0,25,''),(190,3,49,1,25,'underwear/thermal-underwear.html'),(191,3,49,0,25,'underwear/thermal-underwear.html'),(192,3,33,0,26,'Bodywarmers'),(193,3,35,0,26,'bodywarmers'),(194,3,38,0,26,'Bodywarmers'),(195,3,41,0,26,'PRODUCTS'),(196,3,50,0,26,''),(197,3,54,0,26,''),(198,3,33,0,27,'Handwarmers'),(199,3,35,0,27,'handwarmers'),(200,3,38,0,27,'Handwarmers'),(201,3,41,0,27,'PRODUCTS'),(202,3,50,0,27,''),(203,3,54,0,27,''),(234,3,33,0,33,'Thermal Socks'),(235,3,35,0,33,'thermal-socks'),(236,3,38,0,33,'Thermal Socks'),(237,3,41,0,33,'PRODUCTS'),(238,3,50,0,33,''),(239,3,54,0,33,''),(240,3,49,1,33,'footwear/socks/thermal-socks.html'),(241,3,49,0,33,'footwear/socks/thermal-socks.html'),(242,3,33,0,34,'Jack Pyke Waterproof Hunting Jackets'),(243,3,35,0,34,'jack-pyke-waterproof-hunting-jackets'),(244,3,38,0,34,'Jack Pyke Waterproof Hunting Jackets'),(245,3,41,0,34,'PRODUCTS'),(246,3,50,0,34,''),(247,3,54,0,34,''),(248,3,49,1,34,'footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets.html'),(249,3,49,0,34,'footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets.html'),(250,3,33,0,35,'Hats and Balaclavas'),(251,3,35,0,35,'hats-and-balaclavas'),(252,3,38,0,35,'Hats and Balaclavas'),(253,3,41,0,35,'PRODUCTS'),(254,3,50,0,35,''),(255,3,54,0,35,''),(256,3,49,1,35,'footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets/hats-and-balaclavas.html'),(257,3,49,0,35,'footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets/hats-and-balaclavas.html'),(258,3,33,0,36,'Kids Base Layer Thermal Underwear'),(259,3,35,0,36,'kids-base-layer-thermal-underwear'),(260,3,38,0,36,'Kids Base Layer Thermal Underwear'),(261,3,41,0,36,'PRODUCTS'),(262,3,50,0,36,''),(263,3,54,0,36,''),(264,3,49,1,36,'footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets/hats-and-balaclavas/kids-base-layer-thermal-underwear.html'),(265,3,49,0,36,'footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets/hats-and-balaclavas/kids-base-layer-thermal-underwear.html'),(266,3,33,0,37,'Winter Gloves'),(267,3,35,0,37,'winter-gloves'),(268,3,38,0,37,'Winter Gloves'),(269,3,41,0,37,'PRODUCTS'),(270,3,50,0,37,''),(271,3,54,0,37,''),(272,3,49,1,37,'footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets/hats-and-balaclavas/kids-base-layer-thermal-underwear/winter-gloves.html'),(273,3,49,0,37,'footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets/hats-and-balaclavas/kids-base-layer-thermal-underwear/winter-gloves.html'),(290,3,33,0,40,'Gloves and Mitts'),(291,3,35,0,40,'gloves-and-mitts'),(292,3,38,0,40,'Gloves and Mitts'),(293,3,41,0,40,'PRODUCTS'),(294,3,50,0,40,''),(295,3,54,0,40,''),(296,3,49,1,40,'gloves-and-mitts.html'),(297,3,49,0,40,'gloves-and-mitts.html'),(304,3,33,0,42,'Walking Socks'),(305,3,35,0,42,'walking-socks'),(306,3,38,0,42,'Walking Socks'),(307,3,41,0,42,'PRODUCTS'),(308,3,50,0,42,''),(309,3,54,0,42,''),(310,3,33,0,43,'Hats And Balaclavas'),(311,3,35,0,43,'hats-balaclavas'),(312,3,38,0,43,'Hats &Balaclavas'),(313,3,41,0,43,'PRODUCTS'),(314,3,50,0,43,''),(315,3,54,0,43,''),(316,3,33,0,44,'Parade Shoes'),(317,3,35,0,44,'parade-shoes'),(318,3,38,0,44,'Parade Shoes'),(319,3,41,0,44,'PRODUCTS'),(320,3,50,0,44,''),(321,3,54,0,44,''),(322,3,33,0,45,'Kids Thermal Underwear'),(323,3,35,0,45,'kids-thermal-underwear'),(324,3,38,0,45,'Kids Thermal Underwear'),(325,3,41,0,45,'PRODUCTS'),(326,3,50,0,45,''),(327,3,54,0,45,''),(334,3,33,0,47,'Camouflage Jackets'),(335,3,35,0,47,'camouflage-jackets'),(336,3,38,0,47,'Camouflage Jackets, Camo Jackets, Army Jackets, Military Jackets, Jacket (Army Navy Stores, Heswall, Wirral, Merseyside, UK)'),(337,3,41,0,47,'PRODUCTS'),(338,3,50,0,47,''),(339,3,54,0,47,''),(340,3,33,0,48,'Long Walking Socks'),(341,3,35,0,48,'long-walking-socks'),(342,3,38,0,48,'Long Walking Socks'),(343,3,41,0,48,'PRODUCTS'),(344,3,50,0,48,''),(345,3,54,0,48,''),(358,3,33,0,51,'Camping Accessories'),(359,3,35,0,51,'camping-accessories'),(360,3,38,0,51,'Camping Accessories'),(361,3,41,0,51,'PRODUCTS'),(362,3,50,0,51,''),(363,3,54,0,51,''),(364,3,33,0,52,'Wellingtons'),(365,3,35,0,52,'wellngtons'),(366,3,38,0,52,'Wellingtons'),(367,3,41,0,52,'PRODUCTS'),(368,3,50,0,52,''),(369,3,54,0,52,''),(370,3,49,1,52,'footwear/wellngtons-1.html'),(371,3,49,0,52,'footwear/wellngtons-1.html'),(372,3,33,0,53,'Shaped Sleeping Bags'),(373,3,35,0,53,'shaped-sleeping-bags'),(374,3,38,0,53,'Shaped Sleeping Bags'),(375,3,41,0,53,'PRODUCTS'),(376,3,50,0,53,''),(377,3,54,0,53,''),(378,3,49,1,53,'sleeping-bags/shaped-sleeping-bags.html'),(379,3,49,0,53,'sleeping-bags/shaped-sleeping-bags.html'),(380,3,33,0,54,'Dog Tags'),(381,3,35,0,54,'dogtags'),(382,3,38,0,54,'DogTags'),(383,3,41,0,54,'PRODUCTS'),(384,3,50,0,54,''),(385,3,54,0,54,''),(392,3,38,0,2,NULL),(393,3,50,0,2,''),(394,3,54,0,2,''),(395,3,33,0,56,'Kids Army T-shirts'),(396,3,35,0,56,'kids-army-t-shirts'),(397,3,38,0,56,'Kids Army T-shirts'),(398,3,41,0,56,'PRODUCTS'),(399,3,50,0,56,''),(400,3,54,0,56,''),(401,3,49,1,56,'kids-army-clothing/kids-army-t-shirts.html'),(402,3,49,0,56,'kids-army-clothing/kids-army-t-shirts.html'),(411,3,33,0,58,'Jack Pyke Waterproof Jackets'),(412,3,35,0,58,'jack-pyke-waterproof-jackets'),(413,3,38,0,58,'Jack Pyke Waterproof Jackets'),(414,3,41,0,58,'PRODUCTS'),(415,3,50,0,58,''),(416,3,54,0,58,''),(417,3,49,1,58,'waterproofs/jack-pyke-waterproof-jackets.html'),(418,3,49,0,58,'waterproofs/jack-pyke-waterproof-jackets.html'),(435,3,33,0,61,'Walking poles'),(436,3,35,0,61,'walking-poles'),(437,3,38,0,61,'Walking poles'),(438,3,41,0,61,'PRODUCTS'),(439,3,50,0,61,''),(440,3,54,0,61,''),(441,3,49,1,61,'footwear/walking-poles.html'),(442,3,49,0,61,'footwear/walking-poles.html'),(443,3,49,1,26,'bodywarmers.html'),(444,3,49,0,26,'bodywarmers.html'),(445,3,49,1,27,'bodywarmers/handwarmers.html'),(446,3,49,0,27,'bodywarmers/handwarmers.html'),(459,3,49,1,42,'footwear/socks/walking-socks.html'),(460,3,49,0,42,'footwear/socks/walking-socks.html'),(461,3,49,1,43,'hats-balaclavas.html'),(462,3,49,0,43,'hats-balaclavas.html'),(463,3,49,1,44,'cadet-kit/parade-shoes.html'),(464,3,49,0,44,'cadet-kit/parade-shoes.html'),(465,3,49,1,45,'underwear/kids-thermal-underwear.html'),(466,3,49,0,45,'underwear/kids-thermal-underwear.html'),(469,3,49,1,47,'army-clothing/camouflage-jackets.html'),(470,3,49,0,47,'army-clothing/camouflage-jackets.html'),(471,3,49,1,48,'footwear/socks/walking-socks/long-walking-socks.html'),(472,3,49,0,48,'footwear/socks/walking-socks/long-walking-socks.html'),(477,3,49,1,51,'camping-accessories.html'),(478,3,49,0,51,'camping-accessories.html'),(479,3,49,1,54,'military-accessories/dogtags.html'),(480,3,49,0,54,'military-accessories/dogtags.html'),(481,3,33,0,62,'Jack Pyke Hunting Noiseless Waterprrof Jackets'),(482,3,35,0,62,'jack-pyke-hunting-noiseless-waterprrof-jackets'),(483,3,38,0,62,'Jack Pyke Hunting Noiseless Waterprrof Jackets'),(484,3,41,0,62,'PRODUCTS'),(485,3,50,0,62,''),(486,3,54,0,62,''),(487,3,49,1,62,'waterproofs/jack-pyke-hunting-noiseless-waterprrof-jackets.html'),(488,3,49,0,62,'waterproofs/jack-pyke-hunting-noiseless-waterprrof-jackets.html'),(489,3,33,0,63,'Cadet Kit'),(490,3,35,0,63,'cadet-kit'),(491,3,38,0,63,'Cadet Kit'),(492,3,41,0,63,'PRODUCTS'),(493,3,50,0,63,''),(494,3,54,0,63,''),(495,3,49,1,63,'cadet-kit.html'),(496,3,49,0,63,'cadet-kit.html'),(497,3,33,0,64,'Army Clothing'),(498,3,35,0,64,'army-clothing'),(499,3,38,0,64,'Army Clothing - Miltary Clothing - Camoflage Clothing - Camo Clothing (Army and Navy Heswall, Wirral, Merseyside, UK)'),(500,3,41,0,64,'PRODUCTS'),(501,3,50,0,64,''),(502,3,54,0,64,''),(503,3,49,1,64,'army-clothing.html'),(504,3,49,0,64,'army-clothing.html'),(505,3,33,0,65,'Underwear'),(506,3,35,0,65,'underwear'),(507,3,38,0,65,'Underwear'),(508,3,41,0,65,'PRODUCTS'),(509,3,50,0,65,''),(510,3,54,0,65,''),(511,3,49,1,65,'underwear.html'),(512,3,49,0,65,'underwear.html'),(559,3,33,0,72,'Brownies Uniform'),(560,3,35,0,72,'brownies-uniform'),(561,3,38,0,72,'brownies uniform'),(562,3,41,0,72,'PRODUCTS'),(563,3,50,0,72,NULL),(564,3,54,0,72,NULL),(577,3,49,1,72,'brownies-uniform.html'),(578,3,49,0,72,'brownies-uniform.html'),(595,3,33,0,77,'Craghoppers Trousers'),(596,3,35,0,77,'craghoppers-kiwi-winter-lined-trousers'),(597,3,38,0,77,NULL),(598,3,41,0,77,'PRODUCTS'),(599,3,50,0,77,NULL),(600,3,54,0,77,NULL),(601,3,49,1,77,'trousers/craghoppers-kiwi-winter-lined-trousers.html'),(602,3,49,0,77,'trousers/craghoppers-kiwi-winter-lined-trousers.html'),(603,3,33,0,78,'Regatta Waterproof Fleece'),(604,3,35,0,78,'waterprrof-fleece'),(605,3,38,0,78,NULL),(606,3,41,0,78,'PRODUCTS'),(607,3,50,0,78,NULL),(608,3,54,0,78,NULL),(609,3,49,1,78,'waterproofs/waterprrof-fleece.html'),(610,3,49,0,78,'waterproofs/waterprrof-fleece.html'),(611,3,33,0,79,'Socks'),(612,3,35,0,79,'socks-walking-socks'),(613,3,38,0,79,NULL),(614,3,41,0,79,'PRODUCTS'),(615,3,50,0,79,NULL),(616,3,54,0,79,NULL),(617,3,49,1,79,'socks-walking-socks.html'),(618,3,49,0,79,'socks-walking-socks.html'),(619,3,33,0,80,'walking socks'),(620,3,35,0,80,'walking-socks'),(621,3,38,0,80,NULL),(622,3,41,0,80,'PRODUCTS'),(623,3,50,0,80,NULL),(624,3,54,0,80,NULL),(625,3,49,1,80,'socks-walking-socks/walking-socks.html'),(626,3,49,0,80,'socks-walking-socks/walking-socks.html'),(627,3,33,0,81,'working socks'),(628,3,35,0,81,'working-socks'),(629,3,38,0,81,NULL),(630,3,41,0,81,'PRODUCTS'),(631,3,50,0,81,NULL),(632,3,54,0,81,NULL),(633,3,49,1,81,'socks-walking-socks/working-socks.html'),(634,3,49,0,81,'socks-walking-socks/working-socks.html'),(641,3,33,0,83,'Doc Marten Footwear'),(642,3,35,0,83,'doc-marten'),(643,3,38,0,83,NULL),(644,3,41,0,83,'PRODUCTS'),(645,3,50,0,83,NULL),(646,3,54,0,83,NULL),(647,3,49,1,83,'footwear/doc-marten.html'),(648,3,49,0,83,'footwear/doc-marten.html'),(649,3,33,0,84,'Walking Poles'),(650,3,35,0,84,'walking-poles'),(651,3,38,0,84,NULL),(652,3,41,0,84,'PRODUCTS'),(653,3,50,0,84,NULL),(654,3,54,0,84,NULL),(655,3,49,1,84,'walking-poles.html'),(656,3,49,0,84,'walking-poles.html'),(665,3,33,0,86,'Trousers'),(666,3,35,0,86,'trousers'),(667,3,38,0,86,'Trousers'),(668,3,41,0,86,'PRODUCTS'),(669,3,50,0,86,NULL),(670,3,54,0,86,NULL),(671,3,49,1,86,'trousers.html'),(672,3,49,0,86,'trousers.html'),(673,3,33,0,87,'Uniforms'),(674,3,35,0,87,'uniforms'),(675,3,38,0,87,'Uniforms'),(676,3,41,0,87,'PRODUCTS'),(677,3,50,0,87,NULL),(678,3,54,0,87,NULL),(679,3,49,1,87,'uniforms.html'),(680,3,49,0,87,'uniforms.html'),(681,3,33,0,88,'Beavers'),(682,3,35,0,88,'beavers'),(683,3,38,0,88,'Beaver Uniforms'),(684,3,41,0,88,'PRODUCTS'),(685,3,50,0,88,NULL),(686,3,54,0,88,NULL),(687,3,49,1,88,'uniforms/beavers.html'),(688,3,49,0,88,'uniforms/beavers.html'),(689,3,33,0,89,'Brownies'),(690,3,35,0,89,'brownies'),(691,3,38,0,89,'Brownie Uniforms'),(692,3,41,0,89,'PRODUCTS'),(693,3,50,0,89,NULL),(694,3,54,0,89,NULL),(695,3,49,1,89,'uniforms/brownies.html'),(696,3,49,0,89,'uniforms/brownies.html'),(697,3,33,0,90,'Cubs'),(698,3,35,0,90,'cubs'),(699,3,38,0,90,'Cubs Uniforms'),(700,3,41,0,90,'PRODUCTS'),(701,3,50,0,90,NULL),(702,3,54,0,90,NULL),(703,3,49,1,90,'uniforms/cubs.html'),(704,3,49,0,90,'uniforms/cubs.html'),(705,3,33,0,91,'Rainbows'),(706,3,35,0,91,'rainbows'),(707,3,38,0,91,'Rainbow Uniforms'),(708,3,41,0,91,'PRODUCTS'),(709,3,50,0,91,NULL),(710,3,54,0,91,NULL),(711,3,49,1,91,'uniforms/rainbows.html'),(712,3,49,0,91,'uniforms/rainbows.html'),(713,3,33,0,92,'Scouts'),(714,3,35,0,92,'scouts'),(715,3,38,0,92,'Scout Uniforms'),(716,3,41,0,92,'PRODUCTS'),(717,3,50,0,92,NULL),(718,3,54,0,92,NULL),(719,3,49,1,92,'uniforms/scouts.html'),(720,3,49,0,92,'uniforms/scouts.html'),(721,3,33,0,93,'Knives'),(722,3,35,0,93,'knives'),(723,3,38,0,93,NULL),(724,3,41,0,93,'PRODUCTS'),(725,3,50,0,93,NULL),(726,3,54,0,93,NULL),(727,3,49,1,93,'knives.html'),(728,3,49,0,93,'knives.html'),(729,3,33,0,94,'Walking Boots'),(730,3,35,0,94,'walking-boots'),(731,3,38,0,94,NULL),(732,3,41,0,94,'PRODUCTS'),(733,3,50,0,94,NULL),(734,3,54,0,94,NULL),(735,3,49,1,94,'footwear/walking-boots.html'),(736,3,49,0,94,'footwear/walking-boots.html'),(737,3,33,0,95,'work boots'),(738,3,35,0,95,'work-boots'),(739,3,38,0,95,NULL),(740,3,41,0,95,'PRODUCTS'),(741,3,50,0,95,NULL),(742,3,54,0,95,NULL),(743,3,49,1,95,'footwear/walking-boots/work-boots.html'),(744,3,49,0,95,'footwear/walking-boots/work-boots.html'),(745,3,33,0,96,'Work Boots'),(746,3,35,0,96,'work-boots'),(747,3,38,0,96,NULL),(748,3,41,0,96,'PRODUCTS'),(749,3,50,0,96,NULL),(750,3,54,0,96,NULL),(751,3,49,1,96,'footwear/work-boots.html'),(752,3,49,0,96,'footwear/work-boots.html'),(753,3,33,0,97,'Walking shoes'),(754,3,35,0,97,'walking-shoes'),(755,3,38,0,97,NULL),(756,3,41,0,97,'PRODUCTS'),(757,3,50,0,97,NULL),(758,3,54,0,97,NULL),(759,3,49,1,97,'footwear/walking-shoes.html'),(760,3,49,0,97,'footwear/walking-shoes.html'),(761,3,33,0,98,'Orienteering Compasses'),(762,3,35,0,98,'orienteering-compasses'),(763,3,38,0,98,NULL),(764,3,41,0,98,'PRODUCTS'),(765,3,50,0,98,NULL),(766,3,54,0,98,NULL),(767,3,49,1,98,'orienteering-compasses.html'),(768,3,49,0,98,'orienteering-compasses.html'),(781,3,33,0,101,'Duke Of Edinburgh Kit'),(782,3,35,0,101,'duke-of-edinburgh-kit'),(783,3,38,0,101,NULL),(784,3,41,0,101,'PRODUCTS'),(785,3,50,0,101,NULL),(786,3,54,0,101,NULL),(787,3,49,1,101,'duke-of-edinburgh-kit.html'),(788,3,49,0,101,'duke-of-edinburgh-kit.html');
/*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_flat_store_1`
--

DROP TABLE IF EXISTS `catalog_category_flat_store_1`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_flat_store_1` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'entity_id',
  `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'parent_id',
  `created_at` timestamp NULL default NULL COMMENT 'created_at',
  `updated_at` timestamp NULL default NULL COMMENT 'updated_at',
  `path` varchar(255) NOT NULL default '' COMMENT 'path',
  `position` int(11) NOT NULL default '0' COMMENT 'position',
  `level` int(11) NOT NULL default '0' COMMENT 'level',
  `children_count` int(11) NOT NULL default '0' COMMENT 'children_count',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id',
  `all_children` text COMMENT 'All Children',
  `available_sort_by` text COMMENT 'Available Product Listing Sort By',
  `children` text COMMENT 'Children',
  `custom_apply_to_products` int(11) default NULL COMMENT 'Apply To Products',
  `custom_design` varchar(255) default NULL COMMENT 'Custom Design',
  `custom_design_from` datetime default NULL COMMENT 'Active From',
  `custom_design_to` datetime default NULL COMMENT 'Active To',
  `custom_layout_update` text COMMENT 'Custom Layout Update',
  `custom_use_parent_settings` int(11) default NULL COMMENT 'Use Parent Category Settings',
  `default_sort_by` varchar(255) default NULL COMMENT 'Default Product Listing Sort By',
  `description` text COMMENT 'Description',
  `display_mode` varchar(255) default NULL COMMENT 'Display Mode',
  `filter_price_range` int(11) default NULL COMMENT 'Layered Navigation Price Step',
  `image` varchar(255) default NULL COMMENT 'Image',
  `include_in_menu` int(11) default NULL COMMENT 'Include in Navigation Menu',
  `is_active` int(11) default NULL COMMENT 'Is Active',
  `is_anchor` int(11) default NULL COMMENT 'Is Anchor',
  `landing_page` int(11) default NULL COMMENT 'CMS Block',
  `meta_description` text COMMENT 'Meta Description',
  `meta_keywords` text COMMENT 'Meta Keywords',
  `meta_title` varchar(255) default NULL COMMENT 'Page Title',
  `name` varchar(255) default NULL COMMENT 'Name',
  `page_layout` varchar(255) default NULL COMMENT 'Page Layout',
  `path_in_store` text COMMENT 'Path In Store',
  `thumbnail` varchar(255) default NULL COMMENT 'Thumbnail Image',
  `url_key` varchar(255) default NULL COMMENT 'URL Key',
  `url_path` varchar(255) default NULL COMMENT 'Url Path',
  PRIMARY KEY  (`entity_id`),
  KEY `IDX_CATALOG_CATEGORY_FLAT_STORE_1_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_CATEGORY_FLAT_STORE_1_PATH` (`path`),
  KEY `IDX_CATALOG_CATEGORY_FLAT_STORE_1_LEVEL` (`level`),
  CONSTRAINT `FK_CATALOG_CATEGORY_FLAT_STORE_1_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_FLAT_STORE_1_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Flat (Store 1)';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_flat_store_1`
--

LOCK TABLES `catalog_category_flat_store_1` WRITE;
/*!40000 ALTER TABLE `catalog_category_flat_store_1` DISABLE KEYS */;
INSERT INTO `catalog_category_flat_store_1` VALUES (1,0,'0000-00-00 00:00:00','2010-10-08 12:54:09','1',0,0,69,1,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Root Catalog',NULL,NULL,NULL,'root-catalog',NULL),(2,1,'2010-10-08 12:54:10','2012-02-21 16:20:45','1/2',1,1,68,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'',NULL,NULL,NULL,1,1,0,NULL,'Default','Default',NULL,'Default','',NULL,NULL,'default-category',NULL),(3,2,'2010-10-17 12:35:46','2010-10-17 12:35:46','1/2/3',14,2,2,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Rucksacks','PRODUCTS',NULL,NULL,1,1,0,NULL,'Backpacks','Rucksacks, Backpacks, Bags, Carry All','Backpacks','Rucksacks','',NULL,NULL,'rucksacks','rucksacks.html'),(4,3,'2010-10-17 12:37:27','2010-10-17 12:37:27','1/2/3/4',1,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Civilian Rucksacks','PRODUCTS',NULL,NULL,1,1,0,NULL,'Civilian-style Rucksacks','Backpacks, Rucksacks, Carry All, Bags','Civilian Rucksacks','Civilian','',NULL,NULL,'civilian-rucksacks','rucksacks/civilian-rucksacks.html'),(5,3,'2010-10-17 12:39:40','2010-10-17 12:39:40','1/2/3/5',2,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Military Rucksacks','PRODUCTS',NULL,NULL,1,1,0,NULL,'Military-style Rucksacks','Military, Rucksacks, Backpacks, Bags, Carry All','Military Rucksacks','Military','',NULL,NULL,'military-rucksacks','rucksacks/military-rucksacks.html'),(6,2,'2010-10-17 12:40:46','2010-11-23 14:00:41','1/2/6',15,2,1,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Sleeping Bags','PRODUCTS',NULL,NULL,1,1,0,NULL,'Sleeping Bags','Sleeping Bags, Doss Bags','Sleeping Bags','Sleeping Bags','',NULL,NULL,'sleeping-bags','sleeping-bags.html'),(7,2,'2010-10-17 12:41:38','2010-10-17 12:41:38','1/2/7',25,2,5,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Waterproofs','PRODUCTS',NULL,NULL,1,1,0,NULL,'Waterproof clothing','Waterproofs, Goretex','Waterproofs','Waterproofs','',NULL,NULL,'waterproofs','waterproofs.html'),(8,2,'2010-10-17 12:42:24','2010-11-17 16:19:22','1/2/8',16,2,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Snugpak Jackets','PRODUCTS',NULL,NULL,1,1,0,NULL,'Snugpak Jackets Softie Elite','Snugpak Jackets Softie Elite','Snugpak Jackets','Snugpak Jackets','',NULL,NULL,'snugpak-jackets','snugpak-jackets.html'),(9,2,'2010-10-17 12:44:56','2012-01-07 14:06:19','1/2/9',6,2,17,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Footwear','PRODUCTS',NULL,NULL,1,1,0,NULL,'Footwear','Footwear, Shoes, Boots, Sandals','Footwear','Footwear','',NULL,NULL,'footwear','footwear.html'),(10,64,'2010-10-17 12:45:50','2010-10-17 12:45:50','1/2/64/10',5,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Soldier 95 Kit','PRODUCTS',NULL,NULL,1,1,0,NULL,'Soldier 95 Kit','Soldier 95 Kit','Soldier 95 Kit','Soldier 95 Kit','',NULL,NULL,'soldier-95-kit','army-clothing/soldier-95-kit.html'),(11,2,'2010-10-17 12:46:21','2010-12-17 13:37:25','1/2/11',13,2,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Nikwax','PRODUCTS',NULL,NULL,1,1,0,NULL,'Nikwax','Nikwax','Nikwax','Nikwax','',NULL,NULL,'nikwax','nikwax.html'),(12,2,'2010-10-17 12:46:48','2012-02-07 15:23:00','1/2/12',26,2,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Workwear','PRODUCTS',NULL,NULL,1,1,0,NULL,'Workwear','Workwear','Workwear','Workwear','',NULL,NULL,'workwear','workwear.html'),(13,64,'2010-10-17 12:47:20','2010-12-17 15:24:36','1/2/64/13',2,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Army T-shirts','PRODUCTS',NULL,NULL,1,1,0,NULL,'Army T-shirts','Army T-shirts','Army T-shirts','Army T-shirts','',NULL,NULL,'army-t-shirts','army-clothing/army-t-shirts.html'),(14,64,'2010-10-17 12:47:51','2010-12-17 14:21:21','1/2/64/14',1,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Army Trousers','PRODUCTS',NULL,NULL,1,1,0,NULL,'Army Trousers','Army Trousers','Army Trousers','Army Trousers','',NULL,NULL,'army-trousers','army-clothing/army-trousers.html'),(15,2,'2010-10-17 12:48:15','2010-12-17 13:33:18','1/2/15',9,2,1,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Kids Army Clothing, Kids Camo Clothing, Kids Camoflage Clothing, Kids Military Clothing','PRODUCTS',NULL,NULL,1,1,0,NULL,'Kids Army Clothing, Kids Camo Clothing, Kids Camoflage Clothing, Kids Military Clothing from Army Navy Stores, Heswall, Wirral, Merseyside, UK','Kids Army Clothing, Kids Camo Clothing, Kids Camoflage Clothing, Kids Military Clothing, Childrens Army Clothing, Childrens Camo Clothing, Childrens Camoflage Clothing, Childrens Military Clothing, Heswall, Wirral, Merseyside, UK','Kids Army Clothing, Kids Camo Clothing, Kids Camoflage Clothing, Kids Military Clothing (Army Navy Stores, Heswall, Wirral, Merseyside, UK)','Kids Army Clothing','',NULL,NULL,'kids-army-clothing','kids-army-clothing.html'),(17,2,'2010-10-17 12:49:45','2011-01-08 11:02:07','1/2/17',11,2,1,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Military Accessories','PRODUCTS',NULL,NULL,1,1,0,NULL,'Military Accessories','Military Accessories','Military Accessories','Military Accessories','',NULL,NULL,'military-accessories','military-accessories.html'),(18,64,'2010-10-17 12:50:09','2010-12-17 14:31:56','1/2/64/18',4,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Ghillie Suits','PRODUCTS',NULL,NULL,1,1,0,NULL,'Ghillie Suits','Ghillie Suits','Ghillie Suits','Ghillie Suits','',NULL,NULL,'ghillie-suits','army-clothing/ghillie-suits.html'),(20,9,'2010-10-17 16:02:50','2010-10-17 16:02:50','1/2/9/20',3,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Military Footwear','PRODUCTS',NULL,NULL,1,1,0,NULL,'Military Footwear','Military Footwear','Military Footwear','Military','',NULL,NULL,'military','footwear/military.html'),(21,7,'2010-10-22 11:50:02','2010-10-22 11:50:02','1/2/7/21',5,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'','PRODUCTS',NULL,NULL,1,1,0,NULL,'','','','Military','',NULL,NULL,'military','waterproofs/military.html'),(22,7,'2010-10-22 11:50:27','2010-10-22 11:50:27','1/2/7/22',1,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'','PRODUCTS',NULL,NULL,1,1,0,NULL,'','','','Civilian','',NULL,NULL,'civilian','waterproofs/civilian.html'),(23,9,'2010-11-11 14:02:30','2010-11-11 14:03:00','1/2/9/23',1,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Civilian Footwear','PRODUCTS',NULL,NULL,1,1,0,NULL,'Civilian Footwear','Civilian Footwear','Civilian Footwear','Civilian','',NULL,NULL,'civilian','footwear/civilian.html'),(24,9,'2010-11-13 12:32:02','2010-11-13 12:33:45','1/2/9/24',4,3,7,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Socks','PRODUCTS',NULL,NULL,1,1,0,NULL,'Sock','Socks','Socks','Socks','',NULL,NULL,'socks','footwear/socks.html'),(25,65,'2010-11-17 12:16:19','2010-11-17 12:16:19','1/2/65/25',2,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Thermal Underwear','PRODUCTS',NULL,NULL,1,1,0,NULL,'Thermal Underwear','Thermal Underwear','Thermal Underwear','Thermal Underwear','',NULL,NULL,'thermal-underwear','underwear/thermal-underwear.html'),(26,2,'2010-11-17 15:23:40','2010-11-17 16:17:58','1/2/26',2,2,1,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Bodywarmers','PRODUCTS',NULL,NULL,1,1,0,NULL,'Bodywarmers, gilets.','Bodywarmers, gilets','Bodywarmers','Bodywarmers','',NULL,NULL,'bodywarmers','bodywarmers.html'),(27,26,'2010-11-17 15:29:23','2010-11-17 15:29:23','1/2/26/27',1,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Handwarmers','PRODUCTS',NULL,NULL,1,1,0,NULL,'Handwarmers','Handwarmers','Handwarmers','Handwarmers','',NULL,NULL,'handwarmers','bodywarmers/handwarmers.html'),(33,24,'2010-11-17 15:42:07','2010-11-17 16:09:42','1/2/9/24/33',1,4,4,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Thermal Socks','PRODUCTS',NULL,NULL,1,1,0,NULL,'Thermal Socks','Thermal Socks','Thermal Socks','Thermal Socks','',NULL,NULL,'thermal-socks','footwear/socks/thermal-socks.html'),(34,33,'2010-11-17 15:43:30','2010-11-17 16:09:56','1/2/9/24/33/34',1,5,3,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Jack Pyke Waterproof Hunting Jackets','PRODUCTS',NULL,NULL,1,1,0,NULL,'Jack Pyke Waterproof Hunting Jackets','Jack Pyke Waterproof Hunting Jackets','Jack Pyke Waterproof Hunting Jackets','Jack Pyke Waterproof Hunting Jackets','',NULL,NULL,'jack-pyke-waterproof-hunting-jackets','footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets.html'),(35,34,'2010-11-17 15:44:32','2010-11-17 16:10:09','1/2/9/24/33/34/35',1,6,2,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Hats and Balaclavas','PRODUCTS',NULL,NULL,1,1,0,NULL,'Hats and Balaclavas','Hats and Balaclavas','Hats and Balaclavas','Hats and Balaclavas','',NULL,NULL,'hats-and-balaclavas','footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets/hats-and-balaclavas.html'),(36,35,'2010-11-17 15:46:20','2010-11-17 16:10:23','1/2/9/24/33/34/35/36',1,7,1,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Kids Base Layer Thermal Underwear','PRODUCTS',NULL,NULL,1,1,0,NULL,'Kids Base Layer Thermal Underwear','Kids Base Layer Thermal Underwear','Kids Base Layer Thermal Underwear','Kids Base Layer Thermal Underwear','',NULL,NULL,'kids-base-layer-thermal-underwear','footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets/hats-and-balaclavas/kids-base-layer-thermal-underwear.html'),(37,36,'2010-11-17 15:47:08','2010-11-17 16:10:32','1/2/9/24/33/34/35/36/37',1,8,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Winter Gloves','PRODUCTS',NULL,NULL,1,1,0,NULL,'Winter Gloves','Winter Gloves','Winter Gloves','Winter Gloves','',NULL,NULL,'winter-gloves','footwear/socks/thermal-socks/jack-pyke-waterproof-hunting-jackets/hats-and-balaclavas/kids-base-layer-thermal-underwear/winter-gloves.html'),(40,2,'2010-11-19 13:36:33','2010-11-19 13:36:33','1/2/40',7,2,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Gloves and Mitts','PRODUCTS',NULL,NULL,1,1,0,NULL,'Gloves and Mitts','Gloves and Mitts','Gloves and Mitts','Gloves and Mitts','',NULL,NULL,'gloves-and-mitts','gloves-and-mitts.html'),(42,24,'2010-11-19 16:15:08','2010-11-19 16:15:08','1/2/9/24/42',2,4,1,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Walking Socks','PRODUCTS',NULL,NULL,1,1,0,NULL,'Walking Socks','Walking Socks','Walking Socks','Walking Socks','',NULL,NULL,'walking-socks','footwear/socks/walking-socks.html'),(43,2,'2010-11-19 16:18:39','2010-11-19 16:19:43','1/2/43',8,2,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Hats &Balaclavas','PRODUCTS',NULL,NULL,1,1,0,NULL,'Hats &Balaclavas','Hats &Balaclavas','Hats &Balaclavas','Hats And Balaclavas','',NULL,NULL,'hats-balaclavas','hats-balaclavas.html'),(44,63,'2010-11-19 16:25:10','2010-11-19 16:25:10','1/2/63/44',1,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Parade Shoes','PRODUCTS',NULL,NULL,1,1,0,NULL,'Parade Shoes','Parade Shoes','Parade Shoes','Parade Shoes','',NULL,NULL,'parade-shoes','cadet-kit/parade-shoes.html'),(45,65,'2010-11-19 16:36:53','2010-11-19 16:36:53','1/2/65/45',1,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Kids Thermal Underwear','PRODUCTS',NULL,NULL,1,1,0,NULL,'Kids Thermal Underwear','Kids Thermal Underwear','Kids Thermal Underwear','Kids Thermal Underwear','',NULL,NULL,'kids-thermal-underwear','underwear/kids-thermal-underwear.html'),(47,64,'2010-11-19 16:44:28','2010-12-17 15:42:19','1/2/64/47',3,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Camouflage Jackets, Camo Jackets, Army Jackets, Military Jackets, Jacket','PRODUCTS',NULL,NULL,1,1,0,NULL,'Camouflage Jackets, Camo Jackets, Army Jackets, Military Jackets, Jacket  from Army Navy Stores, Heswall, Wirral, Merseyside, UK','Camouflage Jackets, Camo Jackets, Army Jackets, Military Jackets, Jacket, Heswall, Wirral, Merseyside, UK','Camouflage Jackets, Camo Jackets, Army Jackets, Military Jackets, Jacket (Army Navy Stores, Heswall, Wirral, Merseyside, UK)','Camouflage Jackets','',NULL,NULL,'camouflage-jackets','army-clothing/camouflage-jackets.html'),(48,42,'2010-11-19 17:02:13','2010-11-25 13:37:38','1/2/9/24/42/48',1,5,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Long Walking Socks','PRODUCTS',NULL,NULL,1,1,0,NULL,'Long Walking Socks','Long Walking Socks','Long Walking Socks','Long Walking Socks','',NULL,NULL,'long-walking-socks','footwear/socks/walking-socks/long-walking-socks.html'),(51,2,'2010-11-20 12:04:08','2010-11-20 12:04:08','1/2/51',4,2,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Camping Accessories','PRODUCTS',NULL,NULL,1,1,0,NULL,'Camping Accessories','Camping Accessories','Camping Accessories','Camping Accessories','',NULL,NULL,'camping-accessories','camping-accessories.html'),(52,9,'2010-11-20 15:39:30','2010-11-20 15:39:30','1/2/9/52',6,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Wellingtons','PRODUCTS',NULL,NULL,1,1,0,NULL,'Wellingtons','Wellingtons','Wellingtons','Wellingtons','',NULL,NULL,'wellngtons','footwear/wellngtons-1.html'),(53,6,'2010-11-23 10:47:35','2010-11-23 10:47:35','1/2/6/53',1,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Shaped Sleeping Bags','PRODUCTS',NULL,NULL,1,1,0,NULL,'Shaped Sleeping Bags','Shaped Sleeping Bags','Shaped Sleeping Bags','Shaped Sleeping Bags','',NULL,NULL,'shaped-sleeping-bags','sleeping-bags/shaped-sleeping-bags.html'),(54,17,'2010-11-23 13:52:06','2010-11-23 13:52:06','1/2/17/54',1,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Dog Tags','PRODUCTS',NULL,NULL,1,1,0,NULL,'Dogtags','Dogtags','DogTags','Dog Tags','',NULL,NULL,'dogtags','military-accessories/dogtags.html'),(56,15,'2010-11-24 13:34:51','2010-12-17 14:22:52','1/2/15/56',1,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Kids Army T-shirts','PRODUCTS',NULL,NULL,1,1,0,NULL,'Kids Army T-shirts','Kids Army T-shirts','Kids Army T-shirts','Kids Army T-shirts','',NULL,NULL,'kids-army-t-shirts','kids-army-clothing/kids-army-t-shirts.html'),(58,7,'2010-11-24 14:26:22','2010-11-24 14:26:22','1/2/7/58',3,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Jack Pyke Waterproof Jackets','PRODUCTS',NULL,NULL,1,1,0,NULL,'Jack Pyke Waterproof Jackets','Jack Pyke Waterproof Jackets','Jack Pyke Waterproof Jackets','Jack Pyke Waterproof Jackets','',NULL,NULL,'jack-pyke-waterproof-jackets','waterproofs/jack-pyke-waterproof-jackets.html'),(61,9,'2010-11-24 14:44:45','2010-11-24 14:44:45','1/2/9/61',5,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Walking poles','PRODUCTS',NULL,NULL,1,1,0,NULL,'Walking poles','Walking poles','Walking poles','Walking poles','',NULL,NULL,'walking-poles','footwear/walking-poles.html'),(62,7,'2010-11-26 16:10:16','2010-11-26 16:10:16','1/2/7/62',4,3,0,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Jack Pyke Hunting Noiseless Waterprrof Jackets','PRODUCTS',NULL,NULL,1,1,0,NULL,'Jack Pyke Hunting Noiseless Waterprrof Jackets','Jack Pyke Hunting Noiseless Waterprrof Jackets','Jack Pyke Hunting Noiseless Waterprrof Jackets','Jack Pyke Hunting Noiseless Waterprrof Jackets','',NULL,NULL,'jack-pyke-hunting-noiseless-waterprrof-jackets','waterproofs/jack-pyke-hunting-noiseless-waterprrof-jackets.html'),(63,2,'2010-11-30 14:18:49','2010-11-30 14:28:29','1/2/63',3,2,1,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Cadet Kit - Clothing, Accessories and Equipment','PRODUCTS',NULL,NULL,1,1,0,NULL,'Get fully kitted out for cadets.','Cadet Kit, Cadet Clothing, Cadet Equipment, Jackets, Boots, Trousers, Socks, T-shirts','Cadet Kit','Cadet Kit','',NULL,NULL,'cadet-kit','cadet-kit.html'),(64,2,'2010-12-17 13:28:20','2010-12-17 15:43:37','1/2/64',1,2,5,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'Army Clothing, Miltary Clothing, Camoflage Clothing, Camo Clothing','PRODUCTS',NULL,NULL,1,1,0,NULL,'Army Clothing, Miltary Clothing, Camoflage Clothing and Camo Clothing from Army Navy Stores, Heswall, Wirral, Merseyside, UK','Army Clothing, Miltary Clothing, Camoflage Clothing, Camo Clothing, Heswall, Wirral, Merseyside, UK','Army Clothing - Miltary Clothing - Camoflage Clothing - Camo Clothing (Army and Navy Heswall, Wirral, Merseyside, UK)','Army Clothing','',NULL,NULL,'army-clothing','army-clothing.html'),(65,2,'2010-12-17 13:59:14','2011-12-20 15:36:03','1/2/65',21,2,2,1,NULL,'',NULL,1,'',NULL,NULL,'',1,NULL,'underwear','PRODUCTS',NULL,NULL,1,1,0,NULL,'Underwear','Underwear','Underwear','Underwear','',NULL,NULL,'underwear','underwear.html'),(77,86,'2011-11-08 15:10:09','2011-12-03 11:22:18','1/2/86/77',2,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'kiwi winter lined trousers',NULL,'Craghoppers Trousers',NULL,NULL,NULL,'craghoppers-kiwi-winter-lined-trousers','trousers/craghoppers-kiwi-winter-lined-trousers.html'),(78,7,'2011-11-26 13:01:57','2011-11-28 15:40:10','1/2/7/78',6,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,0,NULL,'regata waterproof tectonic fleece','regatta waterproof fleece tectonic',NULL,'Regatta Waterproof Fleece',NULL,NULL,NULL,'waterprrof-fleece','waterproofs/waterprrof-fleece.html'),(79,2,'2011-12-06 14:40:41','2011-12-06 14:40:41','1/2/79',19,2,2,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'walkingsocks, socks, workingsocks, cadetsocks, armysocks',NULL,'Socks',NULL,NULL,NULL,'socks-walking-socks','socks-walking-socks.html'),(80,79,'2011-12-06 14:42:53','2011-12-06 14:42:53','1/2/79/80',1,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'walkingsocks, 1000mile, bridgedalesocks, hikingsocks, trekingsocks, socks',NULL,'walking socks',NULL,NULL,NULL,'walking-socks','socks-walking-socks/walking-socks.html'),(81,79,'2011-12-06 14:44:06','2011-12-06 14:44:06','1/2/79/81',2,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'working socks, thermal sox, woolysocks, socks , sox',NULL,'working socks',NULL,NULL,NULL,'working-socks','socks-walking-socks/working-socks.html'),(83,9,'2011-12-13 12:11:31','2011-12-13 12:14:59','1/2/9/83',2,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'doc marten footwear','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'docmartens, docs, classics, docmartins, foot, footwear, ',NULL,'Doc Marten Footwear',NULL,NULL,NULL,'doc-marten','footwear/doc-marten.html'),(84,2,'2011-12-20 14:32:35','2011-12-20 14:32:35','1/2/84',24,2,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'walking poles','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'walkingpoles, hikingsticks, walkingsticks, tips, ferrules',NULL,'Walking Poles',NULL,NULL,NULL,'walking-poles','walking-poles.html'),(86,2,'2011-12-20 15:20:08','2011-12-20 15:37:03','1/2/86',20,2,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Trousers','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'Trousers','Trousers','Trousers',NULL,NULL,NULL,'trousers','trousers.html'),(87,2,'2011-12-20 15:40:58','2011-12-20 15:40:58','1/2/87',22,2,5,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Uniforms','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'Scouts, Brownies, Cubs, Beavers, Rainbows','Uniforms','Uniforms',NULL,NULL,NULL,'uniforms','uniforms.html'),(88,87,'2011-12-20 15:42:05','2011-12-20 15:42:05','1/2/87/88',1,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Beaver Uniforms','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'Beaver Uniforms','Beaver Uniforms','Beavers',NULL,NULL,NULL,'beavers','uniforms/beavers.html'),(89,87,'2011-12-20 15:43:01','2011-12-20 15:43:01','1/2/87/89',2,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Brownie Uniforms','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'Brownie Uniforms','Brownie Uniforms','Brownies',NULL,NULL,NULL,'brownies','uniforms/brownies.html'),(90,87,'2011-12-20 15:43:44','2011-12-20 15:44:54','1/2/87/90',3,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Cubs Uniforms','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'Cubs Uniforms','Cubs Uniforms','Cubs',NULL,NULL,NULL,'cubs','uniforms/cubs.html'),(91,87,'2011-12-20 15:44:40','2011-12-20 15:44:40','1/2/87/91',4,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Rainbow Uniforms','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'Rainbow Uniforms','Rainbow Uniforms','Rainbows',NULL,NULL,NULL,'rainbows','uniforms/rainbows.html'),(92,87,'2011-12-20 15:45:46','2011-12-20 15:45:46','1/2/87/92',5,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Scout Uniforms','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'Scout Uniforms','Scout Uniforms','Scouts',NULL,NULL,NULL,'scouts','uniforms/scouts.html'),(93,2,'2011-12-21 16:46:02','2011-12-21 16:46:02','1/2/93',10,2,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,NULL,NULL,'Knives',NULL,NULL,NULL,'knives','knives.html'),(94,9,'2012-01-04 15:32:11','2012-01-04 15:32:11','1/2/9/94',7,3,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Walking Boots','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'walkingboots, boots, hiking, hikingboots, rambling, ',NULL,'Walking Boots',NULL,NULL,NULL,'walking-boots','footwear/walking-boots.html'),(95,94,'2012-01-04 15:33:44','2012-01-04 15:33:44','1/2/9/94/95',1,4,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'work boots','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'saftyboots, boots, safetys, foot, fotwear, ',NULL,'work boots',NULL,NULL,NULL,'work-boots','footwear/walking-boots/work-boots.html'),(96,9,'2012-01-04 15:56:52','2012-01-04 15:56:52','1/2/9/96',8,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Work Boots','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'safetyboots, foot, footwear, boots, workboots,',NULL,'Work Boots',NULL,NULL,NULL,'work-boots','footwear/work-boots.html'),(97,9,'2012-01-07 13:48:39','2012-01-07 13:48:39','1/2/9/97',9,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'walking shoes','PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,'walkingshoes, shoes, foot, footwear',NULL,'Walking shoes',NULL,NULL,NULL,'walking-shoes','footwear/walking-shoes.html'),(98,2,'2012-02-21 16:25:07','2012-02-21 16:25:07','1/2/98',12,2,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,NULL,NULL,'Orienteering Compasses',NULL,NULL,NULL,'orienteering-compasses','orienteering-compasses.html'),(101,2,'2012-02-22 10:46:46','2012-02-22 10:46:46','1/2/101',5,2,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,0,NULL,NULL,NULL,NULL,'Duke Of Edinburgh Kit',NULL,NULL,NULL,'duke-of-edinburgh-kit','duke-of-edinburgh-kit.html');
/*!40000 ALTER TABLE `catalog_category_flat_store_1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product`
--

DROP TABLE IF EXISTS `catalog_category_product`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_product` (
  `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `position` int(11) NOT NULL default '0' COMMENT 'Position',
  PRIMARY KEY  (`category_id`,`product_id`),
  KEY `IDX_CATALOG_CATEGORY_PRODUCT_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_CAT_CTGR_PRD_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_PRD_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Category Linkage Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_product`
--

LOCK TABLES `catalog_category_product` WRITE;
/*!40000 ALTER TABLE `catalog_category_product` DISABLE KEYS */;
INSERT INTO `catalog_category_product` VALUES (3,4,1),(3,7,1),(3,8,1),(3,76,1),(3,77,1),(3,99,1),(3,101,1),(3,102,1),(3,103,1),(3,104,1),(3,105,1),(3,110,1),(3,111,1),(3,113,1),(3,116,1),(3,118,1),(3,127,1),(3,128,1),(3,129,1),(4,99,1),(4,101,1),(4,104,1),(4,105,1),(4,110,1),(4,111,1),(4,113,1),(4,116,1),(4,118,1),(4,127,1),(4,128,1),(4,129,1),(5,4,1),(5,7,1),(5,8,1),(5,102,1),(5,103,1),(5,116,1),(6,3,1),(6,41,1),(6,42,1),(6,95,1),(6,96,1),(6,97,1),(6,98,1),(6,116,1),(6,126,1),(7,11,1),(7,24,1),(7,25,1),(7,31,1),(7,32,1),(7,48,1),(7,53,1),(7,54,1),(7,82,1),(7,155,1),(7,156,1),(8,23,1),(8,48,1),(9,10,1),(9,26,1),(9,28,1),(9,52,2),(9,55,2),(9,56,2),(9,57,2),(9,62,1),(9,63,1),(9,67,3),(9,68,3),(9,80,3),(9,86,3),(9,87,4),(9,88,3),(9,92,3),(9,93,4),(9,94,4),(9,114,2),(9,116,4),(9,124,2),(9,125,4),(9,132,1),(9,158,3),(9,159,3),(9,160,1),(9,166,1),(9,167,1),(10,6,1),(10,10,1),(10,11,1),(10,13,1),(10,18,1),(10,21,1),(10,22,1),(10,26,1),(10,29,1),(10,33,1),(10,34,1),(10,35,1),(10,38,1),(10,39,1),(10,40,1),(10,43,1),(10,45,1),(10,62,1),(10,63,1),(10,78,1),(10,106,1),(10,154,1),(10,170,1),(11,53,1),(11,54,1),(11,56,1),(11,57,1),(11,114,1),(11,168,1),(12,12,1),(12,14,1),(12,26,1),(12,31,1),(12,32,1),(12,33,1),(12,36,1),(12,37,1),(12,43,1),(12,45,1),(12,46,1),(12,47,1),(12,48,4),(12,58,3),(12,60,2),(12,61,2),(12,64,3),(12,66,3),(12,70,4),(12,78,2),(12,79,2),(12,81,4),(12,83,1),(12,88,2),(12,90,4),(12,91,3),(12,109,2),(12,152,1),(12,157,1),(12,160,2),(12,161,1),(12,169,1),(12,175,1),(13,12,1),(13,13,1),(13,14,1),(13,108,1),(14,17,1),(14,33,1),(14,90,1),(15,15,1),(15,16,1),(15,17,1),(15,18,1),(15,19,1),(15,35,1),(15,38,1),(15,74,1),(15,75,1),(15,84,1),(15,91,1),(15,108,1),(15,115,1),(15,131,1),(15,153,1),(15,154,1),(15,170,1),(17,6,1),(17,18,1),(17,21,1),(17,22,1),(17,29,1),(17,34,1),(17,35,1),(17,38,1),(17,39,1),(17,40,1),(17,42,1),(17,43,1),(17,72,1),(17,73,1),(17,78,1),(17,91,1),(17,100,1),(17,106,1),(17,107,1),(17,115,1),(17,120,1),(17,122,1),(17,130,1),(17,182,1),(18,19,1),(18,20,1),(20,10,1),(20,26,1),(20,43,1),(20,45,1),(20,57,1),(20,62,1),(20,63,1),(20,114,1),(21,11,1),(21,31,1),(21,32,1),(21,48,1),(21,53,1),(21,54,1),(21,82,1),(22,24,1),(22,25,1),(22,53,1),(22,54,1),(22,82,1),(23,27,1),(23,28,1),(23,44,1),(23,51,1),(23,55,1),(23,56,1),(23,57,1),(23,114,1),(23,157,1),(23,160,1),(23,161,1),(23,166,1),(23,167,1),(24,44,0),(24,45,0),(24,49,0),(24,50,0),(24,58,0),(24,64,0),(24,65,0),(24,66,0),(24,67,0),(24,68,0),(24,94,1),(24,158,1),(24,159,1),(25,59,1),(25,60,1),(25,61,1),(25,83,1),(26,14,1),(26,70,1),(26,83,1),(27,70,1),(27,71,1),(33,37,1),(33,45,1),(33,47,1),(33,58,1),(33,64,1),(33,65,1),(33,66,1),(33,67,1),(33,68,1),(33,86,1),(33,94,1),(35,47,1),(40,36,1),(40,37,1),(40,46,1),(40,47,1),(40,48,1),(42,44,1),(42,49,1),(42,50,1),(42,52,1),(42,58,1),(42,65,1),(42,67,1),(42,68,1),(43,36,1),(43,37,1),(43,38,1),(43,46,1),(43,47,1),(43,48,1),(43,78,1),(43,79,1),(43,106,1),(43,109,1),(44,45,1),(44,62,1),(44,63,1),(45,59,1),(45,61,1),(47,81,1),(47,82,1),(48,67,1),(48,68,1),(48,93,1),(48,94,1),(51,21,1),(51,34,1),(51,35,1),(51,51,1),(51,52,1),(51,115,1),(51,116,1),(51,118,1),(51,119,1),(51,120,1),(51,122,1),(51,123,1),(51,124,1),(51,125,1),(51,126,1),(51,127,1),(51,129,1),(51,130,1),(51,153,1),(51,154,1),(51,162,1),(51,163,1),(51,164,1),(51,170,1),(51,171,1),(51,173,1),(51,176,1),(51,177,1),(51,178,1),(51,179,1),(51,180,1),(51,181,1),(51,182,1),(52,65,1),(52,67,1),(52,92,1),(52,93,1),(52,94,1),(53,3,1),(53,41,1),(53,42,1),(53,97,1),(53,98,1),(54,100,1),(56,108,1),(56,131,1),(58,48,1),(58,53,1),(58,54,1),(61,51,1),(61,52,1),(61,80,1),(61,86,1),(61,125,1),(61,132,1),(62,82,1),(63,10,1),(63,11,1),(63,13,1),(63,18,1),(63,21,1),(63,22,1),(63,26,1),(63,29,1),(63,33,1),(63,34,1),(63,39,1),(63,40,1),(63,42,1),(63,43,0),(63,45,1),(63,62,1),(63,63,1),(63,78,1),(63,115,1),(63,120,1),(63,123,1),(63,130,1),(63,153,1),(63,154,1),(63,182,1),(64,6,1),(64,12,1),(64,13,1),(64,14,1),(64,15,1),(64,17,0),(64,19,1),(64,20,1),(64,22,1),(64,33,0),(64,45,1),(64,62,1),(64,63,1),(64,75,1),(64,78,1),(64,81,0),(64,82,1),(64,84,0),(64,90,0),(64,106,1),(64,108,1),(64,130,1),(64,154,1),(64,169,1),(64,170,1),(65,59,0),(65,60,0),(65,61,0),(65,149,0),(72,137,1),(72,138,1),(72,139,1),(72,140,1),(72,141,1),(72,142,1),(77,87,1),(77,88,1),(77,150,1),(77,183,1),(78,155,1),(78,156,1),(79,45,1),(79,49,1),(79,50,1),(79,58,1),(79,64,1),(79,66,1),(79,67,1),(79,68,1),(79,158,1),(79,159,1),(80,44,1),(80,49,1),(80,50,1),(80,58,1),(80,67,1),(80,68,1),(80,158,1),(80,159,1),(81,45,1),(81,64,1),(81,66,1),(83,160,1),(83,161,1),(84,51,1),(84,52,1),(84,80,1),(84,125,1),(86,87,0),(86,88,0),(86,90,1),(86,150,0),(86,183,1),(87,133,0),(87,134,0),(87,135,0),(87,136,0),(87,137,0),(87,138,0),(87,139,0),(87,140,0),(87,141,0),(87,142,0),(87,143,0),(87,144,0),(87,145,0),(87,146,0),(87,147,0),(87,148,0),(87,165,1),(88,135,0),(88,136,0),(88,143,0),(88,165,1),(89,137,0),(89,138,0),(89,139,0),(89,140,0),(89,141,0),(89,142,0),(90,133,0),(90,134,0),(90,144,0),(90,165,1),(91,145,0),(91,146,0),(91,147,0),(92,148,0),(93,162,1),(93,163,1),(93,164,1),(93,176,1),(94,27,1),(94,28,1),(94,166,1),(94,167,1),(96,157,1),(96,161,1),(97,167,1),(98,171,1),(98,172,1),(98,173,1),(98,174,1),(101,126,1),(101,171,1),(101,172,1),(101,173,1),(101,174,1),(101,177,1),(101,178,1),(101,179,1),(101,180,1),(101,181,1),(101,182,1),(101,183,1);
/*!40000 ALTER TABLE `catalog_category_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index`
--

DROP TABLE IF EXISTS `catalog_category_product_index`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_product_index` (
  `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `position` int(11) default NULL COMMENT 'Position',
  `is_parent` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Parent',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `visibility` smallint(5) unsigned NOT NULL default '0' COMMENT 'Visibility',
  PRIMARY KEY  (`category_id`,`product_id`,`store_id`),
  KEY `15D3C269665C74C2219037D534F4B0DC` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`),
  KEY `IDX_CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  CONSTRAINT `FK_CATALOG_CATEGORY_PRODUCT_INDEX_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_PRD_IDX_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CTGR_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_product_index`
--

LOCK TABLES `catalog_category_product_index` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index` DISABLE KEYS */;
INSERT INTO `catalog_category_product_index` VALUES (2,64,20009,0,1,2),(2,17,20004,0,1,4),(2,33,20004,0,1,4),(2,81,20004,0,1,4),(2,84,20004,0,1,4),(2,12,20005,0,1,4),(2,13,20005,0,1,4),(2,14,20005,0,1,4),(2,15,20005,0,1,4),(2,22,20005,0,1,4),(2,45,20005,0,1,4),(2,62,20005,0,1,4),(2,63,20005,0,1,4),(2,75,20005,0,1,4),(2,78,20005,0,1,4),(2,82,20005,0,1,4),(2,106,20005,0,1,4),(2,108,20005,0,1,4),(2,130,20005,0,1,4),(2,154,20005,0,1,4),(2,169,20005,0,1,4),(2,170,20005,0,1,4),(2,135,20006,0,1,4),(2,136,20006,0,1,4),(2,143,20006,0,1,4),(2,3,20007,0,1,4),(2,24,20007,0,1,4),(2,25,20007,0,1,4),(2,27,20007,0,1,4),(2,28,20007,0,1,4),(2,41,20007,0,1,4),(2,42,20007,0,1,4),(2,44,20007,0,1,4),(2,49,20007,0,1,4),(2,50,20007,0,1,4),(2,51,20007,0,1,4),(2,53,20007,0,1,4),(2,54,20007,0,1,4),(2,55,20007,0,1,4),(2,56,20007,0,1,4),(2,57,20007,0,1,4),(2,58,20007,0,1,4),(2,61,20007,0,1,4),(2,67,20007,0,1,4),(2,68,20007,0,1,4),(2,70,20007,0,1,4),(2,71,20007,0,1,4),(2,97,20007,0,1,4),(2,98,20007,0,1,4),(2,100,20007,0,1,4),(2,101,20007,0,1,4),(2,110,20007,0,1,4),(2,114,20007,0,1,4),(2,118,20007,0,1,4),(2,127,20007,0,1,4),(2,128,20007,0,1,4),(2,131,20007,0,1,4),(2,157,20007,0,1,4),(2,158,20007,0,1,4),(2,159,20007,0,1,4),(2,160,20007,0,1,4),(2,161,20007,0,1,4),(2,165,20007,0,1,4),(2,166,20007,0,1,4),(2,167,20007,0,1,4),(2,37,20009,0,1,4),(2,47,20009,0,1,4),(2,65,20009,0,1,4),(2,66,20009,0,1,4),(2,93,20011,0,1,4),(2,83,30007,0,1,4),(2,137,30009,0,1,4),(2,138,30009,0,1,4),(2,139,30009,0,1,4),(2,140,30009,0,1,4),(2,141,30009,0,1,4),(2,4,30010,0,1,4),(2,7,30010,0,1,4),(2,8,30010,0,1,4),(2,60,30010,0,1,4),(2,87,30010,0,1,4),(2,88,30010,0,1,4),(2,102,30010,0,1,4),(2,103,30010,0,1,4),(2,150,30010,0,1,4),(2,183,30010,0,1,4),(2,52,30013,0,1,4),(2,43,40008,0,1,4),(2,10,40009,0,1,4),(2,11,40009,0,1,4),(2,18,40009,0,1,4),(2,21,40009,0,1,4),(2,26,40009,0,1,4),(2,29,40009,0,1,4),(2,34,40009,0,1,4),(2,39,40009,0,1,4),(2,40,40009,0,1,4),(2,120,40009,0,1,4),(2,123,40009,0,1,4),(2,182,40009,0,1,4),(2,133,40012,0,1,4),(2,134,40012,0,1,4),(2,144,40012,0,1,4),(2,48,40013,0,1,4),(2,35,50011,0,1,4),(2,119,50011,0,1,4),(2,122,50011,0,1,4),(2,125,50011,0,1,4),(2,126,50011,0,1,4),(2,162,50011,0,1,4),(2,163,50011,0,1,4),(2,164,50011,0,1,4),(2,171,50011,0,1,4),(2,173,50011,0,1,4),(2,176,50011,0,1,4),(2,177,50011,0,1,4),(2,178,50011,0,1,4),(2,179,50011,0,1,4),(2,180,50011,0,1,4),(2,181,50011,0,1,4),(2,145,50015,0,1,4),(2,146,50015,0,1,4),(2,147,50015,0,1,4),(2,172,60013,0,1,4),(2,174,60013,0,1,4),(2,148,60018,0,1,4),(2,31,60019,0,1,4),(2,32,60019,0,1,4),(2,38,60019,0,1,4),(2,80,60019,0,1,4),(2,132,60019,0,1,4),(2,92,70017,0,1,4),(2,155,70022,0,1,4),(2,156,70022,0,1,4),(2,36,80017,0,1,4),(2,46,80017,0,1,4),(2,79,90019,0,1,4),(2,109,90019,0,1,4),(2,16,100021,0,1,4),(2,74,100021,0,1,4),(2,91,100021,0,1,4),(2,72,120025,0,1,4),(2,168,140029,0,1,4),(2,76,150031,0,1,4),(2,77,150031,0,1,4),(2,95,160033,0,1,4),(2,23,170035,0,1,4),(2,149,220044,0,1,4),(2,152,270055,0,1,4),(2,175,270055,0,1,4),(2,121,0,1,1,4),(2,151,0,1,1,4),(3,4,1,1,1,4),(3,7,1,1,1,4),(3,8,1,1,1,4),(3,76,1,1,1,4),(3,77,1,1,1,4),(3,101,1,1,1,4),(3,102,1,1,1,4),(3,103,1,1,1,4),(3,110,1,1,1,4),(3,118,1,1,1,4),(3,127,1,1,1,4),(3,128,1,1,1,4),(4,101,1,1,1,4),(4,110,1,1,1,4),(4,118,1,1,1,4),(4,127,1,1,1,4),(4,128,1,1,1,4),(5,4,1,1,1,4),(5,7,1,1,1,4),(5,8,1,1,1,4),(5,102,1,1,1,4),(5,103,1,1,1,4),(6,3,1,1,1,4),(6,41,1,1,1,4),(6,42,1,1,1,4),(6,95,1,1,1,4),(6,97,1,1,1,4),(6,98,1,1,1,4),(6,126,1,1,1,4),(7,11,1,1,1,4),(7,24,1,1,1,4),(7,25,1,1,1,4),(7,31,1,1,1,4),(7,32,1,1,1,4),(7,48,1,1,1,4),(7,53,1,1,1,4),(7,54,1,1,1,4),(7,82,1,1,1,4),(7,155,1,1,1,4),(7,156,1,1,1,4),(8,23,1,1,1,4),(8,48,1,1,1,4),(9,10,1,1,1,4),(9,26,1,1,1,4),(9,28,1,1,1,4),(9,62,1,1,1,4),(9,63,1,1,1,4),(9,132,1,1,1,4),(9,160,1,1,1,4),(9,166,1,1,1,4),(9,167,1,1,1,4),(9,52,2,1,1,4),(9,55,2,1,1,4),(9,56,2,1,1,4),(9,57,2,1,1,4),(9,114,2,1,1,4),(9,67,3,1,1,4),(9,68,3,1,1,4),(9,80,3,1,1,4),(9,88,3,1,1,4),(9,92,3,1,1,4),(9,158,3,1,1,4),(9,159,3,1,1,4),(9,87,4,1,1,4),(9,93,4,1,1,4),(9,125,4,1,1,4),(10,10,1,1,1,4),(10,11,1,1,1,4),(10,13,1,1,1,4),(10,18,1,1,1,4),(10,21,1,1,1,4),(10,22,1,1,1,4),(10,26,1,1,1,4),(10,29,1,1,1,4),(10,33,1,1,1,4),(10,34,1,1,1,4),(10,35,1,1,1,4),(10,38,1,1,1,4),(10,39,1,1,1,4),(10,40,1,1,1,4),(10,43,1,1,1,4),(10,45,1,1,1,4),(10,62,1,1,1,4),(10,63,1,1,1,4),(10,78,1,1,1,4),(10,106,1,1,1,4),(10,154,1,1,1,4),(10,170,1,1,1,4),(11,53,1,1,1,4),(11,54,1,1,1,4),(11,56,1,1,1,4),(11,57,1,1,1,4),(11,114,1,1,1,4),(11,168,1,1,1,4),(12,64,3,1,1,2),(12,12,1,1,1,4),(12,14,1,1,1,4),(12,26,1,1,1,4),(12,31,1,1,1,4),(12,32,1,1,1,4),(12,33,1,1,1,4),(12,36,1,1,1,4),(12,37,1,1,1,4),(12,43,1,1,1,4),(12,45,1,1,1,4),(12,46,1,1,1,4),(12,47,1,1,1,4),(12,83,1,1,1,4),(12,152,1,1,1,4),(12,157,1,1,1,4),(12,161,1,1,1,4),(12,169,1,1,1,4),(12,175,1,1,1,4),(12,60,2,1,1,4),(12,61,2,1,1,4),(12,78,2,1,1,4),(12,79,2,1,1,4),(12,88,2,1,1,4),(12,109,2,1,1,4),(12,160,2,1,1,4),(12,58,3,1,1,4),(12,66,3,1,1,4),(12,91,3,1,1,4),(12,48,4,1,1,4),(12,70,4,1,1,4),(12,81,4,1,1,4),(13,12,1,1,1,4),(13,13,1,1,1,4),(13,14,1,1,1,4),(13,108,1,1,1,4),(14,17,1,1,1,4),(14,33,1,1,1,4),(15,15,1,1,1,4),(15,16,1,1,1,4),(15,17,1,1,1,4),(15,18,1,1,1,4),(15,35,1,1,1,4),(15,38,1,1,1,4),(15,74,1,1,1,4),(15,75,1,1,1,4),(15,84,1,1,1,4),(15,91,1,1,1,4),(15,108,1,1,1,4),(15,131,1,1,1,4),(15,154,1,1,1,4),(15,170,1,1,1,4),(17,18,1,1,1,4),(17,21,1,1,1,4),(17,22,1,1,1,4),(17,29,1,1,1,4),(17,34,1,1,1,4),(17,35,1,1,1,4),(17,38,1,1,1,4),(17,39,1,1,1,4),(17,40,1,1,1,4),(17,42,1,1,1,4),(17,43,1,1,1,4),(17,72,1,1,1,4),(17,78,1,1,1,4),(17,91,1,1,1,4),(17,100,1,1,1,4),(17,106,1,1,1,4),(17,120,1,1,1,4),(17,122,1,1,1,4),(17,130,1,1,1,4),(17,182,1,1,1,4),(20,10,1,1,1,4),(20,26,1,1,1,4),(20,43,1,1,1,4),(20,45,1,1,1,4),(20,57,1,1,1,4),(20,62,1,1,1,4),(20,63,1,1,1,4),(20,114,1,1,1,4),(21,11,1,1,1,4),(21,31,1,1,1,4),(21,32,1,1,1,4),(21,48,1,1,1,4),(21,53,1,1,1,4),(21,54,1,1,1,4),(21,82,1,1,1,4),(22,24,1,1,1,4),(22,25,1,1,1,4),(22,53,1,1,1,4),(22,54,1,1,1,4),(22,82,1,1,1,4),(23,27,1,1,1,4),(23,28,1,1,1,4),(23,44,1,1,1,4),(23,51,1,1,1,4),(23,55,1,1,1,4),(23,56,1,1,1,4),(23,57,1,1,1,4),(23,114,1,1,1,4),(23,157,1,1,1,4),(23,160,1,1,1,4),(23,161,1,1,1,4),(23,166,1,1,1,4),(23,167,1,1,1,4),(24,64,0,1,1,2),(24,44,0,1,1,4),(24,45,0,1,1,4),(24,49,0,1,1,4),(24,50,0,1,1,4),(24,58,0,1,1,4),(24,65,0,1,1,4),(24,66,0,1,1,4),(24,67,0,1,1,4),(24,68,0,1,1,4),(24,158,1,1,1,4),(24,159,1,1,1,4),(25,60,1,1,1,4),(25,61,1,1,1,4),(25,83,1,1,1,4),(26,14,1,1,1,4),(26,70,1,1,1,4),(26,83,1,1,1,4),(27,70,1,1,1,4),(27,71,1,1,1,4),(33,64,1,1,1,2),(33,37,1,1,1,4),(33,45,1,1,1,4),(33,47,1,1,1,4),(33,58,1,1,1,4),(33,65,1,1,1,4),(33,66,1,1,1,4),(33,67,1,1,1,4),(33,68,1,1,1,4),(35,47,1,1,1,4),(40,36,1,1,1,4),(40,37,1,1,1,4),(40,46,1,1,1,4),(40,47,1,1,1,4),(40,48,1,1,1,4),(42,44,1,1,1,4),(42,49,1,1,1,4),(42,50,1,1,1,4),(42,52,1,1,1,4),(42,58,1,1,1,4),(42,65,1,1,1,4),(42,67,1,1,1,4),(42,68,1,1,1,4),(43,36,1,1,1,4),(43,37,1,1,1,4),(43,38,1,1,1,4),(43,46,1,1,1,4),(43,47,1,1,1,4),(43,48,1,1,1,4),(43,78,1,1,1,4),(43,79,1,1,1,4),(43,106,1,1,1,4),(43,109,1,1,1,4),(44,45,1,1,1,4),(44,62,1,1,1,4),(44,63,1,1,1,4),(45,61,1,1,1,4),(47,81,1,1,1,4),(47,82,1,1,1,4),(48,67,1,1,1,4),(48,68,1,1,1,4),(48,93,1,1,1,4),(51,21,1,1,1,4),(51,34,1,1,1,4),(51,35,1,1,1,4),(51,51,1,1,1,4),(51,52,1,1,1,4),(51,118,1,1,1,4),(51,119,1,1,1,4),(51,120,1,1,1,4),(51,122,1,1,1,4),(51,123,1,1,1,4),(51,125,1,1,1,4),(51,126,1,1,1,4),(51,127,1,1,1,4),(51,130,1,1,1,4),(51,154,1,1,1,4),(51,162,1,1,1,4),(51,163,1,1,1,4),(51,164,1,1,1,4),(51,170,1,1,1,4),(51,171,1,1,1,4),(51,173,1,1,1,4),(51,176,1,1,1,4),(51,177,1,1,1,4),(51,178,1,1,1,4),(51,179,1,1,1,4),(51,180,1,1,1,4),(51,181,1,1,1,4),(51,182,1,1,1,4),(52,65,1,1,1,4),(52,67,1,1,1,4),(52,92,1,1,1,4),(52,93,1,1,1,4),(53,3,1,1,1,4),(53,41,1,1,1,4),(53,42,1,1,1,4),(53,97,1,1,1,4),(53,98,1,1,1,4),(54,100,1,1,1,4),(56,108,1,1,1,4),(56,131,1,1,1,4),(58,48,1,1,1,4),(58,53,1,1,1,4),(58,54,1,1,1,4),(61,51,1,1,1,4),(61,52,1,1,1,4),(61,80,1,1,1,4),(61,125,1,1,1,4),(61,132,1,1,1,4),(62,82,1,1,1,4),(63,43,0,1,1,4),(63,10,1,1,1,4),(63,11,1,1,1,4),(63,13,1,1,1,4),(63,18,1,1,1,4),(63,21,1,1,1,4),(63,22,1,1,1,4),(63,26,1,1,1,4),(63,29,1,1,1,4),(63,33,1,1,1,4),(63,34,1,1,1,4),(63,39,1,1,1,4),(63,40,1,1,1,4),(63,42,1,1,1,4),(63,45,1,1,1,4),(63,62,1,1,1,4),(63,63,1,1,1,4),(63,78,1,1,1,4),(63,120,1,1,1,4),(63,123,1,1,1,4),(63,130,1,1,1,4),(63,154,1,1,1,4),(63,182,1,1,1,4),(64,17,0,1,1,4),(64,33,0,1,1,4),(64,81,0,1,1,4),(64,84,0,1,1,4),(64,12,1,1,1,4),(64,13,1,1,1,4),(64,14,1,1,1,4),(64,15,1,1,1,4),(64,22,1,1,1,4),(64,45,1,1,1,4),(64,62,1,1,1,4),(64,63,1,1,1,4),(64,75,1,1,1,4),(64,78,1,1,1,4),(64,82,1,1,1,4),(64,106,1,1,1,4),(64,108,1,1,1,4),(64,130,1,1,1,4),(64,154,1,1,1,4),(64,169,1,1,1,4),(64,170,1,1,1,4),(65,60,0,1,1,4),(65,61,0,1,1,4),(65,149,0,1,1,4),(72,137,1,1,1,4),(72,138,1,1,1,4),(72,139,1,1,1,4),(72,140,1,1,1,4),(72,141,1,1,1,4),(77,87,1,1,1,4),(77,88,1,1,1,4),(77,150,1,1,1,4),(77,183,1,1,1,4),(78,155,1,1,1,4),(78,156,1,1,1,4),(79,64,1,1,1,2),(79,45,1,1,1,4),(79,49,1,1,1,4),(79,50,1,1,1,4),(79,58,1,1,1,4),(79,66,1,1,1,4),(79,67,1,1,1,4),(79,68,1,1,1,4),(79,158,1,1,1,4),(79,159,1,1,1,4),(80,44,1,1,1,4),(80,49,1,1,1,4),(80,50,1,1,1,4),(80,58,1,1,1,4),(80,67,1,1,1,4),(80,68,1,1,1,4),(80,158,1,1,1,4),(80,159,1,1,1,4),(81,64,1,1,1,2),(81,45,1,1,1,4),(81,66,1,1,1,4),(83,160,1,1,1,4),(83,161,1,1,1,4),(84,51,1,1,1,4),(84,52,1,1,1,4),(84,80,1,1,1,4),(84,125,1,1,1,4),(86,87,0,1,1,4),(86,88,0,1,1,4),(86,150,0,1,1,4),(86,183,1,1,1,4),(87,133,0,1,1,4),(87,134,0,1,1,4),(87,135,0,1,1,4),(87,136,0,1,1,4),(87,137,0,1,1,4),(87,138,0,1,1,4),(87,139,0,1,1,4),(87,140,0,1,1,4),(87,141,0,1,1,4),(87,143,0,1,1,4),(87,144,0,1,1,4),(87,145,0,1,1,4),(87,146,0,1,1,4),(87,147,0,1,1,4),(87,148,0,1,1,4),(87,165,1,1,1,4),(88,135,0,1,1,4),(88,136,0,1,1,4),(88,143,0,1,1,4),(88,165,1,1,1,4),(89,137,0,1,1,4),(89,138,0,1,1,4),(89,139,0,1,1,4),(89,140,0,1,1,4),(89,141,0,1,1,4),(90,133,0,1,1,4),(90,134,0,1,1,4),(90,144,0,1,1,4),(90,165,1,1,1,4),(91,145,0,1,1,4),(91,146,0,1,1,4),(91,147,0,1,1,4),(92,148,0,1,1,4),(93,162,1,1,1,4),(93,163,1,1,1,4),(93,164,1,1,1,4),(93,176,1,1,1,4),(94,27,1,1,1,4),(94,28,1,1,1,4),(94,166,1,1,1,4),(94,167,1,1,1,4),(96,157,1,1,1,4),(96,161,1,1,1,4),(97,167,1,1,1,4),(98,171,1,1,1,4),(98,172,1,1,1,4),(98,173,1,1,1,4),(98,174,1,1,1,4),(101,126,1,1,1,4),(101,171,1,1,1,4),(101,172,1,1,1,4),(101,173,1,1,1,4),(101,174,1,1,1,4),(101,177,1,1,1,4),(101,178,1,1,1,4),(101,179,1,1,1,4),(101,180,1,1,1,4),(101,181,1,1,1,4),(101,182,1,1,1,4),(101,183,1,1,1,4);
/*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index_enbl_idx`
--

DROP TABLE IF EXISTS `catalog_category_product_index_enbl_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_product_index_enbl_idx` (
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `visibility` int(10) unsigned NOT NULL default '0' COMMENT 'Visibility',
  KEY `IDX_CAT_CTGR_PRD_IDX_ENBL_IDX_PRD_ID_VISIBILITY` (`product_id`,`visibility`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Enabled Indexer Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_product_index_enbl_idx`
--

LOCK TABLES `catalog_category_product_index_enbl_idx` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_enbl_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_enbl_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index_enbl_tmp`
--

DROP TABLE IF EXISTS `catalog_category_product_index_enbl_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_product_index_enbl_tmp` (
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `visibility` int(10) unsigned NOT NULL default '0' COMMENT 'Visibility',
  KEY `IDX_CAT_CTGR_PRD_IDX_ENBL_TMP_PRD_ID_VISIBILITY` (`product_id`,`visibility`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Enabled Indexer Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_product_index_enbl_tmp`
--

LOCK TABLES `catalog_category_product_index_enbl_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_enbl_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_enbl_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index_idx`
--

DROP TABLE IF EXISTS `catalog_category_product_index_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_product_index_idx` (
  `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `position` int(11) NOT NULL default '0' COMMENT 'Position',
  `is_parent` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Parent',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `visibility` smallint(5) unsigned NOT NULL default '0' COMMENT 'Visibility',
  KEY `IDX_CAT_CTGR_PRD_IDX_IDX_PRD_ID_CTGR_ID_STORE_ID` (`product_id`,`category_id`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Indexer Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_product_index_idx`
--

LOCK TABLES `catalog_category_product_index_idx` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index_tmp`
--

DROP TABLE IF EXISTS `catalog_category_product_index_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_category_product_index_tmp` (
  `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `position` int(11) NOT NULL default '0' COMMENT 'Position',
  `is_parent` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Parent',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `visibility` smallint(5) unsigned NOT NULL default '0' COMMENT 'Visibility',
  KEY `IDX_CAT_CTGR_PRD_IDX_TMP_PRD_ID_CTGR_ID_STORE_ID` (`product_id`,`category_id`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Indexer Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_category_product_index_tmp`
--

LOCK TABLES `catalog_category_product_index_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_compare_item`
--

DROP TABLE IF EXISTS `catalog_compare_item`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_compare_item` (
  `catalog_compare_item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Compare Item ID',
  `visitor_id` int(10) unsigned NOT NULL default '0' COMMENT 'Visitor ID',
  `customer_id` int(10) unsigned default NULL COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `store_id` smallint(5) unsigned default NULL COMMENT 'Store ID',
  PRIMARY KEY  (`catalog_compare_item_id`),
  KEY `IDX_CATALOG_COMPARE_ITEM_CUSTOMER_ID` (`customer_id`),
  KEY `IDX_CATALOG_COMPARE_ITEM_PRODUCT_ID` (`product_id`),
  KEY `IDX_CATALOG_COMPARE_ITEM_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  KEY `IDX_CATALOG_COMPARE_ITEM_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `IDX_CATALOG_COMPARE_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOG_COMPARE_ITEM_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_COMPARE_ITEM_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_CMP_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=632 DEFAULT CHARSET=utf8 COMMENT='Catalog Compare Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_compare_item`
--

LOCK TABLES `catalog_compare_item` WRITE;
/*!40000 ALTER TABLE `catalog_compare_item` DISABLE KEYS */;
INSERT INTO `catalog_compare_item` VALUES (4,22,0,6,1),(6,109,0,7,1),(7,325,0,53,1),(8,416,0,52,1),(9,417,0,51,1),(10,418,0,64,1),(11,417,0,18,1),(12,416,0,22,1),(13,419,0,82,1),(14,418,0,55,1),(15,417,0,83,1),(16,416,0,45,1),(17,418,0,47,1),(18,416,0,44,1),(19,416,0,37,1),(20,418,0,38,1),(21,417,0,32,1),(22,418,0,27,1),(23,418,0,98,1),(24,416,0,41,1),(25,419,0,17,1),(26,418,0,54,1),(27,416,0,92,1),(28,417,0,24,1),(29,419,0,79,1),(30,418,0,35,1),(31,416,0,82,1),(32,416,0,26,1),(33,418,0,3,1),(34,418,0,14,1),(35,417,0,48,1),(36,418,0,80,1),(37,418,0,7,1),(38,416,0,76,1),(39,418,0,33,1),(40,417,0,54,1),(41,418,0,32,1),(42,416,0,18,1),(43,417,0,56,1),(44,417,0,70,1),(45,418,0,48,1),(46,416,0,21,1),(47,418,0,68,1),(48,418,0,17,1),(49,416,0,57,1),(50,418,0,46,1),(51,416,0,36,1),(52,416,0,78,1),(53,416,0,13,1),(54,416,0,53,1),(55,416,0,71,1),(56,668,0,37,1),(57,2820,0,92,1),(58,2822,0,44,1),(59,2822,0,96,1),(60,2822,0,31,1),(61,2820,0,83,1),(62,2820,0,79,1),(63,2822,0,18,1),(64,2822,0,98,1),(65,2820,0,8,1),(101,2826,0,51,1),(102,2826,0,6,1),(104,2826,0,41,1),(105,2826,0,79,1),(108,2826,0,62,1),(110,2826,0,24,1),(112,2827,0,7,1),(113,2827,0,45,1),(114,2827,0,33,1),(115,2827,0,80,1),(116,2826,0,82,1),(117,2827,0,65,1),(118,2827,0,8,1),(119,2827,0,79,1),(120,2827,0,83,1),(121,2827,0,92,1),(122,2826,0,48,1),(123,2828,0,49,1),(124,2826,0,31,1),(125,2826,0,44,1),(126,2826,0,96,1),(127,2826,0,26,1),(128,2931,0,29,1),(129,2977,0,52,1),(130,2977,0,45,1),(131,2977,0,65,1),(132,2977,0,90,1),(133,2977,0,24,1),(134,2977,0,80,1),(135,2977,0,98,1),(136,2977,0,102,1),(137,2977,0,18,1),(138,7335,0,19,1),(139,8571,0,92,1),(140,8571,0,37,1),(141,8571,0,49,1),(142,8571,0,27,1),(143,13053,0,108,1),(144,13435,0,102,1),(180,16858,0,84,1),(181,16856,0,28,1),(182,16856,0,88,1),(183,16858,0,10,1),(184,16856,0,99,1),(185,16858,0,50,1),(186,16856,0,77,1),(188,16858,0,29,1),(222,16864,0,54,1),(225,16864,0,10,1),(226,16864,0,50,1),(228,16864,0,19,1),(248,16863,0,55,1),(249,16863,0,97,1),(250,17054,0,51,1),(251,17054,0,111,1),(252,17054,0,52,1),(253,17054,0,35,1),(254,17054,0,95,1),(255,17054,0,28,1),(256,17054,0,16,1),(257,17054,0,3,1),(258,22078,0,22,1),(259,22531,0,113,1),(260,22565,0,29,1),(261,23290,0,16,1),(262,23293,0,11,1),(263,23290,0,83,1),(264,23290,0,109,1),(265,23293,0,67,1),(266,23290,0,99,1),(267,23290,0,74,1),(268,23290,0,114,1),(269,23293,0,60,1),(296,23299,0,34,1),(297,23299,0,37,1),(301,23299,0,13,1),(302,23299,0,63,1),(305,23299,0,41,1),(309,23301,0,35,1),(311,23301,0,3,1),(314,23301,0,88,1),(317,23299,0,22,1),(319,23301,0,7,1),(320,23301,0,45,1),(321,23301,0,33,1),(323,23301,0,32,1),(324,23301,0,65,1),(325,23299,0,82,1),(332,23300,0,13,1),(334,23300,0,80,1),(336,23300,0,55,1),(346,23298,0,116,1),(347,25151,0,28,1),(348,27867,0,51,1),(349,27868,0,15,1),(350,27867,0,10,1),(351,27867,0,21,1),(352,27866,0,103,1),(353,27866,0,81,1),(354,27867,0,116,1),(355,27865,0,45,1),(365,27874,0,114,1),(366,27874,0,58,1),(368,27874,0,83,1),(371,27875,0,35,1),(374,27875,0,47,1),(376,27875,0,65,1),(377,27874,0,45,1),(378,27875,0,21,1),(379,27875,0,116,1),(380,27874,0,75,1),(384,27875,0,10,1),(388,27875,0,98,1),(394,27874,0,54,1),(395,27874,0,116,1),(397,27875,0,54,1),(398,27874,0,15,1),(402,27875,0,3,1),(403,27874,0,80,1),(404,27875,0,88,1),(409,27874,0,52,1),(412,27875,0,7,1),(413,27875,0,45,1),(415,27875,0,33,1),(416,27875,0,32,1),(417,27873,0,13,1),(422,27875,0,27,1),(423,27875,0,48,1),(425,27872,0,18,1),(426,27872,0,37,1),(427,27872,0,103,1),(428,27872,0,97,1),(429,27872,0,10,1),(430,30943,0,116,1),(431,30943,0,21,1),(432,30943,0,31,1),(433,31041,0,111,1),(434,31041,0,34,1),(435,31041,0,79,1),(436,31041,0,98,1),(437,31041,0,39,1),(438,31041,0,78,1),(439,35482,0,11,1),(440,35482,0,51,1),(441,35482,0,31,1),(442,35482,0,7,1),(443,35482,0,55,1),(444,40122,0,88,1),(445,40122,0,87,1),(446,40122,0,100,1),(447,40122,0,79,1),(448,40124,0,90,1),(449,40124,0,101,1),(450,40124,0,26,1),(451,40124,0,17,1),(453,40132,0,116,1),(455,40132,0,58,1),(456,40132,0,51,1),(457,40133,0,21,1),(458,40132,0,67,1),(459,40132,0,114,1),(460,40132,0,72,1),(461,40132,0,47,1),(466,40132,0,83,1),(467,40132,0,65,1),(469,40132,0,32,1),(470,40131,0,37,1),(471,40131,0,13,1),(472,40131,0,63,1),(473,40132,0,98,1),(474,40131,0,41,1),(475,40132,0,62,1),(477,40132,0,54,1),(478,40131,0,26,1),(479,40133,0,121,1),(481,40133,0,49,1),(482,40133,0,13,1),(483,48597,0,13,1),(484,48597,0,3,1),(485,48604,0,97,1),(486,48644,0,47,1),(487,51110,0,26,1),(488,52605,0,131,1),(489,58276,NULL,108,1),(490,58285,NULL,131,1),(491,58285,NULL,37,1),(492,58285,NULL,53,1),(493,58285,NULL,64,1),(494,59008,NULL,39,1),(495,69846,6,87,1),(496,72924,NULL,137,1),(497,72923,NULL,140,1),(514,72932,NULL,103,1),(515,72932,NULL,98,1),(521,72933,NULL,31,1),(522,72933,NULL,78,1),(523,72933,NULL,47,1),(524,79017,NULL,14,1),(525,79017,NULL,43,1),(526,79017,NULL,67,1),(527,79017,NULL,29,1),(528,79017,NULL,77,1),(529,79017,NULL,81,1),(530,79017,NULL,91,1),(531,79017,NULL,34,1),(532,79017,NULL,82,1),(533,92698,NULL,21,1),(534,92698,NULL,7,1),(535,97435,NULL,28,1),(536,97435,NULL,55,1),(537,97435,NULL,58,1),(538,97435,NULL,81,1),(539,97435,NULL,4,1),(540,111034,NULL,146,1),(541,124801,NULL,128,1),(542,124801,NULL,101,1),(543,125031,NULL,28,1),(544,125031,NULL,157,1),(545,125855,NULL,157,1),(546,125855,NULL,161,1),(547,125855,NULL,27,1),(548,125855,NULL,28,1),(549,151436,NULL,127,1),(550,164806,NULL,98,1),(551,164808,NULL,164,1),(552,164808,NULL,76,1),(553,164803,NULL,128,1),(554,164808,NULL,131,1),(555,164803,NULL,135,1),(556,164806,NULL,42,1),(557,164803,NULL,46,1),(558,164866,NULL,164,1),(591,164864,NULL,128,1),(592,164864,NULL,54,1),(593,164864,NULL,50,1),(594,164864,NULL,88,1),(595,164864,NULL,14,1),(596,164867,NULL,4,1),(597,172712,NULL,125,1),(598,172712,NULL,127,1),(599,172712,NULL,134,1),(600,172712,NULL,159,1),(601,172712,NULL,163,1),(602,172712,NULL,42,1),(603,172712,NULL,56,1),(604,172712,NULL,8,1),(605,172712,NULL,98,1),(606,181417,NULL,27,1),(607,228913,NULL,179,1),(608,261351,NULL,181,1),(609,287355,NULL,164,1),(610,287355,NULL,121,1),(611,287355,NULL,18,1),(612,287355,NULL,119,1),(613,287355,NULL,11,1),(614,287355,NULL,138,1),(615,287355,NULL,87,1),(616,287355,NULL,180,1),(617,287355,NULL,150,1),(618,287355,NULL,83,1),(619,288058,NULL,80,1),(620,299125,NULL,78,1),(621,299125,NULL,40,1),(622,299125,NULL,120,1),(623,299125,NULL,178,1),(624,299125,NULL,168,1),(625,299125,NULL,12,1),(626,299125,NULL,123,1),(627,299125,NULL,145,1),(628,299125,NULL,23,1),(629,300359,21,38,1),(630,309978,NULL,75,1),(631,318763,NULL,179,1);
/*!40000 ALTER TABLE `catalog_compare_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_eav_attribute`
--

DROP TABLE IF EXISTS `catalog_eav_attribute`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_eav_attribute` (
  `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID',
  `frontend_input_renderer` varchar(255) default NULL COMMENT 'Frontend Input Renderer',
  `is_global` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Global',
  `is_visible` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Visible',
  `is_searchable` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Searchable',
  `is_filterable` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Filterable',
  `is_comparable` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Comparable',
  `is_visible_on_front` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Visible On Front',
  `is_html_allowed_on_front` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is HTML Allowed On Front',
  `is_used_for_price_rules` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Used For Price Rules',
  `is_filterable_in_search` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Filterable In Search',
  `used_in_product_listing` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Used In Product Listing',
  `used_for_sort_by` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Used For Sorting',
  `is_configurable` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Configurable',
  `apply_to` varchar(255) default NULL COMMENT 'Apply To',
  `is_visible_in_advanced_search` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Visible In Advanced Search',
  `position` int(11) NOT NULL default '0' COMMENT 'Position',
  `is_wysiwyg_enabled` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is WYSIWYG Enabled',
  `is_used_for_promo_rules` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Used For Promo Rules',
  PRIMARY KEY  (`attribute_id`),
  KEY `IDX_CATALOG_EAV_ATTRIBUTE_USED_FOR_SORT_BY` (`used_for_sort_by`),
  KEY `IDX_CATALOG_EAV_ATTRIBUTE_USED_IN_PRODUCT_LISTING` (`used_in_product_listing`),
  CONSTRAINT `FK_CATALOG_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog EAV Attribute Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_eav_attribute`
--

LOCK TABLES `catalog_eav_attribute` WRITE;
/*!40000 ALTER TABLE `catalog_eav_attribute` DISABLE KEYS */;
INSERT INTO `catalog_eav_attribute` VALUES (33,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(34,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(35,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(36,'',0,1,0,0,0,0,1,1,0,0,0,1,'',0,0,1,1),(37,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(38,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(39,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(40,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(41,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(42,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(43,'',1,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(44,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(45,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(46,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(47,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(48,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(49,'',0,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(50,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(52,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(53,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(54,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(55,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(56,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(57,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(58,'adminhtml/catalog_category_helper_sortby_available',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(59,'adminhtml/catalog_category_helper_sortby_default',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(60,'',0,1,1,0,0,0,0,1,0,1,1,1,'',1,0,0,1),(61,'',0,1,1,0,1,0,1,1,0,0,0,1,'',1,0,1,1),(62,'',0,1,1,0,1,0,1,1,0,1,0,1,'',1,0,1,1),(63,'',1,1,1,0,1,0,0,1,0,0,0,1,'',1,0,0,1),(64,'',2,1,1,1,0,0,0,1,0,1,1,1,'simple,configurable,virtual,bundle,downloadable',1,0,0,1),(65,'',2,1,0,0,0,0,0,1,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,1),(66,'',2,1,0,0,0,0,0,1,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,1),(67,'',2,1,0,0,0,0,0,1,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,1),(68,'',2,1,0,0,0,0,0,1,0,0,0,1,'simple,virtual,downloadable',0,0,0,1),(69,'',1,1,0,0,0,0,0,1,0,0,0,1,'simple,bundle',0,0,0,1),(70,'',1,1,1,1,1,0,0,1,0,0,0,1,'simple',1,0,0,1),(71,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(72,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(73,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(74,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(75,'',0,1,0,0,0,0,0,1,0,1,0,1,'',0,0,0,1),(76,'',0,1,0,0,0,0,0,1,0,1,0,1,'',0,0,0,1),(77,'',1,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(78,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(79,'',2,1,0,0,0,0,0,0,0,0,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(80,'',1,1,1,1,1,0,0,1,0,0,0,1,'simple',1,0,0,1),(81,'',2,1,0,0,0,0,0,1,0,1,0,1,'',0,0,0,1),(82,'',2,1,0,0,0,0,0,1,0,1,0,1,'',0,0,0,1),(83,'',1,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(84,'',2,1,1,0,0,0,0,1,0,1,0,1,'',0,0,0,1),(85,'',2,1,1,0,0,0,0,1,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',1,0,0,1),(86,'',0,1,0,0,0,0,0,1,0,1,0,1,'',0,0,0,1),(87,'',0,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(88,'',0,0,0,0,0,0,0,1,0,0,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,1),(89,'',1,1,0,0,0,0,0,1,0,0,0,0,'simple,virtual',0,0,0,1),(90,'',1,1,0,0,0,0,0,1,0,0,0,0,'simple,virtual',0,0,0,1),(91,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(92,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(93,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(94,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(95,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(96,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(98,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(99,'',1,0,0,0,0,0,0,1,0,1,0,1,'',0,0,0,1),(100,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(101,'',0,0,0,0,0,0,0,1,0,1,0,0,'',0,0,0,1),(102,'',0,0,0,0,0,0,0,1,0,1,0,0,'',0,0,0,1),(103,'',0,0,0,0,0,0,0,1,0,1,0,0,'',0,0,0,1),(104,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(105,'',1,0,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(106,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,1),(107,'',1,1,0,0,0,0,0,1,0,0,0,0,'',0,0,0,0),(108,'giftmessage/adminhtml_product_helper_form_config',1,1,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0),(109,'',1,0,0,0,0,0,0,1,0,1,0,0,'bundle',0,0,0,0),(110,'',1,0,0,0,0,0,0,1,0,0,0,0,'bundle',0,0,0,0),(111,'',1,0,0,0,0,0,0,1,0,1,0,0,'bundle',0,0,0,0),(112,'',1,1,0,0,0,0,0,1,0,1,0,0,'bundle',0,0,0,0),(113,'',1,0,0,0,0,0,0,1,0,1,0,0,'bundle',0,0,0,0),(114,'',1,0,0,0,0,0,0,1,0,1,0,0,'downloadable',0,0,0,0),(115,'',0,0,0,0,0,0,0,1,0,0,0,0,'downloadable',0,0,0,0),(116,'',0,0,0,0,0,0,0,1,0,0,0,0,'downloadable',0,0,0,0),(117,'',1,0,0,0,0,0,0,1,0,1,0,0,'downloadable',0,0,0,0),(118,NULL,1,1,0,0,0,0,1,0,0,0,0,1,'',0,0,0,0),(121,NULL,1,1,1,1,1,0,1,0,0,0,0,1,'',1,0,0,1),(122,'',0,1,0,0,0,0,0,1,0,0,0,1,'',0,0,0,0),(123,NULL,0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(124,NULL,0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(125,'adminhtml/catalog_category_helper_pricestep',0,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(126,NULL,2,1,0,0,0,0,0,0,0,0,0,0,'simple,configurable,bundle,grouped',0,0,0,0),(127,'adminhtml/catalog_product_helper_form_msrp_enabled',2,1,0,0,0,0,0,0,0,1,0,1,'simple,bundle,configurable,virtual,downloadable',0,0,0,0),(128,'adminhtml/catalog_product_helper_form_msrp_price',2,1,0,0,0,0,0,0,0,1,0,1,'simple,bundle,configurable,virtual,downloadable',0,0,0,0),(129,NULL,2,1,0,0,0,0,0,0,0,1,0,1,'simple,bundle,configurable,virtual,downloadable',0,0,0,0),(130,NULL,1,1,0,0,0,0,0,0,0,1,0,0,NULL,0,0,0,0);
/*!40000 ALTER TABLE `catalog_eav_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_option`
--

DROP TABLE IF EXISTS `catalog_product_bundle_option`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_bundle_option` (
  `option_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Id',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id',
  `required` smallint(5) unsigned NOT NULL default '0' COMMENT 'Required',
  `position` int(10) unsigned NOT NULL default '0' COMMENT 'Position',
  `type` varchar(255) default NULL COMMENT 'Type',
  PRIMARY KEY  (`option_id`),
  KEY `IDX_CATALOG_PRODUCT_BUNDLE_OPTION_PARENT_ID` (`parent_id`),
  CONSTRAINT `FK_CAT_PRD_BNDL_OPT_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Option';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_bundle_option`
--

LOCK TABLES `catalog_product_bundle_option` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_option` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_option_value`
--

DROP TABLE IF EXISTS `catalog_product_bundle_option_value`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_bundle_option_value` (
  `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value Id',
  `option_id` int(10) unsigned NOT NULL COMMENT 'Option Id',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  `title` varchar(255) default NULL COMMENT 'Title',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CATALOG_PRODUCT_BUNDLE_OPTION_VALUE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  CONSTRAINT `FK_CAT_PRD_BNDL_OPT_VAL_OPT_ID_CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Option Value';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_bundle_option_value`
--

LOCK TABLES `catalog_product_bundle_option_value` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_option_value` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_option_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_price_index`
--

DROP TABLE IF EXISTS `catalog_product_bundle_price_index`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_bundle_price_index` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id',
  `min_price` decimal(12,4) NOT NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) NOT NULL COMMENT 'Max Price',
  PRIMARY KEY  (`entity_id`,`website_id`,`customer_group_id`),
  KEY `IDX_CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_WEBSITE_ID` (`website_id`),
  KEY `IDX_CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `FK_CAT_PRD_BNDL_PRICE_IDX_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_BNDL_PRICE_IDX_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_BNDL_PRICE_IDX_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Price Index';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_bundle_price_index`
--

LOCK TABLES `catalog_product_bundle_price_index` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_price_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_price_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_selection`
--

DROP TABLE IF EXISTS `catalog_product_bundle_selection`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_bundle_selection` (
  `selection_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Selection Id',
  `option_id` int(10) unsigned NOT NULL COMMENT 'Option Id',
  `parent_product_id` int(10) unsigned NOT NULL COMMENT 'Parent Product Id',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `position` int(10) unsigned NOT NULL default '0' COMMENT 'Position',
  `is_default` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Default',
  `selection_price_type` smallint(5) unsigned NOT NULL default '0' COMMENT 'Selection Price Type',
  `selection_price_value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Selection Price Value',
  `selection_qty` decimal(12,4) default NULL COMMENT 'Selection Qty',
  `selection_can_change_qty` smallint(6) NOT NULL default '0' COMMENT 'Selection Can Change Qty',
  PRIMARY KEY  (`selection_id`),
  KEY `IDX_CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION_ID` (`option_id`),
  KEY `IDX_CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_CAT_PRD_BNDL_SELECTION_OPT_ID_CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_BNDL_SELECTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_bundle_selection`
--

LOCK TABLES `catalog_product_bundle_selection` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_selection` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_selection` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_selection_price`
--

DROP TABLE IF EXISTS `catalog_product_bundle_selection_price`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_bundle_selection_price` (
  `selection_id` int(10) unsigned NOT NULL COMMENT 'Selection Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `selection_price_type` smallint(5) unsigned NOT NULL default '0' COMMENT 'Selection Price Type',
  `selection_price_value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Selection Price Value',
  PRIMARY KEY  (`selection_id`,`website_id`),
  KEY `IDX_CATALOG_PRODUCT_BUNDLE_SELECTION_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_CAT_PRD_BNDL_SELECTION_PRICE_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_DCF37523AA05D770A70AA4ED7C2616E4` FOREIGN KEY (`selection_id`) REFERENCES `catalog_product_bundle_selection` (`selection_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection Price';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_bundle_selection_price`
--

LOCK TABLES `catalog_product_bundle_selection_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_selection_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_selection_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_bundle_stock_index`
--

DROP TABLE IF EXISTS `catalog_product_bundle_stock_index`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_bundle_stock_index` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id',
  `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id',
  `stock_status` smallint(6) default '0' COMMENT 'Stock Status',
  PRIMARY KEY  (`entity_id`,`stock_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Stock Index';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_bundle_stock_index`
--

LOCK TABLES `catalog_product_bundle_stock_index` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_stock_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_bundle_stock_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_enabled_index`
--

DROP TABLE IF EXISTS `catalog_product_enabled_index`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_enabled_index` (
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `visibility` smallint(5) unsigned NOT NULL default '0' COMMENT 'Visibility',
  PRIMARY KEY  (`product_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENABLED_INDEX_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENABLED_INDEX_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENABLED_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Visibility Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_enabled_index`
--

LOCK TABLES `catalog_product_enabled_index` WRITE;
/*!40000 ALTER TABLE `catalog_product_enabled_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_enabled_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity`
--

DROP TABLE IF EXISTS `catalog_product_entity`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_entity` (
  `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity ID',
  `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Set ID',
  `type_id` varchar(32) NOT NULL default 'simple' COMMENT 'Type ID',
  `sku` varchar(64) default NULL COMMENT 'SKU',
  `has_options` smallint(6) NOT NULL default '0' COMMENT 'Has Options',
  `required_options` smallint(5) unsigned NOT NULL default '0' COMMENT 'Required Options',
  `created_at` timestamp NULL default NULL COMMENT 'Creation Time',
  `updated_at` timestamp NULL default NULL COMMENT 'Update Time',
  PRIMARY KEY  (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_SKU` (`sku`),
  CONSTRAINT `FK_CAT_PRD_ENTT_ATTR_SET_ID_EAV_ATTR_SET_ATTR_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=184 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_entity`
--

LOCK TABLES `catalog_product_entity` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity` DISABLE KEYS */;
INSERT INTO `catalog_product_entity` VALUES (3,4,4,'simple','Tryfan300DLBlack',1,1,'2010-10-17 22:08:53','2011-12-01 12:43:44'),(4,4,4,'simple','35LCamo',0,0,'2010-10-17 22:12:34','2011-12-01 12:47:41'),(6,4,4,'simple','95CamoShirt',1,1,'2010-10-17 22:20:09','2011-07-29 08:36:29'),(7,4,14,'simple','Forces 25 litre camo ',0,0,'2010-10-18 22:21:52','2011-12-29 15:10:14'),(8,4,14,'simple','forces25camo',0,0,'2010-10-18 22:23:11','2011-12-01 13:02:16'),(10,4,4,'simple','Cadet Assault Boot',1,1,'2010-10-23 09:52:50','2012-01-04 13:12:12'),(11,4,4,'simple','Army ponchos',1,1,'2010-10-23 10:00:38','2012-01-06 09:33:47'),(12,4,4,'simple','Camo T-Shirt',1,1,'2010-10-23 10:10:09','2011-12-01 14:56:09'),(13,4,4,'simple','Olive T-Shirt',1,1,'2010-10-23 10:14:43','2011-12-01 14:52:21'),(14,4,4,'simple','Commando Sweaters',1,1,'2010-10-23 10:21:52','2011-12-01 14:49:22'),(15,4,4,'simple','kids Camo Jacket',1,1,'2010-10-23 10:29:12','2011-12-29 14:32:39'),(16,4,4,'simple','kids Camo Jackets age13/14 Years',0,0,'2010-10-23 10:33:16','2011-12-29 14:31:16'),(17,4,4,'simple','Kids Camo  trousers',1,1,'2010-10-23 10:40:01','2011-12-29 14:30:34'),(18,4,4,'simple','Pistol Belts',0,0,'2010-10-23 10:47:52','2011-12-01 14:42:01'),(19,4,4,'simple','Kids -ghillie -Suits',1,1,'2010-10-23 12:21:46','2011-04-13 11:13:44'),(20,4,4,'simple','Ghilliesuits',1,1,'2010-10-23 12:27:46','2011-07-13 12:28:59'),(21,4,4,'simple','Messtins',0,0,'2010-10-23 12:35:53','2011-12-01 14:37:58'),(22,4,4,'simple','95 shirts grade 1',1,1,'2010-10-23 12:55:28','2011-12-29 14:29:05'),(23,4,4,'simple','Softi Elite',1,1,'2010-10-23 13:20:52','2011-12-01 14:34:59'),(24,4,4,'simple','Pakaway jkt',1,1,'2010-10-25 07:55:18','2011-12-01 14:31:51'),(25,4,4,'simple','Pakaway Trs',1,1,'2010-10-25 08:01:19','2011-12-01 14:28:30'),(26,4,4,'simple','Combat Boot',1,1,'2010-10-26 09:23:21','2011-12-01 14:24:14'),(27,4,4,'simple','Ascent',1,1,'2010-10-26 09:34:04','2012-01-04 16:42:24'),(28,4,4,'simple','Wolf',1,1,'2010-10-26 10:01:25','2012-02-21 09:48:05'),(29,4,4,'simple','PLCE',1,1,'2010-10-26 12:25:30','2011-12-29 14:28:04'),(31,4,4,'simple','Camo waterproof Jkt',1,1,'2010-10-26 17:37:33','2012-02-07 09:43:07'),(32,4,4,'simple','Camo W/proof overtrs.',1,1,'2010-10-26 17:42:35','2012-01-19 11:39:31'),(33,4,4,'simple','Castle 95 trs',1,1,'2010-10-26 17:47:20','2011-12-01 16:41:30'),(34,4,4,'simple','kfs',0,0,'2010-10-26 17:53:11','2011-12-01 16:37:12'),(35,4,4,'simple','Camo bottle kombat',0,0,'2010-10-26 17:57:43','2011-12-29 14:25:39'),(36,4,4,'simple','Open face balacavas',1,1,'2010-10-26 18:01:55','2011-12-09 15:53:26'),(37,4,4,'simple','SAS Bala',1,1,'2010-10-26 18:07:07','2011-12-09 15:51:14'),(38,4,4,'simple','SAS bush',1,1,'2010-10-26 18:17:17','2011-12-29 14:24:49'),(39,4,4,'simple','paracord',0,0,'2010-10-26 18:22:20','2011-12-01 16:27:38'),(40,4,4,'simple','Bungees',0,0,'2010-10-26 18:25:22','2011-12-01 16:26:10'),(41,4,4,'simple','tryfan',1,1,'2010-10-26 18:36:24','2011-12-01 16:02:20'),(42,4,4,'simple','ranger s/bag',0,0,'2010-10-26 18:43:37','2011-12-01 16:00:32'),(43,4,4,'simple','Bootcare kit',0,0,'2010-10-26 18:54:05','2011-12-29 14:23:55'),(44,4,4,'simple','Ladies trekker',1,1,'2010-10-26 19:05:42','2012-03-17 12:28:16'),(45,4,4,'simple','Commando socks',1,1,'2010-10-27 08:05:09','2011-12-06 14:54:22'),(46,4,4,'simple','Thinsulate Hat',1,1,'2010-10-27 09:21:56','2011-12-01 15:47:16'),(47,4,4,'simple','Chunky Thin Hat',1,1,'2010-10-27 09:33:50','2011-12-01 15:45:26'),(48,4,4,'simple','Hooded mitts',1,1,'2010-10-27 09:42:03','2011-12-01 15:32:53'),(49,4,4,'simple','Mens Comfort trekker ',1,1,'2010-10-27 12:19:43','2011-12-06 14:51:54'),(50,4,4,'simple','1000 Mile All terrain ',1,1,'2010-10-27 13:18:47','2011-12-06 14:53:31'),(51,4,4,'simple','Islay poles',0,0,'2010-10-27 14:02:03','2011-12-20 14:55:50'),(52,4,4,'simple','Arran Pole',0,0,'2010-10-27 14:06:11','2011-12-20 18:32:35'),(53,4,4,'simple','TX Direct300',0,0,'2010-10-28 07:32:58','2011-12-07 12:12:42'),(54,4,4,'simple','TECH WASH 300',0,0,'2010-10-28 07:36:20','2011-12-07 12:10:24'),(55,4,4,'simple','NIKWAX FABRIC125',0,0,'2010-10-28 07:44:55','2011-12-07 12:09:08'),(56,4,4,'simple','NUBUCK SPRAY',0,0,'2010-10-28 07:48:41','2011-12-07 12:07:36'),(57,4,4,'simple','NIKWAX LEATHER',0,0,'2010-10-28 07:53:59','2011-12-07 12:06:01'),(58,4,4,'simple','PENNINE SHORT ',1,1,'2010-10-28 08:05:05','2011-12-06 15:02:22'),(59,4,4,'simple','kids base layer sets',1,1,'2010-11-10 16:26:19','2011-04-13 10:42:26'),(60,4,4,'simple','THERMAL T SHIRT',1,1,'2010-11-10 16:33:30','2011-12-07 12:04:00'),(61,4,4,'simple','LONGJOHNS',1,1,'2010-11-11 11:34:54','2011-12-07 12:02:48'),(62,4,4,'simple','LADIES PARADE SHOE',1,1,'2010-11-11 11:59:22','2011-12-07 12:00:15'),(63,4,4,'simple','MENS & BOYS PARADE SHOES WITH TOE CAP',1,1,'2010-11-11 12:05:01','2011-12-07 11:58:57'),(64,4,21,'simple','MENS 3 PACK THERMAL SOCKS ',0,0,'2010-11-11 12:17:41','2011-12-06 15:00:13'),(65,4,4,'simple','LADIES 3 PACK WOOL THERMAL BOOT SOCKS',0,0,'2010-11-11 12:26:17','2011-11-17 16:34:38'),(66,4,4,'simple','MENS 3 PACK WOOL THERMAL BOOT SOCKS',0,0,'2010-11-11 12:30:49','2011-12-13 10:16:38'),(67,4,4,'simple','Mens wool knee length thermal walking socks',1,1,'2010-11-11 12:58:23','2012-03-17 12:29:42'),(68,4,4,'simple','LADIES KNEE LENGTH WOOL SOCKS',1,1,'2010-11-11 13:05:40','2012-01-04 14:13:34'),(70,4,4,'simple','RECHARGEABLE HAND WARMERS',0,0,'2010-11-11 14:33:33','2011-12-07 11:39:29'),(71,4,4,'simple','HottiesINSTANT HANDWARMERS',0,0,'2010-11-11 14:43:43','2011-12-07 11:38:31'),(72,4,4,'simple','6MM CARABINAS',0,0,'2010-11-13 13:49:13','2011-12-07 11:36:52'),(73,4,4,'simple','8MM CARABINAS',0,0,'2010-11-13 13:54:52','2011-06-23 13:06:39'),(74,4,4,'simple','KIDS ASSAULT VEST',0,0,'2010-11-13 14:47:03','2012-03-24 10:22:26'),(75,4,4,'simple','M1 PLASTIC HELMET WITH RIPSTOP DPM COVER',0,0,'2010-11-13 14:59:54','2012-03-24 10:24:57'),(76,4,4,'simple','ARMY KIT BGS',0,0,'2010-11-13 15:19:46','2011-12-07 11:31:28'),(77,4,4,'simple','LARGE WEBBING BACKPACK',1,1,'2010-11-13 15:26:15','2011-05-20 10:10:36'),(78,4,4,'simple','MILITARY HEADOVERS',1,1,'2010-11-13 15:38:32','2011-09-02 13:08:19'),(79,4,4,'simple','SHEMAGH SCARF',1,1,'2010-11-13 15:46:31','2011-10-25 13:51:32'),(80,4,4,'simple','SPARE WALKING POLE FEET',0,0,'2010-11-13 16:10:30','2011-12-20 14:34:27'),(81,4,4,'simple','DPM COMBAT CAMOUFLAGE JACKET',1,1,'2010-11-15 09:55:44','2011-12-29 14:20:04'),(82,4,4,'simple','JACK PYKE  HUNTERS WATERPROOF JACKET',1,1,'2010-11-15 13:11:40','2011-11-19 09:45:58'),(83,4,4,'simple','WROXHAM MENS WARM BODYWARMERS OLIVE',1,1,'2010-11-15 13:59:24','2011-12-07 10:59:08'),(84,4,4,'simple','Kids Camouflage Trousers Age 13/14',1,1,'2010-11-19 12:05:35','2011-12-29 14:17:14'),(86,4,4,'simple','Craghoppers Compact Lightweight Walking Pole',0,0,'2010-11-19 15:45:09','2011-01-19 15:28:56'),(87,4,4,'simple','Craghoppers Ladies Warmlined Kiwi Stretch Trousers',1,1,'2010-11-20 09:48:27','2011-12-19 12:05:20'),(88,4,4,'simple','Ladies Craghoppers  Warm lined Kiwi Walking Trousers',1,1,'2010-11-20 09:55:22','2011-12-14 13:11:12'),(90,4,4,'simple','Combat style army trousers',1,1,'2010-11-20 10:56:09','2012-02-07 12:00:40'),(91,4,4,'simple','5 Colour Camo Cream',0,0,'2010-11-20 14:58:41','2011-12-29 14:15:16'),(92,4,4,'simple','Kids  Dunlop Wellingtons',1,1,'2010-11-20 15:19:17','2011-12-07 10:49:51'),(93,4,4,'simple','Mens Seaboot Socks for wellingtons',1,1,'2010-11-20 15:51:33','2011-12-03 11:37:07'),(94,4,4,'simple','Ladies Long wellington Boot Socks',1,1,'2010-11-20 16:01:46','2011-12-03 11:36:22'),(95,4,4,'simple','Sunncamp Heritage Super king size Sleeping Bag',0,0,'2010-11-23 10:41:18','2011-12-03 11:33:09'),(96,4,4,'simple','Sunncamp Kingsize Sleeping Bags Symphony',0,0,'2010-11-23 10:52:42','2011-12-22 11:36:49'),(97,4,4,'simple','Voyager Lite 3 Season Sleeping Bag',0,0,'2010-11-23 11:16:45','2012-01-04 16:56:58'),(98,4,4,'simple','Snugpak 3 Season Sleeperlite Sleeping Bag',1,1,'2010-11-23 11:27:16','2011-12-07 10:45:50'),(99,4,4,'simple','Regatta Ad Tech 35 Litre Lighweight Rucksack',1,1,'2010-11-23 11:56:06','2011-08-13 10:47:49'),(100,4,4,'simple','Silver dogtags',0,0,'2010-11-23 13:47:49','2011-12-07 10:38:28'),(101,4,4,'simple','Highlander 20 Litre Dublin Daysack',1,1,'2010-11-23 15:34:13','2011-12-07 10:21:26'),(102,4,4,'simple','Proforce \"Forces\" daylite 10 litre Rucksack',1,1,'2010-11-23 15:39:49','2011-12-29 14:14:16'),(103,4,4,'simple','Proforce 44 Litre Forces Rucksack',1,1,'2010-11-23 15:49:05','2011-12-29 14:13:28'),(104,4,4,'simple','Highlander 66 litre Rambler Rucksacks',1,1,'2010-11-23 16:01:42','2011-04-13 10:33:05'),(105,4,4,'simple','Gelert Wilderness 35 Litre Rucksacks',0,0,'2010-11-23 16:20:35','2011-06-23 12:39:22'),(106,4,4,'simple','Military Style Black Beret',1,1,'2010-11-24 10:37:45','2011-12-07 09:28:03'),(107,4,4,'simple','Woodland Camouflague Nets',1,1,'2010-11-24 10:46:35','2011-06-23 12:38:40'),(108,4,4,'simple','Kids Camouflage DPM Army T-Shirt',1,1,'2010-11-24 11:17:33','2011-12-13 10:18:50'),(109,4,4,'simple','Knitted Thinsulate Lined Peaked Hat',0,0,'2010-11-24 11:42:24','2011-12-07 09:24:32'),(110,4,4,'simple','Aversa 20 litre Rucsacks',1,1,'2011-02-12 11:07:09','2011-02-12 11:17:35'),(111,4,4,'simple','Highlander Urban Seeker 20 Litre Daysack Rucksack With Mesh Padd',1,1,'2011-02-12 11:24:44','2011-12-20 14:36:24'),(113,4,4,'simple','Regata Landtrek 65 Litre Rucksack , Ideal for Duke Of Edinburgh ',0,0,'2011-02-16 12:12:23','2011-08-13 10:46:01'),(114,4,4,'simple','Nikwax Footwear Cleaning Gel',0,0,'2011-02-17 17:03:47','2011-12-03 14:52:31'),(115,4,4,'simple','camouflague DPM Water Bottle ',0,0,'2011-04-13 11:37:32','2011-12-29 14:11:49'),(116,4,4,'simple','Hydration pouch 2 litre',0,0,'2011-04-13 11:45:26','2011-08-13 10:46:54'),(118,4,4,'simple','Horizon 65 Litre',1,1,'2011-04-13 12:10:46','2011-12-03 14:51:10'),(119,4,4,'simple','Gelert Folding Compact Double Burner and Grill',0,0,'2011-05-03 12:43:30','2011-12-03 14:49:51'),(120,4,4,'simple','Pack of 12 Steel Tent Pegs',0,0,'2011-06-08 09:21:14','2011-12-03 14:47:34'),(121,4,4,'simple','Emergency Ponchos',1,1,'2011-06-08 09:35:40','2011-12-01 12:08:44'),(122,4,4,'simple','Festival Army Style Hexy Stove Lightweight.',0,0,'2011-06-08 14:13:54','2011-06-08 14:15:54'),(123,4,4,'simple','Hexi Stove Refills for camping&festivals',0,0,'2011-06-08 14:25:25','2012-03-17 12:22:30'),(124,4,4,'simple','Craghoppers lightweight compact Walking/hiking pole.',0,0,'2011-06-09 10:18:36','2011-07-29 08:35:15'),(125,4,4,'simple','Craghoppers Lightweight robust walking pole with anti shock abso',0,0,'2011-06-09 10:30:30','2011-12-20 14:44:46'),(126,4,4,'simple','Sleeping Mat karrimatt bedroll rollmat',1,1,'2011-06-09 12:56:44','2012-04-07 10:44:12'),(127,4,4,'simple','Gelert Wilderness 65 Litre rucksack for DOE awards',1,1,'2011-07-16 13:04:17','2011-12-03 09:47:17'),(128,4,4,'simple','Highlander Zing 20 Litre Rucksacksdaysacks',1,1,'2011-07-16 13:32:28','2011-12-03 09:45:47'),(129,4,4,'simple','Gelert nero 25  Litre Daysack rucksack',1,1,'2011-07-16 13:48:58','2011-11-15 09:32:37'),(130,4,4,'simple','Commando lightweight army style stove',0,0,'2011-08-13 10:55:06','2011-12-03 09:44:22'),(131,4,4,'simple','kids-army-kit-camouflague-tshirt-soldier95-trousers-armyhat',1,1,'2011-09-17 08:45:05','2011-12-29 14:10:30'),(132,4,4,'simple','ice and snow grippers',1,1,'2011-09-21 14:16:22','2011-12-03 09:39:52'),(133,4,4,'simple','cub-scout-uniform-sweatshirt',1,1,'2011-10-22 13:12:33','2011-12-03 14:46:06'),(134,4,4,'simple','cub-polo-shirt',1,1,'2011-10-26 08:50:06','2011-12-03 14:45:03'),(135,4,4,'simple','beaver sweatshirt',1,1,'2011-10-26 08:57:36','2011-12-03 14:43:54'),(136,4,4,'simple','Beaver purple trim polo shirt',1,1,'2011-10-26 09:11:30','2011-12-03 14:42:58'),(137,4,4,'simple','brownie short sleeve t shirt',1,1,'2011-10-26 09:18:04','2011-12-03 14:42:03'),(138,4,4,'simple','brownie hoodied top',1,1,'2011-10-26 09:25:29','2011-12-03 14:40:37'),(139,4,4,'simple','brownie trousers',1,1,'2011-10-26 09:31:24','2011-12-03 14:39:06'),(140,4,4,'simple','brownie leggings',1,1,'2011-10-26 09:36:37','2011-12-03 14:38:08'),(141,4,4,'simple','brownie long sleeve tee shirt',1,1,'2011-10-26 09:42:20','2011-10-26 10:38:40'),(142,4,4,'simple','brownie sash',0,0,'2011-10-26 09:48:04','2011-11-14 16:30:35'),(143,4,4,'simple','beaver uniform trousers',1,1,'2011-10-31 13:59:25','2011-10-31 14:07:21'),(144,4,4,'simple','cub trousers',1,1,'2011-10-31 14:10:00','2011-10-31 14:16:21'),(145,4,4,'simple','rainbow hoodie',1,1,'2011-10-31 14:28:49','2011-10-31 14:32:10'),(146,4,4,'simple','rainbow polo shirt',1,1,'2011-10-31 14:35:26','2011-11-22 11:23:30'),(147,4,4,'simple','rainbow pants',0,0,'2011-10-31 14:40:51','2011-12-02 11:18:09'),(148,4,4,'simple','scout shirt',1,1,'2011-10-31 14:46:53','2011-12-02 11:16:40'),(149,4,4,'simple','long sleeve thermal tee shirts',1,1,'2011-10-31 15:26:11','2011-12-02 11:15:24'),(150,4,4,'simple','craghoppers winter lined kiwi walking trousers',1,1,'2011-11-08 15:24:50','2012-03-10 13:01:32'),(151,4,4,'simple','13/14 army pants',0,0,'2011-11-10 15:58:37','2011-12-29 14:09:15'),(152,4,4,'simple','Castle hoodie',1,1,'2011-11-19 12:01:38','2011-12-02 11:04:28'),(153,4,4,'simple','military angle torch',0,0,'2011-11-24 10:38:44','2011-12-20 16:53:42'),(154,4,4,'simple','army wallet',1,1,'2011-11-24 11:03:34','2011-12-29 14:08:28'),(155,4,4,'simple','regatta waterproof fleece',1,1,'2011-11-26 12:52:31','2011-12-22 15:11:23'),(156,4,4,'simple','Ladies Waterproof Fleece',1,1,'2011-11-26 13:10:42','2011-12-22 15:10:40'),(157,4,4,'simple','steelchukka',1,1,'2011-12-03 14:09:00','2012-01-04 16:03:59'),(158,4,4,'simple','1000 mile fusion walking socks',1,1,'2011-12-06 11:44:07','2011-12-06 14:46:05'),(159,4,4,'simple','1000 mile socks',1,1,'2011-12-06 11:56:28','2011-12-06 14:46:42'),(160,4,4,'simple','doc marten shoe',1,1,'2011-12-13 11:16:07','2011-12-13 12:12:46'),(161,4,4,'simple','doc marten classic boots',1,1,'2011-12-13 11:37:15','2012-01-04 16:05:20'),(162,4,4,'simple','victorinox-swissarmyknives-DOE-armyknives-knives',0,0,'2011-12-21 16:36:54','2011-12-21 16:46:56'),(163,4,4,'simple','swissarmy-knives-genuinearmyknives-victorinox-',0,0,'2011-12-21 16:54:49','2011-12-21 16:57:45'),(164,4,4,'simple','victorinox-swissarmyknives-armyknife-knives-swiss-',1,1,'2011-12-21 17:03:04','2011-12-21 17:06:23'),(165,4,4,'simple','cub-beaver-blanket-reversible',0,0,'2011-12-29 13:58:57','2011-12-29 14:04:00'),(166,4,4,'simple','peaklander',1,1,'2012-01-07 12:46:23','2012-02-21 09:40:49'),(167,4,4,'simple','grisport-walkingshoe-shoe- foot-waterprrofshoe-footwear-',1,1,'2012-01-07 13:17:10','2012-01-07 13:50:22'),(168,4,4,'simple','nikwax-fabric&leather-proofing',0,0,'2012-01-19 10:59:43','2012-01-19 11:09:36'),(169,4,4,'simple','camouflague-combat-pants-armypants-cammygear-',1,1,'2012-02-07 11:36:29','2012-02-07 11:56:50'),(170,4,4,'simple','folding shovel',0,0,'2012-02-13 11:07:47','2012-02-17 10:07:00'),(171,4,4,'simple','highlander-compass-map-mapcompass',0,0,'2012-02-21 16:02:46','2012-02-22 11:34:36'),(172,4,4,'simple','highlander-deluxecompass-compass-orienterring-',0,0,'2012-02-21 16:32:44','2012-02-22 11:34:00'),(173,4,4,'simple','mapcase-roamer-map-case-',0,0,'2012-02-21 16:47:03','2012-02-22 11:33:16'),(174,4,4,'simple','trekmates-map-mapcase-compassholder-mapbag-',0,0,'2012-02-21 16:54:28','2012-02-22 11:32:42'),(175,4,4,'simple','overalls-boilersuits-workwear-castle-',1,1,'2012-02-22 10:19:51','2012-02-22 10:35:28'),(176,4,4,'simple','lockknife-knives-knife-lock-',0,0,'2012-02-22 10:41:32','2012-02-22 10:44:07'),(177,4,4,'simple','bivvbag-survivalbag-bag-survival-emergencybag-',0,0,'2012-02-22 10:53:59','2012-02-22 10:56:43'),(178,4,4,'simple','rucksackliner-sacliner-liner',0,0,'2012-02-22 11:04:08','2012-02-22 11:17:08'),(179,4,4,'simple','survival-whistle-emergencywhistle-whistle-perrywhistle-',0,0,'2012-02-22 11:43:21','2012-02-22 11:46:41'),(180,4,4,'simple','hydration- camelbak-waterbags-watercarriers-',0,0,'2012-02-22 11:57:25','2012-02-22 12:00:58'),(181,4,4,'simple','survivalblanket-emergencyblanket-survivalblanket-',0,0,'2012-02-22 12:13:07','2012-02-22 12:15:50'),(182,4,4,'simple','firestarters',0,0,'2012-02-22 12:29:01','2012-02-22 12:32:36'),(183,4,4,'simple','craghoppers-basecamp-winterlined-kiwis-ladies',1,1,'2012-03-10 13:10:37','2012-03-10 13:16:41');
/*!40000 ALTER TABLE `catalog_product_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_datetime`
--

DROP TABLE IF EXISTS `catalog_product_entity_datetime`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_entity_datetime` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `value` datetime default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_PRD_ENTT_DTIME_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_DATETIME_ENTITY_ID` (`entity_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_DTIME_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1099 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Datetime Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_entity_datetime`
--

LOCK TABLES `catalog_product_entity_datetime` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_datetime` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_datetime` VALUES (13,4,81,0,3,NULL),(14,4,82,0,3,NULL),(15,4,66,0,3,NULL),(16,4,67,0,3,NULL),(17,4,93,0,3,NULL),(18,4,94,0,3,NULL),(19,4,66,0,4,NULL),(20,4,67,0,4,NULL),(21,4,81,0,4,NULL),(22,4,82,0,4,NULL),(23,4,93,0,4,NULL),(24,4,94,0,4,NULL),(31,4,81,0,6,NULL),(32,4,82,0,6,NULL),(33,4,66,0,6,NULL),(34,4,67,0,6,NULL),(35,4,93,0,6,NULL),(36,4,94,0,6,NULL),(37,4,81,0,7,NULL),(38,4,82,0,7,NULL),(39,4,66,0,7,NULL),(40,4,67,0,7,NULL),(41,4,93,0,7,NULL),(42,4,94,0,7,NULL),(43,4,66,0,8,NULL),(44,4,67,0,8,NULL),(45,4,81,0,8,NULL),(46,4,82,0,8,NULL),(47,4,93,0,8,NULL),(48,4,94,0,8,NULL),(55,4,81,0,10,NULL),(56,4,82,0,10,NULL),(57,4,66,0,10,NULL),(58,4,67,0,10,NULL),(59,4,93,0,10,NULL),(60,4,94,0,10,NULL),(61,4,81,0,11,NULL),(62,4,82,0,11,NULL),(63,4,66,0,11,NULL),(64,4,67,0,11,NULL),(65,4,93,0,11,NULL),(66,4,94,0,11,NULL),(67,4,81,0,12,NULL),(68,4,82,0,12,NULL),(69,4,66,0,12,NULL),(70,4,67,0,12,NULL),(71,4,93,0,12,NULL),(72,4,94,0,12,NULL),(73,4,81,0,13,NULL),(74,4,82,0,13,NULL),(75,4,66,0,13,NULL),(76,4,67,0,13,NULL),(77,4,93,0,13,NULL),(78,4,94,0,13,NULL),(79,4,81,0,14,NULL),(80,4,82,0,14,NULL),(81,4,66,0,14,NULL),(82,4,67,0,14,NULL),(83,4,93,0,14,NULL),(84,4,94,0,14,NULL),(85,4,81,0,15,NULL),(86,4,82,0,15,NULL),(87,4,66,0,15,NULL),(88,4,67,0,15,NULL),(89,4,93,0,15,NULL),(90,4,94,0,15,NULL),(91,4,81,0,16,NULL),(92,4,82,0,16,NULL),(93,4,66,0,16,NULL),(94,4,67,0,16,NULL),(95,4,93,0,16,NULL),(96,4,94,0,16,NULL),(97,4,81,0,17,NULL),(98,4,82,0,17,NULL),(99,4,66,0,17,NULL),(100,4,67,0,17,NULL),(101,4,93,0,17,NULL),(102,4,94,0,17,NULL),(103,4,81,0,18,NULL),(104,4,82,0,18,NULL),(105,4,66,0,18,NULL),(106,4,67,0,18,NULL),(107,4,93,0,18,NULL),(108,4,94,0,18,NULL),(109,4,81,0,19,NULL),(110,4,82,0,19,NULL),(111,4,66,0,19,NULL),(112,4,67,0,19,NULL),(113,4,93,0,19,NULL),(114,4,94,0,19,NULL),(115,4,81,0,20,NULL),(116,4,82,0,20,NULL),(117,4,66,0,20,NULL),(118,4,67,0,20,NULL),(119,4,93,0,20,NULL),(120,4,94,0,20,NULL),(121,4,81,0,21,NULL),(122,4,82,0,21,NULL),(123,4,66,0,21,NULL),(124,4,67,0,21,NULL),(125,4,93,0,21,NULL),(126,4,94,0,21,NULL),(127,4,81,0,22,NULL),(128,4,82,0,22,NULL),(129,4,66,0,22,NULL),(130,4,67,0,22,NULL),(131,4,93,0,22,NULL),(132,4,94,0,22,NULL),(133,4,81,0,23,NULL),(134,4,82,0,23,NULL),(135,4,66,0,23,NULL),(136,4,67,0,23,NULL),(137,4,93,0,23,NULL),(138,4,94,0,23,NULL),(139,4,81,0,24,NULL),(140,4,82,0,24,NULL),(141,4,66,0,24,NULL),(142,4,67,0,24,NULL),(143,4,93,0,24,NULL),(144,4,94,0,24,NULL),(145,4,81,0,25,NULL),(146,4,82,0,25,NULL),(147,4,66,0,25,NULL),(148,4,67,0,25,NULL),(149,4,93,0,25,NULL),(150,4,94,0,25,NULL),(151,4,81,0,26,NULL),(152,4,82,0,26,NULL),(153,4,66,0,26,NULL),(154,4,67,0,26,NULL),(155,4,93,0,26,NULL),(156,4,94,0,26,NULL),(157,4,81,0,27,NULL),(158,4,82,0,27,NULL),(159,4,66,0,27,NULL),(160,4,67,0,27,NULL),(161,4,93,0,27,NULL),(162,4,94,0,27,NULL),(163,4,81,0,28,NULL),(164,4,82,0,28,NULL),(165,4,66,0,28,NULL),(166,4,67,0,28,NULL),(167,4,93,0,28,NULL),(168,4,94,0,28,NULL),(169,4,81,0,29,NULL),(170,4,82,0,29,NULL),(171,4,66,0,29,NULL),(172,4,67,0,29,NULL),(173,4,93,0,29,NULL),(174,4,94,0,29,NULL),(181,4,81,0,31,NULL),(182,4,82,0,31,NULL),(183,4,66,0,31,NULL),(184,4,67,0,31,NULL),(185,4,93,0,31,NULL),(186,4,94,0,31,NULL),(187,4,81,0,32,NULL),(188,4,82,0,32,NULL),(189,4,66,0,32,NULL),(190,4,67,0,32,NULL),(191,4,93,0,32,NULL),(192,4,94,0,32,NULL),(193,4,81,0,33,NULL),(194,4,82,0,33,NULL),(195,4,66,0,33,NULL),(196,4,67,0,33,NULL),(197,4,93,0,33,NULL),(198,4,94,0,33,NULL),(199,4,81,0,34,NULL),(200,4,82,0,34,NULL),(201,4,66,0,34,NULL),(202,4,67,0,34,NULL),(203,4,93,0,34,NULL),(204,4,94,0,34,NULL),(205,4,81,0,35,NULL),(206,4,82,0,35,NULL),(207,4,66,0,35,NULL),(208,4,67,0,35,NULL),(209,4,93,0,35,NULL),(210,4,94,0,35,NULL),(211,4,81,0,36,NULL),(212,4,82,0,36,NULL),(213,4,66,0,36,NULL),(214,4,67,0,36,NULL),(215,4,93,0,36,NULL),(216,4,94,0,36,NULL),(217,4,81,0,37,NULL),(218,4,82,0,37,NULL),(219,4,66,0,37,NULL),(220,4,67,0,37,NULL),(221,4,93,0,37,NULL),(222,4,94,0,37,NULL),(223,4,81,0,38,NULL),(224,4,82,0,38,NULL),(225,4,66,0,38,NULL),(226,4,67,0,38,NULL),(227,4,93,0,38,NULL),(228,4,94,0,38,NULL),(229,4,81,0,39,NULL),(230,4,82,0,39,NULL),(231,4,66,0,39,NULL),(232,4,67,0,39,NULL),(233,4,93,0,39,NULL),(234,4,94,0,39,NULL),(235,4,81,0,40,NULL),(236,4,82,0,40,NULL),(237,4,66,0,40,NULL),(238,4,67,0,40,NULL),(239,4,93,0,40,NULL),(240,4,94,0,40,NULL),(241,4,81,0,41,NULL),(242,4,82,0,41,NULL),(243,4,66,0,41,NULL),(244,4,67,0,41,NULL),(245,4,93,0,41,NULL),(246,4,94,0,41,NULL),(247,4,81,0,42,NULL),(248,4,82,0,42,NULL),(249,4,66,0,42,NULL),(250,4,67,0,42,NULL),(251,4,93,0,42,NULL),(252,4,94,0,42,NULL),(253,4,81,0,43,NULL),(254,4,82,0,43,NULL),(255,4,66,0,43,NULL),(256,4,67,0,43,NULL),(257,4,93,0,43,NULL),(258,4,94,0,43,NULL),(259,4,81,0,44,NULL),(260,4,82,0,44,NULL),(261,4,66,0,44,NULL),(262,4,67,0,44,NULL),(263,4,93,0,44,NULL),(264,4,94,0,44,NULL),(265,4,81,0,45,NULL),(266,4,82,0,45,NULL),(267,4,66,0,45,NULL),(268,4,67,0,45,NULL),(269,4,93,0,45,NULL),(270,4,94,0,45,NULL),(271,4,81,0,46,NULL),(272,4,82,0,46,NULL),(273,4,66,0,46,NULL),(274,4,67,0,46,NULL),(275,4,93,0,46,NULL),(276,4,94,0,46,NULL),(277,4,81,0,47,NULL),(278,4,82,0,47,NULL),(279,4,66,0,47,NULL),(280,4,67,0,47,NULL),(281,4,93,0,47,NULL),(282,4,94,0,47,NULL),(283,4,81,0,48,NULL),(284,4,82,0,48,NULL),(285,4,66,0,48,NULL),(286,4,67,0,48,NULL),(287,4,93,0,48,NULL),(288,4,94,0,48,NULL),(289,4,81,0,49,NULL),(290,4,82,0,49,NULL),(291,4,66,0,49,NULL),(292,4,67,0,49,NULL),(293,4,93,0,49,NULL),(294,4,94,0,49,NULL),(295,4,81,0,50,NULL),(296,4,82,0,50,NULL),(297,4,66,0,50,NULL),(298,4,67,0,50,NULL),(299,4,93,0,50,NULL),(300,4,94,0,50,NULL),(301,4,81,0,51,NULL),(302,4,82,0,51,NULL),(303,4,66,0,51,NULL),(304,4,67,0,51,NULL),(305,4,93,0,51,NULL),(306,4,94,0,51,NULL),(307,4,81,0,52,NULL),(308,4,82,0,52,NULL),(309,4,66,0,52,NULL),(310,4,67,0,52,NULL),(311,4,93,0,52,NULL),(312,4,94,0,52,NULL),(313,4,81,0,53,NULL),(314,4,82,0,53,NULL),(315,4,66,0,53,NULL),(316,4,67,0,53,NULL),(317,4,93,0,53,NULL),(318,4,94,0,53,NULL),(319,4,81,0,54,NULL),(320,4,82,0,54,NULL),(321,4,66,0,54,NULL),(322,4,67,0,54,NULL),(323,4,93,0,54,NULL),(324,4,94,0,54,NULL),(325,4,81,0,55,NULL),(326,4,82,0,55,NULL),(327,4,66,0,55,NULL),(328,4,67,0,55,NULL),(329,4,93,0,55,NULL),(330,4,94,0,55,NULL),(331,4,81,0,56,NULL),(332,4,82,0,56,NULL),(333,4,66,0,56,NULL),(334,4,67,0,56,NULL),(335,4,93,0,56,NULL),(336,4,94,0,56,NULL),(337,4,81,0,57,NULL),(338,4,82,0,57,NULL),(339,4,66,0,57,NULL),(340,4,67,0,57,NULL),(341,4,93,0,57,NULL),(342,4,94,0,57,NULL),(343,4,81,0,58,NULL),(344,4,82,0,58,NULL),(345,4,66,0,58,NULL),(346,4,67,0,58,NULL),(347,4,93,0,58,NULL),(348,4,94,0,58,NULL),(349,4,81,0,59,NULL),(350,4,82,0,59,NULL),(351,4,66,0,59,NULL),(352,4,67,0,59,NULL),(353,4,93,0,59,NULL),(354,4,94,0,59,NULL),(355,4,81,0,60,NULL),(356,4,82,0,60,NULL),(357,4,66,0,60,NULL),(358,4,67,0,60,NULL),(359,4,93,0,60,NULL),(360,4,94,0,60,NULL),(361,4,81,0,61,NULL),(362,4,82,0,61,NULL),(363,4,66,0,61,NULL),(364,4,67,0,61,NULL),(365,4,93,0,61,NULL),(366,4,94,0,61,NULL),(367,4,81,0,62,NULL),(368,4,82,0,62,NULL),(369,4,66,0,62,NULL),(370,4,67,0,62,NULL),(371,4,93,0,62,NULL),(372,4,94,0,62,NULL),(373,4,81,0,63,NULL),(374,4,82,0,63,NULL),(375,4,66,0,63,NULL),(376,4,67,0,63,NULL),(377,4,93,0,63,NULL),(378,4,94,0,63,NULL),(379,4,81,0,64,NULL),(380,4,82,0,64,NULL),(381,4,66,0,64,NULL),(382,4,67,0,64,NULL),(383,4,93,0,64,NULL),(384,4,94,0,64,NULL),(385,4,81,0,65,NULL),(386,4,82,0,65,NULL),(387,4,66,0,65,NULL),(388,4,67,0,65,NULL),(389,4,93,0,65,NULL),(390,4,94,0,65,NULL),(391,4,81,0,66,NULL),(392,4,82,0,66,NULL),(393,4,66,0,66,NULL),(394,4,67,0,66,NULL),(395,4,93,0,66,NULL),(396,4,94,0,66,NULL),(397,4,81,0,67,NULL),(398,4,82,0,67,NULL),(399,4,66,0,67,NULL),(400,4,67,0,67,NULL),(401,4,93,0,67,NULL),(402,4,94,0,67,NULL),(403,4,81,0,68,NULL),(404,4,82,0,68,NULL),(405,4,66,0,68,NULL),(406,4,67,0,68,NULL),(407,4,93,0,68,NULL),(408,4,94,0,68,NULL),(415,4,81,0,70,NULL),(416,4,82,0,70,NULL),(417,4,66,0,70,NULL),(418,4,67,0,70,NULL),(419,4,93,0,70,NULL),(420,4,94,0,70,NULL),(421,4,81,0,71,NULL),(422,4,82,0,71,NULL),(423,4,66,0,71,NULL),(424,4,67,0,71,NULL),(425,4,93,0,71,NULL),(426,4,94,0,71,NULL),(427,4,81,0,72,NULL),(428,4,82,0,72,NULL),(429,4,66,0,72,NULL),(430,4,67,0,72,NULL),(431,4,93,0,72,NULL),(432,4,94,0,72,NULL),(433,4,81,0,73,NULL),(434,4,82,0,73,NULL),(435,4,66,0,73,NULL),(436,4,67,0,73,NULL),(437,4,93,0,73,NULL),(438,4,94,0,73,NULL),(439,4,81,0,74,NULL),(440,4,82,0,74,NULL),(441,4,66,0,74,NULL),(442,4,67,0,74,NULL),(443,4,93,0,74,NULL),(444,4,94,0,74,NULL),(445,4,81,0,75,NULL),(446,4,82,0,75,NULL),(447,4,66,0,75,NULL),(448,4,67,0,75,NULL),(449,4,93,0,75,NULL),(450,4,94,0,75,NULL),(451,4,81,0,76,NULL),(452,4,82,0,76,NULL),(453,4,66,0,76,NULL),(454,4,67,0,76,NULL),(455,4,93,0,76,NULL),(456,4,94,0,76,NULL),(457,4,81,0,77,NULL),(458,4,82,0,77,NULL),(459,4,66,0,77,NULL),(460,4,67,0,77,NULL),(461,4,93,0,77,NULL),(462,4,94,0,77,NULL),(463,4,81,0,78,NULL),(464,4,82,0,78,NULL),(465,4,66,0,78,NULL),(466,4,67,0,78,NULL),(467,4,93,0,78,NULL),(468,4,94,0,78,NULL),(469,4,81,0,79,NULL),(470,4,82,0,79,NULL),(471,4,66,0,79,NULL),(472,4,67,0,79,NULL),(473,4,93,0,79,NULL),(474,4,94,0,79,NULL),(475,4,81,0,80,NULL),(476,4,82,0,80,NULL),(477,4,66,0,80,NULL),(478,4,67,0,80,NULL),(479,4,93,0,80,NULL),(480,4,94,0,80,NULL),(481,4,81,0,81,NULL),(482,4,82,0,81,NULL),(483,4,66,0,81,NULL),(484,4,67,0,81,NULL),(485,4,93,0,81,NULL),(486,4,94,0,81,NULL),(487,4,81,0,82,NULL),(488,4,82,0,82,NULL),(489,4,66,0,82,NULL),(490,4,67,0,82,NULL),(491,4,93,0,82,NULL),(492,4,94,0,82,NULL),(493,4,81,0,83,NULL),(494,4,82,0,83,NULL),(495,4,66,0,83,NULL),(496,4,67,0,83,NULL),(497,4,93,0,83,NULL),(498,4,94,0,83,NULL),(499,4,81,0,84,NULL),(500,4,82,0,84,NULL),(501,4,66,0,84,NULL),(502,4,67,0,84,NULL),(503,4,93,0,84,NULL),(504,4,94,0,84,NULL),(511,4,81,0,86,NULL),(512,4,82,0,86,NULL),(513,4,66,0,86,NULL),(514,4,67,0,86,NULL),(515,4,93,0,86,NULL),(516,4,94,0,86,NULL),(517,4,81,0,87,NULL),(518,4,82,0,87,NULL),(519,4,66,0,87,NULL),(520,4,67,0,87,NULL),(521,4,93,0,87,NULL),(522,4,94,0,87,NULL),(523,4,81,0,88,NULL),(524,4,82,0,88,NULL),(525,4,66,0,88,NULL),(526,4,67,0,88,NULL),(527,4,93,0,88,NULL),(528,4,94,0,88,NULL),(535,4,81,0,90,NULL),(536,4,82,0,90,NULL),(537,4,66,0,90,NULL),(538,4,67,0,90,NULL),(539,4,93,0,90,NULL),(540,4,94,0,90,NULL),(541,4,81,0,91,NULL),(542,4,82,0,91,NULL),(543,4,66,0,91,NULL),(544,4,67,0,91,NULL),(545,4,93,0,91,NULL),(546,4,94,0,91,NULL),(547,4,81,0,92,NULL),(548,4,82,0,92,NULL),(549,4,66,0,92,NULL),(550,4,67,0,92,NULL),(551,4,93,0,92,NULL),(552,4,94,0,92,NULL),(553,4,81,0,93,NULL),(554,4,82,0,93,NULL),(555,4,66,0,93,NULL),(556,4,67,0,93,NULL),(557,4,93,0,93,NULL),(558,4,94,0,93,NULL),(559,4,81,0,94,NULL),(560,4,82,0,94,NULL),(561,4,66,0,94,NULL),(562,4,67,0,94,NULL),(563,4,93,0,94,NULL),(564,4,94,0,94,NULL),(565,4,81,0,95,NULL),(566,4,82,0,95,NULL),(567,4,66,0,95,NULL),(568,4,67,0,95,NULL),(569,4,93,0,95,NULL),(570,4,94,0,95,NULL),(571,4,81,0,96,NULL),(572,4,82,0,96,NULL),(573,4,66,0,96,NULL),(574,4,67,0,96,NULL),(575,4,93,0,96,NULL),(576,4,94,0,96,NULL),(577,4,81,0,97,NULL),(578,4,82,0,97,NULL),(579,4,66,0,97,NULL),(580,4,67,0,97,NULL),(581,4,93,0,97,NULL),(582,4,94,0,97,NULL),(583,4,81,0,98,NULL),(584,4,82,0,98,NULL),(585,4,66,0,98,NULL),(586,4,67,0,98,NULL),(587,4,93,0,98,NULL),(588,4,94,0,98,NULL),(589,4,81,0,99,NULL),(590,4,82,0,99,NULL),(591,4,66,0,99,NULL),(592,4,67,0,99,NULL),(593,4,93,0,99,NULL),(594,4,94,0,99,NULL),(595,4,81,0,100,NULL),(596,4,82,0,100,NULL),(597,4,66,0,100,NULL),(598,4,67,0,100,NULL),(599,4,93,0,100,NULL),(600,4,94,0,100,NULL),(601,4,81,0,101,NULL),(602,4,82,0,101,NULL),(603,4,66,0,101,NULL),(604,4,67,0,101,NULL),(605,4,93,0,101,NULL),(606,4,94,0,101,NULL),(607,4,81,0,102,NULL),(608,4,82,0,102,NULL),(609,4,66,0,102,NULL),(610,4,67,0,102,NULL),(611,4,93,0,102,NULL),(612,4,94,0,102,NULL),(613,4,81,0,103,NULL),(614,4,82,0,103,NULL),(615,4,66,0,103,NULL),(616,4,67,0,103,NULL),(617,4,93,0,103,NULL),(618,4,94,0,103,NULL),(619,4,81,0,104,NULL),(620,4,82,0,104,NULL),(621,4,66,0,104,NULL),(622,4,67,0,104,NULL),(623,4,93,0,104,NULL),(624,4,94,0,104,NULL),(625,4,81,0,105,NULL),(626,4,82,0,105,NULL),(627,4,66,0,105,NULL),(628,4,67,0,105,NULL),(629,4,93,0,105,NULL),(630,4,94,0,105,NULL),(631,4,81,0,106,NULL),(632,4,82,0,106,NULL),(633,4,66,0,106,NULL),(634,4,67,0,106,NULL),(635,4,93,0,106,NULL),(636,4,94,0,106,NULL),(637,4,81,0,107,NULL),(638,4,82,0,107,NULL),(639,4,66,0,107,NULL),(640,4,67,0,107,NULL),(641,4,93,0,107,NULL),(642,4,94,0,107,NULL),(643,4,81,0,108,NULL),(644,4,82,0,108,NULL),(645,4,66,0,108,NULL),(646,4,67,0,108,NULL),(647,4,93,0,108,NULL),(648,4,94,0,108,NULL),(649,4,81,0,109,NULL),(650,4,82,0,109,NULL),(651,4,66,0,109,NULL),(652,4,67,0,109,NULL),(653,4,93,0,109,NULL),(654,4,94,0,109,NULL),(655,4,81,0,110,NULL),(656,4,82,0,110,NULL),(657,4,66,0,110,NULL),(658,4,67,0,110,NULL),(659,4,93,0,110,NULL),(660,4,94,0,110,NULL),(661,4,81,0,111,NULL),(662,4,82,0,111,NULL),(663,4,66,0,111,NULL),(664,4,67,0,111,NULL),(665,4,93,0,111,NULL),(666,4,94,0,111,NULL),(673,4,81,0,113,NULL),(674,4,82,0,113,NULL),(675,4,66,0,113,NULL),(676,4,67,0,113,NULL),(677,4,93,0,113,NULL),(678,4,94,0,113,NULL),(679,4,81,0,114,NULL),(680,4,82,0,114,NULL),(681,4,66,0,114,NULL),(682,4,67,0,114,NULL),(683,4,93,0,114,NULL),(684,4,94,0,114,NULL),(685,4,81,0,115,NULL),(686,4,82,0,115,NULL),(687,4,66,0,115,NULL),(688,4,67,0,115,NULL),(689,4,93,0,115,NULL),(690,4,94,0,115,NULL),(691,4,81,0,116,NULL),(692,4,82,0,116,NULL),(693,4,66,0,116,NULL),(694,4,67,0,116,NULL),(695,4,93,0,116,NULL),(696,4,94,0,116,NULL),(703,4,81,0,118,NULL),(704,4,82,0,118,NULL),(705,4,66,0,118,NULL),(706,4,67,0,118,NULL),(707,4,93,0,118,NULL),(708,4,94,0,118,NULL),(709,4,81,0,119,NULL),(710,4,82,0,119,NULL),(711,4,66,0,119,NULL),(712,4,67,0,119,NULL),(713,4,93,0,119,NULL),(714,4,94,0,119,NULL),(715,4,81,0,120,NULL),(716,4,82,0,120,NULL),(717,4,66,0,120,NULL),(718,4,67,0,120,NULL),(719,4,93,0,120,NULL),(720,4,94,0,120,NULL),(721,4,81,0,121,NULL),(722,4,82,0,121,NULL),(723,4,66,0,121,NULL),(724,4,67,0,121,NULL),(725,4,93,0,121,NULL),(726,4,94,0,121,NULL),(727,4,81,0,122,NULL),(728,4,82,0,122,NULL),(729,4,66,0,122,NULL),(730,4,67,0,122,NULL),(731,4,93,0,122,NULL),(732,4,94,0,122,NULL),(733,4,81,0,123,NULL),(734,4,82,0,123,NULL),(735,4,66,0,123,NULL),(736,4,67,0,123,NULL),(737,4,93,0,123,NULL),(738,4,94,0,123,NULL),(739,4,81,0,124,NULL),(740,4,82,0,124,NULL),(741,4,66,0,124,NULL),(742,4,67,0,124,NULL),(743,4,93,0,124,NULL),(744,4,94,0,124,NULL),(745,4,81,0,125,NULL),(746,4,82,0,125,NULL),(747,4,66,0,125,NULL),(748,4,67,0,125,NULL),(749,4,93,0,125,NULL),(750,4,94,0,125,NULL),(751,4,81,0,126,NULL),(752,4,82,0,126,NULL),(753,4,66,0,126,NULL),(754,4,67,0,126,NULL),(755,4,93,0,126,NULL),(756,4,94,0,126,NULL),(757,4,81,0,127,NULL),(758,4,82,0,127,NULL),(759,4,66,0,127,NULL),(760,4,67,0,127,NULL),(761,4,93,0,127,NULL),(762,4,94,0,127,NULL),(763,4,81,0,128,NULL),(764,4,82,0,128,NULL),(765,4,66,0,128,NULL),(766,4,67,0,128,NULL),(767,4,93,0,128,NULL),(768,4,94,0,128,NULL),(769,4,81,0,129,NULL),(770,4,82,0,129,NULL),(771,4,66,0,129,NULL),(772,4,67,0,129,NULL),(773,4,93,0,129,NULL),(774,4,94,0,129,NULL),(775,4,81,0,130,NULL),(776,4,82,0,130,NULL),(777,4,66,0,130,NULL),(778,4,67,0,130,NULL),(779,4,93,0,130,NULL),(780,4,94,0,130,NULL),(781,4,81,0,131,NULL),(782,4,82,0,131,NULL),(783,4,66,0,131,NULL),(784,4,67,0,131,NULL),(785,4,93,0,131,NULL),(786,4,94,0,131,NULL),(787,4,81,0,132,NULL),(788,4,82,0,132,NULL),(789,4,66,0,132,NULL),(790,4,67,0,132,NULL),(791,4,93,0,132,NULL),(792,4,94,0,132,NULL),(793,4,81,0,133,NULL),(794,4,82,0,133,NULL),(795,4,66,0,133,NULL),(796,4,67,0,133,NULL),(797,4,93,0,133,NULL),(798,4,94,0,133,NULL),(799,4,81,0,134,NULL),(800,4,82,0,134,NULL),(801,4,66,0,134,NULL),(802,4,67,0,134,NULL),(803,4,93,0,134,NULL),(804,4,94,0,134,NULL),(805,4,81,0,135,NULL),(806,4,82,0,135,NULL),(807,4,66,0,135,NULL),(808,4,67,0,135,NULL),(809,4,93,0,135,NULL),(810,4,94,0,135,NULL),(811,4,81,0,136,NULL),(812,4,82,0,136,NULL),(813,4,66,0,136,NULL),(814,4,67,0,136,NULL),(815,4,93,0,136,NULL),(816,4,94,0,136,NULL),(817,4,81,0,137,NULL),(818,4,82,0,137,NULL),(819,4,66,0,137,NULL),(820,4,67,0,137,NULL),(821,4,93,0,137,NULL),(822,4,94,0,137,NULL),(823,4,81,0,138,NULL),(824,4,82,0,138,NULL),(825,4,66,0,138,NULL),(826,4,67,0,138,NULL),(827,4,93,0,138,NULL),(828,4,94,0,138,NULL),(829,4,81,0,139,NULL),(830,4,82,0,139,NULL),(831,4,66,0,139,NULL),(832,4,67,0,139,NULL),(833,4,93,0,139,NULL),(834,4,94,0,139,NULL),(835,4,81,0,140,NULL),(836,4,82,0,140,NULL),(837,4,66,0,140,NULL),(838,4,67,0,140,NULL),(839,4,93,0,140,NULL),(840,4,94,0,140,NULL),(841,4,81,0,141,NULL),(842,4,82,0,141,NULL),(843,4,66,0,141,NULL),(844,4,67,0,141,NULL),(845,4,93,0,141,NULL),(846,4,94,0,141,NULL),(847,4,81,0,142,NULL),(848,4,82,0,142,NULL),(849,4,66,0,142,NULL),(850,4,67,0,142,NULL),(851,4,93,0,142,NULL),(852,4,94,0,142,NULL),(853,4,81,0,143,NULL),(854,4,82,0,143,NULL),(855,4,66,0,143,NULL),(856,4,67,0,143,NULL),(857,4,93,0,143,NULL),(858,4,94,0,143,NULL),(859,4,81,0,144,NULL),(860,4,82,0,144,NULL),(861,4,66,0,144,NULL),(862,4,67,0,144,NULL),(863,4,93,0,144,NULL),(864,4,94,0,144,NULL),(865,4,81,0,145,NULL),(866,4,82,0,145,NULL),(867,4,66,0,145,NULL),(868,4,67,0,145,NULL),(869,4,93,0,145,NULL),(870,4,94,0,145,NULL),(871,4,81,0,146,NULL),(872,4,82,0,146,NULL),(873,4,66,0,146,NULL),(874,4,67,0,146,NULL),(875,4,93,0,146,NULL),(876,4,94,0,146,NULL),(877,4,81,0,147,NULL),(878,4,82,0,147,NULL),(879,4,66,0,147,NULL),(880,4,67,0,147,NULL),(881,4,93,0,147,NULL),(882,4,94,0,147,NULL),(883,4,81,0,148,NULL),(884,4,82,0,148,NULL),(885,4,66,0,148,NULL),(886,4,67,0,148,NULL),(887,4,93,0,148,NULL),(888,4,94,0,148,NULL),(889,4,81,0,149,NULL),(890,4,82,0,149,NULL),(891,4,66,0,149,NULL),(892,4,67,0,149,NULL),(893,4,93,0,149,NULL),(894,4,94,0,149,NULL),(895,4,81,0,150,NULL),(896,4,82,0,150,NULL),(897,4,66,0,150,NULL),(898,4,67,0,150,NULL),(899,4,93,0,150,NULL),(900,4,94,0,150,NULL),(901,4,81,0,151,NULL),(902,4,82,0,151,NULL),(903,4,66,0,151,NULL),(904,4,67,0,151,NULL),(905,4,93,0,151,NULL),(906,4,94,0,151,NULL),(907,4,81,0,152,NULL),(908,4,82,0,152,NULL),(909,4,66,0,152,NULL),(910,4,67,0,152,NULL),(911,4,93,0,152,NULL),(912,4,94,0,152,NULL),(913,4,81,0,153,NULL),(914,4,82,0,153,NULL),(915,4,66,0,153,NULL),(916,4,67,0,153,NULL),(917,4,93,0,153,NULL),(918,4,94,0,153,NULL),(919,4,81,0,154,NULL),(920,4,82,0,154,NULL),(921,4,66,0,154,NULL),(922,4,67,0,154,NULL),(923,4,93,0,154,NULL),(924,4,94,0,154,NULL),(925,4,81,0,155,NULL),(926,4,82,0,155,NULL),(927,4,66,0,155,NULL),(928,4,67,0,155,NULL),(929,4,93,0,155,NULL),(930,4,94,0,155,NULL),(931,4,81,0,156,NULL),(932,4,82,0,156,NULL),(933,4,66,0,156,NULL),(934,4,67,0,156,NULL),(935,4,93,0,156,NULL),(936,4,94,0,156,NULL),(937,4,81,0,157,NULL),(938,4,82,0,157,NULL),(939,4,66,0,157,NULL),(940,4,67,0,157,NULL),(941,4,93,0,157,NULL),(942,4,94,0,157,NULL),(943,4,81,0,158,NULL),(944,4,82,0,158,NULL),(945,4,66,0,158,NULL),(946,4,67,0,158,NULL),(947,4,93,0,158,NULL),(948,4,94,0,158,NULL),(949,4,81,0,159,NULL),(950,4,82,0,159,NULL),(951,4,66,0,159,NULL),(952,4,67,0,159,NULL),(953,4,93,0,159,NULL),(954,4,94,0,159,NULL),(955,4,81,0,160,NULL),(956,4,82,0,160,NULL),(957,4,66,0,160,NULL),(958,4,67,0,160,NULL),(959,4,93,0,160,NULL),(960,4,94,0,160,NULL),(961,4,81,0,161,NULL),(962,4,82,0,161,NULL),(963,4,66,0,161,NULL),(964,4,67,0,161,NULL),(965,4,93,0,161,NULL),(966,4,94,0,161,NULL),(967,4,81,0,162,NULL),(968,4,82,0,162,NULL),(969,4,66,0,162,NULL),(970,4,67,0,162,NULL),(971,4,93,0,162,NULL),(972,4,94,0,162,NULL),(973,4,81,0,163,NULL),(974,4,82,0,163,NULL),(975,4,66,0,163,NULL),(976,4,67,0,163,NULL),(977,4,93,0,163,NULL),(978,4,94,0,163,NULL),(979,4,81,0,164,NULL),(980,4,82,0,164,NULL),(981,4,66,0,164,NULL),(982,4,67,0,164,NULL),(983,4,93,0,164,NULL),(984,4,94,0,164,NULL),(985,4,81,0,165,NULL),(986,4,82,0,165,NULL),(987,4,66,0,165,NULL),(988,4,67,0,165,NULL),(989,4,93,0,165,NULL),(990,4,94,0,165,NULL),(991,4,81,0,166,NULL),(992,4,82,0,166,NULL),(993,4,66,0,166,NULL),(994,4,67,0,166,NULL),(995,4,93,0,166,NULL),(996,4,94,0,166,NULL),(997,4,81,0,167,NULL),(998,4,82,0,167,NULL),(999,4,66,0,167,NULL),(1000,4,67,0,167,NULL),(1001,4,93,0,167,NULL),(1002,4,94,0,167,NULL),(1003,4,81,0,168,NULL),(1004,4,82,0,168,NULL),(1005,4,66,0,168,NULL),(1006,4,67,0,168,NULL),(1007,4,93,0,168,NULL),(1008,4,94,0,168,NULL),(1009,4,81,0,169,NULL),(1010,4,82,0,169,NULL),(1011,4,66,0,169,NULL),(1012,4,67,0,169,NULL),(1013,4,93,0,169,NULL),(1014,4,94,0,169,NULL),(1015,4,81,0,170,NULL),(1016,4,82,0,170,NULL),(1017,4,66,0,170,NULL),(1018,4,67,0,170,NULL),(1019,4,93,0,170,NULL),(1020,4,94,0,170,NULL),(1021,4,81,0,171,NULL),(1022,4,82,0,171,NULL),(1023,4,66,0,171,NULL),(1024,4,67,0,171,NULL),(1025,4,93,0,171,NULL),(1026,4,94,0,171,NULL),(1027,4,81,0,172,NULL),(1028,4,82,0,172,NULL),(1029,4,66,0,172,NULL),(1030,4,67,0,172,NULL),(1031,4,93,0,172,NULL),(1032,4,94,0,172,NULL),(1033,4,81,0,173,NULL),(1034,4,82,0,173,NULL),(1035,4,66,0,173,NULL),(1036,4,67,0,173,NULL),(1037,4,93,0,173,NULL),(1038,4,94,0,173,NULL),(1039,4,81,0,174,NULL),(1040,4,82,0,174,NULL),(1041,4,66,0,174,NULL),(1042,4,67,0,174,NULL),(1043,4,93,0,174,NULL),(1044,4,94,0,174,NULL),(1045,4,81,0,175,NULL),(1046,4,82,0,175,NULL),(1047,4,66,0,175,NULL),(1048,4,67,0,175,NULL),(1049,4,93,0,175,NULL),(1050,4,94,0,175,NULL),(1051,4,81,0,176,NULL),(1052,4,82,0,176,NULL),(1053,4,66,0,176,NULL),(1054,4,67,0,176,NULL),(1055,4,93,0,176,NULL),(1056,4,94,0,176,NULL),(1057,4,81,0,177,NULL),(1058,4,82,0,177,NULL),(1059,4,66,0,177,NULL),(1060,4,67,0,177,NULL),(1061,4,93,0,177,NULL),(1062,4,94,0,177,NULL),(1063,4,81,0,178,NULL),(1064,4,82,0,178,NULL),(1065,4,66,0,178,NULL),(1066,4,67,0,178,NULL),(1067,4,93,0,178,NULL),(1068,4,94,0,178,NULL),(1069,4,81,0,179,NULL),(1070,4,82,0,179,NULL),(1071,4,66,0,179,NULL),(1072,4,67,0,179,NULL),(1073,4,93,0,179,NULL),(1074,4,94,0,179,NULL),(1075,4,81,0,180,NULL),(1076,4,82,0,180,NULL),(1077,4,66,0,180,NULL),(1078,4,67,0,180,NULL),(1079,4,93,0,180,NULL),(1080,4,94,0,180,NULL),(1081,4,81,0,181,NULL),(1082,4,82,0,181,NULL),(1083,4,66,0,181,NULL),(1084,4,67,0,181,NULL),(1085,4,93,0,181,NULL),(1086,4,94,0,181,NULL),(1087,4,81,0,182,NULL),(1088,4,82,0,182,NULL),(1089,4,66,0,182,NULL),(1090,4,67,0,182,NULL),(1091,4,93,0,182,NULL),(1092,4,94,0,182,NULL),(1093,4,81,0,183,NULL),(1094,4,82,0,183,NULL),(1095,4,66,0,183,NULL),(1096,4,67,0,183,NULL),(1097,4,93,0,183,NULL),(1098,4,94,0,183,NULL);
/*!40000 ALTER TABLE `catalog_product_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_decimal`
--

DROP TABLE IF EXISTS `catalog_product_entity_decimal`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_entity_decimal` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `value` decimal(12,4) default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_PRD_ENTT_DEC_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_DEC_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=888 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Decimal Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_entity_decimal`
--

LOCK TABLES `catalog_product_entity_decimal` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_decimal` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_decimal` VALUES (9,4,69,0,3,'2.0000'),(10,4,64,0,3,'19.9900'),(11,4,65,0,3,NULL),(12,4,68,0,3,NULL),(13,4,64,0,4,'39.9900'),(14,4,65,0,4,NULL),(15,4,68,0,4,NULL),(16,4,69,0,4,'1.0000'),(21,4,69,0,6,'1.0000'),(22,4,64,0,6,'17.9900'),(23,4,65,0,6,NULL),(24,4,68,0,6,NULL),(25,4,69,0,7,'1.1500'),(26,4,64,0,7,'34.9900'),(27,4,65,0,7,NULL),(28,4,68,0,7,NULL),(29,4,69,0,8,'1.1500'),(30,4,64,0,8,'34.9900'),(31,4,65,0,8,NULL),(32,4,68,0,8,NULL),(35,4,69,0,10,'2.0000'),(36,4,64,0,10,'49.9900'),(37,4,65,0,10,NULL),(38,4,68,0,10,NULL),(39,4,69,0,11,'0.3500'),(40,4,64,0,11,'18.9900'),(41,4,65,0,11,NULL),(42,4,68,0,11,NULL),(43,4,69,0,12,'0.5000'),(44,4,64,0,12,'6.9900'),(45,4,65,0,12,NULL),(46,4,68,0,12,NULL),(47,4,69,0,13,'0.5000'),(48,4,64,0,13,'4.9900'),(49,4,65,0,13,NULL),(50,4,68,0,13,NULL),(51,4,69,0,14,'1.5000'),(52,4,64,0,14,'14.9900'),(53,4,65,0,14,NULL),(54,4,68,0,14,NULL),(55,4,69,0,15,'1.7500'),(56,4,64,0,15,'14.9900'),(57,4,65,0,15,NULL),(58,4,68,0,15,NULL),(59,4,69,0,16,'1.7500'),(60,4,64,0,16,'17.5000'),(61,4,65,0,16,NULL),(62,4,68,0,16,NULL),(63,4,69,0,17,'1.0000'),(64,4,64,0,17,'12.9900'),(65,4,65,0,17,NULL),(66,4,68,0,17,NULL),(67,4,69,0,18,'0.9900'),(68,4,64,0,18,'5.9900'),(69,4,65,0,18,NULL),(70,4,68,0,18,NULL),(71,4,69,0,19,'2.0000'),(72,4,64,0,19,'39.9900'),(73,4,65,0,19,NULL),(74,4,68,0,19,NULL),(75,4,69,0,20,'3.0000'),(76,4,64,0,20,'69.9900'),(77,4,65,0,20,NULL),(78,4,68,0,20,NULL),(79,4,69,0,21,'0.8500'),(80,4,64,0,21,'5.9900'),(81,4,65,0,21,NULL),(82,4,68,0,21,NULL),(83,4,69,0,22,'1.2500'),(84,4,64,0,22,'11.9900'),(85,4,65,0,22,NULL),(86,4,68,0,22,NULL),(87,4,69,0,23,'2.0000'),(88,4,64,0,23,'69.9900'),(89,4,65,0,23,NULL),(90,4,68,0,23,NULL),(91,4,69,0,24,'0.7000'),(92,4,64,0,24,'19.9900'),(93,4,65,0,24,NULL),(94,4,68,0,24,NULL),(95,4,69,0,25,'0.7000'),(96,4,64,0,25,'11.9900'),(97,4,65,0,25,NULL),(98,4,68,0,25,NULL),(99,4,69,0,26,'3.0000'),(100,4,64,0,26,'45.0000'),(101,4,65,0,26,NULL),(102,4,68,0,26,NULL),(103,4,69,0,27,'1.5000'),(104,4,64,0,27,'55.0000'),(105,4,65,0,27,NULL),(106,4,68,0,27,NULL),(107,4,69,0,28,'1.5000'),(108,4,64,0,28,'55.0000'),(109,4,65,0,28,NULL),(110,4,68,0,28,NULL),(111,4,69,0,29,'2.0000'),(112,4,64,0,29,'59.9900'),(113,4,65,0,29,NULL),(114,4,68,0,29,NULL),(119,4,69,0,31,'1.4500'),(120,4,64,0,31,'37.5000'),(121,4,65,0,31,NULL),(122,4,68,0,31,NULL),(123,4,69,0,32,'0.9900'),(124,4,64,0,32,'22.5000'),(125,4,65,0,32,NULL),(126,4,68,0,32,NULL),(127,4,69,0,33,'1.5000'),(128,4,64,0,33,'12.9900'),(129,4,65,0,33,NULL),(130,4,68,0,33,NULL),(131,4,69,0,34,'0.2500'),(132,4,64,0,34,'1.9900'),(133,4,65,0,34,NULL),(134,4,68,0,34,NULL),(135,4,69,0,35,'0.5000'),(136,4,64,0,35,'7.5000'),(137,4,65,0,35,NULL),(138,4,68,0,35,NULL),(139,4,69,0,36,'0.3500'),(140,4,64,0,36,'3.0000'),(141,4,65,0,36,NULL),(142,4,68,0,36,NULL),(143,4,69,0,37,'0.3500'),(144,4,64,0,37,'3.0000'),(145,4,65,0,37,NULL),(146,4,68,0,37,NULL),(147,4,69,0,38,'0.2500'),(148,4,64,0,38,'5.9900'),(149,4,65,0,38,NULL),(150,4,68,0,38,NULL),(151,4,69,0,39,'0.2500'),(152,4,64,0,39,'2.5000'),(153,4,65,0,39,NULL),(154,4,68,0,39,NULL),(155,4,69,0,40,'0.2500'),(156,4,64,0,40,'1.0000'),(157,4,65,0,40,NULL),(158,4,68,0,40,NULL),(159,4,69,0,41,'1.7000'),(160,4,64,0,41,'19.9900'),(161,4,65,0,41,NULL),(162,4,68,0,41,NULL),(163,4,69,0,42,'1.5000'),(164,4,64,0,42,'35.9900'),(165,4,65,0,42,NULL),(166,4,68,0,42,NULL),(167,4,69,0,43,'1.0000'),(168,4,64,0,43,'7.9900'),(169,4,65,0,43,NULL),(170,4,68,0,43,NULL),(171,4,69,0,44,'0.4900'),(172,4,64,0,44,'12.9900'),(173,4,65,0,44,NULL),(174,4,68,0,44,NULL),(175,4,69,0,45,'0.3500'),(176,4,64,0,45,'5.9900'),(177,4,65,0,45,NULL),(178,4,68,0,45,NULL),(179,4,69,0,46,'0.3000'),(180,4,64,0,46,'2.9900'),(181,4,65,0,46,NULL),(182,4,68,0,46,NULL),(183,4,69,0,47,'0.3500'),(184,4,64,0,47,'4.9900'),(185,4,65,0,47,NULL),(186,4,68,0,47,NULL),(187,4,69,0,48,'0.3000'),(188,4,64,0,48,'4.9900'),(189,4,65,0,48,NULL),(190,4,68,0,48,NULL),(191,4,69,0,49,'1.0000'),(192,4,64,0,49,'12.9900'),(193,4,65,0,49,NULL),(194,4,68,0,49,NULL),(195,4,69,0,50,'0.5000'),(196,4,64,0,50,'11.5000'),(197,4,65,0,50,NULL),(198,4,68,0,50,NULL),(199,4,69,0,51,'0.5000'),(200,4,64,0,51,'12.9900'),(201,4,65,0,51,NULL),(202,4,68,0,51,NULL),(203,4,69,0,52,'0.5000'),(204,4,64,0,52,'12.9900'),(205,4,65,0,52,NULL),(206,4,68,0,52,NULL),(207,4,69,0,53,'0.9500'),(208,4,64,0,53,'7.9900'),(209,4,65,0,53,NULL),(210,4,68,0,53,NULL),(211,4,69,0,54,'0.9500'),(212,4,64,0,54,'4.5000'),(213,4,65,0,54,NULL),(214,4,68,0,54,NULL),(215,4,69,0,55,'0.4900'),(216,4,64,0,55,'4.5000'),(217,4,65,0,55,NULL),(218,4,68,0,55,NULL),(219,4,69,0,56,'0.4900'),(220,4,64,0,56,'4.5000'),(221,4,65,0,56,NULL),(222,4,68,0,56,NULL),(223,4,69,0,57,'0.4900'),(224,4,64,0,57,'3.9900'),(225,4,65,0,57,NULL),(226,4,68,0,57,NULL),(227,4,69,0,58,'0.7500'),(228,4,64,0,58,'5.9900'),(229,4,65,0,58,NULL),(230,4,68,0,58,NULL),(231,4,69,0,59,'1.2000'),(232,4,64,0,59,'15.9900'),(233,4,65,0,59,NULL),(234,4,68,0,59,NULL),(235,4,69,0,60,'0.6500'),(236,4,64,0,60,'5.5000'),(237,4,65,0,60,NULL),(238,4,68,0,60,NULL),(239,4,69,0,61,'0.5600'),(240,4,64,0,61,'5.5000'),(241,4,65,0,61,NULL),(242,4,68,0,61,NULL),(243,4,69,0,62,'1.5000'),(244,4,64,0,62,'29.9900'),(245,4,65,0,62,NULL),(246,4,68,0,62,NULL),(247,4,69,0,63,'1.7500'),(248,4,64,0,63,'24.9900'),(249,4,65,0,63,NULL),(250,4,68,0,63,NULL),(251,4,69,0,64,'0.9500'),(252,4,64,0,64,'3.0000'),(253,4,65,0,64,NULL),(254,4,68,0,64,NULL),(255,4,69,0,65,'0.4900'),(256,4,64,0,65,'4.9900'),(257,4,65,0,65,NULL),(258,4,68,0,65,NULL),(259,4,69,0,66,'0.5100'),(260,4,64,0,66,'4.9900'),(261,4,65,0,66,NULL),(262,4,68,0,66,NULL),(263,4,69,0,67,'0.9900'),(264,4,64,0,67,'6.9900'),(265,4,65,0,67,NULL),(266,4,68,0,67,NULL),(267,4,69,0,68,'0.9900'),(268,4,64,0,68,'6.9900'),(269,4,65,0,68,NULL),(270,4,68,0,68,NULL),(275,4,69,0,70,'0.7000'),(276,4,64,0,70,'5.9900'),(277,4,65,0,70,NULL),(278,4,68,0,70,NULL),(279,4,69,0,71,'0.4000'),(280,4,64,0,71,'1.5000'),(281,4,65,0,71,NULL),(282,4,68,0,71,NULL),(283,4,69,0,72,'0.3000'),(284,4,64,0,72,'1.9900'),(285,4,65,0,72,NULL),(286,4,68,0,72,NULL),(287,4,69,0,73,'0.3000'),(288,4,64,0,73,'1.9900'),(289,4,65,0,73,NULL),(290,4,68,0,73,NULL),(291,4,69,0,74,'0.7500'),(292,4,64,0,74,'17.5000'),(293,4,65,0,74,NULL),(294,4,68,0,74,NULL),(295,4,69,0,75,'1.4900'),(296,4,64,0,75,'11.9900'),(297,4,65,0,75,NULL),(298,4,68,0,75,NULL),(299,4,69,0,76,'1.2500'),(300,4,64,0,76,'9.9900'),(301,4,65,0,76,NULL),(302,4,68,0,76,NULL),(303,4,69,0,77,'1.0000'),(304,4,64,0,77,'4.9900'),(305,4,65,0,77,NULL),(306,4,68,0,77,NULL),(307,4,69,0,78,'0.6500'),(308,4,64,0,78,'4.9900'),(309,4,65,0,78,NULL),(310,4,68,0,78,NULL),(311,4,69,0,79,'0.6500'),(312,4,64,0,79,'7.5000'),(313,4,65,0,79,NULL),(314,4,68,0,79,NULL),(315,4,69,0,80,'0.2000'),(316,4,64,0,80,'1.5000'),(317,4,65,0,80,NULL),(318,4,68,0,80,NULL),(319,4,69,0,81,'2.0000'),(320,4,64,0,81,'24.9900'),(321,4,65,0,81,NULL),(322,4,68,0,81,NULL),(323,4,69,0,82,'3.4000'),(324,4,64,0,82,'65.9900'),(325,4,65,0,82,NULL),(326,4,68,0,82,NULL),(327,4,69,0,83,'1.5000'),(328,4,64,0,83,'15.9900'),(329,4,65,0,83,NULL),(330,4,68,0,83,NULL),(331,4,69,0,84,'1.0000'),(332,4,64,0,84,'14.9900'),(333,4,65,0,84,NULL),(334,4,68,0,84,NULL),(339,4,69,0,86,'1.5000'),(340,4,64,0,86,'9.9900'),(341,4,65,0,86,NULL),(342,4,68,0,86,NULL),(343,4,69,0,87,'1.5000'),(344,4,64,0,87,'27.5000'),(345,4,65,0,87,NULL),(346,4,68,0,87,NULL),(347,4,69,0,88,'1.5000'),(348,4,64,0,88,'27.5000'),(349,4,65,0,88,NULL),(350,4,68,0,88,NULL),(355,4,69,0,90,'1.5000'),(356,4,64,0,90,'11.9900'),(357,4,65,0,90,NULL),(358,4,68,0,90,NULL),(359,4,69,0,91,'0.4000'),(360,4,64,0,91,'3.5000'),(361,4,65,0,91,NULL),(362,4,68,0,91,NULL),(363,4,69,0,92,'1.4000'),(364,4,64,0,92,'9.5000'),(365,4,65,0,92,NULL),(366,4,68,0,92,NULL),(367,4,69,0,93,'1.0000'),(368,4,64,0,93,'6.9900'),(369,4,65,0,93,NULL),(370,4,68,0,93,NULL),(371,4,69,0,94,'0.7500'),(372,4,64,0,94,'8.9900'),(373,4,65,0,94,NULL),(374,4,68,0,94,NULL),(375,4,69,0,95,'2.7000'),(376,4,64,0,95,'29.9900'),(377,4,65,0,95,NULL),(378,4,68,0,95,NULL),(379,4,69,0,96,'2.7000'),(380,4,64,0,96,'27.5000'),(381,4,65,0,96,NULL),(382,4,68,0,96,NULL),(383,4,69,0,97,'1.5000'),(384,4,64,0,97,'34.9900'),(385,4,65,0,97,NULL),(386,4,68,0,97,NULL),(387,4,69,0,98,'1.5000'),(388,4,64,0,98,'35.9900'),(389,4,65,0,98,NULL),(390,4,68,0,98,NULL),(391,4,69,0,99,'1.5000'),(392,4,64,0,99,'29.9900'),(393,4,65,0,99,NULL),(394,4,68,0,99,NULL),(395,4,69,0,100,'0.2500'),(396,4,64,0,100,'1.5000'),(397,4,65,0,100,NULL),(398,4,68,0,100,NULL),(399,4,69,0,101,'0.6500'),(400,4,64,0,101,'7.9900'),(401,4,65,0,101,NULL),(402,4,68,0,101,NULL),(403,4,69,0,102,'0.6500'),(404,4,64,0,102,'10.9900'),(405,4,65,0,102,NULL),(406,4,68,0,102,NULL),(407,4,69,0,103,'1.4500'),(408,4,64,0,103,'39.9900'),(409,4,65,0,103,NULL),(410,4,68,0,103,NULL),(411,4,69,0,104,'2.2500'),(412,4,64,0,104,'39.9900'),(413,4,65,0,104,NULL),(414,4,68,0,104,NULL),(415,4,69,0,105,'1.5000'),(416,4,64,0,105,'27.5000'),(417,4,65,0,105,NULL),(418,4,68,0,105,NULL),(419,4,69,0,106,'0.5000'),(420,4,64,0,106,'4.9900'),(421,4,65,0,106,NULL),(422,4,68,0,106,NULL),(423,4,69,0,107,'1.0000'),(424,4,64,0,107,'22.9900'),(425,4,65,0,107,NULL),(426,4,68,0,107,NULL),(427,4,69,0,108,'0.4500'),(428,4,64,0,108,'6.5000'),(429,4,65,0,108,NULL),(430,4,68,0,108,NULL),(431,4,69,0,109,'0.4000'),(432,4,64,0,109,'3.9900'),(433,4,65,0,109,NULL),(434,4,68,0,109,NULL),(435,4,69,0,110,'1.0000'),(436,4,64,0,110,'12.9900'),(437,4,65,0,110,NULL),(438,4,68,0,110,NULL),(439,4,69,0,111,'1.0000'),(440,4,64,0,111,'11.9900'),(441,4,65,0,111,NULL),(442,4,68,0,111,NULL),(447,4,69,0,113,'1.5000'),(448,4,64,0,113,'29.9900'),(449,4,65,0,113,NULL),(450,4,68,0,113,NULL),(451,4,69,0,114,'0.4500'),(452,4,64,0,114,'3.9900'),(453,4,65,0,114,NULL),(454,4,68,0,114,NULL),(455,4,69,0,115,'0.5010'),(456,4,64,0,115,'5.7500'),(457,4,65,0,115,NULL),(458,4,68,0,115,NULL),(459,4,69,0,116,'0.7500'),(460,4,64,0,116,'11.5000'),(461,4,65,0,116,NULL),(462,4,68,0,116,NULL),(467,4,69,0,118,'2.3500'),(468,4,64,0,118,'45.0000'),(469,4,65,0,118,NULL),(470,4,68,0,118,NULL),(471,4,69,0,119,'4.9000'),(472,4,64,0,119,'34.9900'),(473,4,65,0,119,NULL),(474,4,68,0,119,NULL),(475,4,69,0,120,'0.2500'),(476,4,64,0,120,'1.5000'),(477,4,65,0,120,NULL),(478,4,68,0,120,NULL),(479,4,69,0,121,'500.0000'),(480,4,64,0,121,'2.5000'),(481,4,65,0,121,NULL),(482,4,68,0,121,NULL),(483,4,69,0,122,'0.3450'),(484,4,64,0,122,'3.9900'),(485,4,65,0,122,NULL),(486,4,68,0,122,NULL),(487,4,69,0,123,'0.3400'),(488,4,64,0,123,'2.2500'),(489,4,65,0,123,NULL),(490,4,68,0,123,NULL),(491,4,69,0,124,'1.0000'),(492,4,64,0,124,'9.9900'),(493,4,65,0,124,NULL),(494,4,68,0,124,NULL),(495,4,69,0,125,'1.0000'),(496,4,64,0,125,'12.5000'),(497,4,65,0,125,NULL),(498,4,68,0,125,NULL),(499,4,69,0,126,'0.9900'),(500,4,64,0,126,'4.9900'),(501,4,65,0,126,NULL),(502,4,68,0,126,NULL),(503,4,69,0,127,'2.5000'),(504,4,64,0,127,'39.9900'),(505,4,65,0,127,NULL),(506,4,68,0,127,NULL),(507,4,69,0,128,'0.9500'),(508,4,64,0,128,'5.9900'),(509,4,65,0,128,NULL),(510,4,68,0,128,NULL),(511,4,69,0,129,'0.9000'),(512,4,64,0,129,'14.9900'),(513,4,65,0,129,NULL),(514,4,68,0,129,NULL),(515,4,69,0,130,'900.0000'),(516,4,64,0,130,'10.9900'),(517,4,65,0,130,NULL),(518,4,68,0,130,NULL),(519,4,69,0,131,'1.2000'),(520,4,64,0,131,'21.4800'),(521,4,65,0,131,NULL),(522,4,68,0,131,NULL),(523,4,69,0,132,'0.7500'),(524,4,64,0,132,'8.9900'),(525,4,65,0,132,NULL),(526,4,68,0,132,NULL),(527,4,129,0,132,NULL),(528,4,129,0,37,NULL),(529,4,129,0,36,NULL),(530,4,129,0,48,NULL),(531,4,129,0,25,NULL),(532,4,129,0,24,NULL),(533,4,129,0,87,NULL),(534,4,69,0,133,'0.9500'),(535,4,64,0,133,'13.9900'),(536,4,65,0,133,NULL),(537,4,68,0,133,NULL),(538,4,129,0,133,NULL),(539,4,129,0,3,NULL),(540,4,129,0,47,NULL),(541,4,129,0,46,NULL),(542,4,129,0,41,NULL),(543,4,129,0,70,NULL),(544,4,129,0,66,NULL),(545,4,129,0,65,NULL),(546,4,129,0,61,NULL),(547,4,129,0,60,NULL),(548,4,129,0,71,NULL),(549,4,129,0,83,NULL),(550,4,129,0,79,NULL),(551,4,129,0,75,NULL),(552,4,129,0,100,NULL),(553,4,69,0,134,'0.7500'),(554,4,64,0,134,'11.0000'),(555,4,65,0,134,NULL),(556,4,68,0,134,NULL),(557,4,129,0,134,NULL),(558,4,69,0,135,'0.7500'),(559,4,64,0,135,'11.9900'),(560,4,65,0,135,NULL),(561,4,68,0,135,NULL),(562,4,129,0,135,NULL),(563,4,69,0,136,'0.7000'),(564,4,64,0,136,'10.0000'),(565,4,65,0,136,NULL),(566,4,68,0,136,NULL),(567,4,129,0,136,NULL),(568,4,69,0,137,'0.4900'),(569,4,64,0,137,'7.0000'),(570,4,65,0,137,NULL),(571,4,68,0,137,NULL),(572,4,129,0,137,NULL),(573,4,69,0,138,'0.9500'),(574,4,64,0,138,'18.9900'),(575,4,65,0,138,NULL),(576,4,68,0,138,NULL),(577,4,129,0,138,NULL),(578,4,69,0,139,'0.6500'),(579,4,64,0,139,'12.5000'),(580,4,65,0,139,NULL),(581,4,68,0,139,NULL),(582,4,129,0,139,NULL),(583,4,69,0,140,'0.5000'),(584,4,64,0,140,'9.0000'),(585,4,65,0,140,NULL),(586,4,68,0,140,NULL),(587,4,129,0,140,NULL),(588,4,69,0,141,'0.5000'),(589,4,64,0,141,'10.5000'),(590,4,65,0,141,NULL),(591,4,68,0,141,NULL),(592,4,129,0,141,NULL),(593,4,69,0,142,'0.4900'),(594,4,64,0,142,'7.5000'),(595,4,65,0,142,NULL),(596,4,68,0,142,NULL),(597,4,129,0,142,NULL),(598,4,129,0,106,NULL),(599,4,129,0,109,NULL),(600,4,129,0,115,NULL),(601,4,129,0,35,NULL),(602,4,69,0,143,'0.9900'),(603,4,64,0,143,'17.5000'),(604,4,65,0,143,NULL),(605,4,68,0,143,NULL),(606,4,129,0,143,NULL),(607,4,69,0,144,'0.9900'),(608,4,64,0,144,'17.5000'),(609,4,65,0,144,NULL),(610,4,68,0,144,NULL),(611,4,129,0,144,NULL),(612,4,69,0,145,'0.9900'),(613,4,64,0,145,'16.9900'),(614,4,65,0,145,NULL),(615,4,68,0,145,NULL),(616,4,129,0,145,NULL),(617,4,69,0,146,'0.5100'),(618,4,64,0,146,'9.5000'),(619,4,65,0,146,NULL),(620,4,68,0,146,NULL),(621,4,129,0,146,NULL),(622,4,69,0,147,'0.5100'),(623,4,64,0,147,'11.5000'),(624,4,65,0,147,NULL),(625,4,68,0,147,NULL),(626,4,129,0,147,NULL),(627,4,69,0,148,'0.9900'),(628,4,64,0,148,'17.5000'),(629,4,65,0,148,NULL),(630,4,68,0,148,NULL),(631,4,129,0,148,NULL),(632,4,69,0,149,'0.9900'),(633,4,64,0,149,'6.5000'),(634,4,65,0,149,NULL),(635,4,68,0,149,NULL),(636,4,129,0,149,NULL),(637,4,129,0,88,NULL),(638,4,69,0,150,'1.4900'),(639,4,64,0,150,'27.5000'),(640,4,65,0,150,NULL),(641,4,68,0,150,NULL),(642,4,129,0,150,NULL),(643,4,129,0,45,NULL),(644,4,129,0,76,NULL),(645,4,129,0,17,NULL),(646,4,129,0,18,NULL),(647,4,69,0,151,'0.9900'),(648,4,64,0,151,'14.9900'),(649,4,65,0,151,NULL),(650,4,68,0,151,NULL),(651,4,129,0,151,NULL),(652,4,129,0,63,NULL),(653,4,129,0,91,NULL),(654,4,129,0,80,NULL),(655,4,129,0,131,NULL),(656,4,129,0,129,NULL),(657,4,129,0,108,NULL),(658,4,129,0,53,NULL),(659,4,129,0,54,NULL),(660,4,129,0,55,NULL),(661,4,129,0,56,NULL),(662,4,129,0,57,NULL),(663,4,129,0,64,NULL),(664,4,129,0,67,NULL),(665,4,129,0,40,NULL),(666,4,129,0,38,NULL),(667,4,129,0,32,NULL),(668,4,129,0,31,NULL),(669,4,129,0,44,NULL),(670,4,129,0,28,NULL),(671,4,129,0,14,NULL),(672,4,129,0,82,NULL),(673,4,69,0,152,'2.0000'),(674,4,64,0,152,'21.9900'),(675,4,65,0,152,NULL),(676,4,68,0,152,NULL),(677,4,129,0,152,NULL),(678,4,69,0,153,'0.9900'),(679,4,64,0,153,'5.0000'),(680,4,65,0,153,NULL),(681,4,68,0,153,NULL),(682,4,129,0,153,NULL),(683,4,69,0,154,'0.5000'),(684,4,64,0,154,'5.0000'),(685,4,65,0,154,NULL),(686,4,68,0,154,NULL),(687,4,129,0,154,NULL),(688,4,69,0,155,'1.4900'),(689,4,64,0,155,'34.9500'),(690,4,65,0,155,NULL),(691,4,68,0,155,NULL),(692,4,129,0,155,NULL),(693,4,69,0,156,'1.4900'),(694,4,64,0,156,'34.9500'),(695,4,65,0,156,NULL),(696,4,68,0,156,NULL),(697,4,129,0,156,NULL),(698,4,129,0,121,NULL),(699,4,129,0,11,NULL),(700,4,129,0,4,NULL),(701,4,129,0,7,NULL),(702,4,129,0,8,NULL),(703,4,129,0,10,NULL),(704,4,129,0,29,NULL),(705,4,129,0,26,NULL),(706,4,129,0,23,NULL),(707,4,129,0,22,NULL),(708,4,129,0,21,NULL),(709,4,129,0,16,NULL),(710,4,129,0,15,NULL),(711,4,129,0,13,NULL),(712,4,129,0,12,NULL),(713,4,129,0,52,NULL),(714,4,129,0,51,NULL),(715,4,129,0,50,NULL),(716,4,129,0,49,NULL),(717,4,129,0,42,NULL),(718,4,129,0,39,NULL),(719,4,129,0,34,NULL),(720,4,129,0,33,NULL),(721,4,129,0,130,NULL),(722,4,129,0,128,NULL),(723,4,129,0,127,NULL),(724,4,129,0,126,NULL),(725,4,129,0,125,NULL),(726,4,129,0,123,NULL),(727,4,129,0,95,NULL),(728,4,129,0,94,NULL),(729,4,129,0,93,NULL),(730,4,129,0,90,NULL),(731,4,69,0,157,'1.5000'),(732,4,64,0,157,'17.5000'),(733,4,65,0,157,NULL),(734,4,68,0,157,NULL),(735,4,129,0,157,NULL),(736,4,129,0,120,NULL),(737,4,129,0,119,NULL),(738,4,129,0,118,NULL),(739,4,129,0,114,NULL),(740,4,69,0,158,'0.4900'),(741,4,64,0,158,'14.5000'),(742,4,65,0,158,NULL),(743,4,68,0,158,NULL),(744,4,129,0,158,NULL),(745,4,69,0,159,'0.4900'),(746,4,64,0,159,'14.5000'),(747,4,65,0,159,NULL),(748,4,68,0,159,NULL),(749,4,129,0,159,NULL),(750,4,129,0,68,NULL),(751,4,129,0,58,NULL),(752,4,129,0,111,NULL),(753,4,129,0,103,NULL),(754,4,129,0,102,NULL),(755,4,129,0,101,NULL),(756,4,129,0,98,NULL),(757,4,129,0,97,NULL),(758,4,129,0,96,NULL),(759,4,129,0,92,NULL),(760,4,129,0,84,NULL),(761,4,129,0,74,NULL),(762,4,129,0,72,NULL),(763,4,129,0,62,NULL),(764,4,69,0,160,'2.0000'),(765,4,64,0,160,'69.9900'),(766,4,65,0,160,NULL),(767,4,68,0,160,NULL),(768,4,129,0,160,NULL),(769,4,69,0,161,'3.5000'),(770,4,64,0,161,'79.9900'),(771,4,65,0,161,NULL),(772,4,68,0,161,NULL),(773,4,129,0,161,NULL),(774,4,69,0,162,'0.7500'),(775,4,64,0,162,'28.9900'),(776,4,65,0,162,NULL),(777,4,68,0,162,NULL),(778,4,129,0,162,NULL),(779,4,69,0,163,'0.7500'),(780,4,64,0,163,'22.0000'),(781,4,65,0,163,NULL),(782,4,68,0,163,NULL),(783,4,129,0,163,NULL),(784,4,69,0,164,'0.7500'),(785,4,64,0,164,'27.5000'),(786,4,65,0,164,NULL),(787,4,68,0,164,NULL),(788,4,129,0,164,NULL),(789,4,129,0,27,NULL),(790,4,69,0,165,'1.0000'),(791,4,64,0,165,'13.5000'),(792,4,65,0,165,NULL),(793,4,68,0,165,NULL),(794,4,129,0,165,NULL),(795,4,129,0,81,NULL),(796,4,129,0,43,NULL),(797,4,69,0,166,'3.4500'),(798,4,64,0,166,'69.9900'),(799,4,65,0,166,NULL),(800,4,68,0,166,NULL),(801,4,129,0,166,NULL),(802,4,69,0,167,'3.4900'),(803,4,64,0,167,'69.9900'),(804,4,65,0,167,NULL),(805,4,68,0,167,NULL),(806,4,129,0,167,NULL),(807,4,69,0,168,'0.4900'),(808,4,64,0,168,'4.5000'),(809,4,65,0,168,NULL),(810,4,68,0,168,NULL),(811,4,129,0,168,NULL),(812,4,69,0,169,'1.5000'),(813,4,64,0,169,'12.9900'),(814,4,65,0,169,NULL),(815,4,68,0,169,NULL),(816,4,129,0,169,NULL),(817,4,69,0,170,'0.9000'),(818,4,64,0,170,'7.0000'),(819,4,65,0,170,NULL),(820,4,68,0,170,NULL),(821,4,129,0,170,NULL),(822,4,69,0,171,'0.3000'),(823,4,64,0,171,'2.9900'),(824,4,65,0,171,NULL),(825,4,68,0,171,NULL),(826,4,129,0,171,NULL),(827,4,69,0,172,'0.3000'),(828,4,64,0,172,'4.9900'),(829,4,65,0,172,NULL),(830,4,68,0,172,NULL),(831,4,129,0,172,NULL),(832,4,69,0,173,'0.4500'),(833,4,64,0,173,'7.9900'),(834,4,65,0,173,NULL),(835,4,68,0,173,NULL),(836,4,129,0,173,NULL),(837,4,69,0,174,'0.4000'),(838,4,64,0,174,'10.9900'),(839,4,65,0,174,NULL),(840,4,68,0,174,NULL),(841,4,129,0,174,NULL),(842,4,69,0,175,'1.4900'),(843,4,64,0,175,'17.9900'),(844,4,65,0,175,NULL),(845,4,68,0,175,NULL),(846,4,129,0,175,NULL),(847,4,69,0,176,'0.9900'),(848,4,64,0,176,'5.9900'),(849,4,65,0,176,NULL),(850,4,68,0,176,NULL),(851,4,129,0,176,NULL),(852,4,69,0,177,'0.4900'),(853,4,64,0,177,'2.9900'),(854,4,65,0,177,NULL),(855,4,68,0,177,NULL),(856,4,129,0,177,NULL),(857,4,69,0,178,'0.4900'),(858,4,64,0,178,'1.9900'),(859,4,65,0,178,NULL),(860,4,68,0,178,NULL),(861,4,129,0,178,NULL),(862,4,69,0,179,'0.1500'),(863,4,64,0,179,'1.5000'),(864,4,65,0,179,NULL),(865,4,68,0,179,NULL),(866,4,129,0,179,NULL),(867,4,69,0,180,'0.7500'),(868,4,64,0,180,'13.9900'),(869,4,65,0,180,NULL),(870,4,68,0,180,NULL),(871,4,129,0,180,NULL),(873,4,69,0,181,'0.2000'),(874,4,64,0,181,'1.9900'),(875,4,65,0,181,NULL),(876,4,68,0,181,NULL),(877,4,129,0,181,NULL),(878,4,69,0,182,'0.4000'),(879,4,64,0,182,'5.9900'),(880,4,65,0,182,NULL),(881,4,68,0,182,NULL),(882,4,129,0,182,NULL),(883,4,69,0,183,'1.0000'),(884,4,64,0,183,'19.9900'),(885,4,65,0,183,NULL),(886,4,68,0,183,NULL),(887,4,129,0,183,NULL);
/*!40000 ALTER TABLE `catalog_product_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_gallery`
--

DROP TABLE IF EXISTS `catalog_product_entity_gallery`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_entity_gallery` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `position` int(11) NOT NULL COMMENT 'Position',
  `value` varchar(255) NOT NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_PRD_ENTT_GLR_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_GLR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Gallery Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_entity_gallery`
--

LOCK TABLES `catalog_product_entity_gallery` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_gallery` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_entity_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_int`
--

DROP TABLE IF EXISTS `catalog_product_entity_int`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_entity_int` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` int(10) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `value` int(11) default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID` (`entity_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_INT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1076 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Integer Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_entity_int`
--

LOCK TABLES `catalog_product_entity_int` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_int` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_int` VALUES (11,4,84,0,3,1),(12,4,91,0,3,4),(13,4,85,0,3,2),(14,4,107,0,3,1),(15,4,89,0,3,0),(16,4,84,0,4,1),(17,4,85,0,4,2),(18,4,89,0,4,0),(19,4,91,0,4,4),(20,4,107,0,4,1),(26,4,84,0,6,2),(27,4,91,0,6,4),(28,4,85,0,6,2),(29,4,107,0,6,1),(30,4,89,0,6,0),(31,4,84,0,7,1),(32,4,91,0,7,4),(33,4,85,0,7,2),(34,4,107,0,7,1),(35,4,89,0,7,0),(36,4,80,0,7,8),(37,4,80,0,8,7),(38,4,84,0,8,1),(39,4,85,0,8,2),(40,4,89,0,8,0),(41,4,91,0,8,4),(42,4,107,0,8,1),(48,4,84,0,10,1),(49,4,91,0,10,4),(50,4,85,0,10,2),(51,4,107,0,10,1),(52,4,89,0,10,0),(53,4,84,0,11,1),(54,4,91,0,11,4),(55,4,85,0,11,2),(56,4,107,0,11,1),(57,4,89,0,11,0),(58,4,84,0,12,1),(59,4,91,0,12,4),(60,4,85,0,12,2),(61,4,107,0,12,1),(62,4,89,0,12,0),(63,4,84,0,13,1),(64,4,91,0,13,4),(65,4,85,0,13,2),(66,4,107,0,13,1),(67,4,89,0,13,0),(68,4,84,0,14,1),(69,4,91,0,14,4),(70,4,85,0,14,2),(71,4,107,0,14,1),(72,4,89,0,14,0),(73,4,84,0,15,1),(74,4,91,0,15,4),(75,4,85,0,15,0),(76,4,107,0,15,1),(77,4,89,0,15,0),(78,4,84,0,16,1),(79,4,91,0,16,4),(80,4,85,0,16,2),(81,4,107,0,16,1),(82,4,89,0,16,0),(83,4,84,0,17,1),(84,4,91,0,17,4),(85,4,85,0,17,0),(86,4,107,0,17,1),(87,4,89,0,17,0),(88,4,84,0,18,1),(89,4,91,0,18,4),(90,4,85,0,18,2),(91,4,107,0,18,1),(92,4,89,0,18,0),(93,4,84,0,19,2),(94,4,91,0,19,4),(95,4,85,0,19,0),(96,4,107,0,19,1),(97,4,89,0,19,0),(98,4,84,0,20,2),(99,4,91,0,20,4),(100,4,85,0,20,2),(101,4,107,0,20,1),(102,4,89,0,20,0),(103,4,84,0,21,1),(104,4,91,0,21,4),(105,4,85,0,21,2),(106,4,107,0,21,1),(107,4,89,0,21,0),(108,4,84,0,22,1),(109,4,91,0,22,4),(110,4,85,0,22,2),(111,4,107,0,22,1),(112,4,89,0,22,0),(113,4,84,0,23,1),(114,4,91,0,23,4),(115,4,85,0,23,2),(116,4,107,0,23,1),(117,4,89,0,23,0),(118,4,84,0,24,1),(119,4,91,0,24,4),(120,4,85,0,24,2),(121,4,107,0,24,1),(122,4,89,0,24,0),(123,4,84,0,25,1),(124,4,91,0,25,4),(125,4,85,0,25,2),(126,4,107,0,25,1),(127,4,89,0,25,0),(128,4,84,0,26,1),(129,4,91,0,26,4),(130,4,85,0,26,2),(131,4,107,0,26,1),(132,4,89,0,26,0),(133,4,84,0,27,1),(134,4,91,0,27,4),(135,4,85,0,27,2),(136,4,107,0,27,1),(137,4,89,0,27,0),(138,4,84,0,28,1),(139,4,91,0,28,4),(140,4,85,0,28,2),(141,4,107,0,28,1),(142,4,89,0,28,0),(143,4,84,0,29,1),(144,4,91,0,29,4),(145,4,85,0,29,2),(146,4,107,0,29,1),(147,4,89,0,29,0),(153,4,84,0,31,1),(154,4,91,0,31,4),(155,4,85,0,31,2),(156,4,107,0,31,1),(157,4,89,0,31,0),(158,4,84,0,32,1),(159,4,91,0,32,4),(160,4,85,0,32,2),(161,4,107,0,32,1),(162,4,89,0,32,0),(163,4,84,0,33,1),(164,4,91,0,33,4),(165,4,85,0,33,2),(166,4,107,0,33,1),(167,4,89,0,33,0),(168,4,84,0,34,1),(169,4,91,0,34,4),(170,4,85,0,34,2),(171,4,107,0,34,1),(172,4,89,0,34,0),(173,4,84,0,35,1),(174,4,91,0,35,4),(175,4,85,0,35,2),(176,4,107,0,35,1),(177,4,89,0,35,0),(178,4,84,0,36,1),(179,4,91,0,36,4),(180,4,85,0,36,2),(181,4,107,0,36,1),(182,4,89,0,36,0),(183,4,84,0,37,1),(184,4,91,0,37,4),(185,4,85,0,37,2),(186,4,107,0,37,1),(187,4,89,0,37,0),(188,4,84,0,38,1),(189,4,91,0,38,4),(190,4,85,0,38,2),(191,4,107,0,38,1),(192,4,89,0,38,0),(193,4,84,0,39,1),(194,4,91,0,39,4),(195,4,85,0,39,2),(196,4,107,0,39,1),(197,4,89,0,39,0),(198,4,84,0,40,1),(199,4,91,0,40,4),(200,4,85,0,40,2),(201,4,107,0,40,1),(202,4,89,0,40,0),(203,4,84,0,41,1),(204,4,91,0,41,4),(205,4,85,0,41,2),(206,4,107,0,41,1),(207,4,89,0,41,0),(208,4,84,0,42,1),(209,4,91,0,42,4),(210,4,85,0,42,2),(211,4,107,0,42,1),(212,4,89,0,42,0),(213,4,84,0,43,1),(214,4,91,0,43,4),(215,4,85,0,43,2),(216,4,107,0,43,1),(217,4,89,0,43,0),(218,4,84,0,44,1),(219,4,91,0,44,4),(220,4,85,0,44,2),(221,4,107,0,44,1),(222,4,89,0,44,0),(223,4,84,0,45,1),(224,4,91,0,45,4),(225,4,85,0,45,2),(226,4,107,0,45,1),(227,4,89,0,45,0),(228,4,84,0,46,1),(229,4,91,0,46,4),(230,4,85,0,46,2),(231,4,107,0,46,1),(232,4,89,0,46,0),(233,4,84,0,47,1),(234,4,91,0,47,4),(235,4,85,0,47,2),(236,4,107,0,47,1),(237,4,89,0,47,0),(238,4,84,0,48,1),(239,4,91,0,48,4),(240,4,85,0,48,2),(241,4,107,0,48,1),(242,4,89,0,48,0),(243,4,84,0,49,1),(244,4,91,0,49,4),(245,4,85,0,49,2),(246,4,107,0,49,1),(247,4,89,0,49,0),(248,4,84,0,50,1),(249,4,91,0,50,4),(250,4,85,0,50,2),(251,4,107,0,50,1),(252,4,89,0,50,0),(253,4,84,0,51,1),(254,4,91,0,51,4),(255,4,85,0,51,2),(256,4,107,0,51,1),(257,4,89,0,51,0),(258,4,84,0,52,1),(259,4,91,0,52,4),(260,4,85,0,52,2),(261,4,107,0,52,1),(262,4,89,0,52,0),(263,4,84,0,53,1),(264,4,91,0,53,4),(265,4,85,0,53,2),(266,4,107,0,53,1),(267,4,89,0,53,0),(268,4,84,0,54,1),(269,4,91,0,54,4),(270,4,85,0,54,2),(271,4,107,0,54,1),(272,4,89,0,54,0),(273,4,84,0,55,1),(274,4,91,0,55,4),(275,4,85,0,55,2),(276,4,107,0,55,1),(277,4,89,0,55,0),(278,4,84,0,56,1),(279,4,91,0,56,4),(280,4,85,0,56,2),(281,4,107,0,56,1),(282,4,89,0,56,0),(283,4,84,0,57,1),(284,4,91,0,57,4),(285,4,85,0,57,2),(286,4,107,0,57,1),(287,4,89,0,57,0),(288,4,84,0,58,1),(289,4,91,0,58,4),(290,4,85,0,58,2),(291,4,107,0,58,1),(292,4,89,0,58,0),(293,4,84,0,59,2),(294,4,91,0,59,4),(295,4,85,0,59,0),(296,4,107,0,59,1),(297,4,89,0,59,0),(298,4,84,0,60,1),(299,4,91,0,60,4),(300,4,85,0,60,2),(301,4,107,0,60,1),(302,4,89,0,60,0),(303,4,84,0,61,1),(304,4,91,0,61,4),(305,4,85,0,61,2),(306,4,107,0,61,1),(307,4,89,0,61,0),(308,4,84,0,62,1),(309,4,91,0,62,4),(310,4,85,0,62,2),(311,4,107,0,62,1),(312,4,89,0,62,0),(313,4,84,0,63,1),(314,4,91,0,63,4),(315,4,85,0,63,2),(316,4,107,0,63,1),(317,4,89,0,63,0),(318,4,84,0,64,1),(319,4,91,0,64,2),(320,4,85,0,64,2),(321,4,107,0,64,1),(322,4,89,0,64,0),(323,4,84,0,65,1),(324,4,91,0,65,4),(325,4,85,0,65,2),(326,4,107,0,65,1),(327,4,89,0,65,0),(328,4,84,0,66,1),(329,4,91,0,66,4),(330,4,85,0,66,2),(331,4,107,0,66,1),(332,4,89,0,66,0),(333,4,84,0,67,1),(334,4,91,0,67,4),(335,4,85,0,67,2),(336,4,107,0,67,1),(337,4,89,0,67,0),(338,4,84,0,68,1),(339,4,91,0,68,4),(340,4,85,0,68,2),(341,4,107,0,68,1),(342,4,89,0,68,0),(348,4,84,0,70,1),(349,4,91,0,70,4),(350,4,85,0,70,2),(351,4,107,0,70,1),(352,4,89,0,70,0),(353,4,84,0,71,1),(354,4,91,0,71,4),(355,4,85,0,71,2),(356,4,107,0,71,1),(357,4,89,0,71,0),(358,4,84,0,72,1),(359,4,91,0,72,4),(360,4,85,0,72,2),(361,4,107,0,72,1),(362,4,89,0,72,0),(363,4,84,0,73,2),(364,4,91,0,73,4),(365,4,85,0,73,2),(366,4,107,0,73,1),(367,4,89,0,73,0),(368,4,84,0,74,1),(369,4,91,0,74,4),(370,4,85,0,74,0),(371,4,107,0,74,1),(372,4,89,0,74,0),(373,4,84,0,75,1),(374,4,91,0,75,4),(375,4,85,0,75,2),(376,4,107,0,75,1),(377,4,89,0,75,0),(378,4,84,0,76,1),(379,4,91,0,76,4),(380,4,85,0,76,2),(381,4,107,0,76,1),(382,4,89,0,76,0),(383,4,84,0,77,1),(384,4,91,0,77,4),(385,4,85,0,77,2),(386,4,107,0,77,1),(387,4,89,0,77,0),(388,4,84,0,78,1),(389,4,91,0,78,4),(390,4,85,0,78,2),(391,4,107,0,78,1),(392,4,89,0,78,0),(393,4,84,0,79,1),(394,4,91,0,79,4),(395,4,85,0,79,2),(396,4,107,0,79,1),(397,4,89,0,79,0),(398,4,84,0,80,1),(399,4,91,0,80,4),(400,4,85,0,80,2),(401,4,107,0,80,1),(402,4,89,0,80,0),(403,4,84,0,81,1),(404,4,91,0,81,4),(405,4,85,0,81,2),(406,4,107,0,81,1),(407,4,89,0,81,0),(408,4,84,0,82,1),(409,4,91,0,82,4),(410,4,85,0,82,2),(411,4,107,0,82,1),(412,4,89,0,82,0),(413,4,84,0,83,1),(414,4,91,0,83,4),(415,4,85,0,83,2),(416,4,107,0,83,1),(417,4,89,0,83,0),(418,4,84,0,84,1),(419,4,91,0,84,4),(420,4,85,0,84,2),(421,4,107,0,84,1),(422,4,89,0,84,0),(428,4,84,0,86,2),(429,4,91,0,86,4),(430,4,85,0,86,2),(431,4,107,0,86,1),(432,4,89,0,86,0),(433,4,84,0,87,1),(434,4,91,0,87,4),(435,4,85,0,87,2),(436,4,107,0,87,1),(437,4,89,0,87,0),(438,4,84,0,88,1),(439,4,91,0,88,4),(440,4,85,0,88,2),(441,4,107,0,88,1),(442,4,89,0,88,0),(448,4,84,0,90,2),(449,4,91,0,90,4),(450,4,85,0,90,2),(451,4,107,0,90,1),(452,4,89,0,90,0),(453,4,121,0,64,25),(454,4,84,0,91,1),(455,4,91,0,91,4),(456,4,85,0,91,2),(457,4,107,0,91,1),(458,4,89,0,91,0),(459,4,84,0,92,1),(460,4,91,0,92,4),(461,4,85,0,92,0),(462,4,107,0,92,1),(463,4,89,0,92,0),(464,4,84,0,93,1),(465,4,91,0,93,4),(466,4,85,0,93,2),(467,4,107,0,93,1),(468,4,89,0,93,0),(469,4,84,0,94,2),(470,4,91,0,94,4),(471,4,85,0,94,2),(472,4,107,0,94,1),(473,4,89,0,94,0),(474,4,84,0,95,1),(475,4,91,0,95,4),(476,4,85,0,95,2),(477,4,107,0,95,1),(478,4,89,0,95,0),(479,4,84,0,96,2),(480,4,91,0,96,4),(481,4,85,0,96,2),(482,4,107,0,96,1),(483,4,89,0,96,0),(484,4,84,0,97,1),(485,4,91,0,97,4),(486,4,85,0,97,2),(487,4,107,0,97,1),(488,4,89,0,97,0),(489,4,84,0,98,1),(490,4,91,0,98,4),(491,4,85,0,98,2),(492,4,107,0,98,1),(493,4,89,0,98,0),(494,4,84,0,99,2),(495,4,91,0,99,4),(496,4,85,0,99,2),(497,4,107,0,99,1),(498,4,89,0,99,0),(499,4,84,0,100,1),(500,4,91,0,100,4),(501,4,85,0,100,2),(502,4,107,0,100,1),(503,4,89,0,100,0),(504,4,84,0,101,1),(505,4,91,0,101,4),(506,4,85,0,101,2),(507,4,107,0,101,1),(508,4,89,0,101,0),(509,4,84,0,102,1),(510,4,91,0,102,4),(511,4,85,0,102,2),(512,4,107,0,102,1),(513,4,89,0,102,0),(514,4,84,0,103,1),(515,4,91,0,103,4),(516,4,85,0,103,2),(517,4,107,0,103,1),(518,4,89,0,103,0),(519,4,84,0,104,2),(520,4,91,0,104,4),(521,4,85,0,104,2),(522,4,107,0,104,1),(523,4,89,0,104,0),(524,4,84,0,105,2),(525,4,91,0,105,4),(526,4,85,0,105,2),(527,4,107,0,105,1),(528,4,89,0,105,0),(529,4,84,0,106,1),(530,4,91,0,106,4),(531,4,85,0,106,2),(532,4,107,0,106,1),(533,4,89,0,106,0),(534,4,84,0,107,2),(535,4,91,0,107,4),(536,4,85,0,107,2),(537,4,107,0,107,1),(538,4,89,0,107,0),(539,4,84,0,108,1),(540,4,91,0,108,4),(541,4,85,0,108,0),(542,4,107,0,108,1),(543,4,89,0,108,0),(544,4,84,0,109,1),(545,4,91,0,109,4),(546,4,85,0,109,2),(547,4,107,0,109,1),(548,4,89,0,109,0),(549,4,84,0,110,1),(550,4,91,0,110,4),(551,4,85,0,110,2),(552,4,107,0,110,1),(553,4,89,0,110,0),(554,4,84,0,111,2),(555,4,91,0,111,4),(556,4,85,0,111,2),(557,4,107,0,111,1),(558,4,89,0,111,0),(564,4,84,0,113,2),(565,4,91,0,113,4),(566,4,85,0,113,2),(567,4,107,0,113,1),(568,4,89,0,113,0),(569,4,84,0,114,1),(570,4,91,0,114,4),(571,4,85,0,114,2),(572,4,107,0,114,1),(573,4,89,0,114,0),(574,4,84,0,115,2),(575,4,91,0,115,4),(576,4,85,0,115,2),(577,4,107,0,115,1),(578,4,89,0,115,0),(579,4,84,0,116,2),(580,4,91,0,116,4),(581,4,85,0,116,2),(582,4,107,0,116,1),(583,4,89,0,116,0),(589,4,84,0,118,1),(590,4,91,0,118,4),(591,4,85,0,118,2),(592,4,107,0,118,1),(593,4,89,0,118,0),(594,4,84,0,119,1),(595,4,91,0,119,4),(596,4,85,0,119,0),(597,4,107,0,119,1),(598,4,89,0,119,0),(599,4,84,0,120,1),(600,4,91,0,120,4),(601,4,85,0,120,2),(602,4,107,0,120,1),(603,4,89,0,120,0),(604,4,84,0,121,1),(605,4,91,0,121,4),(606,4,85,0,121,2),(607,4,107,0,121,1),(608,4,89,0,121,0),(609,4,84,0,122,1),(610,4,91,0,122,4),(611,4,85,0,122,2),(612,4,107,0,122,1),(613,4,89,0,122,0),(614,4,84,0,123,1),(615,4,91,0,123,4),(616,4,85,0,123,2),(617,4,107,0,123,1),(618,4,89,0,123,0),(619,4,84,0,124,2),(620,4,91,0,124,4),(621,4,85,0,124,2),(622,4,107,0,124,1),(623,4,89,0,124,0),(624,4,84,0,125,1),(625,4,91,0,125,4),(626,4,85,0,125,2),(627,4,107,0,125,1),(628,4,89,0,125,0),(629,4,84,0,126,1),(630,4,91,0,126,4),(631,4,85,0,126,2),(632,4,107,0,126,1),(633,4,89,0,126,0),(634,4,84,0,127,1),(635,4,91,0,127,4),(636,4,85,0,127,2),(637,4,107,0,127,1),(638,4,89,0,127,0),(639,4,84,0,128,1),(640,4,91,0,128,4),(641,4,85,0,128,2),(642,4,107,0,128,1),(643,4,89,0,128,0),(644,4,84,0,129,2),(645,4,91,0,129,4),(646,4,85,0,129,2),(647,4,107,0,129,1),(648,4,89,0,129,0),(649,4,84,0,130,1),(650,4,91,0,130,4),(651,4,85,0,130,2),(652,4,107,0,130,1),(653,4,89,0,130,0),(654,4,84,0,131,1),(655,4,91,0,131,4),(656,4,85,0,131,0),(657,4,107,0,131,1),(658,4,89,0,131,0),(659,4,84,0,132,1),(660,4,91,0,132,4),(661,4,130,0,132,0),(662,4,85,0,132,2),(663,4,107,0,132,1),(664,4,89,0,132,0),(665,4,130,0,37,0),(666,4,130,0,36,0),(667,4,130,0,48,0),(668,4,130,0,25,0),(669,4,130,0,24,0),(670,4,130,0,87,0),(671,4,84,0,133,1),(672,4,91,0,133,4),(673,4,130,0,133,0),(674,4,85,0,133,0),(675,4,107,0,133,1),(676,4,89,0,133,0),(677,4,130,0,3,0),(678,4,130,0,47,0),(679,4,130,0,46,0),(680,4,130,0,41,0),(681,4,130,0,70,0),(682,4,130,0,66,0),(683,4,130,0,65,0),(684,4,130,0,61,0),(685,4,130,0,60,0),(686,4,130,0,71,0),(687,4,130,0,83,0),(688,4,130,0,79,0),(689,4,130,0,75,0),(690,4,130,0,100,0),(691,4,84,0,134,1),(692,4,91,0,134,4),(693,4,130,0,134,0),(694,4,85,0,134,0),(695,4,107,0,134,1),(696,4,89,0,134,0),(697,4,84,0,135,1),(698,4,91,0,135,4),(699,4,130,0,135,0),(700,4,85,0,135,0),(701,4,107,0,135,1),(702,4,89,0,135,0),(703,4,84,0,136,1),(704,4,91,0,136,4),(705,4,130,0,136,0),(706,4,85,0,136,0),(707,4,107,0,136,1),(708,4,89,0,136,0),(709,4,84,0,137,1),(710,4,91,0,137,4),(711,4,130,0,137,0),(712,4,85,0,137,0),(713,4,107,0,137,1),(714,4,89,0,137,0),(715,4,84,0,138,1),(716,4,91,0,138,4),(717,4,130,0,138,0),(718,4,85,0,138,0),(719,4,107,0,138,1),(720,4,89,0,138,0),(721,4,84,0,139,1),(722,4,91,0,139,4),(723,4,130,0,139,0),(724,4,85,0,139,0),(725,4,107,0,139,1),(726,4,89,0,139,0),(727,4,84,0,140,1),(728,4,91,0,140,4),(729,4,130,0,140,0),(730,4,85,0,140,0),(731,4,107,0,140,1),(732,4,89,0,140,0),(733,4,84,0,141,1),(734,4,91,0,141,4),(735,4,130,0,141,0),(736,4,85,0,141,0),(737,4,107,0,141,1),(738,4,89,0,141,0),(739,4,84,0,142,2),(740,4,91,0,142,4),(741,4,130,0,142,0),(742,4,85,0,142,2),(743,4,107,0,142,1),(744,4,89,0,142,0),(745,4,130,0,106,0),(746,4,130,0,109,0),(747,4,130,0,115,0),(748,4,130,0,35,0),(749,4,84,0,143,1),(750,4,91,0,143,4),(751,4,130,0,143,0),(752,4,85,0,143,0),(753,4,107,0,143,1),(754,4,89,0,143,0),(755,4,84,0,144,1),(756,4,91,0,144,4),(757,4,130,0,144,0),(758,4,85,0,144,0),(759,4,107,0,144,1),(760,4,89,0,144,0),(761,4,84,0,145,1),(762,4,91,0,145,4),(763,4,130,0,145,0),(764,4,85,0,145,0),(765,4,107,0,145,1),(766,4,89,0,145,0),(767,4,84,0,146,1),(768,4,91,0,146,4),(769,4,130,0,146,0),(770,4,85,0,146,0),(771,4,107,0,146,1),(772,4,89,0,146,0),(773,4,84,0,147,1),(774,4,91,0,147,4),(775,4,130,0,147,0),(776,4,85,0,147,0),(777,4,107,0,147,1),(778,4,89,0,147,0),(779,4,84,0,148,1),(780,4,91,0,148,4),(781,4,130,0,148,0),(782,4,85,0,148,0),(783,4,107,0,148,1),(784,4,89,0,148,0),(785,4,84,0,149,1),(786,4,91,0,149,4),(787,4,130,0,149,0),(788,4,85,0,149,2),(789,4,107,0,149,1),(790,4,89,0,149,0),(791,4,130,0,88,0),(792,4,84,0,150,1),(793,4,91,0,150,4),(794,4,130,0,150,0),(795,4,85,0,150,2),(796,4,107,0,150,1),(797,4,89,0,150,0),(798,4,130,0,45,0),(799,4,130,0,76,0),(800,4,130,0,17,0),(801,4,130,0,18,0),(802,4,84,0,151,1),(803,4,91,0,151,4),(804,4,130,0,151,0),(805,4,85,0,151,2),(806,4,107,0,151,1),(807,4,89,0,151,0),(808,4,130,0,63,0),(809,4,130,0,91,0),(810,4,130,0,80,0),(811,4,130,0,131,0),(812,4,130,0,129,0),(813,4,130,0,108,0),(814,4,130,0,53,0),(815,4,130,0,54,0),(816,4,130,0,55,0),(817,4,130,0,56,0),(818,4,130,0,57,0),(819,4,130,0,64,0),(820,4,130,0,67,0),(821,4,130,0,40,0),(822,4,130,0,38,0),(823,4,130,0,32,0),(824,4,130,0,31,0),(825,4,130,0,44,0),(826,4,130,0,28,0),(827,4,130,0,14,0),(828,4,130,0,82,0),(829,4,84,0,152,1),(830,4,91,0,152,4),(831,4,130,0,152,0),(832,4,85,0,152,2),(833,4,107,0,152,1),(834,4,89,0,152,0),(835,4,84,0,153,2),(836,4,91,0,153,4),(837,4,130,0,153,0),(838,4,85,0,153,2),(839,4,107,0,153,1),(840,4,89,0,153,0),(841,4,84,0,154,1),(842,4,91,0,154,4),(843,4,130,0,154,0),(844,4,85,0,154,2),(845,4,107,0,154,1),(846,4,89,0,154,0),(847,4,84,0,155,1),(848,4,91,0,155,4),(849,4,130,0,155,0),(850,4,85,0,155,2),(851,4,107,0,155,1),(852,4,89,0,155,0),(853,4,84,0,156,1),(854,4,91,0,156,4),(855,4,130,0,156,0),(856,4,85,0,156,2),(857,4,107,0,156,1),(858,4,89,0,156,0),(859,4,130,0,121,0),(860,4,130,0,11,0),(861,4,130,0,4,0),(862,4,130,0,7,0),(863,4,130,0,8,0),(864,4,130,0,10,0),(865,4,130,0,29,0),(866,4,130,0,26,0),(867,4,130,0,23,0),(868,4,130,0,22,0),(869,4,130,0,21,0),(870,4,130,0,16,0),(871,4,130,0,15,0),(872,4,130,0,13,0),(873,4,130,0,12,0),(874,4,130,0,52,0),(875,4,130,0,51,0),(876,4,130,0,50,0),(877,4,130,0,49,0),(878,4,130,0,42,0),(879,4,130,0,39,0),(880,4,130,0,34,0),(881,4,130,0,33,0),(882,4,130,0,130,0),(883,4,130,0,128,0),(884,4,130,0,127,0),(885,4,130,0,126,0),(886,4,130,0,125,0),(887,4,130,0,123,0),(888,4,130,0,95,0),(889,4,130,0,94,0),(890,4,130,0,93,0),(891,4,130,0,90,0),(892,4,84,0,157,1),(893,4,91,0,157,4),(894,4,130,0,157,0),(895,4,85,0,157,0),(896,4,107,0,157,1),(897,4,89,0,157,0),(898,4,130,0,120,0),(899,4,130,0,119,0),(900,4,130,0,118,0),(901,4,130,0,114,0),(902,4,84,0,158,1),(903,4,91,0,158,4),(904,4,130,0,158,0),(905,4,85,0,158,2),(906,4,107,0,158,1),(907,4,89,0,158,0),(908,4,84,0,159,1),(909,4,91,0,159,4),(910,4,130,0,159,0),(911,4,85,0,159,2),(912,4,107,0,159,1),(913,4,89,0,159,0),(914,4,130,0,68,0),(915,4,130,0,58,0),(916,4,130,0,111,0),(917,4,130,0,103,0),(918,4,130,0,102,0),(919,4,130,0,101,0),(920,4,130,0,98,0),(921,4,130,0,97,0),(922,4,130,0,96,0),(923,4,130,0,92,0),(924,4,130,0,84,0),(925,4,130,0,74,0),(926,4,130,0,72,0),(927,4,130,0,62,0),(928,4,84,0,160,1),(929,4,91,0,160,4),(930,4,130,0,160,0),(931,4,85,0,160,2),(932,4,107,0,160,1),(933,4,89,0,160,0),(934,4,84,0,161,1),(935,4,91,0,161,4),(936,4,130,0,161,0),(937,4,85,0,161,2),(938,4,107,0,161,1),(939,4,89,0,161,0),(940,4,84,0,162,1),(941,4,91,0,162,4),(942,4,130,0,162,0),(943,4,85,0,162,2),(944,4,107,0,162,1),(945,4,89,0,162,0),(946,4,84,0,163,1),(947,4,91,0,163,4),(948,4,130,0,163,0),(949,4,85,0,163,2),(950,4,107,0,163,1),(951,4,89,0,163,0),(952,4,84,0,164,1),(953,4,91,0,164,4),(954,4,130,0,164,0),(955,4,85,0,164,2),(956,4,107,0,164,1),(957,4,89,0,164,0),(958,4,130,0,27,0),(959,4,84,0,165,1),(960,4,91,0,165,4),(961,4,130,0,165,0),(962,4,85,0,165,2),(963,4,107,0,165,1),(964,4,89,0,165,0),(965,4,130,0,81,0),(966,4,130,0,43,0),(967,4,84,0,166,1),(968,4,91,0,166,4),(969,4,130,0,166,0),(970,4,85,0,166,2),(971,4,107,0,166,1),(972,4,89,0,166,0),(973,4,84,0,167,1),(974,4,91,0,167,4),(975,4,130,0,167,0),(976,4,85,0,167,2),(977,4,107,0,167,1),(978,4,89,0,167,0),(979,4,84,0,168,1),(980,4,91,0,168,4),(981,4,130,0,168,0),(982,4,85,0,168,2),(983,4,107,0,168,1),(984,4,89,0,168,0),(985,4,84,0,169,1),(986,4,91,0,169,4),(987,4,130,0,169,0),(988,4,85,0,169,2),(989,4,107,0,169,1),(990,4,89,0,169,0),(991,4,84,0,170,1),(992,4,91,0,170,4),(993,4,130,0,170,0),(994,4,85,0,170,2),(995,4,107,0,170,1),(996,4,89,0,170,0),(997,4,84,0,171,1),(998,4,91,0,171,4),(999,4,130,0,171,0),(1000,4,85,0,171,2),(1001,4,107,0,171,1),(1002,4,89,0,171,0),(1003,4,84,0,172,1),(1004,4,91,0,172,4),(1005,4,130,0,172,0),(1006,4,85,0,172,2),(1007,4,107,0,172,1),(1008,4,89,0,172,0),(1009,4,84,0,173,1),(1010,4,91,0,173,4),(1011,4,130,0,173,0),(1012,4,85,0,173,2),(1013,4,107,0,173,1),(1014,4,89,0,173,0),(1015,4,84,0,174,1),(1016,4,91,0,174,4),(1017,4,130,0,174,0),(1018,4,85,0,174,2),(1019,4,107,0,174,1),(1020,4,89,0,174,0),(1021,4,84,0,175,1),(1022,4,91,0,175,4),(1023,4,130,0,175,0),(1024,4,85,0,175,2),(1025,4,107,0,175,1),(1026,4,89,0,175,0),(1027,4,84,0,176,1),(1028,4,91,0,176,4),(1029,4,130,0,176,0),(1030,4,85,0,176,2),(1031,4,107,0,176,1),(1032,4,89,0,176,0),(1033,4,84,0,177,1),(1034,4,91,0,177,4),(1035,4,130,0,177,0),(1036,4,85,0,177,2),(1037,4,107,0,177,1),(1038,4,89,0,177,0),(1039,4,84,0,178,1),(1040,4,91,0,178,4),(1041,4,130,0,178,0),(1042,4,85,0,178,2),(1043,4,107,0,178,1),(1044,4,89,0,178,0),(1045,4,84,0,179,1),(1046,4,91,0,179,4),(1047,4,130,0,179,0),(1048,4,85,0,179,2),(1049,4,107,0,179,1),(1050,4,89,0,179,0),(1051,4,84,0,180,1),(1052,4,91,0,180,4),(1053,4,130,0,180,0),(1054,4,85,0,180,2),(1055,4,107,0,180,1),(1056,4,89,0,180,0),(1058,4,84,0,181,1),(1059,4,91,0,181,4),(1060,4,130,0,181,0),(1061,4,85,0,181,2),(1062,4,107,0,181,1),(1063,4,89,0,181,0),(1064,4,84,0,182,1),(1065,4,91,0,182,4),(1066,4,130,0,182,0),(1067,4,85,0,182,2),(1068,4,107,0,182,1),(1069,4,89,0,182,0),(1070,4,84,0,183,1),(1071,4,91,0,183,4),(1072,4,130,0,183,0),(1073,4,85,0,183,2),(1074,4,107,0,183,1),(1075,4,89,0,183,0);
/*!40000 ALTER TABLE `catalog_product_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_media_gallery`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_entity_media_gallery` (
  `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `value` varchar(255) default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_ENTITY_ID` (`entity_id`),
  CONSTRAINT `FK_CAT_PRD_ENTT_MDA_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_MDA_GLR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_entity_media_gallery`
--

LOCK TABLES `catalog_product_entity_media_gallery` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery` VALUES (3,77,3,'/n/e/new_tryfan.jpg'),(4,77,4,'/h/i/high25camo_1.jpg'),(6,77,7,'/h/i/high25camo_2.jpg'),(8,77,8,'/o/l/oliveforces25.jpg'),(11,77,10,'/c/a/cadet_assault_boot.jpg'),(12,77,11,'/a/r/armyponcho.jpg'),(13,77,12,'/c/a/camotshirt.jpg'),(14,77,13,'/o/l/olivet.jpg'),(15,77,14,'/c/o/commando_sweater.jpg'),(16,77,15,'/k/i/kids_camo_jkt.jpg'),(17,77,16,'/k/i/kids_camo_jkt_1.jpg'),(18,77,17,'/k/i/kids_camo_trs.jpg'),(19,77,19,'/k/i/kids-ghillie.jpg'),(20,77,20,'/g/i/gillie_suit.jpg'),(21,77,21,'/m/e/mess_set_lrg.jpg'),(22,77,22,'/9/5/95_shirts.jpg'),(24,77,24,'/p/a/pakaway_jkt.jpg'),(25,77,26,'/m/6/m671a_1.jpg'),(26,77,27,'/t/h/thumbascent.jpg'),(27,77,29,'/f/u/full_plce_webbing_system_back.jpg'),(28,77,29,'/f/u/full_plce_webbing_system_front.jpg'),(29,77,31,'/k/o/kombatuk_064_1.jpg'),(30,77,32,'/k/o/kombatuk_065_1.jpg'),(32,77,34,'/k/o/kombatuk_302.jpg'),(33,77,36,'/k/o/kombatuk_214.jpg'),(34,77,36,'/k/o/kombatuk_215.jpg'),(35,77,37,'/k/o/kombatuk_166.jpg'),(36,77,37,'/k/o/kombatuk_167.jpg'),(37,77,37,'/k/o/kombatuk_166_1.jpg'),(38,77,37,'/k/o/kombatuk_167_1.jpg'),(39,77,38,'/k/o/kombatuk_178.jpg'),(40,77,39,'/k/o/kombatuk_324.jpg'),(41,77,40,'/k/o/kombatuk_314.jpg'),(42,77,41,'/t/r/tryfan.jpg'),(43,77,42,'/r/a/ranger_sbag.jpg'),(44,77,43,'/k/o/kombatuk_133.jpg'),(45,77,46,'/t/h/thinhat_blk.jpg'),(46,77,47,'/c/h/chunky_hat.jpg'),(48,77,49,'/m/e/mens_comfort_trekker.jpg'),(49,77,50,'/1/0/1000mileallternav.jpg'),(50,77,51,'/i/s/islay_pole.jpg'),(52,77,53,'/t/x/tx10direct.jpg'),(53,77,54,'/t/e/tech_wash.jpg'),(55,77,56,'/n/u/nubuck.jpg'),(56,77,57,'/n/i/nikwaxleather.jpg'),(57,77,58,'/f/u/full_450553cf33005.jpg'),(58,77,59,'/k/i/kids_base_sets.jpg'),(59,77,60,'/t/h/thermal_t_shirt_denim.jpg'),(60,77,61,'/l/o/longjohns.jpg'),(61,77,62,'/l/a/ladies_parade_shoes.jpg'),(63,77,64,'/m/e/mens_thermal_socks.jpg'),(64,77,65,'/l/a/ladies_wool_boot_socks.jpg'),(65,77,66,'/m/e/mens_wool_3_pack.jpg'),(66,77,67,'/l/o/long_pennine_mens.jpg'),(67,77,68,'/l/o/long_pennine_mens_1.jpg'),(69,77,28,'/g/r/grisport-wolf-boots.jpg'),(70,77,70,'/r/e/recharge_handwarmers.jpg'),(71,77,24,'/b/l/blk_paka_jkt.jpg'),(72,77,24,'/g/r/gren_paka_jkt.jpg'),(73,77,25,'/b/l/blk_paka_trs.jpg'),(74,77,25,'/n/a/navy_paka_trs.jpg'),(75,77,72,'/c/a/caribinas_pairs_6mm.jpg'),(76,77,73,'/c/a/caribinas_pairs_8mm.jpg'),(77,77,74,'/k/i/kids_tactical_assault_vest.jpg'),(78,77,75,'/m/1/m1_plastic_helmet_with_ripstop_cover_dpm.jpg'),(79,77,76,'/k/i/kitbags.jpg'),(80,77,77,'/w/e/web_khaki.jpg'),(81,77,78,'/c/a/camo_headovers.jpg'),(82,77,78,'/o/l/olive_headovers.jpg'),(83,77,79,'/s/h/shemagh_olive.jpg'),(84,77,80,'/p/o/pole_feet.jpg'),(85,77,81,'/c/a/castle_combat_jkt.jpg'),(86,77,83,'/w/r/wroxham_olive.jpg'),(87,77,82,'/j/a/jack-pyke-hunter-jacket-english-oak-447-p_1.jpg'),(88,77,82,'/j/a/jack-pyke-hunter-jacket-english-oak-447-p_1_1.jpg'),(89,77,84,'/k/i/kids_camo_trs_1.jpg'),(90,77,79,'/b/l/black-white_shemaghs.jpg'),(93,77,86,'/c/r/cragpole.jpg'),(95,77,55,'/n/i/nikfableath_1.jpg'),(96,77,87,'/c/r/cragsladiesstretch.jpg'),(97,77,88,'/k/i/kiwiladieswlinedcocoa.jpg'),(98,77,90,'/c/a/castlearmypants_1.jpg'),(99,77,90,'/c/a/castleblack901_2.jpg'),(100,77,90,'/c/a/castlecamo901.jpg'),(101,77,90,'/c/a/castleolive901.jpg'),(102,77,23,'/s/l/sleeka_elitelite1.jpg'),(103,77,23,'/e/l/elitelitecompressed.jpg'),(104,77,45,'/c/o/commando_sox.jpg'),(105,77,44,'/l/a/ladies_trekker.jpg'),(106,77,35,'/k/o/kombatbottle.jpg'),(107,77,18,'/p/i/pistolbelts_1.jpg'),(108,77,6,'/9/5/95_shirts_1.jpg'),(109,77,91,'/5/_/5_col_camo_cream.jpg'),(110,77,92,'/k/i/kids_blk_wlly.jpg'),(112,77,92,'/k/i/kids_green_wellie.jpg'),(113,77,93,'/s/e/seaboot.jpg'),(114,77,94,'/l/a/ladies_firewood_sox.jpg'),(115,77,94,'/o/l/olive_welly_sox.jpg'),(117,77,96,'/s/y/symphonybag.jpg'),(118,77,97,'/v/o/voyager_lite.jpg'),(119,77,98,'/s/l/sleeper_lite_olive_medium.jpg'),(120,77,98,'/s/l/sleeperlitered.jpg'),(121,77,99,'/a/d/adtech35blk.jpg'),(122,77,100,'/d/o/dogtags.jpg'),(123,77,101,'/d/u/dublin20.jpg'),(124,77,102,'/d/a/daylite10.jpg'),(125,77,102,'/d/a/daylite10_1.jpg'),(126,77,103,'/f/o/forces44camo.jpg'),(127,77,103,'/f/o/forces44_olive.jpg'),(128,77,104,'/r/a/rambler66.jpg'),(130,77,106,'/b/e/beret.jpg'),(131,77,107,'/c/a/camonet.jpg'),(132,77,108,'/c/a/camotshirt_1.jpg'),(133,77,109,'/p/e/peaked_thinhat_1.jpg'),(134,77,79,'/r/e/redshemaghs.jpg'),(135,77,79,'/s/a/sand_shemaghs.jpg'),(136,77,33,'/n/e/new_95s_trousers.jpg'),(137,77,110,'/a/v/aversa.jpg'),(138,77,111,'/u/r/urban_seeker_blue.jpg'),(140,77,111,'/u/r/urban_aub_1.jpg'),(141,77,111,'/u/r/urban_seeker_red_1.jpg'),(142,77,3,'/t/r/tryfan_olive.jpg'),(143,77,41,'/t/r/tryfan_olive_1.jpg'),(144,77,113,'/l/a/landtrekka_65.jpg'),(146,77,113,'/r/e/regatta_landtrekback.jpg'),(147,77,114,'/c/l/cleaning_gel.jpg'),(148,77,98,'/b/l/black_sleeperlite.jpg'),(149,77,115,'/c/a/camo_waterbottle.jpg'),(150,77,116,'/g/e/gelert_hydration.jpg'),(152,77,118,'/h/o/horizon_green.jpg'),(153,77,118,'/h/o/horizon65.jpg'),(154,77,105,'/n/e/new_gel_35.jpg'),(155,77,95,'/h/e/heritage_green.jpg'),(156,77,119,'/g/e/gelert_compact_grill.jpg'),(157,77,120,'/p/m/pmstentpegs.jpg'),(158,77,121,'/e/m/emergencyponchos.jpg'),(159,77,122,'/h/e/hexy_stove.jpg'),(160,77,123,'/h/e/hexyrefills.jpg'),(161,77,123,'/h/e/hexyrefills_1.jpg'),(162,77,124,'/c/o/compact_ploe.jpg'),(163,77,125,'/c/r/crag_adventure_pole.jpg'),(164,77,126,'/n/e/new_muti_mat.jpg'),(165,77,102,'/k/o/kombat10.jpg'),(166,77,127,'/w/i/wilderness65.jpg'),(167,77,128,'/z/i/zing.jpg'),(168,77,129,'/n/e/nero_black.jpg'),(169,77,130,'/c/o/comact_stove.jpg'),(170,77,131,'/k/i/kidsarmykit1.jpg'),(171,77,132,'/i/c/ice_grippers.jpg'),(172,77,48,'/b/l/black_shooter_mitts.jpg'),(173,77,133,'/c/u/cub-sweat__53962_std.jpg'),(174,77,71,'/h/o/hotties.jpg'),(175,77,134,'/c/u/cub_polo_shirt_purple_trim.jpg'),(176,77,135,'/b/e/beaversweat.jpg'),(177,77,136,'/b/e/beaverpolo.jpg'),(178,77,137,'/b/r/brownie_t.jpg'),(179,77,138,'/b/r/brownie_hoodie.jpg'),(180,77,139,'/b/r/brownie_trousers.jpg'),(181,77,140,'/b/r/brownie_leggings.jpg'),(182,77,141,'/b/r/brownie_long_sl.jpg'),(183,77,142,'/b/r/brownie_sash.jpg'),(184,77,143,'/c/u/cub-beaver_pants.jpg'),(185,77,144,'/c/u/cub-beaver_pants_1.jpg'),(186,77,145,'/r/a/rainbow_hoodie.jpg'),(187,77,146,'/r/a/rainbow_polo.jpg'),(188,77,147,'/r/a/rainbow_pants.jpg'),(189,77,148,'/s/c/scout_shirts_1.jpg'),(190,77,149,'/l/o/long_sleeve_thermal_t.jpg'),(191,77,150,'/n/a/navy_lined_kiwis.jpg'),(192,77,151,'/k/i/kids_camo_pants.jpg'),(193,77,152,'/p/e/penarth_hoody.jpg'),(194,77,153,'/a/n/angle_torch.jpg'),(195,77,153,'/f/i/filters.jpg'),(196,77,154,'/c/a/camo_wallet.jpg'),(197,77,154,'/b/l/black_wallet.jpg'),(198,77,155,'/n/a/navy_wproof_fleece.jpg'),(199,77,155,'/b/l/blk_wproof_fleece.jpg'),(200,77,156,'/h/o/hot_choc.jpg'),(201,77,156,'/b/l/blk_wproof_fleece_1.jpg'),(202,77,63,'/n/e/new_parade_she.jpg'),(203,77,63,'/n/e/new_parade_she_1.jpg'),(204,77,157,'/s/a/safety_m475.jpg'),(205,77,158,'/1/0/100_mile_fusion.jpg'),(206,77,159,'/l/a/ladies_fusion.jpg'),(207,77,161,'/d/o/doc_boots.jpg'),(208,77,160,'/d/o/doc_shoe.jpg'),(210,77,52,'/a/r/arran_walking_pole.jpg'),(211,77,162,'/s/w/swiss_doe.jpg'),(212,77,163,'/s/w/swiss_spartin.jpg'),(213,77,164,'/s/w/swiss_red_climber.jpg'),(214,77,164,'/b/l/black_climber.jpg'),(215,77,165,'/b/l/blanket.jpg'),(216,77,165,'/b/l/blanket_2.jpg'),(217,77,166,'/p/e/peaklander.jpg'),(218,77,166,'/p/e/peaklander_sole.jpg'),(219,77,167,'/d/a/dartmoorbrownpimg.jpg'),(220,77,167,'/d/a/dartmoorbrownpimg_1.jpg'),(221,77,168,'/n/i/nikfab.jpg'),(222,77,169,'/c/a/castlecamo.jpg'),(223,77,169,'/b/l/blackcombat.jpg'),(224,77,169,'/o/l/olivecombat.jpg'),(225,77,169,'/n/a/navycombat.jpg'),(226,77,170,'/s/h/shovel_1.jpg'),(227,77,170,'/s/h/shovel_1_1.jpg'),(228,77,166,'/p/e/peaklander2.jpg'),(229,77,172,'/c/o/com006.jpg'),(230,77,171,'/m/a/map-compass-com026.jpg'),(231,77,173,'/r/o/roamermap.jpg'),(232,77,173,'/r/o/roamermap_1.jpg'),(233,77,174,'/t/r/trek_feel_1.jpg'),(234,77,175,'/3/6/366.png'),(235,77,175,'/3/6/366x2.jpg'),(236,77,176,'/6/_/6.5_lock.jpg'),(237,77,177,'/s/u/survival_bag.jpg'),(238,77,177,'/s/u/survival_bag2.jpg'),(239,77,178,'/s/a/sacliner1.jpg'),(240,77,178,'/s/a/sacliner2.jpg'),(241,77,179,'/w/h/whistle.jpg'),(242,77,180,'/m/i/microban_hydration.jpg'),(244,77,181,'/e/m/emergblanket.jpg'),(245,77,182,'/f/i/firestarter.jpg'),(246,77,183,'/l/i/linedbasecamp.jpg');
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_media_gallery_value`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_entity_media_gallery_value` (
  `value_id` int(10) unsigned NOT NULL default '0' COMMENT 'Value ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `label` varchar(255) default NULL COMMENT 'Label',
  `position` int(10) unsigned default NULL COMMENT 'Position',
  `disabled` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Disabled',
  PRIMARY KEY  (`value_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CAT_PRD_ENTT_MDA_GLR_VAL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_MDA_GLR_VAL_VAL_ID_CAT_PRD_ENTT_MDA_GLR_VAL_ID` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Value Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_entity_media_gallery_value`
--

LOCK TABLES `catalog_product_entity_media_gallery_value` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery_value` VALUES (3,0,NULL,1,0),(4,0,NULL,1,0),(6,0,NULL,1,0),(8,0,NULL,2,0),(11,0,'Cadet Army Assault Boots',1,0),(12,0,NULL,1,0),(13,0,NULL,1,0),(14,0,NULL,1,0),(15,0,NULL,1,0),(16,0,NULL,1,0),(17,0,NULL,1,0),(18,0,NULL,1,0),(19,0,'',1,0),(20,0,'',1,0),(21,0,NULL,1,0),(22,0,NULL,1,0),(24,0,NULL,1,0),(25,0,'Cadet Army Combat Assault Boot',1,0),(26,0,'Grisport Ascent Walking Boots',1,0),(27,0,NULL,1,0),(28,0,NULL,2,0),(29,0,NULL,1,0),(30,0,NULL,1,0),(32,0,NULL,1,0),(33,0,NULL,1,0),(34,0,NULL,2,0),(35,0,NULL,1,0),(36,0,NULL,2,0),(37,0,NULL,1,0),(38,0,NULL,2,0),(39,0,NULL,1,0),(40,0,NULL,1,0),(41,0,NULL,1,0),(42,0,NULL,1,0),(43,0,NULL,1,0),(44,0,NULL,1,0),(45,0,NULL,1,0),(46,0,NULL,1,0),(48,0,NULL,1,0),(49,0,NULL,1,0),(50,0,NULL,1,0),(52,0,NULL,1,0),(53,0,NULL,1,0),(55,0,NULL,1,0),(56,0,NULL,1,0),(57,0,NULL,2,0),(58,0,'',1,0),(59,0,NULL,1,0),(60,0,NULL,1,0),(61,0,NULL,1,0),(63,0,NULL,1,0),(64,0,NULL,1,0),(65,0,NULL,1,0),(66,0,NULL,1,0),(67,0,NULL,1,0),(69,0,'Grisport Wolf Walking Boots',1,0),(70,0,NULL,1,0),(71,0,NULL,2,0),(72,0,NULL,3,0),(73,0,NULL,1,0),(74,0,NULL,2,0),(75,0,NULL,1,0),(76,0,'',1,0),(77,0,NULL,1,0),(78,0,NULL,1,0),(79,0,NULL,1,0),(80,0,'',1,0),(81,0,'',1,0),(82,0,'',2,0),(83,0,NULL,1,0),(84,0,NULL,1,0),(85,0,NULL,1,0),(86,0,NULL,1,0),(87,0,NULL,0,0),(88,0,NULL,1,0),(89,0,NULL,1,0),(90,0,NULL,2,0),(93,0,'',1,0),(95,0,NULL,1,0),(96,0,NULL,1,0),(97,0,NULL,1,0),(98,0,NULL,1,0),(99,0,NULL,2,0),(100,0,NULL,3,0),(101,0,NULL,4,0),(102,0,NULL,2,0),(103,0,NULL,3,0),(104,0,NULL,1,0),(105,0,NULL,1,0),(106,0,NULL,1,0),(107,0,NULL,1,0),(108,0,'',1,0),(109,0,NULL,1,0),(110,0,NULL,1,0),(112,0,NULL,3,0),(113,0,NULL,1,0),(114,0,NULL,1,0),(115,0,NULL,2,0),(117,0,NULL,1,0),(118,0,NULL,1,0),(119,0,NULL,1,0),(120,0,NULL,2,0),(121,0,'',1,0),(122,0,NULL,1,0),(123,0,NULL,1,0),(124,0,NULL,1,0),(125,0,NULL,1,0),(126,0,NULL,1,0),(127,0,NULL,2,0),(128,0,'',1,0),(130,0,NULL,1,0),(131,0,'',1,0),(132,0,NULL,1,0),(133,0,NULL,1,0),(134,0,NULL,3,0),(135,0,NULL,4,0),(136,0,NULL,2,0),(137,0,'',1,0),(138,0,NULL,1,0),(140,0,NULL,2,0),(141,0,NULL,3,0),(142,0,NULL,2,0),(143,0,NULL,2,0),(144,0,'',1,0),(146,0,'',2,0),(147,0,NULL,1,0),(148,0,NULL,3,0),(149,0,NULL,1,0),(150,0,'',1,0),(152,0,NULL,1,0),(153,0,NULL,2,0),(154,0,'',2,0),(155,0,NULL,2,0),(156,0,NULL,1,0),(157,0,NULL,1,0),(158,0,NULL,1,0),(159,0,'',1,0),(160,0,NULL,1,0),(161,0,NULL,1,0),(162,0,'',1,0),(163,0,NULL,1,0),(164,0,NULL,1,0),(165,0,NULL,2,0),(166,0,NULL,1,0),(167,0,NULL,1,0),(168,0,NULL,1,0),(169,0,NULL,1,0),(170,0,NULL,1,0),(171,0,NULL,1,0),(172,0,NULL,2,0),(173,0,NULL,1,0),(174,0,NULL,1,0),(175,0,NULL,1,0),(176,0,NULL,1,0),(177,0,NULL,1,0),(178,0,NULL,1,0),(179,0,NULL,1,0),(180,0,NULL,1,0),(181,0,NULL,1,0),(182,0,NULL,1,0),(183,0,NULL,1,0),(184,0,NULL,1,0),(185,0,NULL,1,0),(186,0,NULL,1,0),(187,0,NULL,1,0),(188,0,NULL,1,0),(189,0,NULL,1,0),(190,0,NULL,1,0),(191,0,NULL,1,0),(192,0,NULL,1,0),(193,0,NULL,1,0),(194,0,NULL,1,0),(195,0,NULL,2,0),(196,0,NULL,1,0),(197,0,NULL,2,0),(198,0,NULL,1,0),(199,0,NULL,2,0),(200,0,NULL,1,0),(201,0,NULL,2,0),(202,0,NULL,2,0),(203,0,NULL,2,0),(204,0,NULL,1,0),(205,0,NULL,1,0),(206,0,NULL,1,0),(207,0,NULL,1,0),(208,0,NULL,1,0),(210,0,NULL,1,0),(211,0,NULL,1,0),(212,0,NULL,1,0),(213,0,NULL,1,0),(214,0,NULL,2,0),(215,0,NULL,1,0),(216,0,NULL,2,0),(217,0,NULL,1,0),(218,0,NULL,2,0),(219,0,NULL,1,0),(220,0,NULL,2,0),(221,0,NULL,1,0),(222,0,NULL,1,0),(223,0,NULL,2,0),(224,0,NULL,3,0),(225,0,NULL,4,0),(226,0,NULL,1,0),(227,0,NULL,2,0),(228,0,NULL,3,0),(229,0,NULL,1,0),(230,0,NULL,1,0),(231,0,NULL,1,0),(232,0,NULL,1,0),(233,0,NULL,1,0),(234,0,NULL,1,0),(235,0,NULL,2,0),(236,0,NULL,1,0),(237,0,NULL,1,0),(238,0,NULL,2,0),(239,0,NULL,1,0),(240,0,NULL,2,0),(241,0,NULL,1,0),(242,0,NULL,1,0),(244,0,NULL,1,0),(245,0,NULL,1,0),(246,0,NULL,1,0);
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_text`
--

DROP TABLE IF EXISTS `catalog_product_entity_text`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_entity_text` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` int(10) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `value` text COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CATALOG_PRODUCT_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_TEXT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=733 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Text Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_entity_text`
--

LOCK TABLES `catalog_product_entity_text` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_text` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_text` VALUES (9,4,61,0,3,'Gelert Tryfan Classic Sleeping\r\n\r\nThe ever popular Gelert classic range offers outstanding value, comfort & durability.\r\n\r\n* Ridge hood\r\n* Zip baffle\r\n* Shoulder baffle\r\n* Internal security pocket\r\n* Compression sac\r\n\r\nSPECIFICATIONS\r\n\r\n* Size: 230 x 80 x 50 cm\r\n* Size: Packed: 23 x 35 cm\r\n* Shell: 190T/70D Polyester\r\n* Lining: Poly-Cotton\r\n* Filling: 300g/m² Double Layer Polyester/Mono Fibre Mix\r\nColour - Olive Green or Black.\r\nWeight - 1.7kg\r\nComfort 0.3oC\r\nExtreme -16oC\r\n\r\n'),(10,4,62,0,3,'3 Season Warm and Cosy Gelert Tryfan Classic Sleeping Bag '),(11,4,72,0,3,'3season, sleepingbag, sleepingbags, tryfan, gelertsleepingbags, '),(12,4,95,0,3,''),(13,4,61,0,4,'Item Description\r\n\r\n    * Capacity: 33L\r\n    * Colour: DPM\r\n    * Material: XTP900\r\n    * Size: Length: 45cm\r\n    * Weight: 1.3 kg\r\n\r\n    * Duraflex branded buckles and clips\r\n    * 10 Gauge self repair zips\r\n    * Shock cord top system\r\n    * Draw cord snow closure, Chest and waist strap\r\n    * Waterproof transit case, Lid Compartment\r\n    * Accessory D-rings, Utility chain\r\n    * Airmesh funnel back system\r\n    * Side Pockets: 2x1.5 litre\r\n\r\nXTP is a specialist woven fabric that has been designed for rugged outdoor use, making it the ideal choice for rucksacks and day sacks. It is woven from polyester yarns and is specially textured to maximise strength and to prevent abrasion, tears and scuffs. XTP has a durable waterproof coating to maximise water repellency.\r\n\r\nAirmesh is a fabric specially developed for rucksacks and daysacks. It is padded with open cell foam to ensure maximum comfort in body contact areas. Airmesh is specially woven from high wicking fibres to ensure maximum air circulation and breathability. It is soft to the touch but highly durable.\r\nproforce 33 litre rucksacks\r\ntunnel mesh back systems\r\nlid pocket\r\nwaist strap\r\n2 side pockets\r\nduraflex buckles and clips\r\nshock cord system top \r\nXTP9oo fabric'),(14,4,62,0,4,'Forces 33 proforce Rucksack suitable for cadets'),(15,4,72,0,4,'bergan, camoruckascks, camouflague, armyrucksacks, proforce33litrecadetrucksacks, cadetbags, dpmrucksacks'),(16,4,95,0,4,''),(21,4,61,0,6,'Genuine \'95 pattern Camouflage Combat Shirt\r\nDisruptive pattern.\r\nLightweight shirt, Velcro and button fastening with 2 chest pockets.\r\nWith rank epulette.'),(22,4,62,0,6,'Soldier \'95 pattern Camouflage Combat Shirt'),(23,4,72,0,6,''),(24,4,95,0,6,''),(25,4,61,0,7,'Proforce 25 Litre rucksack in camouflague\r\nAirmesh tunnel back  system\r\nLid compartment\r\n2 side pockets\r\nwaist strap\r\n'),(26,4,62,0,7,'Proforce 25 litreDPM camouflague  Rucksack suitable for Cadeta and the TA'),(27,4,72,0,7,'bergan, 25litrecadetrucksack, camo, camouflaguerucksacks, dpmruckscaks, tarucksacks, camouflague, camoflage, camoflague, '),(28,4,95,0,7,''),(29,4,61,0,8,'Proforce 25 litre Rucksacks\r\nAirmesh funnel back\r\nLid compartment\r\n2 side pockets\r\nWaist strap\r\nDuraflex buckles and clips\r\n10 guage self repair zips\r\nShock cord topsystem\r\nXTP900 fabric for greater durablity'),(30,4,62,0,8,'Proforce 25 litre Military Army Cadet  Rucksack, suitable daybag for the TA'),(31,4,72,0,8,'bergan, camo ,camouflaguerucksack, dpmrucksacks, cadetrucksack, tarucksack.proforcerucksack.'),(32,4,95,0,8,''),(37,4,61,0,10,'Modelled after the British Forces issue assault boot and ever popular with the cadets and the TA.'),(38,4,62,0,10,'Assault, TA,Cadet Security Boots\r\n\r\nModelled after the British Forces issue assault boot, and ever popular with the cadets and the TA.'),(39,4,72,0,10,'assaultboot, armyassaultboot, boots, cadetboots, militartyboots, footwear.'),(40,4,95,0,10,''),(41,4,61,0,11,'US Style Waterproof ponchos .\r\nWaterproof ripstop Nylon\r\n6 Brass eyelets and pressstuds down both sides.\r\nDrawcord hood\r\nWeighs only 350 grams\r\n'),(42,4,62,0,11,'Army Style Military Waterproof Hooded Ponchos'),(43,4,72,0,11,'poncho, ponchos, waterproof,armystylewaterproof, camoponcho, camoflague, camouflague, ponchoes,'),(44,4,95,0,11,''),(45,4,61,0,12,'Camouflage British DPM T-Shirt\r\n100% Cotton\r\n'),(46,4,62,0,12,'Camoulage T-Shirt Military Style\r\nBritish DPM '),(47,4,72,0,12,'camotshirt, cammo, camouflaguetshirt, dpm, dpmtshirt, teeshirt.'),(48,4,95,0,12,''),(49,4,61,0,13,'Olive T-Shirt\r\n100& Cotton\r\nIdeal to wear under 95 Pattern Shirts\r\nTA and cadet suitable'),(50,4,62,0,13,'Olive Green Army Cadet T-Shirt'),(51,4,72,0,13,'armytshirt, teeshirt, greenteeshirt, cadet, tshirt, teeshirt, olivegreentshirt, cadettshirt.'),(52,4,95,0,13,''),(53,4,61,0,14,'Military Style Commando Sweater\r\n100 % Acrylic\r\nReinforced elbows & shoulders\r\nShoulder epaulettes\r\n\r\nSize XXL in NAVY BLUE  temporarily out of stock until 3rd December 2011.\r\n\r\n'),(54,4,62,0,14,'Military Style Army Commando Sweater'),(55,4,72,0,14,'armysweater, armyjumper, swater, militarysweater,commandosweater,pullover, armypullover.'),(56,4,95,0,14,''),(57,4,61,0,15,'Childrens Camouflage Combat Jacket\r\nPolyester filled\r\nPadded for warmth'),(58,4,62,0,15,'Kids Camoflage Jackets'),(59,4,72,0,15,'kidscamojacket, camouflague,camojacket, armysuits, suits, camoflague, camoflages, camoflage, '),(60,4,95,0,15,''),(61,4,61,0,16,'Kids Camouflague Combat Jackets\r\n\r\nAge 13/14 Years\r\n\r\nPadded for warmth'),(62,4,62,0,16,'Kids Camouflague Combat Army DPM  Jacket Age 13/14 Years'),(63,4,72,0,16,'13to14armypants, camopants, camouflaguetrousers, armysuits, suits, camoflague, camouflagues,'),(64,4,95,0,16,''),(65,4,61,0,17,'Kids Camouflague Combat Trousers\r\nPolyester/Cotton\r\nBritish DPM\r\nAnkle Adjusters\r\nSide Pockets\r\nSizes available\r\n3/4, 5/6,7/8 9/10,11/12\r\n\r\nAge 13/14 also available \r\n\r\n'),(66,4,62,0,17,'Kids Camouflague Combat Army Trousers'),(67,4,72,0,17,'kidscamotrousers, camo, armytrousers, kidsarmytrousers, armypants, camouflague, camouflaguepants, armysuits, suits, cmoflague, camoflague, '),(68,4,95,0,17,''),(69,4,61,0,18,'Heavy duty canvas webbing belts\r\nSize adjusts to fit up to 40 inch waist\r\nEasy fasten metal buckle\r\n56mm width'),(70,4,62,0,18,'Cotton Army Pistol Belts'),(71,4,72,0,18,'pistolbelts, belts, armybelts, amy, militarybelts, military, tabelts, armyuniformbelts, uniformbets'),(72,4,95,0,18,''),(73,4,61,0,19,'Kids Ghillie Suits\r\nWoodland Camouflague\r\ncomprising of :\r\n1  x Long Jacket\r\n1 x Seperate hood\r\n1 x Full length adjustable trousers\r\n1  Rifle wrap\r\n1 x Compresion bag\r\nSizes S/M. L/XL'),(74,4,62,0,19,'Kids woodland Camouflague Ghillie Suits, fishing, shooting,hunting'),(75,4,72,0,19,''),(76,4,95,0,19,''),(77,4,61,0,20,'Ghillie suits in Burlap style camouflague netting \r\nComprising of;\r\n1 x long jacket\r\n1 x seperate hood\r\n1 x full length, adjustable leg trousers.\r\n1 x rifle wrap\r\n1 x compression/carry bag.\r\nwoodland camouflague\r\nsizes M/L, XL/XXL'),(78,4,62,0,20,'Ghillie suits in woodland camouflage,suitable for paintballing, fishing, shooting'),(79,4,72,0,20,''),(80,4,95,0,20,''),(81,4,61,0,21,' Army style Mess Tins\r\nTough aluminum construction\r\n1.5litre and a 1.3 litre capacity'),(82,4,62,0,21,'Army Style Mess tins suitable for cadets and camping'),(83,4,72,0,21,'armymesstins, messtins, ta tins,billycan,'),(84,4,95,0,21,''),(85,4,61,0,22,'Soldier 95 Shirts Grade 1 Issue\r\nKindly contact for sizes available'),(86,4,62,0,22,'Soldier 95 Shirts Grade 1 Issue'),(87,4,72,0,22,'soldier95, soldier95kit, soldier95shirts, armyissuekit, armysurplusshirts, 95shirts.95shirt, camoflage, camouflgue, camoflague, '),(88,4,95,0,22,''),(89,4,61,0,23,'Snugpak Elite Softi Jacket\r\nSleeka Elite\r\nDescription\r\nElite Jackets have been equipped with reinforced patches covering all stress points; shoulder, elbow and cuff and now supplied with a compression stuff sack so you can really get the benefit out of our highly compressible Softie insulation\r\n\r\nAvailable in medium, large, xlarge\r\n\r\n\r\n'),(90,4,62,0,23,'SnugpakElite Softie Jacket packable the original brand'),(91,4,72,0,23,'snugpak, softie, softiejacket,softiesleekajacket, softiesleekalite, sleekaelite.'),(92,4,95,0,23,''),(93,4,61,0,24,'PACKAWAY II JACKET   \r\n\r\n\r\nPackaway II Jacket\r\n\r\n    * Waterproof and breathable Isolite 5000 lightweight polyamide fabric\r\n    * Windproof fabric\r\n    * Taped seams\r\n    * Integral hood\r\n    * Studded stormflap with hook and loop\r\n    * 2 lower pockets\r\n    * Mesh stuff sack\r\n\r\nSizes:\r\nXS-XXXL\r\n\r\nRRP £27.00\r\n\r\nIsolite5000Packaway\r\n\r\nCustomer Reviews (2)'),(94,4,62,0,24,'regatta Pakaway jacket lighweight waterproof & breathable, packs into a bag.'),(95,4,72,0,24,'waterproofs, waterproofjackets, kagools, kagoules, reagattawaterproofs,lightweighwaterproofandbreathablejackets, lightweight, regatta,regattawaterproofs, pakawayjackets, regattawaterproofandbreathablejackets.'),(96,4,95,0,24,''),(97,4,61,0,25,'Colourway:  Navy < Black\r\nPackaway II Overtrousers\r\n\r\n    * Waterproof and breathable Isolite 5000 lightweight polyamide fabric\r\n    * Windproof fabric\r\n    * Taped seams\r\n    * Elasticated waist\r\n    * Press studs at hem\r\n    * 2 side pocket openings\r\n    * Mesh stuff sack\r\n\r\nSizes:\r\nS-XXXL\r\n\r\nRRP £15.00\r\n\r\nIsolite5000Packaway\r\n\r\nCustomer Reviews (3)'),(98,4,62,0,25,'Regatta Breathable waterproof overtrousers lightweight'),(99,4,72,0,25,'reagatta, waterproofovertrousers, overtrousers, breathableovertrousers,waterproofand breathableovertrousers,lightweigtovertrousers, pakawayovertrousers.'),(100,4,95,0,25,''),(101,4,61,0,26,'Full  Leather  Upper\r\nThinsulate Lining\r\nRubber Sole unit\r\nSteel shank\r\nSuede Collar\r\nAvailable in sizes 3 to 13'),(102,4,62,0,26,'Cadet combat Boot assault boots'),(103,4,72,0,26,'cadetboots, armyboots, boots,taboots, militaryboots, combatboots, armykit, footwear, thinsulatelinedboots.'),(104,4,95,0,26,''),(105,4,61,0,27,'ASCENT\r\nAscent is our entry level, lower cut waterproof trekking boot featuring our patented waterproof & breathable ‘spotex’ membrane.\r\n\r\nUnisex trekking boot\r\nSizes 36 x 47\r\nWeight: 1000g\r\nColours - Grey\r\nSpotex lined - Waterproof & breathable\r\n \r\n\r\n\r\n\r\nPrice Guide:   £60.00'),(106,4,62,0,27,'Grisport Ascent Lightweight and Breathable  Walking Trekking Hiking Boots'),(107,4,72,0,27,''),(108,4,95,0,27,''),(109,4,61,0,28,'\r\n	\r\nGrisport Wolf Lightweight Waterproof Walking Boot\r\n\r\nThe outstanding Wolf walking boot from Grisport is one of our most popular styles.\r\n The Grisport Wolf  is a suede & Cordura lightweight designed boot, with a waterproof and breathable lining.\r\n The Wolf sells really well in our shop, for its pure simplicity \r\n Lightweight, great value for money and as soon as you put you\'re foot in the wolf it just feels comfortable.\r\n\r\n\r\nGrisport Wolf Lightweight Walking Boot Features:\r\n\r\n   >Tough cordura and suede leather construction\r\n   > Heel Support System, to ensure grip though movement\r\n   > Padded, fairly low, ankle cuffs and padded tongue.\r\n   > Italian-made boot in unisex sizing for men and ladies\r\n  > Available in Navy \r\n    >Great value for money walking boot\r\n\r\n>Support System:\r\n The extremely effective heel-locking system is designed to provide perfect control of the foot by ensuring an excellent grip is maintained on the ground through all phases of movement.\r\n\r\n>Waterproof and Breathable Membrane Lining:\r\n> The Grisport Wolf Walking boot benefits from the branded \'Spotex\' waterproof and breathable membrane with taped    seams, this ensures your feet stay dry, whilst still allowing them and the leather to breath.\r\n> Happy comfortable feet.\r\n\r\n>Cordura Durability: \r\nCordura is a performance fabric and a key element in all high quality hiking boots, it is renowned for its durability and resistance to tear and puncture\r\n>. Footwear manufactured in this super fabric will guarantee you many years of walking comfort and enjoyment.\r\n\r\n'),(110,4,62,0,28,'Grisport Lightweight Waterproof And breathable Walking, hiking trekking Boots'),(111,4,72,0,28,'waterproof , walkingboots, waterproofwalkingboots, grisportwalkingboots, waterproofandbreathablewalkingboots, grisportwaterproofwalkingboots,foot, footwear, wlfboots, wolf,'),(112,4,95,0,28,''),(113,4,61,0,29,'Full PLCE Webbing System\r\nBritsh DPM\r\n2 x double ammo pouches\r\n2 x  utility pouches\r\n1 x  standard yoke\r\n1 x  PLCE belt.\r\n'),(114,4,62,0,29,'Full PLCE Army cadet TA military  Webbing System '),(115,4,72,0,29,'plce, webbing, armywebbing,tawebbing,cadetkit,plcewebbing,fullplcewebbing,camoflague, camouflague,'),(116,4,95,0,29,''),(121,4,61,0,31,'Camouflague Waterproof & Breathable Jacket\r\nFortex Breathable Fabric\r\nThree layer construction\r\nVelcro twin storm flap covered zip\r\nCuff & waist adjusters\r\nTrousers to match\r\n\r\nKINDLY NOTE SIZE 3XL DUE IN EARLY MARCH !!!'),(122,4,62,0,31,'Camouflague DPM Flexible  Waterproof & Breathable Jackets'),(123,4,72,0,31,'camowaterproof, camouflague,waterproofcoat, dpmwaterproof, armyjacket,waterproof, camoflage, camoflague, '),(124,4,95,0,31,''),(125,4,61,0,32,'>Camouflague Waterproof & Breathable Overtrousers\r\n>Fortex 5000 breathable fabric\r\n>3 layer construction\r\n>Zipped Hand Pockets\r\n> Ankle Adjusters.\r\n\r\n\r\nSIZE MEDIUM TEMPORARILY OUT OF STOCK'),(126,4,62,0,32,'Camoufllague DPM  Waterproof Flexible &Breathable Overtrousers'),(127,4,72,0,32,'camowaterproof, camouflague, dpmwaterproof, waterproofcamotrousers,,armywaterproof,overtrouserscamo,cadetkit,camoovertrousers, armywaterproofovertrousers, camoflague, camoflage, overtrousers,'),(128,4,95,0,32,''),(129,4,61,0,33,'DPM Soldier 95 Combat Trousers\r\nPoly /Cotton\r\n5 pockets\r\nzip fly\r\nbelt loops\r\ninternal draw-string waist\r\ntie bottoms\r\nleg 32.5 ins\r\n'),(130,4,62,0,33,'DPM Soldier 95 Combat Trousers'),(131,4,72,0,33,'95s, 95trousers, camopants, camouflaguepants, cammypants'),(132,4,95,0,33,''),(133,4,61,0,34,'Combat cadet knife, for &spoon set (KFS)'),(134,4,62,0,34,'KFS'),(135,4,72,0,34,'kfs, knifeforkspoon, cadetkit, fork, knife, spoon'),(136,4,95,0,34,''),(137,4,61,0,35,'100 % Cotton ripstop.\r\n1000 denier cordura cover.\r\nwaterpurification tablet pocket\r\nUS military issue.'),(138,4,62,0,35,'Camouflague Water Bottle'),(139,4,72,0,35,'camowaterbottleandcup, waterbottle, armykit, armywaterbottle, waterbottlewithcup, camouflaguewaterbottle, camouflague, camoflage, camoflague, '),(140,4,95,0,35,''),(141,4,61,0,36,'100 %  Acrlyic \r\nDouble layers'),(142,4,62,0,36,'Open face balacavas'),(143,4,72,0,36,'oneholebalaclavs, balaclavs, blackbalaclavas, hats, headwear, caps, snoods, buffs, '),(144,4,95,0,36,''),(145,4,61,0,37,'100 % Acrylic\r\ndouble layer construction\r\nBlack or Olive Green'),(146,4,62,0,37,'3 hole warm miitary army SAS style balaclavas'),(147,4,72,0,37,'sas, balaclavas, balaclava, 3holehat, 3holebalaclava, hadwera, caps, hats, '),(148,4,95,0,37,''),(149,4,61,0,38,'Britsh Special Forces Hats\r\nBritsh DPM\r\nsmall tailored brim\r\nadjustable  retaining chin strap\r\neasily folded into a pocket\r\nsizes 57,58,59,60,61.'),(150,4,62,0,38,'Special Forces Army  DPM Hat'),(151,4,72,0,38,'craphat, camohat, specialforceshat, cadetkit, cadethat, dpmbushat,armyhat.camoflague, camoflage, camouflague, '),(152,4,95,0,38,''),(153,4,61,0,39,'Para Cord\r\n3mm x 15 metres.\r\nolive green'),(154,4,62,0,39,'Para Cord for use with cadets and TA and a Bashas'),(155,4,72,0,39,'paracord, bashastring,'),(156,4,95,0,39,''),(157,4,61,0,40,'Military Style Army Bungees\r\nOlive Green'),(158,4,62,0,40,'Military Bungees suitable for use with a basha'),(159,4,72,0,40,'bungees,armybungees, greenbungees, armykit, cadetkit, bashaskit, militarybungees'),(160,4,95,0,40,''),(161,4,61,0,41,' 3 season sleeping bag\r\ncompression bag included\r\n Filling 300 gram double layer mono fibre/ polyester mix \r\nblack/ochre\r\nweight 1.7 kgs\r\nsize 230 x 80 x 50 (length, width on chest, width at feet)\r\nsleeps to minus 7 degrees centrigrade.'),(162,4,62,0,41,' 3 season gelert tryfan  sleeping bag'),(163,4,72,0,41,'tryfan, sleepingbag, 3season, tryfansleepingbag, gelertsleepingbag.'),(164,4,95,0,41,''),(165,4,61,0,42,'The warmest Ranger 3 season sleeping bag\r\nmummy style hood for greater protection\r\nzip baffles to protect from wind and drafts\r\nhexagonal rip stop outer stops snags spreading\r\nlow of - 5 degrees.\r\nolive green'),(166,4,62,0,42,'Proforce 3 Season Ranger Cadet  TA Fishing Military Sleeping Bags'),(167,4,72,0,42,'3seasonsleepingbag, 3season, sleepingbag,armysleepingbag,cadetkit, cadetsleepingbag,fishingsleepingbag,profocesleepingbag.'),(168,4,95,0,42,''),(169,4,61,0,43,'Combat army cadet boot care kit\r\nIncludes stash bag  , made froim 1000 denier cordura\r\nincludes spare laces, brushes, polish , polishing cloths.\r\n'),(170,4,62,0,43,'Combat Military Army TA  Cadet Boot Care Kit'),(171,4,72,0,43,'bootcare, bootcleaningit, polish, camostashbag, stashbag, brushes, '),(172,4,95,0,43,''),(173,4,61,0,44,'Womens fit ,all day comfort\r\nMerino wool/coolmax mixture\r\nlow tension cuff\r\ndesigned for any season trekking, walking, and backpacking.\r\ndesigned for all day protection and superior next to skin  comfort\r\nthis style ensures a dry enviorment for comfort and healthy feet.\r\nfibre content 50 % coolmax\r\n27 % merino wool\r\n22 % nylon\r\n1 % lycra\r\nAvailable in szes 3 to 4.5,5 to 6.5,7 to 8.5.'),(174,4,62,0,44,'Ladies Comfort Trekker Bridgedale Walking Hiking Rambling  Socks'),(175,4,72,0,44,'socks, walkingsocks, hiking, walking, trekking,bridgdale, 1000mile, bridgedale, climbing, '),(176,4,95,0,44,''),(177,4,61,0,45,'Army Cadet Socks\r\nOlive Green\r\n65% Wool, 35 % Nylon\r\nSize 6- 11'),(178,4,62,0,45,'Commando Army Cadet TA Military Work  Socks'),(179,4,72,0,45,'armysocks, army, socks, miltary, cadetsocks, cadets, ta, commandosocks.worksocks, workwear.'),(180,4,95,0,45,''),(181,4,61,0,46,'100 % acyrlic\r\nThinsulate lined\r\nAvailable in \r\nBlack\r\nNavy\r\nGrey\r\nOne Size'),(182,4,62,0,46,'Thinsulate Beanie Watch hat'),(183,4,72,0,46,'thinsulatehats,bennies, warmhats, watchhats, hats.\r\n'),(184,4,95,0,46,''),(185,4,61,0,47,'100 % Acrylic \r\nThinsulate lined\r\nIdeal For those cold winter days\r\nAvailable in\r\nNavy\r\nBlack'),(186,4,62,0,47,'Chunky Thinsulate Knitted Warm  Ski/Beanie Hats'),(187,4,72,0,47,'beanniehats, knittedhats, hats, thinsulate,skihats, ski, warmhats,chunkyhats.'),(188,4,95,0,47,''),(189,4,61,0,48,'Thinsulate Lined Shooter Hooded Mitts\r\nFingerles mitts with the option to pull the hood over your fingers!\r\n\r\nOnly avalable in BLACK, at the moment\r\n'),(190,4,62,0,48,'Hooded Mitts'),(191,4,72,0,48,'shootermitts, mitts, mits,mittens, fingerlessmitts, fingerless.'),(192,4,95,0,48,''),(193,4,61,0,49,'Comfort trekker Walking Socks\r\n\r\nComfort:\r\nWoolFusion® of Merino/Coolmax®. Low tension cuff.\r\n\r\nTrekker:\r\nDesigned for any-season, Hiking, Trekking and Backpacking.\r\n\r\nDesigned for day-long protection and superior next-to-skin comfort, this style ensures a dry environment for comfortable and healthy feet.\r\nFibre Content:\r\n50% Coolmax®/polyester\r\n27% Merino Wool\r\n22% Nylon/polyamide\r\n1% Lycra®/elastane \r\nAvailable in sizes 6 to 8.5, 9 to 11.5\r\nAlso in Navy blue'),(194,4,62,0,49,'Bridgedale Comfort Trekker  mens walking socks'),(195,4,72,0,49,'bridgedalewalkingsocks, socks, walkingsocks, bridgedale, comfort, trekker, comforttrekker.'),(196,4,95,0,49,''),(197,4,61,0,50,'45% merino wool, 42% cotton, 12% nylon, 1% lycra. The 100% Tactel® inner layer stays with the foot, wicking away moisture, whilst the soft wool-cotton mix outer moves with the shoe. The unique combination of fibres maintains a comfortable temperature for the foot.\r\n\r\n    * Arch bracing for additional support.\r\n    * Flat toe seam for extra comfort.\r\n\r\n				\r\nSizes available\r\nLadies Sizes 3 -5.5 and 6-8.5 (in Navy blue or purple)\r\nGents Sizes  6to 8.5and 9to 11.5.(in navy blue or grey)\r\n	'),(198,4,62,0,50,'1000 Mile All terrain Walking socks'),(199,4,72,0,50,'1000milewalkingsocks, walkingsocks, socks,1000, 1000mile, mile,blisterfree, blisterfreesocks'),(200,4,95,0,50,''),(201,4,61,0,51,'ISLAY WALKING POLE SINGLE\r\nDescription\r\n\r\n    * Four section pole with anti-shock system\r\n    * Ergonomic handle\r\n    * Webbing wrist strap\r\n    * Rubber Foot\r\n    * Large and small basket\r\n\r\nSpecifications\r\n\r\nMinimum Length:\r\n\r\n    55cm\r\n\r\nMaximum Length:\r\n\r\n    125cm\r\n\r\nTip:\r\n\r\n    Tungsten Alloy\r\n\r\nFabric/Materials:\r\n\r\n    Aluminium\r\n\r\nWeight:\r\n\r\n    0.36 kg\r\n'),(202,4,62,0,51,'Islay walking poles'),(203,4,72,0,51,'islaywalkingpoles, walkingpoles, poles, walking, sticks, highlanderwalkingpoles.'),(204,4,95,0,51,''),(205,4,61,0,52,'ARRAN WALKING POLE \r\n\r\nDescription\r\n\r\n    * Silver/green\r\n    * Weight  370g\r\n    *Maximum length 137cms\r\n    * Minimum 68cms\r\n    *Tip tungsten alloy\r\n    *Pole Aluminimum 6061\r\n    * Handle T shape walking grip.\r\n    * Features . Webbing hand loop with Duraflex buckle \r\n    * Rubber foot\r\n    * Grass basket\r\n     \r\n\r\n    \r\n'),(206,4,62,0,52,'Arran walking pole'),(207,4,72,0,52,'walkingpoles, walking, poles, hiking, walking, arranwalkingpoles, highlanderwalkingpoles, walkingsticks, sticks,'),(208,4,95,0,52,''),(209,4,61,0,53,'Nikwax Wash -in waterproofing for wet weather clothing\r\n\r\nPut new life into that old waterproof!!'),(210,4,62,0,53,'Nikwax TX Direct Wash -in Waterproofing'),(211,4,72,0,53,'nikwax, reproofing, waterproofing, wash in proofing, txdirect tx, proof, proofing,'),(212,4,95,0,53,''),(213,4,61,0,54,'WASH-IN CLEANER FOR WATERPROOF CLOTHING AND EQUIPMENT'),(214,4,62,0,54,'NIKWAX TECH-WASH \r\nWASH - IN CLEANER'),(215,4,72,0,54,'nikwax , cleaner, wash, washin, washingstuff, reproof, '),(216,4,95,0,54,''),(217,4,61,0,55,'NIKWAX FABRIC&LEATHER WATERPROOFING SPRAY\r\nSPRAY ON WATERPROOFING FOR ALL FABRIC AND LEATHER COMBINATION FOOTWEAR'),(218,4,62,0,55,'NIKWAX FABRIC&LEATHER WATERPROOFING SPRAY'),(219,4,72,0,55,'nikwax, waterproofing, wax, footwear, foot, fabricboots, leather, fabric, '),(220,4,95,0,55,''),(221,4,61,0,56,'NIKWAX NUBUCK&SUEDE PROOFING SPRAY\r\nSPRAY ON WATERPROOFING FOR SUEDE AND NUBUCK FOOTWEAR.'),(222,4,62,0,56,'NIKWAX NUBUCK&SUEDE PROOFING SPRAY'),(223,4,72,0,56,'nikwax, waterproofing, suede, nubuck, spray, foot, footwear, '),(224,4,95,0,56,''),(225,4,61,0,57,'NIKWAX WATERPROOFING WAX FOR LEATHER\r\nIDEAL FOR ALL LEATHER FOOTWEAR'),(226,4,62,0,57,'NIKWAX WATERPROOFING WAX FOR LEATHER'),(227,4,72,0,57,'nikwax, waterproofing, leather, foot, footwear, '),(228,4,95,0,57,''),(229,4,61,0,58,'PENNINE LOOP PILE LINED WALKING SOCKS\r\nFULL CUSHIONED LOOP PILE LINED \r\nHIGH WARMTH AND COMFORT\r\nEXTRA DENSITY PROTECTION PADS\r\nSOFT GRIP TOE\r\n75% WOOL ,25% NYLON REINFORCED\r\nAVAILABLE IN 3 COLOURS\r\nSIZS 4 TO 7 AND 7 TO 11.\r\n'),(230,4,62,0,58,'PENNINE LOOP PILE LINED WALKING SOCKS'),(231,4,72,0,58,'looppilesocks, walkingsocks, socks, sox, trekkingsocks, hikingsocks'),(232,4,95,0,58,''),(233,4,61,0,59,'Colourway: Black\r\n\r\nKIDS ADVENTURE TECH BASE LAYER SET   RKU001\r\n\r\n\r\nKids Adventure Tech Base Layer Set\r\n\r\n    * Thermal Balance Plus microfleece\r\n    * 1 side brushed and anti-pill\r\n    * Thermal properties\r\n    * Quick drying\r\n\r\nSizes:\r\n3-12 yrs, 32\"+34\"\r\n\r\nRRP £18.00\r\n\r\n'),(234,4,62,0,59,'CHILRENS THERMAL UNDERWEAR'),(235,4,72,0,59,''),(236,4,95,0,59,''),(237,4,61,0,60,'THERMAL SHORT SLEEVE T SHIRT\r\nBRUSHED FABRIC\r\n50% POLYESTER/ 50 % COTTON\r\nLIGHTWEIGHT AND WARM\r\nAVAILABLE IN WHITE OR DENIM BLUE\r\nSIZES MEDIUM, LARGE, XLARGE, AND XX LARGE.'),(238,4,62,0,60,'THERMAL T SHIRT '),(239,4,72,0,60,'thermals, teeshirt, tshirt, warm, themaltshirts, '),(240,4,95,0,60,''),(241,4,61,0,61,'THERMAL LONGJOHNS\r\n50% COTTN/50% POLYESTER\r\nBRUSHED LINING FOR WARMTH\r\nAVAILABLE IN WHITE OR DENIM BLUE\r\nSIZES MEDIUM, LARGE, X LARGE.'),(242,4,62,0,61,'THERMAL LONGJOHNS'),(243,4,72,0,61,'thermals,longjohns, underwear, thermal, '),(244,4,95,0,61,''),(245,4,61,0,62,'Ladies Parade Shoes\r\nBlack Hi-shine Leather Uppers\r\nLeather 1/4 Lining and Sock\r\nPVC Sole\r\nAvailable in sizes 3, 4, 5, 6, 7.'),(246,4,62,0,62,'Ladies Parade Shoes'),(247,4,72,0,62,'ladiesparadeshoes, parade, ladies, atcshoes, foot, raf, '),(248,4,95,0,62,''),(249,4,61,0,63,'Mens & Boys Parade Shoes with Toe Cap\r\nBlack Leather Uppers\r\nPVC Sole\r\nLeather lined\r\nATC Parade Shoes\r\nAvailable in sizes 3 to 12\r\n\r\n\r\n'),(250,4,62,0,63,'Mens & Boys Parade Shoes with Toe Cap'),(251,4,72,0,63,'paradeshoes, footwear, shoes, parade, foot, atcshotes, rafshoes, raf ,'),(252,4,95,0,63,''),(253,4,61,0,64,'MENS 3 PACK THERMAL SOCKS \r\nWINTER THERMAL SOCKS\r\nSIZES 6 TO 11\r\nLOOPED TERRY LINED FOR WARMTH AND COMFORT\r\nGENTLE WELT FOR COMFORT\r\n\r\nPLEASE NOTE THE ITEM IS ONLY FOR ONE BUNDLE OF 3 PAIRS!!\r\n'),(254,4,62,0,64,'MENS 3 PACK THERMAL SOCKS '),(255,4,72,0,64,'thermalsocks, socks, sox, warmsocks'),(256,4,95,0,64,''),(257,4,61,0,65,'LADIES 3 PACK WOOL THERMAL BOOT SOCKS\r\n48% WOOL\r\nWARMTH WITHOUT WEIGHT\r\nFIT SIZES 4 TO 7\r\nASSSORTED COLOURS'),(258,4,62,0,65,'LADIES 3 PACK WOOL THERMAL BOOT SOCKS'),(259,4,72,0,65,''),(260,4,95,0,65,''),(261,4,61,0,66,'MENS 3 PACK WOOL THERMAL BOOT SOCKS\r\nWARMTH WITHOUT WEIGHT\r\n60% WOOL\r\nFIT SIZES 6 TO 11'),(262,4,62,0,66,'MENS 3 PACK WOOL THERMAL BOOT SOCKS'),(263,4,72,0,66,'woolthermalsocks, thermals, woolysocks, '),(264,4,95,0,66,''),(265,4,61,0,67,'MENS KNEE LENGTH WOOL BOOT SOCKS\r\nFULLY CUSHIONED LOOP PILE FOR MAXIMUM COMFORT AND WARMTH\r\nEXTRA DENSITY PROTECTION PADS \r\nSOFT GRIP TOES\r\nDESIGNED TO KEEP THE HEAT IN AND THE MOISTURE OUT\r\n75% WOOL 25% NYLON FOR DURABILITY\r\nCHOICE OF 3COLOURS\r\nPLEASE STATE 2ND COLOUR CHOICE\r\nFITS SIZES 7 TO 11'),(266,4,62,0,67,'Mens wool knee length thermal walking socks'),(267,4,72,0,67,'longwalkingsocks, socks, kneelength, menswalkingsocks, sox, thermal,looppile, '),(268,4,95,0,67,''),(269,4,61,0,68,'LADIES KNEE LENGTH WOOL BOOT SOCKS\r\nFULLY CUSHIONED LOOP PILE FOR MAXIMUM COMFORT AND WARMTH\r\nEXTRA DENSITY PROTECTION PADS \r\nSOFT GRIP TOES\r\nDESIGNED TO KEEP THE HEAT IN AND THE MOISTURE OUT\r\n75% WOOL 25% NYLON FOR DURABILITY\r\nCHOICE OF 3COLOURS\r\nPLEASE STATE 2ND COLOUR CHOICE\r\nFITS SIZES 4 TO 7'),(270,4,62,0,68,'LADIES KNEE LENGTH Warm Rambling hiking walking  WOOL SOCKS'),(271,4,72,0,68,'walkingsock, longwalkingsocks, socks, hiking, rambling, loopknit, thermal, kneelength,'),(272,4,95,0,68,''),(277,4,61,0,70,'RECHARGEABLE HAND WARMERS\r\n2 REUSEABLE HANDWARMER GEL PDS\r\nDOES NOT NEED ELECTRICAL OR PRE HEATING\r\nGENERATES HEAT TO APPROXIMATELY 50 DEGREESFOR UP TO AN HOUR\r\nIDEAL FOR WALKS TREKS, CAMPING ETC.\r\nEASILY RECHARGED\r\nSIMPLY BOLI IN WATER UNTIL SOLID CRYSTALS TURN CLEAR.'),(278,4,62,0,70,'RECHARGEABLE HAND WARMERS'),(279,4,72,0,70,'handwarmers, rechargeable, warmhands,'),(280,4,95,0,70,''),(281,4,61,0,71,'Hotties  INSTANT HANDWARMERS\r\n\r\nA pair (one for each hand)\r\n\r\nSINGLE USE\r\n\r\nMINIMUM TEMPERATURE 40 DEGREES'),(282,4,62,0,71,'Hotties INSTANT HANDWARMERS'),(283,4,72,0,71,'handwarmers, instantheat, dispossiblehandwarmers, '),(284,4,95,0,71,''),(285,4,61,0,72,'CARINBINAS 6MM\r\n\r\nNOT SUITABLE FOR CLIMBING'),(286,4,62,0,72,'6MM CARABINAS'),(287,4,72,0,72,'carabinas, hooks, karabinas,'),(288,4,95,0,72,''),(289,4,61,0,73,'8 MM CARABINAS \r\n\r\n2 X CARBINAS\r\n\r\nNOT SUITABLE FOR CLIMBING\r\n'),(290,4,62,0,73,'8MM CARABINAS'),(291,4,72,0,73,''),(292,4,95,0,73,''),(293,4,61,0,74,'KIDS ASSAULT VEST\r\nLIGHTWEIGHT MESH WITH ADJUSTABLE STRAPS ON SHOULDERS,FRONT & SIDES\r\n9 POCKETS\r\nDPM 1000 DENIER WATERPROOF CODURA\r\nONE SIZE FITS ALL.\r\nBRITSH DPM\r\n'),(294,4,62,0,74,'Kids Army Military Style DPM Camouflage Assault vest'),(295,4,72,0,74,'kidsarmyvests, plce, assaultvests, camogear, camo, camouflague, cammygear, vests, camoflage, camoflague, '),(296,4,95,0,74,''),(297,4,61,0,75,'M1 Plastic Army Helmet\r\nRip-stop DPM Cover\r\nFully Adjustable \r\nSuitable for Children and Adults\r\nPlease Note: This is not a safety helmet.'),(298,4,62,0,75,'M1 Plastic Army Helmet with Rip-stop DPM Cover'),(299,4,72,0,75,'armyhelmets, helmets, hats, military ,camo, armykit, kidsarmyoutfits,camoflague, camoflage, tinhat, '),(300,4,95,0,75,''),(301,4,61,0,76,'ARMY KIT BAGS\r\nHEAVY DUTY COTTON CANVAS \r\n12 \" DIAMETER\r\nEYELET AND CLIP CLOSURE'),(302,4,62,0,76,'ARMY Military Style KIT BAGS'),(303,4,72,0,76,'kitbags, bags, armykitbags, militarybags,'),(304,4,95,0,76,''),(305,4,61,0,77,'LARGE WEBBING BACKPACK\r\nADJUSTABLE STRAPS\r\nCOTTON CANVAS\r\n\r\nAVAILABLE IN BLACK, KHAKI , OLIVE GREEN RAF BLUE'),(306,4,62,0,77,'LARGE WEBBING Military Army Style  BACKPACK'),(307,4,72,0,77,''),(308,4,95,0,77,''),(309,4,61,0,78,'Military Army Warm Headover\r\n95% Cotton 5% Spandex\r\nAvailable in British DPM Camoflage and Army Olive Green\r\nCan be used as a neck-warmer, balaclava, etc.'),(310,4,62,0,78,'Military Army Warm Headover'),(311,4,72,0,78,''),(312,4,95,0,78,''),(313,4,61,0,79,'SHEMAGH SCARF \r\n\r\n100 % COTTON\r\n\r\nChoose from \r\nBlack/White or Red and White,Sand and Black or Olive and Black'),(314,4,62,0,79,'SHEMAGH Military  Army  SCARF'),(315,4,72,0,79,''),(316,4,95,0,79,''),(317,4,61,0,80,'SPARE WALKING POLE FEET\r\n\r\nREPLACEMENT RUBBER FEET FOR USE ON ROCKYGROUND\r\n\r\nPACK OF TWO'),(318,4,62,0,80,'SPARE WALKING POLE FEET or ferrules  for walking, rambling,hiking poles or sticks'),(319,4,72,0,80,'feet, tips, replacement tips,pole feet, rubber tips, walkingpolereplacementtips, ferrules, '),(320,4,95,0,80,''),(321,4,61,0,81,'DPM COMBAT CAMOUFLAGUE JACKET\r\n\r\nWOODLAND CAMOUFLAGUE\r\n\r\nPOLYESTER/COTTON PRE WASHED\r\n\r\nMULTIPOCKETED\r\n\r\nVELCRO ADJUSTABLE CUFFS\r\n\r\nDRAWCORD BOTTOM'),(322,4,62,0,81,'DPM Combat Military  Army-style Camoflage Jacket'),(323,4,72,0,81,'camoflague, camoflague, coats, jackets, combatjackets,'),(324,4,95,0,81,''),(325,4,61,0,82,'The Jack Pyke Hunter Jacket\r\n\r\nWaterproof - Breathable - Noiseless.\r\n\r\nWe like this one, it offers great value and is an all round good product. These jackets relly do sell like hot cakes and are a great alternative to the Deerhunter range.  \r\n\r\nOuter shell: 100% Polyester brushed tricot with laminated membrane.\r\n\r\nLining: 100% Polyester brushed mesh & taffeta.\r\n\r\nProduct Details:\r\n\r\n    * Full length double opening zip\r\n    * Concealed hood in pocket\r\n    * 2 lower front bellow pockets with cartridge holders\r\n    * 2 hand-warmer pockets\r\n    * 1 internal chest pocket\r\n    * Fold-down waterproof seat flap\r\n    * Elasticated weather shrouds on wrist\r\n\r\nAvailable in plain Olive green and English Oak Pattern.\r\n\r\n\r\n'),(326,4,62,0,82,'Jack Pyke Hunters Waterproof & Breathable Shooting and Hunting Camoflage Jacket'),(327,4,72,0,82,''),(328,4,95,0,82,''),(329,4,61,0,83,'WROXHAM MENS WARM BODYWARMERS\r\n\r\n	\r\n\r\nWroxham Bodywarmer Olive\r\n* Poly/cotton * Nylon lined * Zip front with studded stormflap * Multi pocketed * Elasticated waist * Inside pocket * Mobile phone pocket\r\n'),(330,4,62,0,83,'WROXHAM MENS Insulated   WARM BODYWARMERS'),(331,4,72,0,83,'bodywarmers, workwear, warm, gilets, '),(332,4,95,0,83,''),(333,4,61,0,84,'Kids Camouflage Combat  Trousers\r\nBritish DPM\r\nAnkle adjusters\r\n2 Side pockets\r\nPoly/Cotton.\r\nAge 13/ 14 Years'),(334,4,62,0,84,'Kids Camouflage Army Military Combat Trousers Age 13/14'),(335,4,72,0,84,'camopants, kidsarmypants, cammogear, 95trousers, camouflague, camoflage, camoflague, '),(336,4,95,0,84,''),(341,4,61,0,86,'This shorter design pole is small enough to pack away and take on your travels, as well as creating added stability on any surface. The walking-stick-style handle has a composite cork grip for palm comfort and the padded, adjustable strap enables you to comfortably secure it against your wrist. Perfect for adventure travel.\r\nComposite Cork Handle.\r\nAircraft grade aluminium\r\n3 sections\r\nBasket and Road foot.\r\nRRP £15.00\r\n\r\n'),(342,4,62,0,86,'Craghoppers Compact LightweightHiking Rambling  Walking Pole'),(343,4,72,0,86,''),(344,4,95,0,86,''),(345,4,61,0,87,'Ladies warm lined stretch Kiwi walking trousers\r\nYour favourite outdoor trousers with stretch! These streamlined Kiwis move with you, for unrestricted movement and a flattering, lasting fit. The quick-drying fabric makes light work of muddy trails, and washes without a fuss at the end of the day. Oh, and they wouldn\'t make the Kiwi range without complete sun-protection.\r\nColour available Black\r\n'),(346,4,62,0,87,'Craghoppers Ladies Warmlined Kiwi Stretch Trousers'),(347,4,72,0,87,'craghoppers, kiwi, trousers, stretch, ladieslinedtrousers, pants, winterlinedtrousers, '),(348,4,95,0,87,''),(349,4,61,0,88,'Give your hard-working legs a treat on cold winter days, in these luxuriously-lined Kiwi Trousers. The warm, fleecy inner isn\'t heavy or bulky, and because it\'s quick-drying you\'ll never feel soggy. The fit is still fantastic and the fabric still shrugs off showers and stains. \r\nClassic warm lined kiwi walking trousers\r\nDry very quickly\r\nAvailable in colour Cocoa'),(350,4,62,0,88,'Ladies Craghoppers  Warm lined Kiwi Walking Trousers'),(351,4,72,0,88,'craghoppers, kiwi, trousers, winterlinedtrousers, warmlined,'),(352,4,95,0,88,''),(357,4,61,0,90,'Combat style army trousers\r\nPolyerster /Cotton\r\nZip fly\r\nDrawstring bottoms\r\nSix continental style pockets\r\nLeg 32.5 \"\r\nAvailable inWoodland camouflague, Black, Navy &Olive Green'),(358,4,62,0,90,'Combat style army military DPM trousers'),(359,4,72,0,90,'camopants, armytrousers, lightweights, camouflague trousers, dpmpants, kex, camoflague, camoflage, '),(360,4,95,0,90,''),(361,4,61,0,91,'5 Colour Camo Cream'),(362,4,62,0,91,'5 Colour Army Military   Camo Cream'),(363,4,72,0,91,'camcream, camocream, camouflaguepaint, camoflage, camoflague, '),(364,4,95,0,91,''),(365,4,61,0,92,'Childrens  Dunlop Wellingtons\r\nWaterproof\r\nAvailable in Black or Green\r\nSizes 10 to 7\r\n'),(366,4,62,0,92,'Kids and Ladies Waterproof Dunlop Wellingtons'),(367,4,72,0,92,'wellys, wellingtons, kidswellys, childrenswellys, wellies, green, blackwellingtons,'),(368,4,95,0,92,''),(369,4,61,0,93,'Mens Seaboot Socks for wellingtons\r\nPerfect for warming up your wellingtons\r\n40% wool\r\n27%Viscose\r\n27% polypropylene6 % Mixed fibres\r\nColours are assorted\r\nWill send them randomly.\r\nAvailable in 8-9.5&10 -11.5.\r\n'),(370,4,62,0,93,'MensWarm wool mix  Seaboot Socks for wellingtons'),(371,4,72,0,93,'warm socks, wellysocks, seabootsocks'),(372,4,95,0,93,''),(373,4,61,0,94,'Ladies Long wellington Boot Socks\r\nLine your wellingtons\r\n40% Cotton\r\n20% Wool\r\n20% Arcylic\r\n20% Polyamide\r\n2 sizes \r\nAvailable in 2 Colours\r\nFrewood and olive'),(374,4,62,0,94,'Ladies LongWarm Wool  wellington Boot Socks'),(375,4,72,0,94,''),(376,4,95,0,94,''),(377,4,61,0,95,'Super king size Sleeping bag\r\n\r\nApprox. 203x 92 cms.\r\n\r\nPoly/cotton inner and outer\r\n\r\n2.7kgs\r\n\r\nExtreme temperature - 7 degrees\r\n\r\nZip 2 together to form double bag.\r\n'),(378,4,62,0,95,'Sunncamp Heritage Family Caravan  Super king size Sleeping Bag'),(379,4,72,0,95,'slepingbags'),(380,4,95,0,95,''),(381,4,61,0,96,'Sunncamp Kingsize Sleeping Bags Symphony\r\n\r\nSize 193 x 83 cms\r\n\r\nPoly/cotton inner and outer\r\n\r\nWeight 2.7 kgs\r\n\r\nExtrem of -7 degrees.'),(382,4,62,0,96,'Sunncamp Caravan Family  Kingsize Sleeping Bags'),(383,4,72,0,96,'sleepinbags, rectangular, patterned ,'),(384,4,95,0,96,''),(385,4,61,0,97,'Voyager Lite 3 Season Sleeping Bag\r\n\r\nOnly available in Black And Mocha\r\n\r\nWeight 1500 grams\r\n\r\n    * Our warmest Voyager bag\r\n    * Mummy style hood for greater heat retention\r\n    * Good warmth to weight ratio at an affordable price\r\n    * Zip baffles to protect from wind and drafts\r\n    * Hexagonal rip stop outer stops snags spreading\r\n\r\nSpecifications\r\n\r\nItem Dimension:\r\n\r\n    225x70x50cm\r\n\r\nPack Size:\r\n\r\n    33x21x21cm\r\n\r\nExtreme Temp:\r\n\r\n    -5°c\r\n\r\nFabric/Materials:\r\n\r\n    250gsm 7 hole siliconised hollow fibre fill\r\n\r\nInner:\r\n\r\n    Breathable polyester\r\n\r\nOuter:\r\n\r\n    Rip-stop polyester\r\n\r\nComfort Range (Season):\r\n\r\n    10°c to -2°c (3)\r\n\r\nWeight:\r\n\r\n    1.5 kg\r\n'),(386,4,62,0,97,'Voyager Lite 3 Season Lightweight Sleeping Bag'),(387,4,72,0,97,'highlandersleepingbags, 3season, sleepingbags, voyagerlite, shapedsleepingbags, lightweight,'),(388,4,95,0,97,''),(389,4,61,0,98,'Description\r\n\r\nRobust sleeping bag, an ideal introduction to Snugpaks performance range. Provides plenty of warmth in a realistic pack size. Highly siliconised synthetic fibres give a soft touch and prolonged lifespan compared to a traditional hollowfibre filled product. Used extensively by static troop divisions deep in hostile territory\r\n\r\nFeatures\r\nColours available:\r\nBlack\r\nMilitary Green \r\nCivilian Red and Grey\r\n\r\n\r\n\r\nTechnical Information\r\nZip Style: 	\r\nLeft or Right Handed\r\nShape: 	\r\nMummy\r\nTemp Rating: 	\r\nComfort: 0°c\r\nTemp Rating: 	\r\nExtreme: -7°c\r\nWeight: 	1600g (inc. compression stuff sack)\r\nPacksize\r\n(Fully Compressed): 	23x23cm (\'How to\' Guide)\r\nPacksize (Uncompressed) 	 \r\nLength: 	220cm\r\nWidth (Chest): 	150cm\r\nWidth (Foot): 	 \r\n\r\n'),(390,4,62,0,98,'Snugpak 3 Season Sleeperlite Army Military  Sleeping Bag.'),(391,4,72,0,98,'snugpaksleepingbags, snugpaksofties, snugpaksleeperlite. sleepingbags, 3season, snugpak,'),(392,4,95,0,98,''),(393,4,61,0,99,'    * 35 litre capacity\r\n    * Hardwearing 600D polyester ripstop dobby, 600D polyester\r\n    * Adjustable comfort fit padded air mesh hip belt\r\n    * Mesh vented air flow back system with metal frame support for additional ventilation\r\n    * Internal hydration storage pocket and drinking tube retainer\r\n    * Integral bungee walking pole holders\r\n    * Soft micro mesh water bottle side pockets\r\n    * Adjustable sliding chest harness\r\n    * Detachable zip-away raincover in base\r\n    * 64(H) x 32(L) x17(D)CM '),(394,4,62,0,99,'Regatta Ad Tech 35 Litre Lighweight Framed Hiking Rambling Rucksack'),(395,4,72,0,99,''),(396,4,95,0,99,''),(397,4,61,0,100,'Silver Dog Tags'),(398,4,62,0,100,'Silver army military style Dog Tags'),(399,4,72,0,100,'armydogtags, dogtags, tags,'),(400,4,95,0,100,''),(401,4,61,0,101,'Highlander 20 Litre Dublin Daysack\r\n20 litre capacity\r\nXTP 600 D fabric\r\nTough and durable waterproof coating.\r\nWide mouth zip pocket\r\nTwo side mesh pockets (Ideal for carrying a drink)\r\nPadeed back system\r\nAvailable in Blue or Red\r\n'),(402,4,62,0,101,'Highlander 20 Litre Dublin rambling -hiking-Daysack'),(403,4,72,0,101,'20litredaysacks, walkingbags, hiking, trekking, haversacks, rucksaks,'),(404,4,95,0,101,''),(405,4,61,0,102,'Proforce \"Forces\" daylite 10 litre Rucksack\r\n10 litre capacity\r\nDurable XTP900 PU fabric\r\nZipped front pocket\r\n10 guage self repair zips\r\nDrawstring opening\r\nDuraflex  Plastic Accesories\r\n'),(406,4,62,0,102,'Proforce \"Forces\" daylite military army 10 litre Rucksack'),(407,4,72,0,102,'kidsarmyrucksacks, camorucksacks, bergans, armyrucksacks, camo, camoflage, camouflague, camoflague,'),(408,4,95,0,102,''),(409,4,61,0,103,'    * Duraflex branded buckles and clips\r\n    * 10 Gauge self repair zips\r\n    * Shock cord top system\r\n    * Draw cord snow closure, Chest and waist strap\r\n    * Waterproof transit case, Lid Compartment\r\n    * Accessory D-rings, Utility chain\r\n    * Airmesh funnel back system, Padded waist system\r\n\r\nSpecifications\r\n\r\nFabric/Materials:\r\n\r\n    XTP900\r\n\r\nCapacity:\r\n\r\n    44 litre\r\n\r\nSide Pockets:\r\n\r\n    2x2 litre\r\n\r\nWeight:\r\n\r\n    1.45 kg\r\n'),(410,4,62,0,103,'Proforce 44 Litre Army Military  Forces camouflage DPM or olive Rucksack'),(411,4,72,0,103,'camorucksacks, armysacks, bergans, militaryrucksacks, 44ltrerucksacks, camogear,camoflague, camoflage,'),(412,4,95,0,103,''),(413,4,61,0,104,'    * Twin compartment main bag\r\n    * V-lock adjustable back system\r\n    * Full Airmesh Funnel Back System\r\n    * Padded hip pad and daisy chain\r\n    * Internal draw cord divider\r\n    * Bottom zip entry\r\n    * Lockable zips\r\n    * Available in Royal blue or Grey\r\n\r\nSpecifications\r\n\r\nFabric/Materials:\r\n\r\n    XTP600 rip-stop fabric\r\n\r\nItem Dimension:\r\n\r\n    47x73x30cm\r\n\r\nPack Size:\r\n\r\n    74x49x7cm\r\n\r\nCapacity:\r\n\r\n    66 litre\r\n\r\nWeight:\r\n\r\n    1.85 kg\r\n'),(414,4,62,0,104,'Highlander 66 litre Rambler DOE walking hiking backpacking  Rucksacks'),(415,4,72,0,104,''),(416,4,95,0,104,''),(417,4,61,0,105,'KEY FEATURES\r\n\r\n    * Cool Air Design for cool back comfort\r\n    * Padded adjustable waist & chest strap\r\n    * 1 main compartment with snow collar\r\n    * Zipped hood pocket\r\n    * Elastic bungee cord on hood\r\n    * Front map pocket with waterproof zip\r\n    * 2 Side pockets with expanding bellows\r\n    * Easy access zipped pocket on waist belt\r\n    * Ice axe / walking pole holders\r\n    * Hydration compatible\r\n    * Reflective piping for increased awareness\r\n    * Yellow rain cover for increased visibility\r\n'),(418,4,62,0,105,'Gelert  Wilderness 35 Litre  Walking hiking rambling  Rucksacks'),(419,4,72,0,105,''),(420,4,95,0,105,''),(421,4,61,0,106,'Military Style Black Beret'),(422,4,62,0,106,'Military Style Army  Black Beret'),(423,4,72,0,106,'militaryberets, berets, armyberets, '),(424,4,95,0,106,''),(425,4,61,0,107,'Woodland Camouflague Nets\r\n\r\nAvailable in 2 sizes\r\n\r\n2 x 2 metres\r\n\r\n3 x 2 metres\r\n\r\nIdeal for making  that little boys den!!'),(426,4,62,0,107,'Woodland Camouflague Shooting Hunting Nets'),(427,4,72,0,107,''),(428,4,95,0,107,''),(429,4,61,0,108,'Kids Camouflage T-Shirt\r\nBritsh DPM\r\n100% Cotton\r\nBrushed Cotton\r\nSizes 24 to 34\r\n\r\nPLEASE NOTE\r\n\r\nWE SUGGEST THAT YOU BUY A SIZE BIGGER THAN NORMAL < AS THEY ARE SMALL TO SIZE .'),(430,4,62,0,108,'Kids Camouflage DPM Army T-Shirt'),(431,4,72,0,108,'kidscamotshirt, camgear, camoflage, teeshirts, cammygear, armytshirt,'),(432,4,95,0,108,''),(433,4,61,0,109,'Knitted Thinsulate Warm  Lined Peaked Hat\r\n\r\nThinsulate Lined\r\n\r\nOne size'),(434,4,62,0,109,'Knitted Thinsulate Warm  Lined Peaked Hat'),(435,4,72,0,109,'knittedpeakedhat. peak, hat, headwear, peakedhat,'),(436,4,95,0,109,''),(437,4,61,0,110,'Aversa 20 litre day bag \r\n\r\nideal for walking, rambling , or days out !\r\n\r\n\r\nColour:\r\nBlue/Grey, Green/Grey, \r\n\r\nDescription\r\n\r\n    * 2 front pockets, 2 side pockets\r\n    * Internal organiser\r\n    * Padded mesh backsystem\r\n\r\nSpecifications\r\n\r\nFabric/Materials:\r\n\r\n    XTP600 weather resistant material\r\n\r\nCapacity:\r\n\r\n    20 Litre\r\n'),(438,4,62,0,110,'Aversa 20 Litre Rucksacks\r\n\r\nMesh padded back \r\n\r\nLightweight \r\n'),(439,4,72,0,110,''),(440,4,95,0,110,''),(441,4,61,0,111,'URBAN SEEKER 20 Litre Walking Daysack Rucksack \r\n\r\n3 Colours : Red/Grey/Black,\r\n                     Dark/Grey/Blue\r\n                     Aubergine/Black\r\n\r\nDescription\r\n\r\n    * 3 front pockets\r\n    * Padded mesh backsystem\r\n    * Internal organisers\r\n\r\nSpecifications\r\n\r\nFabric/Materials:\r\n\r\n    XTP600 weather resistant material\r\n\r\nCapacity:\r\n\r\n    20 Litre\r\n'),(442,4,62,0,111,'Highlander Urban Seeker 20 Litre Daysack Rucksack With Mesh Padded Back'),(443,4,72,0,111,'daysack, rucksacks, haversack, 20litrerucksacks'),(444,4,95,0,111,''),(449,4,61,0,113,'LANDTREK 65 LITRE\r\n\r\nColourway: Black\r\n\r\n\r\n\r\n\r\nLandtrek 65L\r\n\r\n    * 65 litre capacity\r\n    * Hardwearing polyester fabric\r\n    * Landtrek air mesh back system to provide ventilated airflow and comfort\r\n    * Adjustable padded hip belt\r\n    * Mesh water bottle side pockets\r\n    * Internal zipped security pocket\r\n    * Carry handle\r\n    * 56.5(H) x 35(L) x 22.5(D)CM '),(450,4,62,0,113,'Regata Landtrek 65 Litre Rucksack , Ideal for Duke Of Edinburgh Awards'),(451,4,72,0,113,''),(452,4,95,0,113,''),(453,4,61,0,114,'	\r\nCleans all types of leisure, lifestyle and sports shoes and boots. Revitalising cleaner for all footwear\r\n\r\n\r\nBenefits of using this product\r\n\r\n    * Removes dirt and helps to release stains\r\n    * Improves the appearance of dirty footwear\r\n    * Prepares the footwear for proofing with an appropriate footwear product\r\n    * Prolongs the life and performance of all types of footwear\r\n    * Maintains breathability\r\n    * Ideal for footwear with breathable linings e.g. Gore-Tex\r\n    * Easy to apply\r\n    * WaterBased - environmentally friendly, biodegradable, non flammable, non hazardous\r\n    * Does not contain fluorocarbons\r\n\r\n\r\n\r\n	'),(454,4,62,0,114,'	\r\nCleans all types of leisure, lifestyle and sports shoes and boots. Revitalising cleaner for all footwear\r\n\r\n\r\nBenefits of using this product\r\n\r\n    * Removes dirt and helps to release stains\r\n    * Improves the appearance of dirty footwear\r\n    * Prepares the footwear for proofing with an appropriate footwear product\r\n    * Prolongs the life and performance of all types of footwear\r\n    * Maintains breathability\r\n    * Ideal for footwear with breathable linings e.g. Gore-Tex\r\n    * Easy to apply\r\n    * WaterBased - environmentally friendly, biodegradable, non flammable, non hazardous\r\n    * Does not contain fluorocarbons\r\n\r\n\r\n\r\n	'),(455,4,72,0,114,'nikwax, cleaner, footwear, cleaninggel, gel'),(456,4,95,0,114,''),(457,4,61,0,115,'Plastic Water Bottle.\r\n\r\n0.95 litre Capacity.\r\n\r\nBelt And Clip Loop.\r\n\r\nScrew Top  Clousure.\r\n\r\nDetachable Camouflague Cover.\r\n'),(458,4,62,0,115,'Plastic Water Bottle.\r\n\r\n0.95 litre Capacity.\r\n\r\nBelt And Clip Loop.\r\n\r\nScrew Top  Clousure.\r\n\r\nDetachable Camouflague Cover.\r\n'),(459,4,72,0,115,'waterbotle, camobottle, drinksbottle, militarytwaterbottle, army, bottle, camoflague,'),(460,4,95,0,115,''),(461,4,61,0,116,'Gelert  performance hydration pouch.\r\n\r\n2 litre capacity.\r\n\r\nDrink without taking your rucksack off !!\r\n'),(462,4,62,0,116,'Gelert  performance hydration pouch.\r\n\r\n2 litre capacity.\r\n\r\nDrink without taking your rucksack off !!\r\n'),(463,4,72,0,116,''),(464,4,95,0,116,''),(469,4,61,0,118,'Horizon 65L Rucksac\r\n\r\nPerformance bags which are loaded with technical features, perfectly suited for the first time backpacker. Their adjustable back systems make them exceptionally versatile.\r\n\r\nHorizon 65L Rucksac\r\nAdjustable padded cool air design for cool back comfort\r\n2 zippered side pockets\r\nPadded adjustable waist belt with additional lumbar support\r\nAdjustable chest strap\r\nZippered pocket on hood\r\nWalking pole holders\r\nHydration compatible\r\nVolume: 65 litre\r\nMaterial: P600D Polyester/P600D honeycomb Polyester Ripstop\r\nSize: W 31 x D 22 x H 87cm\r\nWeight: 2.35Kg\r\nColours: Olive/Black/Grey - Deep Blue/Black/Grey\r\n'),(470,4,62,0,118,'Horizon 65L Rucksac'),(471,4,72,0,118,'65litre, rucksacks, haversacks, backpack, '),(472,4,95,0,118,''),(473,4,61,0,119,'2 x 15KW high performance stainless Steel burners\r\n1 x 1.5KW centre grill\r\nPiezo quick ignition function\r\nLarge surface cooking area\r\nPortable folding design for easy transportation\r\nGrill pan tray included\r\nIncludes Regulator And Hose.\r\nDetailed instruction & maintenance manual included\r\n\r\nWeight: 4.7Kg\r\nPack Size: 56 x 29 x 7cm\r\nColour: Black'),(474,4,62,0,119,'Gelert Folding Compact Double Burner and Grill'),(475,4,72,0,119,'doubleburnerandgrill, campingstove, grill, cookers, stoves, stove, hos, regulator'),(476,4,95,0,119,''),(477,4,61,0,120,'Pack of 12 Steel Tent  Pegs \r\n\r\nIdeal for spares when you loose them.\r\n'),(478,4,62,0,120,'Pack of 12 Steel Tent pegs'),(479,4,72,0,120,'tentpegs, camping, sparepegs, pegs'),(480,4,95,0,120,''),(481,4,61,0,121,'Lightweight Emergency Ponchos\r\n\r\nCompact\r\n\r\nWaterproof \r\n\r\nLightweight\r\n\r\nBasic reusable \r\n\r\nBright or Dark Colours.\r\n\r\n\r\n'),(482,4,62,0,121,'Festival Emergency Waterproof Ponchos'),(483,4,72,0,121,'poncho'),(484,4,95,0,121,''),(485,4,61,0,122,'Lightweight, strong and compact cooker supplied with Hexamine Tablets.\r\n.Perfect for festivals, backpacking and wild camping.\r\nHexi solid fuel tablets burn without odour and ignite easily with a match -\r\n 4  fuel tablets will bring to the boil 2.5 cups of water in approximately 5 minutes.\r\nFeatures:\r\nStrong durable plated steel construction\r\nLightweight and compact\r\nIncludes  fuel tablets\r\nSpecification:\r\nSize: 12cm x 10cm x 3cm\r\nWeight: 320g\r\nGreat Festival Kit\r\nLightweight\r\n Ideal for emergencies\r\n As Supplied to British Army\r\n Compact to stow away in any small pouch \r\n'),(486,4,62,0,122,'Festival Army Style Hexy Stove Lightweight.'),(487,4,72,0,122,''),(488,4,95,0,122,''),(489,4,61,0,123,'Hexi Stove Refills for camping&festivals\r\n\r\nContains 8 Tablets'),(490,4,62,0,123,'Hexi Stove Refills for camping&festivals'),(491,4,72,0,123,'hexistoves, hexycookers, cookers, stoves, hexi,'),(492,4,95,0,123,''),(493,4,61,0,124,'This shorter design pole is small enough to pack away and take on your travels,as well as creating added stability on any surface. \r\n\r\nLightweight\r\n\r\nThe walking-stick-style handle has a composite cork grip for palm comfort\r\n\r\n Padded, adjustable strap enables you to comfortably secure it against your wrist\r\n\r\nRoad foot for use on the road and hard ground.\r\n\r\nBasket for use on muddy ground.\r\n\r\n\r\n\r\nBest for: Lightweight travel\r\n'),(494,4,62,0,124,'Craghoppers lightweight compact Walking/hiking pole.'),(495,4,72,0,124,''),(496,4,95,0,124,''),(497,4,61,0,125,'Craghoppers Lightweight robust walking pole with anti shock absorber\r\n\r\nFully adjustable.\r\n\r\nSpring into action on the rockiest roads with this high-performance anti-shock walking pole.\r\n\r\n Amazingly light, yet superbly strong, it takes the strain out of any hilly trek.\r\n\r\n The fabulous cork grip handle means it won’t chafe your palm and the padded, adjustable strap enables you to comfortably secure it when scrambling up the fells.\r\n\r\n Perfect for walking in mountain terrain,or low level walking too.'),(498,4,62,0,125,'Craghoppers Lightweight robust walking pole with anti shock absorber'),(499,4,72,0,125,'craghoppers, walkingpoles, walkingsticks, antishock, antishockwalkingpoles'),(500,4,95,0,125,''),(501,4,61,0,126,'Ideal for Spring, Summer and Autumn camping.\r\n\r\nGood functional performance from selected grades of polyolefin foam sourced only from quality manufacturers.\r\n\r\nIndividually tested & fully guaranteed. \r\n\r\nAvailable In Green Or Blue'),(502,4,62,0,126,'Sleeping Mat \r\n\r\nMade in wales\r\n\r\nGood performer'),(503,4,72,0,126,'sleepingmat, karrimat, bedroll,keepfitmat'),(504,4,95,0,126,''),(505,4,61,0,127,'Cool Air Design for cool back comfort\r\nPadded adjustable waist belt with additional lumbar support\r\nZipped hood pocket\r\nFront map pocket with waterproof zip\r\nPull forward hip belt adjustment\r\nAdjustable chest strap\r\n2 expandable bellows side pockets\r\nWalking pole holders\r\nHydration compatible\r\nBuilt in high visibility rain cover for increased visibility  \r\nInternal bivy divider\r\nAdjustable VTS back system'),(506,4,62,0,127,'Gelert Wilderness 65 Litre rucksack for DOE awards'),(507,4,72,0,127,'65litreruckacks, dukeofedinburgh, doeawards, backpackingrucksacks'),(508,4,95,0,127,''),(509,4,61,0,128,' Highlander Daysack 20L\r\n20L Rucksack \r\n\r\nLarge Main Compartment\r\n\r\nZipped Front Pocket\r\n\r\nTough and Durable XTP 600 polyester fabric\r\n\r\n Adjustable and Padded Straps\r\n\r\nGrab Handle\r\n\r\nAvailable in many colours\r\n\r\n \r\n\r\nIdeal basic daysack for days out and college.  Adjustable shoulder straps for a great fit.  Large main compartent and a handy zipped pocket in the front.  Great daysack for great price.\r\n\r\n \r\n\r\n\r\n'),(510,4,62,0,128,'Highlander Zing 20 Litre Rucksacksdaysacks'),(511,4,72,0,128,'20litrerucksack, haversacks, daysack, 20 litre.'),(512,4,95,0,128,''),(513,4,61,0,129,'The Nero 25Litre Rucksack from Gelert is packed full of useful features, perfect for short walks & days out on the hill.\r\n\r\nA4 compatible\r\n\r\n2 main compartments\r\n\r\nFront zippered map pocket\r\n\r\nHydration compatible\r\n\r\nRemovable webbing belt\r\n\r\nAdjustable chest strap\r\n\r\nSide mesh pockets\r\n\r\nVolume: 18 litre\r\nMaterial: P600D Baby Ripstop/P600D '),(514,4,62,0,129,'Gelert nero 25  Litre Daysack rucksack'),(515,4,72,0,129,''),(516,4,95,0,129,''),(517,4,61,0,130,'...the premier bushcraft & sustainable living internet retailer...\r\n \r\n\r\n    * Home\r\n    * Places\r\n    * Friends\r\n    * Shop For Items\r\n    * Search\r\n    * Shopping basket\r\n    * Contact form\r\n\r\nDetailed item view\r\nProducts » Cooking & Eating » Commando Compact Stove\r\nCommando Compact Stove\r\n\r\nStrong high quality aluminium alloy and stainless steel\r\nLightweight and compact\r\nHigh level weight bearing\r\nUltra compact folding cooker\r\nAdjustable gas flow\r\nHigh efficiency flame (3000W)\r\nCompatible with many gas bottles - ISO Screw Thread (EN417)\r\nComes with plastic storage / carry box\r\nSize: 11 x 5 x 5 cm (boxed)\r\nWeight: 90 grams'),(518,4,62,0,130,'Commando lightweight army style stove'),(519,4,72,0,130,'cookers, stoves, lighweightstoves, '),(520,4,95,0,130,''),(521,4,61,0,131,'Kids Army Style Outfit\r\n\r\nCamouflague T Shirt\r\n\r\nRipstop Baseball Hat (one size adjustale)\r\n\r\nSoldier \"95\" style Trousers\r\n\r\nPLEASE NOTE !!\r\n\r\nTHE TEE SHIRTS ARE SMALL TO SIZE, WE SUGGEST PURCHASING ONE SIZE BIGGER.'),(522,4,62,0,131,'Kids camo outfit'),(523,4,72,0,131,'kidssuits, suits, armykit, armyoutfits, armydressingupoutfits, camoflague, camo, cammygear, camoflage, camoflague,'),(524,4,95,0,131,''),(525,4,61,0,132,'Product Features\r\n\r\n    Made from thermoplastic rubber\r\n    Stays flexible to -40°\r\n    Tough & Durable\r\n    Non-slip metal studs offer excellent traction\r\n    Size fits shoes/boots from UK 3-6 or 7 to 11\r\n\r\n'),(526,4,62,0,132,'Ice grippers'),(527,4,72,0,132,'icegrippers, snowandicegrippers, yaktrax, crampons'),(528,4,95,0,132,NULL),(529,4,61,0,133,'Official Scout Association Sweatshirt\r\n\r\nAvailable from size 28 to 34 inch'),(530,4,62,0,133,'Cub Sweatshirt'),(531,4,72,0,133,'cubs, uniform ,cubjumper,sweatshirt, '),(532,4,95,0,133,NULL),(533,4,61,0,134,'Cub Polo Shirt'),(534,4,62,0,134,'Cub polo shirt'),(535,4,72,0,134,'cubs, poloshirt,scouts, uniform'),(536,4,95,0,134,NULL),(537,4,61,0,135,'Beaver Scout Sweatshirt\r\nPurple trim'),(538,4,62,0,135,'Beaver Sweatshirt'),(539,4,72,0,135,'beavers, uniform,sweatshirt, newbeaverssweatshirt, beaverstop'),(540,4,95,0,135,NULL),(541,4,61,0,136,'Beaver  Polo Shirt\r\nPurple trim'),(542,4,62,0,136,'Beaver purple trim polo shirt'),(543,4,72,0,136,'beavers, uniform ,beaveruniform,poloshirt, teeshirt'),(544,4,95,0,136,NULL),(545,4,61,0,137,'Brownie t shirt\r\n\r\nshort sleeve'),(546,4,62,0,137,'Brownie t shirt'),(547,4,72,0,137,'brownies, tshit, uniform ,brownieuniform, teeshirt'),(548,4,95,0,137,NULL),(549,4,61,0,138,'Brownie hoodied sweatshirt\r\n\r\nWarm fleecy lining\r\n\r\n'),(550,4,62,0,138,'Brownie hoodie'),(551,4,72,0,138,'brownies, hoody, hoodie, sweatshirt, uniform '),(552,4,95,0,138,NULL),(553,4,61,0,139,'brownie trousers\r\n\r\nadjustable waist'),(554,4,62,0,139,'brownie trousers'),(555,4,72,0,139,'brownies, hoody, trousers, uniform, '),(556,4,95,0,139,NULL),(557,4,61,0,140,'brownie leggings'),(558,4,62,0,140,'brownie leggings'),(559,4,72,0,140,'brownies, leggings, uniform, browniesuniform, '),(560,4,95,0,140,NULL),(561,4,61,0,141,'brownie long sleeve tee shirt to'),(562,4,62,0,141,'brownie long sleeve tee'),(563,4,72,0,141,NULL),(564,4,95,0,141,NULL),(565,4,61,0,142,'brownie sash\r\n\r\nsew on your badges'),(566,4,62,0,142,'brownie sash'),(567,4,72,0,142,NULL),(568,4,95,0,142,NULL),(569,4,61,0,143,'Beaver uniform Navy Blue Trousers'),(570,4,62,0,143,'Beaver Trousers'),(571,4,72,0,143,NULL),(572,4,95,0,143,NULL),(573,4,61,0,144,'Cub uniform trousers'),(574,4,62,0,144,'Cub trousers'),(575,4,72,0,144,NULL),(576,4,95,0,144,NULL),(577,4,61,0,145,'rainbow hoodie'),(578,4,62,0,145,'rainbow hoodie'),(579,4,72,0,145,NULL),(580,4,95,0,145,NULL),(581,4,61,0,146,'rainbow polo tee shirt\r\n\r\nOnly Large size available until 01 December.'),(582,4,62,0,146,'rainbow tee polo shirt'),(583,4,72,0,146,NULL),(584,4,95,0,146,NULL),(585,4,61,0,147,'rainbow pants'),(586,4,62,0,147,'rainbow pants'),(587,4,72,0,147,'rainbows, rainbowunifom,uniform, rainbowpants, pants, trousers'),(588,4,95,0,147,NULL),(589,4,61,0,148,'scout shirt'),(590,4,62,0,148,'scout shirt'),(591,4,72,0,148,'scoutuniform, scouts, shirts, uniform, boyscouts,'),(592,4,95,0,148,NULL),(593,4,61,0,149,'long sleeve thermal tshirts\r\n\r\navaiable in blue/grey and white'),(594,4,62,0,149,'long sleeve thermal t shirt'),(595,4,72,0,149,'thermals, longsleevethermalteeshirts,tshirts, teeshirts, shirts, longsleeve,'),(596,4,95,0,149,NULL),(597,4,61,0,150,'Make room for Winter-Lined Kiwis this season. Our winter walking trousers have all the durability and comfort of our best-selling classic Kiwi Trousers, but with a snug fleecy lining for added warmth. Featuring a reliably weather-resistant finish and with eight useful pockets, they\'re great winter hiking trousers.\r\n\r\n    SolarDry polyester cotton with brushed polyester lining\r\n    Weight: 600g\r\n    Fit: Original\r\n    Classic walking trousers with brushed lining\r\n    8 pockets including 4 zipped security pockets and map-sized cargo pocket\r\n    Double seat and knee\r\n   \r\n    Part-elasticated waist with belt\r\n    Mobile phone holder\r\n    Lifetime guarantee'),(598,4,62,0,150,'Craghoppers Lined Trousers'),(599,4,72,0,150,'kiwitrousers, craghoppers, warmlinedtrousers, winterwalkingtrousers, linedwalkingtrousers,trousers, pants, winterpants.'),(600,4,95,0,150,NULL),(601,4,61,0,151,'Remain unseen by your enemies with these great kids woodland camouflage trousers. And with 6 pockets, there’s plenty of room to carry your essential kit.\r\n\r\nAvailable  in age 13/14'),(602,4,62,0,151,'13/14 Army pants'),(603,4,72,0,151,'kidscamopants, camo, camouflague, age13/14camotrousers, armypants, dpm, soldier95stylekidspants, camoflague,'),(604,4,95,0,151,NULL),(605,4,61,0,152,'100 percent acrylic fabric\r\nPolyester Fleece Lining\r\nZip Front Closure\r\nTwo Breast pockets\r\nAngled Pockets\r\nDrawstring Hood\r\n\r\nAvailable in Medium, Large, Xlarge, XXlarge,XXXlarge\r\n\r\nChoice of three colours\r\n\r\nBlue, red, green.\r\n\r\nPLEASE ADVISE 1st and 2nd Colour Choice, in your PAYPAL Notes Section '),(606,4,62,0,152,'Castle Hooded Penarth'),(607,4,72,0,152,'fleece, coat, jacket, hoodedfleece, warmfleece, hoodie, hoody, castlehoodedfleece.'),(608,4,95,0,152,NULL),(609,4,61,0,153,'Military style angled torch\r\n\r\nColoured filters\r\n\r\nIdeal for signalling\r\n\r\nIdeal for Cadets, TA, Scouts etc.\r\n\r\nBatteries included\r\n'),(610,4,62,0,153,'Angle torch with batteries'),(611,4,72,0,153,'militarytorch, armytorch, torch, signallingtorch,signalling, anledtorch, torches, torchwithfilters, torchwithcolouredfilters.'),(612,4,95,0,153,NULL),(613,4,61,0,154,'DPM Wallet\r\n\r\nComplete with chain for security\r\n\r\nHeavy duty Nylon\r\n\r\nZip compartment \r\n\r\nPockets for cards\r\n\r\nChoice of Camo or Black'),(614,4,62,0,154,'Camo wallet'),(615,4,72,0,154,'camowallet, armykit, wallet, camouflaguewallet, camouflague, dpmwallet, cadetkit, camoflague,'),(616,4,95,0,154,NULL),(617,4,61,0,155,'When the hard chill sets in don the comfortable, waterproof and breathable Tectonic II, the ideal choice for practical adventure\r\nwear.\r\n\r\n    250 series anti-pill Symmetry fleece\r\n    Durable water repellent finish\r\n    Waterproof and breathable Isotex 5000 membrane drop liner\r\n\r\n    Taped seams\r\n    Adjustable neck cinch\r\n    2 zipped lower pockets and inner map pocket\r\n    Adjustable shockcord hem\r\n\r\nSizes:\r\nS-XXXL \r\n\r\nAvailable in BLACK or Navy Blue'),(618,4,62,0,155,'Tectonic mens fleece'),(619,4,72,0,155,'regattawaterprooffleece, waterproof, fleece, windprooffleece, waterproofbreathablefleece,isotex, adventuretech.'),(620,4,95,0,155,NULL),(621,4,61,0,156,'Capture the look with this waterproof and breathable symmetry fleece, creating a fashion statement for any adventure.\r\n\r\n    250 series anti-pill Symmetry fleece\r\n    Durable water repellent finish\r\n    Waterproof and breathable Isotex 5000 membrane drop liner\r\n    Taped seams\r\n    Adjustable neck cinch\r\n    2 zipped lower pockets and inner map pocket\r\n    Adjustable shockcord hem\r\n\r\nAvailable in Black Or Hot Choclate\r\n\r\n'),(622,4,62,0,156,'Ladies Tectonic Fleece'),(623,4,72,0,156,'fleece, ladies coat, waterprooffleece, regattafleece, isotex, jackets, adventuretech, windprooffleece, waterproofwindproofbreathablefleece, regattatectonic.'),(624,4,95,0,156,NULL),(625,4,61,0,157,'Black Grain Leather\r\n\r\nSafety Toe Cap\r\n\r\nSteel midsole\r\n\r\nAntistatic sole'),(626,4,62,0,157,'Steel chukka'),(627,4,72,0,157,'safetyboot, safetys, workboot, steelmidsole, grafterssafety, midsole, paddedankle, safetytoecap, nonmetalsafety, footwear, workwear'),(628,4,95,0,157,NULL),(629,4,61,0,158,'New from 1000 Mile the Fusion walking sock is a revoloution in sock design.\r\n\r\nAchilles Tendon protection: full length padded protection for the Achilles Tendon - the first sock to offer you this.\r\nArch bracing: for additional support.\r\nPadded comfort zones: padding on the toe, heel and ball area of the foot for extra comfort and protection.\r\nDouble layer construction: eliminates friction between foot and shoe, reducing wear and preventing blisters.\r\nTactel® inner layer: wicks away perspiration o keep feet dry and cool.\r\n\r\n\r\nCONTENT: Outer layer: 40% Merino Wool, 29% Nylon, 23% Polyester, 6% Cotton and 2% Lycra. Inner Layer: 100% Tactel®\r\n'),(630,4,62,0,158,'1000 mile fusion'),(631,4,72,0,158,'1000mile, walkingsock, socks, hiking, trekking, sox, fusion, '),(632,4,95,0,158,NULL),(633,4,61,0,159,'New from 1000 Mile the Fusion walking sock is a revoloution in sock design.\r\n\r\nAchilles Tendon protection: full length padded protection for the Achilles Tendon - the first sock to offer you this.\r\nArch bracing: for additional support.\r\nPadded comfort zones: padding on the toe, heel and ball area of the foot for extra comfort and protection.\r\nDouble layer construction: eliminates friction between foot and shoe, reducing wear and preventing blisters.\r\nTactel® inner layer: wicks away perspiration o keep feet dry and cool.\r\n\r\n\r\nCONTENT: Outer layer: 40% Merino Wool, 29% Nylon, 23% Polyester, 6% Cotton and 2% Lycra. Inner Layer: 100% Tactel®\r\n'),(634,4,62,0,159,'1000 mile ladies fusion'),(635,4,72,0,159,'1000mile, walkingsocks, socks, sox, footwear, trekking, hiking'),(636,4,95,0,159,NULL),(637,4,61,0,160,'Classic shoe\r\n\r\nLeather upper\r\n\r\nDoc Martens Airwear  Sole '),(638,4,62,0,160,'Doc Shoe'),(639,4,72,0,160,'docmatens, docs, shoes, foot, footwear, 1461, classics, docmartin, docmarten,'),(640,4,95,0,160,NULL),(641,4,61,0,161,'Doc Marten Classic Boots\r\n\r\nLeather Uppers\r\n\r\nDoc Marten Airwear Soles'),(642,4,62,0,161,'Doc Boots'),(643,4,72,0,161,'docs, classics, 1460 , boots, foot, footwear, docmartens, docmartin, '),(644,4,95,0,161,NULL),(645,4,61,0,162,'*   Duke of Edinburgh Award Approved\r\n\r\n*    Safety Blade\r\n*    Scissors\r\n*    Can Opener\r\n*    Bottle Opener\r\n*    Wire Cutter\r\n*    Wire Stripper\r\n*    Screwdriver\r\n*    Phillips Screwdriver\r\n*    Multi Purpose Hook\r\n*    Keyring\r\n*    Tweezers\r\n*    Toothpick'),(646,4,62,0,162,'DOE swiss '),(647,4,72,0,162,'army, swissarmyknives, knives, dukeofedinburgh,'),(648,4,95,0,162,NULL),(649,4,61,0,163,'* Genuine Swiss Army Knife\r\n* Large Blade\r\n* Small Blade\r\n* Corkscrew\r\n* Can Opener with Small Screwdriver\r\n* Bottle Opener with Screwdriver\r\n* Wire Stripper\r\n* Reamer\r\n* Punch\r\n* Keyring\r\n* Tweezers\r\n* Toothpick'),(650,4,62,0,163,'Swiss spartan'),(651,4,72,0,163,'victorinox, swissarmyknives, armyknives, knife, knifes,spartan, '),(652,4,95,0,163,NULL),(653,4,61,0,164,'* Genuine Victorinox Swiss Army Knives\r\n* Large Blade\r\n* Small Blade\r\n* Corkscrew\r\n* Can Opener with Small Screwdriver\r\n*Bottle Opener with Screwdriver\r\n* Wire Stripper\r\n* Reamer\r\n* Punch \r\n* Keyring\r\n* Tweezers\r\n* Toothpick\r\n* Multi Purpose Hook\r\n* Scissors\r\n* Available in RED or BLACK\r\n'),(654,4,62,0,164,'Swiss Climber'),(655,4,72,0,164,'victorinox, swissarmyknives, knifes, knife, knives, armyknives,'),(656,4,95,0,164,NULL),(657,4,61,0,165,'cub & beaver reversible camp blanket'),(658,4,62,0,165,'Reversible blanket'),(659,4,72,0,165,'cubs, beavers, reversibleblanket, blanket, campblanket, campfireblanket '),(660,4,95,0,165,NULL),(661,4,61,0,166,'Unisex leather trekking boot\r\nSizes 36 x 47\r\nWeight: 1120g\r\nColours - Brown \r\nSpotex lined - Waterproof & breathable\r\n>Rubber mac, durble sole unit\r\n\r\nRRP £79.99\r\nThe Grisport Peaklander Leather Walking Boot is our best selling leather hiking & walking boot.\r\n The Peaklander is a classic leather Italian-made boot, with a waterproof and breathable lining membrane. \r\nIt\'s lightweight, comfortable and the leather is pre-waxed for extra protection.\r\nA fantastic boot for an amazing price.\r\n\r\nGrisport Peaklander Leather Walking Boot Features:\r\n\r\n    Lightweight & Supportive Walking Boot\r\n    Comfy with pre-softened padded ankle cuffs and padded tongue.\r\n    Quality \'Spotex\' Waterproof & Breathable lining\r\n    Italian-made boot.\r\n    Great value for money and a tried and tested classic\r\n    \r\n\r\n\r\n\r\nLeather Boots:\r\n Grisport use the finest selection of leathers and the Peaklander boot is no exception, its leather upper comes pre-waxed for added protection.\r\n\r\nWaterproof and Breathable Membrane Lining:\r\n The Peaklander boots benefit from GriSports branded \'Spotex\' waterproof and breathable membrane with taped seams, this lines the boot ensuring your feet stay dry, whilst still allowing them and the leather to breath.\r\n Thus ensuring your feet stay comfortable and dry.\r\n\r\n\r\n\r\n'),(662,4,62,0,166,'Peaklander Boots'),(663,4,72,0,166,'grisport, foot, footwear, waterproof, walkingboots, boots, hikingboots, lightweightwalkingboots, leaterwalkingboots, '),(664,4,95,0,166,NULL),(665,4,61,0,167,'Unisex trekking Shoe\r\nSizes 36 x 47\r\nWeight: 1040g\r\nColours - Brown leather.\r\nSpo-tex lined - Waterproof & Breathable\r\nVibram outsole'),(666,4,62,0,167,'dartmoor'),(667,4,72,0,167,'grisport, walkingshoes, waterproof, foot, footwear, shoes, vibramsoles,'),(668,4,95,0,167,NULL),(669,4,61,0,168,'>Fabric and leather proofing\r\n>Spray on proofing\r\n>Waterproofs, maintains cosmetic apparance &breathability.\r\n> Easy to use water based waterproofing\r\n\r\n'),(670,4,62,0,168,'Fabric and leather proofing'),(671,4,72,0,168,'nikwax, foot, footwear, proofing, leatherproofing, proofingforfootwear, fabricproofing, '),(672,4,95,0,168,NULL),(673,4,61,0,169,'>Camouflague Combat Pants\r\n>6 Pockets\r\n>Draw tapes on hem\r\n>Available in.\r\n>Navy \r\n>Black\r\n>Olive Green\r\n>Camouflague'),(674,4,62,0,169,'Castle Combat'),(675,4,72,0,169,'camouflage, armypants, 95s, trousers, kex, combatpants, combats, cargopants, trousers, '),(676,4,95,0,169,NULL),(677,4,61,0,170,'>Mini Pick/Shovel\r\n\r\n>Strong folding 3 way shovel with in-built pick. \r\n\r\n> Compact and lightweight. With black Cordura pouch. '),(678,4,62,0,170,'Folding shovel'),(679,4,72,0,170,'foldingshovel, shovel, folding, armyshovel, spade, entrenchingtool,'),(680,4,95,0,170,NULL),(681,4,61,0,171,'Description\r\n\r\n   > Magnifying glass\r\n   > Luminous needle tip & direction markers\r\n    >Neck cord\r\n\r\n>Specifications\r\n\r\nFabric/Materials: plastic\r\n\r\n>Item Dimension: 10x6.5x1cm\r\n\r\nPack Size: 20x10x1cm\r\n\r\nWeight: 0.03 kg\r\n\r\n\r\n\r\n'),(682,4,62,0,171,'Highlander Map Compass'),(683,4,72,0,171,'compass, map, mapcompass, orrienterringcompass, DOEcompass, highlander,orienteeringkit, '),(684,4,95,0,171,NULL),(685,4,61,0,172,'Item Description\r\n\r\n   \r\n\r\n    Highlander Deluxe Map Compass\r\n    Material: Plastic\r\n    Size: 13 x 6cm\r\n    Weight: 60g\r\n\r\n    Millimetre, Centimetre, Inch\r\n    Romer scales, magnifying glass\r\n    Luminous needle tip & direction markers\r\n    Neck cord\r\n    120mm/2 scale ruler\r\n\r\n'),(686,4,62,0,172,'Highlander deluxe compass'),(687,4,72,0,172,'compass, compasses, highlander, orienterring, orienterringmapcompass, map,'),(688,4,95,0,172,NULL),(689,4,61,0,173,'Highlander Roamer Map Case Product Description\r\n\r\nThe Highlander Roamer Map Case is a water resistant TPU map case that is designed to allow you to use your map regardless of the weather, and should it be raining it prevents your map from getting wet.\r\n\r\nThe map case has an adjustable neck strap so that you can carry it around with you at all times, without the risk of losing it.\r\nFeatures and Benefits of the Highlander Roamer Map Case\r\n\r\n    Water resistant TPU map case\r\n    Adjustable strap\r\n    Roll top with Velcro closure\r\n\r\n'),(690,4,62,0,173,'Roamer Map Case'),(691,4,72,0,173,'map, mapcase, orienterring, walking , map'),(692,4,95,0,173,NULL),(693,4,61,0,174,'The Trekmates® Soft Feel Map Case Is lightweight and water resistant. It\'s strong and durable whilst still being compact and has a roll down closure system so it\'s easy to access what\'s inside.\r\n'),(694,4,62,0,174,'Trekmate mapcase'),(695,4,72,0,174,'trekmates, map, mapcase, map, mapbag, bag, waterproofmapcover, mapcover, cover,'),(696,4,95,0,174,NULL),(697,4,61,0,175,'Blue Casle Zip Front Boiler Suit / Overalls 366\r\nCastle overalls has been used by workers in most environments with its nylon zip it ideal for working on cars , washable and used daily in industrail workwear.\r\n\r\n>>>>>>>>>>>>>>>PLEASE NOTE NAVY ONLY IN SIZES 52\" to 60\" <<<<<<<<<<<<<<\r\n\r\nFeatures\r\n\r\nChoice of Navy Blue or Royal Blue (Royal only available in sizes 34\" to 50\" )\r\n\r\n240 GMS Polyester/Cotton\r\n\r\n* Single piece back\r\n\r\n* Action back\r\n\r\n* Zip front with cover placket\r\n\r\n* 2 slant zip breast pockets\r\n\r\n* 2 back pockets, one with velcro\r\n\r\n* Pen pocket\r\n\r\n* Hammer loop\r\n\r\n* Elasticated back\r\n\r\n* Rule pocket'),(698,4,62,0,175,'Castle coverall'),(699,4,72,0,175,'overalls, boilersuits, coveralls, workwear,bluecastle,ovvies, '),(700,4,95,0,175,NULL),(701,4,61,0,176,'Highlander Classic 6.5cm Folding Lock Knife\r\nKingfisher knife\r\nLocking blade\r\nClassic looking\r\nComes with nylon belt pouch\r\n6.5cm blade approx\r\nPicture shows open and closed - only one knife supplied\r\nShade of wood colour on knife may vary slightly from photo '),(702,4,62,0,176,'6. 5lock knife'),(703,4,72,0,176,'lockknife, knives, lockingblade, knife, locking, '),(704,4,95,0,176,NULL),(705,4,61,0,177,'Lightweight 90cm X 180cm approx emergency survival bivvi bag.\r\n\r\nFits in pocket\r\n\r\nSurvival instructions and and tips printed on the bag\r\n\r\nBright orange for high visibility, even in bad weather.\r\n\r\nIdeal for emergency circumstances and can be improvised to form a short-term waterproof shelter.\r\n\r\nUse whilst Hiking, mountaineering and general outdoor activities.\r\n\r\nAn essential piece of outdoor kit which takes up hardly any space in your Rucksack'),(706,4,62,0,177,'survival bag'),(707,4,72,0,177,'emergencybag, survival, survivalbag,bivvybag, bivvy,bag,'),(708,4,95,0,177,NULL),(709,4,61,0,178,'Highlander Waterproof Rucksack Liner - Orange\r\n\r\nWaterproof rucksack liner.\r\nFits up to a 85 LitreRucksack\r\nEnhances Protection for your gear against the elements\r\n'),(710,4,62,0,178,'Rucksacl liner'),(711,4,72,0,178,'rucksackliner, sacliner, rucksack, '),(712,4,95,0,178,NULL),(713,4,61,0,179,'Classic bright orange plastic pealess whistle for emergency use.\r\nThis strong plastic whistle weighs only 15g and its one piece construction means there is nothing to go wrong.\r\nFloating design for marine use. Hole for attaching lanyard.\r\nYou should always carry an emergency whistle for attracting attention whenever you venture into the fells or mountains.\r\nSimple and cheap but potentially life saving.\r\nPerry Whistle\r\nPlastic too, so no risk of freeze injury to lips in sub-zero temperatures\r\n'),(714,4,62,0,179,'Perry Whistle'),(715,4,72,0,179,'whistle, emergencywhistle, safetywhistle,survivalwhistle, perrywhistle,'),(716,4,95,0,179,NULL),(717,4,61,0,180,'Highlander SL Hydration System Features\r\n\r\nThe Highlander SL Hydration System is a PEVA/TPU construction bladder for use with your hydration pouch or backpack.\r\n\r\n    PEVA/TPU Construction\r\n    Hose with inner TPU material and outer PVC\r\n    Wide lock opening with slide lock closure - easy to fill and clean\r\n    Microban® antimicrobial protection, fights bacteria that causes stains, odors and product deterioration\r\n    OMC high flow bite valve with anti dirt cover\r\n    Attachment points for hydration sleeve in rucksacks\r\n    Capacity of 2 litres\r\n'),(718,4,62,0,180,'Microban hydration '),(719,4,72,0,180,'camelak, hydrationbag, 2 litresack, waterbag,'),(720,4,95,0,180,NULL),(721,4,61,0,181,'>Emergency Blanket\r\n>Insulating Reflective Coating\r\n>Provides Insulation\r\n>Retains bodyheat\r\n>Potential life saver\r\n>Size 140x210 cms.\r\n>All weathe protection'),(722,4,62,0,181,'Emergency blanket'),(723,4,72,0,181,'emergencyblanket, blanket, survivalcover, surivalblanke, '),(724,4,95,0,181,NULL),(725,4,61,0,182,'>Magnesium Firestarters\r\n>Lasts Approx 400 Strikes\r\n>Lights a fire quickly'),(726,4,62,0,182,'Firestarters'),(727,4,72,0,182,'firestarters, sparks, '),(728,4,95,0,182,NULL),(729,4,61,0,183,'	\r\n\r\nKeep warm on cold and chilly days in the womens Basecamp lined trousers. Features include a warm scrim lining, water repellent fabric treatment and a part elasticated waist to ensure a comfortable fit\r\n\r\n   > SolarDry UPF40+ sun-protective fabric\r\n    >4 pockets including 1 zip fastening\r\n    >Cargo pocket that will hold O/S map\r\n   > Warm and comfortable scrim lining\r\n  >  Part elasticated waistband at sides ensures a comfortable fit\r\n   > SmartDry Nano water repellent and stain resistant fabric\r\n   > Wash and wear\r\n   > Heel tape\r\n   > Zip fly with button fastening waistband\r\n    \r\n   > Feminine fit\r\n   > 400gam fabric weight\r\n\r\n>Fabric:\r\n\r\n>Outer: 65% Polyester, 35% Cotton\r\n>Lining: Warm polyester scrim lined'),(730,4,62,0,183,'Craghoppers Basecamp Ladies Lined Winter Trousers'),(731,4,72,0,183,'craghoppers, basecamp, winterlined, warmlined, ladies, kiwis, trousers, pants,'),(732,4,95,0,183,NULL);
/*!40000 ALTER TABLE `catalog_product_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_tier_price`
--

DROP TABLE IF EXISTS `catalog_product_entity_tier_price`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_entity_tier_price` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `all_groups` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Applicable To All Customer Groups',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `qty` decimal(12,4) NOT NULL default '1.0000' COMMENT 'QTY',
  `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `E8AB433B9ACB00343ABB312AD2FAB087` (`entity_id`,`all_groups`,`customer_group_id`,`qty`,`website_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_TIER_PRICE_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_TIER_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_6E08D719F0501DD1D8E6D4EFF2511C85` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_TIER_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_TIER_PRICE_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_entity_tier_price`
--

LOCK TABLES `catalog_product_entity_tier_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_tier_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_entity_tier_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_varchar`
--

DROP TABLE IF EXISTS `catalog_product_entity_varchar`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_entity_varchar` (
  `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID',
  `entity_type_id` int(10) unsigned NOT NULL COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `value` varchar(255) default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_PRD_ENTT_VCHR_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_ENTT_VCHR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3389 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Varchar Attribute Backend Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_entity_varchar`
--

LOCK TABLES `catalog_product_entity_varchar` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_varchar` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_varchar` VALUES (33,4,60,0,3,'3 Season Gelert Tryfan Classic Sleeping Bag '),(34,4,86,0,3,'3-season-warm-sleeping-bag-by-gelert'),(35,4,108,0,3,''),(36,4,71,0,3,'tryfan sleeping bag'),(37,4,73,0,3,''),(38,4,74,0,3,'/t/r/tryfan_olive.jpg'),(39,4,75,0,3,'/t/r/tryfan_olive.jpg'),(40,4,76,0,3,'/t/r/tryfan_olive.jpg'),(41,4,92,0,3,''),(42,4,96,0,3,''),(43,4,98,0,3,'container2'),(44,4,101,0,3,''),(45,4,102,0,3,''),(46,4,103,0,3,''),(47,4,87,1,3,'3-season-warm-sleeping-bag-by-gelert.html'),(48,4,87,0,3,'3-season-warm-sleeping-bag-by-gelert.html'),(49,4,60,0,4,'Proforce 33 litre Camoflage Rucksack suitable for cadets'),(50,4,71,0,4,'33 litre army rucksack'),(51,4,73,0,4,'33litre rucksacks'),(52,4,74,0,4,'/h/i/high25camo_1.jpg'),(53,4,75,0,4,'/h/i/high25camo_1.jpg'),(54,4,76,0,4,'/h/i/high25camo_1.jpg'),(55,4,86,0,4,'33-litre-cadet-army-camouflage-rucksacks'),(56,4,87,0,4,'33-litre-cadet-army-camouflage-rucksacks.html'),(57,4,92,0,4,''),(58,4,96,0,4,''),(59,4,98,0,4,'container2'),(60,4,101,0,4,''),(61,4,102,0,4,''),(62,4,103,0,4,''),(63,4,108,0,4,''),(65,4,87,1,4,'33-litre-cadet-army-camouflage-rucksacks.html'),(82,4,60,0,6,'Soldier 95 Pattern Camouflage Combat Shirt'),(83,4,86,0,6,'soldier-95-army-camo-shirt'),(84,4,108,0,6,''),(85,4,71,0,6,''),(86,4,73,0,6,''),(87,4,74,0,6,'/9/5/95_shirts_1.jpg'),(88,4,75,0,6,'/9/5/95_shirts_1.jpg'),(89,4,76,0,6,'/9/5/95_shirts_1.jpg'),(90,4,92,0,6,''),(91,4,96,0,6,''),(92,4,98,0,6,'container2'),(93,4,87,1,6,'soldier-95-army-camo-shirt.html'),(94,4,87,0,6,'soldier-95-army-camo-shirt.html'),(95,4,60,0,7,'Proforce 25 Litre Rucksack - Camo'),(96,4,86,0,7,'proforce-25-litre-rucksack-camo-dpm-cadets-ta'),(97,4,108,0,7,''),(98,4,71,0,7,'25 litre cadet rucksack'),(99,4,73,0,7,'25litrerucksacks'),(100,4,74,0,7,'/h/i/high25camo_2.jpg'),(101,4,75,0,7,'/h/i/high25camo_2.jpg'),(102,4,76,0,7,'/h/i/high25camo_2.jpg'),(103,4,92,0,7,''),(104,4,96,0,7,''),(105,4,98,0,7,'container2'),(106,4,101,0,7,''),(107,4,102,0,7,''),(108,4,103,0,7,''),(109,4,87,1,7,'proforce-25-litre-rucksack-camo-dpm-cadets-ta.html'),(110,4,87,0,7,'proforce-25-litre-rucksack-camo-dpm-cadets-ta.html'),(111,4,60,0,8,'Proforce 25 Litre Military Lightweight Rucksack  for Cadets/TA- '),(112,4,71,0,8,'25 litre proforce'),(113,4,73,0,8,'proforce25'),(114,4,74,0,8,'/o/l/oliveforces25.jpg'),(115,4,75,0,8,'/o/l/oliveforces25.jpg'),(116,4,76,0,8,'/o/l/oliveforces25.jpg'),(117,4,86,0,8,'proforce-25-litre-rucksack-olive-ta-daybag-cadets-military'),(118,4,87,0,8,'proforce-25-litre-rucksack-olive-ta-daybag-cadets-military.html'),(119,4,92,0,8,''),(120,4,96,0,8,''),(121,4,98,0,8,'container2'),(122,4,101,0,8,''),(123,4,102,0,8,''),(124,4,103,0,8,''),(125,4,108,0,8,''),(126,4,87,1,8,'proforce-25-litre-rucksack-olive-ta-daybag-cadets-military.html'),(143,4,60,0,10,'Cadet  Army Assault  Miltiary TA Security Boots'),(144,4,86,0,10,'cadet-assault-security-ta-boots'),(145,4,108,0,10,''),(146,4,71,0,10,'assault boot'),(147,4,73,0,10,'assault boots'),(148,4,74,0,10,'/c/a/cadet_assault_boot.jpg'),(149,4,75,0,10,'/c/a/cadet_assault_boot.jpg'),(150,4,76,0,10,'/c/a/cadet_assault_boot.jpg'),(151,4,92,0,10,''),(152,4,96,0,10,''),(153,4,98,0,10,'container2'),(154,4,87,1,10,'cadet-assault-security-ta-boots.html'),(155,4,87,0,10,'cadet-assault-security-ta-boots.html'),(156,4,60,0,11,'Army Style Hooded Military Army waterproof Ponchos.'),(157,4,86,0,11,'army-style-hooded-ponchos-military-waterproof'),(158,4,108,0,11,''),(159,4,71,0,11,'camoponcho'),(160,4,73,0,11,'camoponcho'),(161,4,74,0,11,'/a/r/armyponcho.jpg'),(162,4,75,0,11,'/a/r/armyponcho.jpg'),(163,4,76,0,11,'/a/r/armyponcho.jpg'),(164,4,92,0,11,''),(165,4,96,0,11,''),(166,4,98,0,11,'container2'),(167,4,87,1,11,'army-style-hooded-ponchos-military-waterproof.html'),(168,4,87,0,11,'army-style-hooded-ponchos-military-waterproof.html'),(169,4,60,0,12,'Camouflage DPM Military Army T-Shirt'),(170,4,86,0,12,'army-t-shirt-military-camoflage-dpm-shooting'),(171,4,108,0,12,''),(172,4,71,0,12,'camoteeshirt'),(173,4,73,0,12,'camotshirt'),(174,4,74,0,12,'/c/a/camotshirt.jpg'),(175,4,75,0,12,'/c/a/camotshirt.jpg'),(176,4,76,0,12,'/c/a/camotshirt.jpg'),(177,4,92,0,12,''),(178,4,96,0,12,''),(179,4,98,0,12,'container2'),(180,4,87,1,12,'army-t-shirt-military-camoflage-dpm-shooting.html'),(181,4,87,0,12,'army-t-shirt-military-camoflage-dpm-shooting.html'),(182,4,60,0,13,'Olive Green Army Cadet T-Shirt'),(183,4,86,0,13,'olive-green-army-t-shirt-cadets-ta'),(184,4,108,0,13,''),(185,4,71,0,13,'armytshirt'),(186,4,73,0,13,'armytshirt'),(187,4,74,0,13,'/o/l/olivet.jpg'),(188,4,75,0,13,'/o/l/olivet.jpg'),(189,4,76,0,13,'/o/l/olivet.jpg'),(190,4,92,0,13,''),(191,4,96,0,13,''),(192,4,98,0,13,'container2'),(193,4,87,1,13,'olive-green-army-t-shirt-cadets-ta.html'),(194,4,87,0,13,'olive-green-army-t-shirt-cadets-ta.html'),(195,4,60,0,14,'Military Style Army Commando Pullover'),(196,4,86,0,14,'military-style-army-commando-sweater'),(197,4,108,0,14,''),(198,4,71,0,14,'armysweater'),(199,4,73,0,14,'armysweater'),(200,4,74,0,14,'/c/o/commando_sweater.jpg'),(201,4,75,0,14,'/c/o/commando_sweater.jpg'),(202,4,76,0,14,'/c/o/commando_sweater.jpg'),(203,4,92,0,14,''),(204,4,96,0,14,''),(205,4,98,0,14,'container2'),(206,4,87,1,14,'military-style-army-commando-sweater.html'),(207,4,87,0,14,'military-style-army-commando-sweater.html'),(208,4,60,0,15,'Kids Camoflage Jacket'),(209,4,86,0,15,'kids-camoflage-jacket'),(210,4,108,0,15,''),(211,4,71,0,15,'kidscamojacket'),(212,4,73,0,15,'kidscamojacket'),(213,4,74,0,15,'/k/i/kids_camo_jkt.jpg'),(214,4,75,0,15,'/k/i/kids_camo_jkt.jpg'),(215,4,76,0,15,'/k/i/kids_camo_jkt.jpg'),(216,4,92,0,15,''),(217,4,96,0,15,''),(218,4,98,0,15,'container2'),(219,4,87,1,15,'kids-camoflage-jacket.html'),(220,4,87,0,15,'kids-camoflage-jacket.html'),(221,4,60,0,16,'Kids Camouflague Army DPM Combat Jacket  Age 13/14 Years'),(222,4,86,0,16,'kids-camouflague-combat-army-dpm-jacket-age-13-14-years'),(223,4,108,0,16,''),(224,4,71,0,16,'13to14armypants'),(225,4,73,0,16,'13/14camopants'),(226,4,74,0,16,'/k/i/kids_camo_jkt_1.jpg'),(227,4,75,0,16,'/k/i/kids_camo_jkt_1.jpg'),(228,4,76,0,16,'/k/i/kids_camo_jkt_1.jpg'),(229,4,92,0,16,''),(230,4,96,0,16,''),(231,4,98,0,16,'container2'),(232,4,87,1,16,'kids-camouflague-combat-army-dpm-jacket-age-13-14-years.html'),(233,4,87,0,16,'kids-camouflague-combat-army-dpm-jacket-age-13-14-years.html'),(234,4,60,0,17,'Kids Camouflague Combat camo  Army  Trousers'),(235,4,86,0,17,'kids-camouflague-combat-army-trousers'),(236,4,108,0,17,''),(237,4,71,0,17,'kidscamotrousers'),(238,4,73,0,17,'kidscamopants'),(239,4,74,0,17,'/k/i/kids_camo_trs.jpg'),(240,4,75,0,17,'/k/i/kids_camo_trs.jpg'),(241,4,76,0,17,'/k/i/kids_camo_trs.jpg'),(242,4,92,0,17,''),(243,4,96,0,17,''),(244,4,98,0,17,'container2'),(245,4,87,1,17,'kids-camouflague-combat-army-trousers.html'),(246,4,87,0,17,'kids-camouflague-combat-army-trousers.html'),(247,4,60,0,18,' Cotton army  military  uniform Pistol Belts'),(248,4,86,0,18,'cotton-army-pistol-belts-militarybelts-uniformbelts'),(249,4,108,0,18,''),(250,4,71,0,18,'armypistolbelts'),(251,4,73,0,18,'armypistolbelts'),(252,4,74,0,18,'/p/i/pistolbelts_1.jpg'),(253,4,75,0,18,'/p/i/pistolbelts_1.jpg'),(254,4,76,0,18,'/p/i/pistolbelts_1.jpg'),(255,4,92,0,18,''),(256,4,96,0,18,''),(257,4,98,0,18,'container2'),(258,4,87,1,18,'cotton-army-pistol-belts-militarybelts-uniformbelts.html'),(259,4,87,0,18,'cotton-army-pistol-belts-militarybelts-uniformbelts.html'),(260,4,60,0,19,'Kids Ghillie Suit - hunting and shooting'),(261,4,86,0,19,'kids-ghillie-suits-hunting-shooting'),(262,4,108,0,19,''),(263,4,71,0,19,''),(264,4,73,0,19,''),(265,4,74,0,19,'/k/i/kids-ghillie.jpg'),(266,4,75,0,19,'/k/i/kids-ghillie.jpg'),(267,4,76,0,19,'/k/i/kids-ghillie.jpg'),(268,4,92,0,19,''),(269,4,96,0,19,''),(270,4,98,0,19,'container2'),(271,4,87,1,19,'kids-ghillie-suits-hunting-shooting.html'),(272,4,87,0,19,'kids-ghillie-suits-hunting-shooting.html'),(273,4,60,0,20,'Ghillie Suits in Woodland Camouflage'),(274,4,86,0,20,'ghilli-suits-in-woodland-camouflage-shooting-fishing'),(275,4,108,0,20,''),(276,4,71,0,20,''),(277,4,73,0,20,''),(278,4,74,0,20,'/g/i/gillie_suit.jpg'),(279,4,75,0,20,'/g/i/gillie_suit.jpg'),(280,4,76,0,20,'/g/i/gillie_suit.jpg'),(281,4,92,0,20,''),(282,4,96,0,20,''),(283,4,98,0,20,'container2'),(284,4,87,1,20,'ghilli-suits-in-woodland-camouflage-shooting-fishing.html'),(285,4,87,0,20,'ghilli-suits-in-woodland-camouflage-shooting-fishing.html'),(286,4,60,0,21,'Army style mess Tins'),(287,4,86,0,21,'army-style-mess-tins-camping-cadets'),(288,4,108,0,21,''),(289,4,71,0,21,'armymesstins'),(290,4,73,0,21,'messtins'),(291,4,74,0,21,'/m/e/mess_set_lrg.jpg'),(292,4,75,0,21,'/m/e/mess_set_lrg.jpg'),(293,4,76,0,21,'/m/e/mess_set_lrg.jpg'),(294,4,92,0,21,''),(295,4,96,0,21,''),(296,4,98,0,21,'container2'),(297,4,87,1,21,'army-style-mess-tins-camping-cadets.html'),(298,4,87,0,21,'army-style-mess-tins-camping-cadets.html'),(299,4,60,0,22,'Soldier 95 Shirts Grade 1 Issue'),(300,4,86,0,22,'soldier-95-shirts-grade-1-issue'),(301,4,108,0,22,''),(302,4,71,0,22,'soldier95shirts'),(303,4,73,0,22,'soldier95shirts'),(304,4,74,0,22,'/9/5/95_shirts.jpg'),(305,4,75,0,22,'/9/5/95_shirts.jpg'),(306,4,76,0,22,'/9/5/95_shirts.jpg'),(307,4,92,0,22,''),(308,4,96,0,22,''),(309,4,98,0,22,'container2'),(310,4,87,1,22,'soldier-95-shirts-grade-1-issue.html'),(311,4,87,0,22,'soldier-95-shirts-grade-1-issue.html'),(312,4,60,0,23,'Snugpak Elite Softie Jacket'),(313,4,86,0,23,'snugpak-elite-softie-jacket-packable-the-original'),(314,4,108,0,23,''),(315,4,71,0,23,'snugpaksoftie jacket'),(316,4,73,0,23,'snugpak sleeka elite'),(317,4,74,0,23,'/s/l/sleeka_elitelite1.jpg'),(318,4,75,0,23,'/s/l/sleeka_elitelite1.jpg'),(319,4,76,0,23,'/s/l/sleeka_elitelite1.jpg'),(320,4,92,0,23,''),(321,4,96,0,23,''),(322,4,98,0,23,'container2'),(323,4,87,1,23,'snugpak-elite-softie-jacket-packable-the-original.html'),(324,4,87,0,23,'snugpak-elite-softie-jacket-packable-the-original.html'),(325,4,60,0,24,'Regatta Pakaway Waterproof & Breathable Jacket'),(326,4,86,0,24,'regatta-pakaway-waterproof-and-breathable-jacket-packable'),(327,4,108,0,24,''),(328,4,71,0,24,'regattawaterproofandbreathable jackets'),(329,4,73,0,24,'regatta pakaway jackets'),(330,4,74,0,24,'/p/a/pakaway_jkt.jpg'),(331,4,75,0,24,'/p/a/pakaway_jkt.jpg'),(332,4,76,0,24,'/p/a/pakaway_jkt.jpg'),(333,4,92,0,24,''),(334,4,96,0,24,''),(335,4,98,0,24,'container2'),(336,4,87,1,24,'regatta-pakaway-waterproof-and-breathable-jacket-packable.html'),(337,4,87,0,24,'regatta-pakaway-waterproof-and-breathable-jacket-packable.html'),(338,4,60,0,25,'Regatta Pakaway Waterproof & Breathable Overtrousers Lighweight'),(339,4,86,0,25,'reagatta-pakaway-waterproof-breathable-overtrousers'),(340,4,108,0,25,''),(341,4,71,0,25,'regatta waterproof&breathable overtrousers'),(342,4,73,0,25,'regattawaterproofovertrousers'),(343,4,74,0,25,'/n/a/navy_paka_trs.jpg'),(344,4,75,0,25,'/n/a/navy_paka_trs.jpg'),(345,4,76,0,25,'/n/a/navy_paka_trs.jpg'),(346,4,92,0,25,''),(347,4,96,0,25,''),(348,4,98,0,25,'container2'),(349,4,87,1,25,'reagatta-pakaway-waterproof-breathable-overtrousers.html'),(350,4,87,0,25,'reagatta-pakaway-waterproof-breathable-overtrousers.html'),(351,4,60,0,26,'Cadet Army Combat Assault Boot'),(352,4,86,0,26,'cadet-army-combat-assault-boot'),(353,4,108,0,26,''),(354,4,71,0,26,'cadet army boots'),(355,4,73,0,26,'cadet boots'),(356,4,74,0,26,'/m/6/m671a_1.jpg'),(357,4,75,0,26,'/m/6/m671a_1.jpg'),(358,4,76,0,26,'/m/6/m671a_1.jpg'),(359,4,92,0,26,''),(360,4,96,0,26,''),(361,4,98,0,26,'container2'),(362,4,87,1,26,'cadet-army-combat-assault-boot.html'),(363,4,87,0,26,'cadet-army-combat-assault-boot.html'),(364,4,60,0,27,'Grisport Ascent Lightweight and Breathable  Walking Trekking Hiking Boots'),(365,4,86,0,27,'grisport-ascent-lightweight-breathable-hiking-trekking-walking-boots'),(366,4,108,0,27,''),(367,4,71,0,27,''),(368,4,73,0,27,''),(369,4,74,0,27,'/t/h/thumbascent.jpg'),(370,4,75,0,27,'/t/h/thumbascent.jpg'),(371,4,76,0,27,'/t/h/thumbascent.jpg'),(372,4,92,0,27,''),(373,4,96,0,27,''),(374,4,98,0,27,'container2'),(375,4,87,1,27,'grisport-ascent-lightweight-breathable-hiking-trekking-walking-boots.html'),(376,4,87,0,27,'grisport-ascent-lightweight-breathable-hiking-trekking-walking-boots.html'),(377,4,60,0,28,'Wolf By Grisport Lightweight Waterproof And breathable Walking, hiking trekking Boots'),(378,4,86,0,28,'grisport-wolf-lightweight-breathablewaterproof-hiking-trekking-walking-boots'),(379,4,108,0,28,''),(380,4,71,0,28,'waterproof wolf walking boots'),(381,4,73,0,28,'waterproof walkingboots'),(382,4,74,0,28,'/g/r/grisport-wolf-boots.jpg'),(383,4,75,0,28,'/g/r/grisport-wolf-boots.jpg'),(384,4,76,0,28,'/g/r/grisport-wolf-boots.jpg'),(385,4,92,0,28,''),(386,4,96,0,28,''),(387,4,98,0,28,'container2'),(388,4,87,1,28,'grisport-wolf-lightweight-breathablewaterproof-hiking-trekking-walking-boots.html'),(389,4,87,0,28,'grisport-wolf-lightweight-breathablewaterproof-hiking-trekking-walking-boots.html'),(390,4,60,0,29,'Full PLCE Army cadet TA military  Webbing System'),(391,4,86,0,29,'full-plce-military-cadet-ta-army-webbing-system'),(392,4,108,0,29,''),(393,4,71,0,29,'plce webbing systems'),(394,4,73,0,29,'plce ebbing system'),(395,4,74,0,29,'/f/u/full_plce_webbing_system_back.jpg'),(396,4,75,0,29,'/f/u/full_plce_webbing_system_back.jpg'),(397,4,76,0,29,'/f/u/full_plce_webbing_system_back.jpg'),(398,4,92,0,29,''),(399,4,96,0,29,''),(400,4,98,0,29,'container2'),(401,4,87,1,29,'full-plce-military-cadet-ta-army-webbing-system.html'),(402,4,87,0,29,'full-plce-military-cadet-ta-army-webbing-system.html'),(416,4,60,0,31,'Camouflague DPM Flexible  Waterproof & Breathable Jackets'),(417,4,86,0,31,'camouflague-dpm-flexible-waterproof-breathable-jackets'),(418,4,108,0,31,''),(419,4,71,0,31,'camowaterprof jacket'),(420,4,73,0,31,'camo waterproof'),(421,4,74,0,31,'/k/o/kombatuk_064_1.jpg'),(422,4,75,0,31,'/k/o/kombatuk_064_1.jpg'),(423,4,76,0,31,'/k/o/kombatuk_064_1.jpg'),(424,4,92,0,31,''),(425,4,96,0,31,''),(426,4,98,0,31,'container2'),(427,4,87,1,31,'camouflague-dpm-flexible-waterproof-breathable-jackets.html'),(428,4,87,0,31,'camouflague-dpm-flexible-waterproof-breathable-jackets.html'),(429,4,60,0,32,'Camoufllague DPM  Waterproof Flexible &Breathable Overtrousers'),(430,4,86,0,32,'camouflague-dpm-flexible-waterproof-breathable-overtrousers'),(431,4,108,0,32,''),(432,4,71,0,32,'camo waterproof trousers'),(433,4,73,0,32,'camowaterproofovertrousers.'),(434,4,74,0,32,'/k/o/kombatuk_065_1.jpg'),(435,4,75,0,32,'/k/o/kombatuk_065_1.jpg'),(436,4,76,0,32,'/k/o/kombatuk_065_1.jpg'),(437,4,92,0,32,''),(438,4,96,0,32,''),(439,4,98,0,32,'container2'),(440,4,87,1,32,'camouflague-dpm-flexible-waterproof-breathable-overtrousers.html'),(441,4,87,0,32,'camouflague-dpm-flexible-waterproof-breathable-overtrousers.html'),(442,4,60,0,33,'Soldier 95 Army Combat Trousers'),(443,4,86,0,33,'soldier-95-army-combat-trousers-camopants-greens-uniform-trousers-camogear'),(444,4,108,0,33,''),(445,4,71,0,33,'5styletrousersarmy'),(446,4,73,0,33,'camo95trousers'),(447,4,74,0,33,'/n/e/new_95s_trousers.jpg'),(448,4,75,0,33,'/n/e/new_95s_trousers.jpg'),(449,4,76,0,33,'/n/e/new_95s_trousers.jpg'),(450,4,92,0,33,''),(451,4,96,0,33,''),(452,4,98,0,33,'container2'),(453,4,87,1,33,'soldier-95-army-combat-trousers-camopants-greens-uniform-trousers-camogear.html'),(454,4,87,0,33,'soldier-95-army-combat-trousers-camopants-greens-uniform-trousers-camogear.html'),(455,4,60,0,34,'Cadet KFS'),(456,4,86,0,34,'cadet-kfs'),(457,4,108,0,34,''),(458,4,71,0,34,'armykfs,knifefork&spoon'),(459,4,73,0,34,'kfs'),(460,4,74,0,34,'/k/o/kombatuk_302.jpg'),(461,4,75,0,34,'/k/o/kombatuk_302.jpg'),(462,4,76,0,34,'/k/o/kombatuk_302.jpg'),(463,4,92,0,34,''),(464,4,96,0,34,''),(465,4,98,0,34,'container2'),(466,4,87,1,34,'cadet-kfs.html'),(467,4,87,0,34,'cadet-kfs.html'),(468,4,60,0,35,'DPM (Camouflague) Water Bottle & Cup '),(469,4,86,0,35,'dpm-camouflague-water-bottle-cup'),(470,4,108,0,35,''),(471,4,71,0,35,'camowaterbottleandcup'),(472,4,73,0,35,'camowaterbottle.'),(473,4,74,0,35,'/k/o/kombatbottle.jpg'),(474,4,75,0,35,'/k/o/kombatbottle.jpg'),(475,4,76,0,35,'/k/o/kombatbottle.jpg'),(476,4,92,0,35,''),(477,4,96,0,35,''),(478,4,98,0,35,'container2'),(479,4,87,1,35,'dpm-camouflague-water-bottle-cup.html'),(480,4,87,0,35,'dpm-camouflague-water-bottle-cup.html'),(481,4,60,0,36,'Open face balaclavas'),(482,4,86,0,36,'open-face-balaclavas-hats-caps-headwear'),(483,4,108,0,36,''),(484,4,71,0,36,'balaclava'),(485,4,73,0,36,'balaclavas'),(486,4,74,0,36,'/k/o/kombatuk_214.jpg'),(487,4,75,0,36,'/k/o/kombatuk_214.jpg'),(488,4,76,0,36,'/k/o/kombatuk_214.jpg'),(489,4,92,0,36,''),(490,4,96,0,36,''),(491,4,98,0,36,'container2'),(492,4,87,1,36,'open-face-balaclavas-hats-caps-headwear.html'),(493,4,87,0,36,'open-face-balaclavas-hats-caps-headwear.html'),(494,4,60,0,37,'3 hole warm miitary army SAS style balaclavas'),(495,4,86,0,37,'3-hole-sas-warm-military-army-style-balacavas'),(496,4,108,0,37,''),(497,4,71,0,37,'sasbalaclavas'),(498,4,73,0,37,'sasbalaclava'),(499,4,74,0,37,'/k/o/kombatuk_167.jpg'),(500,4,75,0,37,'/k/o/kombatuk_167.jpg'),(501,4,76,0,37,'/k/o/kombatuk_167.jpg'),(502,4,92,0,37,''),(503,4,96,0,37,''),(504,4,98,0,37,'container2'),(505,4,87,1,37,'3-hole-sas-warm-military-army-style-balacavas.html'),(506,4,87,0,37,'3-hole-sas-warm-military-army-style-balacavas.html'),(507,4,60,0,38,'Britsh Special Forces Army Hat DPM Bush Hat.'),(508,4,86,0,38,'britsh-special-forces-army-military-hat-dpm-bush-hat-craphat'),(509,4,108,0,38,''),(510,4,71,0,38,'craphat,bushhat'),(511,4,73,0,38,'craphat'),(512,4,74,0,38,'/k/o/kombatuk_178.jpg'),(513,4,75,0,38,'/k/o/kombatuk_178.jpg'),(514,4,76,0,38,'/k/o/kombatuk_178.jpg'),(515,4,92,0,38,''),(516,4,96,0,38,''),(517,4,98,0,38,'container2'),(518,4,87,1,38,'britsh-special-forces-army-military-hat-dpm-bush-hat-craphat.html'),(519,4,87,0,38,'britsh-special-forces-army-military-hat-dpm-bush-hat-craphat.html'),(520,4,60,0,39,'Para Cord suitable for use with a basha'),(521,4,86,0,39,'para-cord-cadets-ta-bashas'),(522,4,108,0,39,''),(523,4,71,0,39,'paracord'),(524,4,73,0,39,'paracord'),(525,4,74,0,39,'/k/o/kombatuk_324.jpg'),(526,4,75,0,39,'/k/o/kombatuk_324.jpg'),(527,4,76,0,39,'/k/o/kombatuk_324.jpg'),(528,4,92,0,39,''),(529,4,96,0,39,''),(530,4,98,0,39,'container2'),(531,4,87,1,39,'para-cord-cadets-ta-bashas.html'),(532,4,87,0,39,'para-cord-cadets-ta-bashas.html'),(533,4,60,0,40,'Military Army Style Bungees'),(534,4,86,0,40,'military-army-style-bashas-bungees'),(535,4,108,0,40,''),(536,4,71,0,40,'bungees, militarybungees'),(537,4,73,0,40,'bungees'),(538,4,74,0,40,'/k/o/kombatuk_314.jpg'),(539,4,75,0,40,'/k/o/kombatuk_314.jpg'),(540,4,76,0,40,'/k/o/kombatuk_314.jpg'),(541,4,92,0,40,''),(542,4,96,0,40,''),(543,4,98,0,40,'container2'),(544,4,87,1,40,'military-army-style-bashas-bungees.html'),(545,4,87,0,40,'military-army-style-bashas-bungees.html'),(546,4,60,0,41,'Gelert Tryfan 3 Season Classic Sleeping Bag'),(547,4,86,0,41,'gelert-tryfan-3-season-classic-sleeping-bag'),(548,4,108,0,41,''),(549,4,71,0,41,'3seasonsleepingbag'),(550,4,73,0,41,'tryfansleepingbag'),(551,4,74,0,41,'/t/r/tryfan_olive_1.jpg'),(552,4,75,0,41,'/t/r/tryfan_olive_1.jpg'),(553,4,76,0,41,'/t/r/tryfan_olive_1.jpg'),(554,4,92,0,41,''),(555,4,96,0,41,''),(556,4,98,0,41,'container2'),(557,4,87,1,41,'gelert-tryfan-3-season-classic-sleeping-bag.html'),(558,4,87,0,41,'gelert-tryfan-3-season-classic-sleeping-bag.html'),(559,4,60,0,42,'Proforce 3 Season Ranger Cadet  TA Fishing Military Sleeping Bags'),(560,4,86,0,42,'proforce-3-season-ranger-cadet-ta-military-fishing-sleeping-bags'),(561,4,108,0,42,''),(562,4,71,0,42,'3seasonarmysleepingbag'),(563,4,73,0,42,'3seasonsleepingbag'),(564,4,74,0,42,'/r/a/ranger_sbag.jpg'),(565,4,75,0,42,'/r/a/ranger_sbag.jpg'),(566,4,76,0,42,'/r/a/ranger_sbag.jpg'),(567,4,92,0,42,''),(568,4,96,0,42,''),(569,4,98,0,42,'container2'),(570,4,87,1,42,'proforce-3-season-ranger-cadet-ta-military-fishing-sleeping-bags.html'),(571,4,87,0,42,'proforce-3-season-ranger-cadet-ta-military-fishing-sleeping-bags.html'),(572,4,60,0,43,'Combat Military Army TA  Cadet Boot Care Kit'),(573,4,86,0,43,'combat-cadet-ta-military-boot-care-kit'),(574,4,108,0,43,''),(575,4,71,0,43,''),(576,4,73,0,43,''),(577,4,74,0,43,'/k/o/kombatuk_133.jpg'),(578,4,75,0,43,'/k/o/kombatuk_133.jpg'),(579,4,76,0,43,'/k/o/kombatuk_133.jpg'),(580,4,92,0,43,''),(581,4,96,0,43,''),(582,4,98,0,43,'container2'),(583,4,87,1,43,'combat-cadet-ta-military-boot-care-kit.html'),(584,4,87,0,43,'combat-cadet-ta-military-boot-care-kit.html'),(585,4,60,0,44,'Bridgedale Ladies Comfort Trekker Walking Socks'),(586,4,86,0,44,'bridgedale-ladies-comfort-trekker-walking-rambling-hiking-socks'),(587,4,108,0,44,''),(588,4,71,0,44,''),(589,4,73,0,44,''),(590,4,74,0,44,'/l/a/ladies_trekker.jpg'),(591,4,75,0,44,'/l/a/ladies_trekker.jpg'),(592,4,76,0,44,'/l/a/ladies_trekker.jpg'),(593,4,92,0,44,''),(594,4,96,0,44,''),(595,4,98,0,44,'container2'),(596,4,87,1,44,'bridgedale-ladies-comfort-trekker-walking-rambling-hiking-socks.html'),(597,4,87,0,44,'bridgedale-ladies-comfort-trekker-walking-rambling-hiking-socks.html'),(598,4,60,0,45,'Commando Army Cadet TA Military Socks'),(599,4,86,0,45,'commando-army-cadet-miltary-ta-work-socks'),(600,4,108,0,45,''),(601,4,71,0,45,'armysocks'),(602,4,73,0,45,'armysocks'),(603,4,74,0,45,'/c/o/commando_sox.jpg'),(604,4,75,0,45,'/c/o/commando_sox.jpg'),(605,4,76,0,45,'/c/o/commando_sox.jpg'),(606,4,92,0,45,''),(607,4,96,0,45,''),(608,4,98,0,45,'container2'),(609,4,87,1,45,'commando-army-cadet-miltary-ta-work-socks.html'),(610,4,87,0,45,'commando-army-cadet-miltary-ta-work-socks.html'),(611,4,60,0,46,'Thinsulate Beanie Watch Hat'),(612,4,86,0,46,'thinsulate-beanie-watch-hat'),(613,4,108,0,46,''),(614,4,71,0,46,'thinsulatewarmbeanniehats'),(615,4,73,0,46,'thinsulatehats'),(616,4,74,0,46,'/t/h/thinhat_blk.jpg'),(617,4,75,0,46,'/t/h/thinhat_blk.jpg'),(618,4,76,0,46,'/t/h/thinhat_blk.jpg'),(619,4,92,0,46,''),(620,4,96,0,46,''),(621,4,98,0,46,'container2'),(622,4,87,1,46,'thinsulate-beanie-watch-hat.html'),(623,4,87,0,46,'thinsulate-beanie-watch-hat.html'),(624,4,60,0,47,'Chunky Thinsulate Ski/Beanie Warm Knitted  Hats'),(625,4,86,0,47,'chunky-thinsulate-ski-beanie-warm-hats'),(626,4,108,0,47,''),(627,4,71,0,47,'beanniehats'),(628,4,73,0,47,'chunkybeannies'),(629,4,74,0,47,'/c/h/chunky_hat.jpg'),(630,4,75,0,47,'/c/h/chunky_hat.jpg'),(631,4,76,0,47,'/c/h/chunky_hat.jpg'),(632,4,92,0,47,''),(633,4,96,0,47,''),(634,4,98,0,47,'container2'),(635,4,87,1,47,'chunky-thinsulate-ski-beanie-warm-hats.html'),(636,4,87,0,47,'chunky-thinsulate-ski-beanie-warm-hats.html'),(637,4,60,0,48,'Thinsulate Shooter Mitts'),(638,4,86,0,48,'thinsulate-shooter-mitts'),(639,4,108,0,48,''),(640,4,71,0,48,'shootermittsgloves'),(641,4,73,0,48,'shootermitts'),(642,4,74,0,48,'/b/l/black_shooter_mitts.jpg'),(643,4,75,0,48,'/b/l/black_shooter_mitts.jpg'),(644,4,76,0,48,'/b/l/black_shooter_mitts.jpg'),(645,4,92,0,48,''),(646,4,96,0,48,''),(647,4,98,0,48,'container2'),(648,4,87,1,48,'thinsulate-shooter-mitts.html'),(649,4,87,0,48,'thinsulate-shooter-mitts.html'),(650,4,60,0,49,'Bridgedale Comfort Trekker Walking Socks'),(651,4,86,0,49,'bridgedale-comfort-trekker-walking-socks'),(652,4,108,0,49,''),(653,4,71,0,49,'bridgedalewalkingsocks'),(654,4,73,0,49,'bridgedalewalkingsocks'),(655,4,74,0,49,'/m/e/mens_comfort_trekker.jpg'),(656,4,75,0,49,'/m/e/mens_comfort_trekker.jpg'),(657,4,76,0,49,'/m/e/mens_comfort_trekker.jpg'),(658,4,92,0,49,''),(659,4,96,0,49,''),(660,4,98,0,49,'container2'),(661,4,87,1,49,'bridgedale-comfort-trekker-walking-socks.html'),(662,4,87,0,49,'bridgedale-comfort-trekker-walking-socks.html'),(663,4,60,0,50,'1000 Mile All Terrain walking Socks'),(664,4,86,0,50,'1000-mile-all-terrain-walking-socks'),(665,4,108,0,50,''),(666,4,71,0,50,'1000mile, walkingsocks,'),(667,4,73,0,50,'1000milesocks'),(668,4,74,0,50,'/1/0/1000mileallternav.jpg'),(669,4,75,0,50,'/1/0/1000mileallternav.jpg'),(670,4,76,0,50,'/1/0/1000mileallternav.jpg'),(671,4,92,0,50,''),(672,4,96,0,50,''),(673,4,98,0,50,'container2'),(674,4,87,1,50,'1000-mile-all-terrain-walking-socks.html'),(675,4,87,0,50,'1000-mile-all-terrain-walking-socks.html'),(676,4,60,0,51,'Highlander Islay Walking Poles'),(677,4,86,0,51,'highlander-islay-walking-poles'),(678,4,108,0,51,''),(679,4,71,0,51,'walkingpoles'),(680,4,73,0,51,'islaywalkingpoles'),(681,4,74,0,51,'/i/s/islay_pole.jpg'),(682,4,75,0,51,'/i/s/islay_pole.jpg'),(683,4,76,0,51,'/i/s/islay_pole.jpg'),(684,4,92,0,51,''),(685,4,96,0,51,''),(686,4,98,0,51,'container2'),(687,4,87,1,51,'highlander-islay-walking-poles.html'),(688,4,87,0,51,'highlander-islay-walking-poles.html'),(689,4,60,0,52,'Highlander Arran walking Poles'),(690,4,86,0,52,'highlander-arran-walking-poles'),(691,4,108,0,52,''),(692,4,71,0,52,'walkingpoles'),(693,4,73,0,52,'walkingpoles'),(694,4,74,0,52,'/a/r/arran_walking_pole.jpg'),(695,4,75,0,52,'/a/r/arran_walking_pole.jpg'),(696,4,76,0,52,'/a/r/arran_walking_pole.jpg'),(697,4,92,0,52,''),(698,4,96,0,52,''),(699,4,98,0,52,'container2'),(700,4,87,1,52,'highlander-arran-walking-poles.html'),(701,4,87,0,52,'highlander-arran-walking-poles.html'),(702,4,60,0,53,'NIKWAX WASH-IN TX DIRECT'),(703,4,86,0,53,'nikwax-wash-in-tx-direct'),(704,4,108,0,53,''),(705,4,71,0,53,''),(706,4,73,0,53,''),(707,4,74,0,53,'/t/x/tx10direct.jpg'),(708,4,75,0,53,'/t/x/tx10direct.jpg'),(709,4,76,0,53,'/t/x/tx10direct.jpg'),(710,4,92,0,53,''),(711,4,96,0,53,''),(712,4,98,0,53,'container2'),(713,4,87,1,53,'nikwax-wash-in-tx-direct.html'),(714,4,87,0,53,'nikwax-wash-in-tx-direct.html'),(715,4,60,0,54,'NIKWAX TECH-WASH'),(716,4,86,0,54,'nikwax-tech-wash'),(717,4,108,0,54,''),(718,4,71,0,54,''),(719,4,73,0,54,''),(720,4,74,0,54,'/t/e/tech_wash.jpg'),(721,4,75,0,54,'/t/e/tech_wash.jpg'),(722,4,76,0,54,'/t/e/tech_wash.jpg'),(723,4,92,0,54,''),(724,4,96,0,54,''),(725,4,98,0,54,'container2'),(726,4,87,1,54,'nikwax-tech-wash.html'),(727,4,87,0,54,'nikwax-tech-wash.html'),(728,4,60,0,55,'NIKWAX FABRIC&LEATHER WATERPROOFING SPRAY'),(729,4,86,0,55,'nikwax-fabric-leather-waterproofing-spray'),(730,4,108,0,55,''),(731,4,71,0,55,''),(732,4,73,0,55,''),(733,4,74,0,55,'/n/i/nikfableath_1.jpg'),(734,4,75,0,55,'/n/i/nikfableath_1.jpg'),(735,4,76,0,55,'/n/i/nikfableath_1.jpg'),(736,4,92,0,55,''),(737,4,96,0,55,''),(738,4,98,0,55,'container2'),(739,4,87,1,55,'nikwax-fabric-leather-waterproofing-spray.html'),(740,4,87,0,55,'nikwax-fabric-leather-waterproofing-spray.html'),(741,4,60,0,56,'NIKWAX NUBUCK&SUEDE PROOFING SPRAY'),(742,4,86,0,56,'nikwax-nubuck-suede-proofing-spray'),(743,4,108,0,56,''),(744,4,71,0,56,''),(745,4,73,0,56,''),(746,4,74,0,56,'/n/u/nubuck.jpg'),(747,4,75,0,56,'/n/u/nubuck.jpg'),(748,4,76,0,56,'/n/u/nubuck.jpg'),(749,4,92,0,56,''),(750,4,96,0,56,''),(751,4,98,0,56,'container2'),(752,4,87,1,56,'nikwax-nubuck-suede-proofing-spray.html'),(753,4,87,0,56,'nikwax-nubuck-suede-proofing-spray.html'),(754,4,60,0,57,'NIKWAX WATERPROOFING WAX FOR LEATHER'),(755,4,86,0,57,'nikwax-waterproofing-wax-for-leather'),(756,4,108,0,57,''),(757,4,71,0,57,''),(758,4,73,0,57,''),(759,4,74,0,57,'/n/i/nikwaxleather.jpg'),(760,4,75,0,57,'/n/i/nikwaxleather.jpg'),(761,4,76,0,57,'/n/i/nikwaxleather.jpg'),(762,4,92,0,57,''),(763,4,96,0,57,''),(764,4,98,0,57,'container2'),(765,4,87,1,57,'nikwax-waterproofing-wax-for-leather.html'),(766,4,87,0,57,'nikwax-waterproofing-wax-for-leather.html'),(767,4,60,0,58,'PENNINE LOOP PILE LINED WALKING SOCKS'),(768,4,86,0,58,'pennine-loop-pile-lined-walking-socks'),(769,4,108,0,58,''),(770,4,71,0,58,''),(771,4,73,0,58,''),(772,4,74,0,58,'/f/u/full_450553cf33005.jpg'),(773,4,75,0,58,'/f/u/full_450553cf33005.jpg'),(774,4,76,0,58,'/f/u/full_450553cf33005.jpg'),(775,4,92,0,58,''),(776,4,96,0,58,''),(777,4,98,0,58,'container2'),(778,4,87,1,58,'pennine-loop-pile-lined-walking-socks.html'),(779,4,87,0,58,'pennine-loop-pile-lined-walking-socks.html'),(780,4,60,0,59,'CHILDRENS THERMAL UNDERWEAR BASE LAYER SETS'),(781,4,86,0,59,'childrens-thermal-base-layer-sts'),(782,4,108,0,59,''),(783,4,71,0,59,''),(784,4,73,0,59,''),(785,4,74,0,59,'/k/i/kids_base_sets.jpg'),(786,4,75,0,59,'/k/i/kids_base_sets.jpg'),(787,4,76,0,59,'/k/i/kids_base_sets.jpg'),(788,4,92,0,59,''),(789,4,96,0,59,''),(790,4,98,0,59,'container2'),(791,4,87,1,59,'childrens-thermal-base-layer-sts.html'),(792,4,87,0,59,'childrens-thermal-base-layer-sts.html'),(793,4,60,0,60,'Thermal Short Sleeve T-Shirt'),(794,4,86,0,60,'thermal-short-sleeve-t-shirt'),(795,4,108,0,60,''),(796,4,71,0,60,''),(797,4,73,0,60,''),(798,4,74,0,60,'/t/h/thermal_t_shirt_denim.jpg'),(799,4,75,0,60,'/t/h/thermal_t_shirt_denim.jpg'),(800,4,76,0,60,'no_selection'),(801,4,92,0,60,''),(802,4,96,0,60,''),(803,4,98,0,60,'container2'),(804,4,87,1,60,'thermal-short-sleeve-t-shirt.html'),(805,4,87,0,60,'thermal-short-sleeve-t-shirt.html'),(806,4,60,0,61,'THERMAL LONGJOHNS '),(807,4,86,0,61,'thermal-longjohns'),(808,4,108,0,61,''),(809,4,71,0,61,''),(810,4,73,0,61,''),(811,4,74,0,61,'/l/o/longjohns.jpg'),(812,4,75,0,61,'/l/o/longjohns.jpg'),(813,4,76,0,61,'/l/o/longjohns.jpg'),(814,4,92,0,61,''),(815,4,96,0,61,''),(816,4,98,0,61,'container2'),(817,4,87,1,61,'thermal-longjohns.html'),(818,4,87,0,61,'thermal-longjohns.html'),(819,4,60,0,62,'Ladies Parade Shoes'),(820,4,86,0,62,'ladies-parade-shoes-uniform-dressshoes-raf-shoes-genuine'),(821,4,108,0,62,''),(822,4,71,0,62,''),(823,4,73,0,62,''),(824,4,74,0,62,'/l/a/ladies_parade_shoes.jpg'),(825,4,75,0,62,'/l/a/ladies_parade_shoes.jpg'),(826,4,76,0,62,'/l/a/ladies_parade_shoes.jpg'),(827,4,92,0,62,''),(828,4,96,0,62,''),(829,4,98,0,62,'container2'),(830,4,87,1,62,'ladies-parade-shoes-uniform-dressshoes-raf-shoes-genuine.html'),(831,4,87,0,62,'ladies-parade-shoes-uniform-dressshoes-raf-shoes-genuine.html'),(832,4,60,0,63,'Mens & Boys Parade Shoes'),(833,4,86,0,63,'mens-boys-parade-shoes-rafparadeshoes-uniformshoes'),(834,4,108,0,63,''),(835,4,71,0,63,''),(836,4,73,0,63,''),(837,4,74,0,63,'/n/e/new_parade_she.jpg'),(838,4,75,0,63,'/n/e/new_parade_she.jpg'),(839,4,76,0,63,'/n/e/new_parade_she.jpg'),(840,4,92,0,63,''),(841,4,96,0,63,''),(842,4,98,0,63,'container2'),(843,4,87,1,63,'mens-boys-parade-shoes-rafparadeshoes-uniformshoes.html'),(844,4,87,0,63,'mens-boys-parade-shoes-rafparadeshoes-uniformshoes.html'),(845,4,60,0,64,'MENS 3 PACK THERMAL SOCKS '),(846,4,86,0,64,'mens-3-pack-thermal-socks'),(847,4,108,0,64,''),(848,4,71,0,64,''),(849,4,73,0,64,''),(850,4,74,0,64,'/m/e/mens_thermal_socks.jpg'),(851,4,75,0,64,'/m/e/mens_thermal_socks.jpg'),(852,4,76,0,64,'/m/e/mens_thermal_socks.jpg'),(853,4,92,0,64,''),(854,4,96,0,64,''),(855,4,98,0,64,'container2'),(856,4,87,1,64,'mens-3-pack-thermal-socks.html'),(857,4,87,0,64,'mens-3-pack-thermal-socks.html'),(858,4,60,0,65,'LADIES 3 PACK WOOL THERMAL BOOT SOCKS'),(859,4,86,0,65,'ladies-3-pack-wool-thermal-boot-socks'),(860,4,108,0,65,''),(861,4,71,0,65,''),(862,4,73,0,65,''),(863,4,74,0,65,'/l/a/ladies_wool_boot_socks.jpg'),(864,4,75,0,65,'/l/a/ladies_wool_boot_socks.jpg'),(865,4,76,0,65,'/l/a/ladies_wool_boot_socks.jpg'),(866,4,92,0,65,''),(867,4,96,0,65,''),(868,4,98,0,65,'container2'),(869,4,87,1,65,'ladies-3-pack-wool-thermal-boot-socks.html'),(870,4,87,0,65,'ladies-3-pack-wool-thermal-boot-socks.html'),(871,4,60,0,66,'MENS 3 PACK WOOL THERMAL BOOT SOCKS'),(872,4,86,0,66,'mens-3-pack-wool-thermal-boot-socks'),(873,4,108,0,66,''),(874,4,71,0,66,''),(875,4,73,0,66,''),(876,4,74,0,66,'/m/e/mens_wool_3_pack.jpg'),(877,4,75,0,66,'/m/e/mens_wool_3_pack.jpg'),(878,4,76,0,66,'/m/e/mens_wool_3_pack.jpg'),(879,4,92,0,66,''),(880,4,96,0,66,''),(881,4,98,0,66,'container2'),(882,4,87,1,66,'mens-3-pack-wool-thermal-boot-socks.html'),(883,4,87,0,66,'mens-3-pack-wool-thermal-boot-socks.html'),(884,4,60,0,67,'Mens wool knee length thermal walking socks'),(885,4,86,0,67,'mens-knee-length-wool-boot-thermal-socks'),(886,4,108,0,67,''),(887,4,71,0,67,''),(888,4,73,0,67,''),(889,4,74,0,67,'/l/o/long_pennine_mens.jpg'),(890,4,75,0,67,'/l/o/long_pennine_mens.jpg'),(891,4,76,0,67,'/l/o/long_pennine_mens.jpg'),(892,4,92,0,67,''),(893,4,96,0,67,''),(894,4,98,0,67,'container2'),(895,4,87,1,67,'mens-knee-length-wool-boot-thermal-socks.html'),(896,4,87,0,67,'mens-knee-length-wool-boot-thermal-socks.html'),(897,4,60,0,68,'LADIES KNEE LENGTH Warm  WOOL Rambling Hiking Walking SOCKS'),(898,4,86,0,68,'ladies-knee-length-wool-rambling-hiking-walking-warm-socks'),(899,4,108,0,68,''),(900,4,71,0,68,''),(901,4,73,0,68,''),(902,4,74,0,68,'/l/o/long_pennine_mens_1.jpg'),(903,4,75,0,68,'/l/o/long_pennine_mens_1.jpg'),(904,4,76,0,68,'/l/o/long_pennine_mens_1.jpg'),(905,4,92,0,68,''),(906,4,96,0,68,''),(907,4,98,0,68,'container2'),(908,4,87,1,68,'ladies-knee-length-wool-rambling-hiking-walking-warm-socks.html'),(909,4,87,0,68,'ladies-knee-length-wool-rambling-hiking-walking-warm-socks.html'),(924,4,101,0,10,'Cadet Army Assault Boots'),(925,4,102,0,10,'Cadet Army Assault Boots'),(926,4,103,0,10,'Cadet Army Assault Boots'),(927,4,101,0,26,'Cadet Army Combat Assault Boot'),(928,4,102,0,26,'Cadet Army Combat Assault Boot'),(929,4,103,0,26,'Cadet Army Combat Assault Boot'),(930,4,101,0,27,'Grisport Ascent Walking Boots'),(931,4,102,0,27,'Grisport Ascent Walking Boots'),(932,4,103,0,27,'Grisport Ascent Walking Boots'),(933,4,101,0,28,'Grisport Wolf Walking Boots'),(934,4,102,0,28,'Grisport Wolf Walking Boots'),(935,4,103,0,28,'Grisport Wolf Walking Boots'),(936,4,60,0,70,'RECHARGEABLE HAND WARMERS'),(937,4,86,0,70,'rechargeable-hand-warmers'),(938,4,108,0,70,''),(939,4,71,0,70,''),(940,4,73,0,70,''),(941,4,74,0,70,'/r/e/recharge_handwarmers.jpg'),(942,4,75,0,70,'/r/e/recharge_handwarmers.jpg'),(943,4,76,0,70,'/r/e/recharge_handwarmers.jpg'),(944,4,92,0,70,''),(945,4,96,0,70,''),(946,4,98,0,70,'container2'),(947,4,87,1,70,'rechargeable-hand-warmers.html'),(948,4,87,0,70,'rechargeable-hand-warmers.html'),(949,4,60,0,71,'Hotties  INSTANT HANDWARMERS 2 pairs'),(950,4,86,0,71,'heatwave-instant-handwarmers'),(951,4,108,0,71,''),(952,4,71,0,71,''),(953,4,73,0,71,''),(954,4,74,0,71,'/h/o/hotties.jpg'),(955,4,75,0,71,'/h/o/hotties.jpg'),(956,4,76,0,71,'/h/o/hotties.jpg'),(957,4,92,0,71,''),(958,4,96,0,71,''),(959,4,98,0,71,'container2'),(960,4,87,1,71,'heatwave-instant-handwarmers.html'),(961,4,87,0,71,'heatwave-instant-handwarmers.html'),(962,4,101,0,32,''),(963,4,102,0,32,''),(964,4,103,0,32,''),(965,4,101,0,31,''),(966,4,102,0,31,''),(967,4,103,0,31,''),(968,4,101,0,24,''),(969,4,102,0,24,''),(970,4,103,0,24,''),(971,4,101,0,23,''),(972,4,102,0,23,''),(973,4,103,0,23,''),(974,4,101,0,22,''),(975,4,102,0,22,''),(976,4,103,0,22,''),(977,4,101,0,20,''),(978,4,102,0,20,''),(979,4,103,0,20,''),(980,4,101,0,17,''),(981,4,102,0,17,''),(982,4,103,0,17,''),(983,4,101,0,16,''),(984,4,102,0,16,''),(985,4,103,0,16,''),(986,4,101,0,15,''),(987,4,102,0,15,''),(988,4,103,0,15,''),(989,4,101,0,19,''),(990,4,102,0,19,''),(991,4,103,0,19,''),(992,4,101,0,68,''),(993,4,102,0,68,''),(994,4,103,0,68,''),(995,4,101,0,67,''),(996,4,102,0,67,''),(997,4,103,0,67,''),(998,4,101,0,66,''),(999,4,102,0,66,''),(1000,4,103,0,66,''),(1001,4,60,0,72,'CARABINAS 6mm'),(1002,4,86,0,72,'carabinas'),(1003,4,108,0,72,''),(1004,4,71,0,72,''),(1005,4,73,0,72,''),(1006,4,74,0,72,'/c/a/caribinas_pairs_6mm.jpg'),(1007,4,75,0,72,'/c/a/caribinas_pairs_6mm.jpg'),(1008,4,76,0,72,'/c/a/caribinas_pairs_6mm.jpg'),(1009,4,92,0,72,''),(1010,4,96,0,72,''),(1011,4,98,0,72,'container2'),(1012,4,87,1,72,'carabinas.html'),(1013,4,87,0,72,'carabinas.html'),(1014,4,60,0,73,'8 MM CARABINAS '),(1015,4,86,0,73,'8-mm-carabinas'),(1016,4,108,0,73,''),(1017,4,71,0,73,''),(1018,4,73,0,73,''),(1019,4,74,0,73,'/c/a/caribinas_pairs_8mm.jpg'),(1020,4,75,0,73,'/c/a/caribinas_pairs_8mm.jpg'),(1021,4,76,0,73,'/c/a/caribinas_pairs_8mm.jpg'),(1022,4,92,0,73,''),(1023,4,96,0,73,''),(1024,4,98,0,73,'container2'),(1025,4,87,1,73,'8-mm-carabinas.html'),(1026,4,87,0,73,'8-mm-carabinas.html'),(1027,4,60,0,74,'Kids Army Military Style DPM Camouflage Assault Vest'),(1028,4,86,0,74,'kids-army-military-style-dpm-camouflage-assault-vest'),(1029,4,108,0,74,''),(1030,4,71,0,74,''),(1031,4,73,0,74,''),(1032,4,74,0,74,'/k/i/kids_tactical_assault_vest.jpg'),(1033,4,75,0,74,'/k/i/kids_tactical_assault_vest.jpg'),(1034,4,76,0,74,'/k/i/kids_tactical_assault_vest.jpg'),(1035,4,92,0,74,''),(1036,4,96,0,74,''),(1037,4,98,0,74,'container2'),(1038,4,87,1,74,'kids-army-military-style-dpm-camouflage-assault-vest.html'),(1039,4,87,0,74,'kids-army-military-style-dpm-camouflage-assault-vest.html'),(1040,4,60,0,75,'M1 Plastic Army Helmet with Rip-stop DPM Cover (Adult/Child)'),(1041,4,86,0,75,'m1-plastic-helmet-army-style-military-helmet-with-ripstop-dpm-cover'),(1042,4,108,0,75,''),(1043,4,71,0,75,''),(1044,4,73,0,75,''),(1045,4,74,0,75,'/m/1/m1_plastic_helmet_with_ripstop_cover_dpm.jpg'),(1046,4,75,0,75,'/m/1/m1_plastic_helmet_with_ripstop_cover_dpm.jpg'),(1047,4,76,0,75,'/m/1/m1_plastic_helmet_with_ripstop_cover_dpm.jpg'),(1048,4,92,0,75,''),(1049,4,96,0,75,''),(1050,4,98,0,75,'container2'),(1051,4,87,1,75,'m1-plastic-helmet-army-style-military-helmet-with-ripstop-dpm-cover.html'),(1052,4,87,0,75,'m1-plastic-helmet-army-style-military-helmet-with-ripstop-dpm-cover.html'),(1053,4,60,0,76,'ARMY Military Style  KIT BAGS'),(1054,4,86,0,76,'army-military-style-kit-bags-bags-punchbags-kitbags'),(1055,4,108,0,76,''),(1056,4,71,0,76,''),(1057,4,73,0,76,''),(1058,4,74,0,76,'/k/i/kitbags.jpg'),(1059,4,75,0,76,'/k/i/kitbags.jpg'),(1060,4,76,0,76,'/k/i/kitbags.jpg'),(1061,4,92,0,76,''),(1062,4,96,0,76,''),(1063,4,98,0,76,'container2'),(1064,4,87,1,76,'army-military-style-kit-bags-bags-punchbags-kitbags.html'),(1065,4,87,0,76,'army-military-style-kit-bags-bags-punchbags-kitbags.html'),(1066,4,60,0,77,'LARGE WEBBINGMilitary Army style  BACKPACK'),(1067,4,86,0,77,'large-webbing-military-army-style-backpack'),(1068,4,108,0,77,''),(1069,4,71,0,77,''),(1070,4,73,0,77,''),(1071,4,74,0,77,'/w/e/web_khaki.jpg'),(1072,4,75,0,77,'/w/e/web_khaki.jpg'),(1073,4,76,0,77,'/w/e/web_khaki.jpg'),(1074,4,92,0,77,''),(1075,4,96,0,77,''),(1076,4,98,0,77,'container2'),(1077,4,87,1,77,'large-webbing-military-army-style-backpack.html'),(1078,4,87,0,77,'large-webbing-military-army-style-backpack.html'),(1079,4,60,0,78,'Military Army Warm Headover'),(1080,4,86,0,78,'military-army-warm-headover'),(1081,4,108,0,78,''),(1082,4,71,0,78,''),(1083,4,73,0,78,''),(1084,4,74,0,78,'/o/l/olive_headovers.jpg'),(1085,4,75,0,78,'/o/l/olive_headovers.jpg'),(1086,4,76,0,78,'/o/l/olive_headovers.jpg'),(1087,4,92,0,78,''),(1088,4,96,0,78,''),(1089,4,98,0,78,'container2'),(1090,4,87,1,78,'military-army-warm-headover.html'),(1091,4,87,0,78,'military-army-warm-headover.html'),(1092,4,60,0,79,'SHEMAGH Military Army  SCARF'),(1093,4,86,0,79,'shemagh-army-military-scarf-scarves'),(1094,4,108,0,79,''),(1095,4,71,0,79,''),(1096,4,73,0,79,''),(1097,4,74,0,79,'/b/l/black-white_shemaghs.jpg'),(1098,4,75,0,79,'/b/l/black-white_shemaghs.jpg'),(1099,4,76,0,79,'/b/l/black-white_shemaghs.jpg'),(1100,4,92,0,79,''),(1101,4,96,0,79,''),(1102,4,98,0,79,'container2'),(1103,4,87,1,79,'shemagh-army-military-scarf-scarves.html'),(1104,4,87,0,79,'shemagh-army-military-scarf-scarves.html'),(1105,4,60,0,80,'RUBBER ENDS  WALKING POLE FEET or ferrules for walking hiking rambling poles or sticks'),(1106,4,86,0,80,'spare-walking-pole-ferrules-walking-rambling-hiking-feet'),(1107,4,108,0,80,''),(1108,4,71,0,80,''),(1109,4,73,0,80,''),(1110,4,74,0,80,'/p/o/pole_feet.jpg'),(1111,4,75,0,80,'/p/o/pole_feet.jpg'),(1112,4,76,0,80,'/p/o/pole_feet.jpg'),(1113,4,92,0,80,''),(1114,4,96,0,80,''),(1115,4,98,0,80,'container2'),(1116,4,87,1,80,'spare-walking-pole-ferrules-walking-rambling-hiking-feet.html'),(1117,4,87,0,80,'spare-walking-pole-ferrules-walking-rambling-hiking-feet.html'),(1118,4,60,0,81,'DPM Combat Military  Army-style Camoflage Jacket'),(1119,4,86,0,81,'dpm-combat-camouflage-army-military-jacket'),(1120,4,108,0,81,''),(1121,4,71,0,81,''),(1122,4,73,0,81,''),(1123,4,74,0,81,'/c/a/castle_combat_jkt.jpg'),(1124,4,75,0,81,'/c/a/castle_combat_jkt.jpg'),(1125,4,76,0,81,'/c/a/castle_combat_jkt.jpg'),(1126,4,92,0,81,''),(1127,4,96,0,81,''),(1128,4,98,0,81,'container2'),(1129,4,87,1,81,'dpm-combat-camouflage-army-military-jacket.html'),(1130,4,87,0,81,'dpm-combat-camouflage-army-military-jacket.html'),(1131,4,60,0,82,'Jack Pyke Hunters Waterproof & Breathable Shooting and Hunting Camoflage Jacket'),(1132,4,86,0,82,'jack-pyke-hunter-shooting-hunting-breathable-waterproof-jacket'),(1133,4,108,0,82,''),(1134,4,71,0,82,''),(1135,4,73,0,82,''),(1136,4,74,0,82,'/j/a/jack-pyke-hunter-jacket-english-oak-447-p_1_1.jpg'),(1137,4,75,0,82,'/j/a/jack-pyke-hunter-jacket-english-oak-447-p_1_1.jpg'),(1138,4,76,0,82,'/j/a/jack-pyke-hunter-jacket-english-oak-447-p_1_1.jpg'),(1139,4,92,0,82,''),(1140,4,96,0,82,''),(1141,4,98,0,82,'container2'),(1142,4,87,1,82,'jack-pyke-hunter-shooting-hunting-breathable-waterproof-jacket.html'),(1143,4,87,0,82,'jack-pyke-hunter-shooting-hunting-breathable-waterproof-jacket.html'),(1144,4,60,0,83,'WROXHAM MENS WARM BODYWARMERS'),(1145,4,86,0,83,'wroxham-mens-warm-insulated-bodywarmers'),(1146,4,108,0,83,''),(1147,4,71,0,83,''),(1148,4,73,0,83,''),(1149,4,74,0,83,'/w/r/wroxham_olive.jpg'),(1150,4,75,0,83,'/w/r/wroxham_olive.jpg'),(1151,4,76,0,83,'/w/r/wroxham_olive.jpg'),(1152,4,92,0,83,''),(1153,4,96,0,83,''),(1154,4,98,0,83,'container2'),(1155,4,87,1,83,'wroxham-mens-warm-insulated-bodywarmers.html'),(1156,4,87,0,83,'wroxham-mens-warm-insulated-bodywarmers.html'),(1157,4,101,0,61,''),(1158,4,102,0,61,''),(1159,4,103,0,61,''),(1160,4,101,0,62,''),(1161,4,102,0,62,''),(1162,4,103,0,62,''),(1163,4,101,0,83,''),(1164,4,102,0,83,''),(1165,4,103,0,83,''),(1166,4,101,0,82,''),(1167,4,102,0,82,''),(1168,4,103,0,82,''),(1169,4,101,0,58,''),(1170,4,102,0,58,''),(1171,4,103,0,58,''),(1172,4,102,0,25,''),(1173,4,103,0,25,''),(1174,4,101,0,25,''),(1175,4,60,0,84,'Kids Camouflage Combat Army Military Trousers Age 13/14'),(1176,4,86,0,84,'kids-camouflage-combat-army-military-dpm-trousers-age-v13-14'),(1177,4,108,0,84,''),(1178,4,71,0,84,''),(1179,4,73,0,84,''),(1180,4,74,0,84,'/k/i/kids_camo_trs_1.jpg'),(1181,4,75,0,84,'/k/i/kids_camo_trs_1.jpg'),(1182,4,76,0,84,'/k/i/kids_camo_trs_1.jpg'),(1183,4,92,0,84,''),(1184,4,96,0,84,''),(1185,4,98,0,84,'container2'),(1186,4,87,1,84,'kids-camouflage-combat-army-military-dpm-trousers-age-v13-14.html'),(1187,4,87,0,84,'kids-camouflage-combat-army-military-dpm-trousers-age-v13-14.html'),(1188,4,101,0,84,''),(1189,4,101,0,79,''),(1190,4,101,0,33,''),(1206,4,60,0,86,'Craghoppers Compact Lightweight Hiking Rambling  Walking Pole'),(1207,4,86,0,86,'craghoppers-compact-lightweight-rambling-hiking-walking-pole'),(1208,4,108,0,86,''),(1209,4,71,0,86,''),(1210,4,73,0,86,''),(1211,4,74,0,86,'/c/r/cragpole.jpg'),(1212,4,75,0,86,'/c/r/cragpole.jpg'),(1213,4,76,0,86,'/c/r/cragpole.jpg'),(1214,4,92,0,86,''),(1215,4,96,0,86,''),(1216,4,98,0,86,'container2'),(1217,4,87,1,86,'craghoppers-compact-lightweight-rambling-hiking-walking-pole.html'),(1218,4,87,0,86,'craghoppers-compact-lightweight-rambling-hiking-walking-pole.html'),(1219,4,101,0,86,''),(1220,4,102,0,86,''),(1221,4,103,0,86,''),(1222,4,101,0,77,''),(1223,4,102,0,77,''),(1224,4,103,0,77,''),(1225,4,101,0,76,''),(1226,4,102,0,76,''),(1227,4,103,0,76,''),(1228,4,101,0,74,''),(1229,4,102,0,74,''),(1230,4,103,0,74,''),(1231,4,101,0,73,''),(1232,4,102,0,73,''),(1233,4,103,0,73,''),(1234,4,101,0,71,''),(1235,4,102,0,71,''),(1236,4,103,0,71,''),(1237,4,101,0,70,''),(1238,4,102,0,70,''),(1239,4,103,0,70,''),(1240,4,101,0,57,''),(1241,4,102,0,57,''),(1242,4,103,0,57,''),(1243,4,101,0,56,''),(1244,4,102,0,56,''),(1245,4,103,0,56,''),(1246,4,101,0,55,''),(1247,4,102,0,55,''),(1248,4,103,0,55,''),(1249,4,101,0,54,''),(1250,4,102,0,54,''),(1251,4,103,0,54,''),(1252,4,101,0,53,''),(1253,4,102,0,53,''),(1254,4,103,0,53,''),(1255,4,60,0,87,'Craghoppers Ladies Warmlined Kiwi Stretch Trousers'),(1256,4,86,0,87,'craghoppers-ladies-warmlined-kiwi-stretch-trousers'),(1257,4,108,0,87,''),(1258,4,71,0,87,''),(1259,4,73,0,87,''),(1260,4,74,0,87,'/c/r/cragsladiesstretch.jpg'),(1261,4,75,0,87,'/c/r/cragsladiesstretch.jpg'),(1262,4,76,0,87,'/c/r/cragsladiesstretch.jpg'),(1263,4,92,0,87,''),(1264,4,96,0,87,''),(1265,4,98,0,87,'container2'),(1266,4,87,1,87,'craghoppers-ladies-warmlined-kiwi-stretch-trousers.html'),(1267,4,87,0,87,'craghoppers-ladies-warmlined-kiwi-stretch-trousers.html'),(1268,4,101,0,87,''),(1269,4,102,0,87,''),(1270,4,103,0,87,''),(1271,4,60,0,88,'Ladies Craghoppers  Warm Lined Kiwi Walking Trousers'),(1272,4,86,0,88,'ladies-craghoppers-warm-lined-kiwi-walking-trousers'),(1273,4,108,0,88,''),(1274,4,71,0,88,''),(1275,4,73,0,88,''),(1276,4,74,0,88,'/k/i/kiwiladieswlinedcocoa.jpg'),(1277,4,75,0,88,'/k/i/kiwiladieswlinedcocoa.jpg'),(1278,4,76,0,88,'/k/i/kiwiladieswlinedcocoa.jpg'),(1279,4,92,0,88,''),(1280,4,96,0,88,''),(1281,4,98,0,88,'container2'),(1282,4,87,1,88,'ladies-craghoppers-warm-lined-kiwi-walking-trousers.html'),(1283,4,87,0,88,'ladies-craghoppers-warm-lined-kiwi-walking-trousers.html'),(1284,4,101,0,88,''),(1285,4,102,0,88,''),(1286,4,103,0,88,''),(1300,4,60,0,90,'Camouflage Combat Army military DPM style army trousers'),(1301,4,86,0,90,'combat-style-army-military-dpm-trousers-pants-camo-95s-worktrousers-workpants'),(1302,4,108,0,90,''),(1303,4,71,0,90,''),(1304,4,73,0,90,''),(1305,4,74,0,90,'/c/a/castleblack901_2.jpg'),(1306,4,75,0,90,'/c/a/castleblack901_2.jpg'),(1307,4,76,0,90,'/c/a/castleblack901_2.jpg'),(1308,4,92,0,90,''),(1309,4,96,0,90,''),(1310,4,98,0,90,'container2'),(1311,4,87,1,90,'combat-style-army-military-dpm-trousers-pants-camo-95s-worktrousers-workpants.html'),(1312,4,87,0,90,'combat-style-army-military-dpm-trousers-pants-camo-95s-worktrousers-workpants.html'),(1313,4,101,0,90,''),(1314,4,102,0,90,''),(1315,4,103,0,90,''),(1316,4,101,0,48,''),(1317,4,102,0,48,''),(1318,4,103,0,48,''),(1319,4,101,0,47,''),(1320,4,102,0,47,''),(1321,4,103,0,47,''),(1322,4,101,0,46,''),(1323,4,102,0,46,''),(1324,4,103,0,46,''),(1325,4,101,0,45,''),(1326,4,102,0,45,''),(1327,4,103,0,45,''),(1328,4,101,0,44,''),(1329,4,102,0,44,''),(1330,4,103,0,44,''),(1331,4,101,0,43,''),(1332,4,102,0,43,''),(1333,4,103,0,43,''),(1334,4,101,0,42,''),(1335,4,102,0,42,''),(1336,4,103,0,42,''),(1337,4,101,0,39,''),(1338,4,102,0,39,''),(1339,4,103,0,39,''),(1340,4,101,0,40,''),(1341,4,102,0,40,''),(1342,4,103,0,40,''),(1343,4,101,0,38,''),(1344,4,102,0,38,''),(1345,4,103,0,38,''),(1346,4,101,0,37,''),(1347,4,102,0,37,''),(1348,4,103,0,37,''),(1349,4,101,0,36,''),(1350,4,102,0,36,''),(1351,4,103,0,36,''),(1352,4,101,0,35,''),(1353,4,102,0,35,''),(1354,4,103,0,35,''),(1355,4,101,0,34,''),(1356,4,102,0,34,''),(1357,4,103,0,34,''),(1358,4,101,0,29,''),(1359,4,102,0,29,''),(1360,4,103,0,29,''),(1361,4,101,0,14,''),(1362,4,102,0,14,''),(1363,4,103,0,14,''),(1364,4,101,0,21,''),(1365,4,102,0,21,''),(1366,4,103,0,21,''),(1367,4,101,0,18,''),(1368,4,102,0,18,''),(1369,4,103,0,18,''),(1370,4,101,0,12,''),(1371,4,102,0,12,''),(1372,4,103,0,12,''),(1373,4,101,0,13,''),(1374,4,102,0,13,''),(1375,4,103,0,13,''),(1376,4,101,0,11,''),(1377,4,102,0,11,''),(1378,4,103,0,11,''),(1379,4,101,0,6,''),(1380,4,102,0,6,''),(1381,4,103,0,6,''),(1382,4,101,0,65,''),(1383,4,102,0,65,''),(1384,4,103,0,65,''),(1385,4,101,0,64,''),(1386,4,102,0,64,''),(1387,4,103,0,64,''),(1388,4,101,0,60,''),(1389,4,102,0,60,''),(1390,4,101,0,59,''),(1391,4,102,0,59,''),(1392,4,103,0,59,''),(1393,4,101,0,52,NULL),(1394,4,102,0,52,NULL),(1395,4,103,0,52,NULL),(1396,4,101,0,51,''),(1397,4,102,0,51,''),(1398,4,103,0,51,''),(1399,4,101,0,49,''),(1400,4,102,0,49,''),(1401,4,103,0,49,''),(1402,4,101,0,50,''),(1403,4,102,0,50,''),(1404,4,103,0,50,''),(1405,4,101,0,75,''),(1406,4,102,0,75,''),(1407,4,103,0,75,''),(1408,4,101,0,78,''),(1409,4,102,0,78,''),(1410,4,103,0,78,''),(1411,4,101,0,72,''),(1412,4,102,0,72,''),(1413,4,103,0,72,''),(1414,4,102,0,84,''),(1415,4,103,0,84,''),(1416,4,60,0,91,'5 Colour Army military Camo Cream'),(1417,4,86,0,91,'5-colour-army-military-camo-cream'),(1418,4,108,0,91,''),(1419,4,71,0,91,''),(1420,4,73,0,91,''),(1421,4,74,0,91,'/5/_/5_col_camo_cream.jpg'),(1422,4,75,0,91,'/5/_/5_col_camo_cream.jpg'),(1423,4,76,0,91,'/5/_/5_col_camo_cream.jpg'),(1424,4,92,0,91,''),(1425,4,96,0,91,''),(1426,4,98,0,91,'container2'),(1427,4,101,0,91,''),(1428,4,102,0,91,''),(1429,4,103,0,91,''),(1430,4,87,1,91,'5-colour-army-military-camo-cream.html'),(1431,4,87,0,91,'5-colour-army-military-camo-cream.html'),(1432,4,101,0,81,''),(1433,4,102,0,81,''),(1434,4,103,0,81,''),(1435,4,60,0,92,'Childrens & Ladies  Dunlop Wellingtons'),(1436,4,86,0,92,'kids-ladies-dunlop-wellingtons'),(1437,4,108,0,92,''),(1438,4,71,0,92,''),(1439,4,73,0,92,''),(1440,4,74,0,92,'/k/i/kids_blk_wlly.jpg'),(1441,4,75,0,92,'/k/i/kids_blk_wlly.jpg'),(1442,4,76,0,92,'/k/i/kids_blk_wlly.jpg'),(1443,4,92,0,92,''),(1444,4,96,0,92,''),(1445,4,98,0,92,'container2'),(1446,4,87,1,92,'kids-ladies-dunlop-wellingtons.html'),(1447,4,87,0,92,'kids-ladies-dunlop-wellingtons.html'),(1448,4,101,0,92,''),(1449,4,102,0,92,''),(1450,4,103,0,92,''),(1451,4,60,0,93,'MensWarm  Seaboot Socks for wellingtons'),(1452,4,86,0,93,'mens-warm-woolmix-seaboot-socks-for-wellingtons'),(1453,4,108,0,93,''),(1454,4,71,0,93,''),(1455,4,73,0,93,''),(1456,4,74,0,93,'/s/e/seaboot.jpg'),(1457,4,75,0,93,'/s/e/seaboot.jpg'),(1458,4,76,0,93,'/s/e/seaboot.jpg'),(1459,4,92,0,93,''),(1460,4,96,0,93,''),(1461,4,98,0,93,'container2'),(1462,4,87,1,93,'mens-warm-woolmix-seaboot-socks-for-wellingtons.html'),(1463,4,87,0,93,'mens-warm-woolmix-seaboot-socks-for-wellingtons.html'),(1464,4,101,0,93,''),(1465,4,102,0,93,''),(1466,4,103,0,93,''),(1467,4,60,0,94,'Ladies Long Warm Wool Wellington Boot Socks'),(1468,4,86,0,94,'ladies-long-warm-wellington-boot-socks'),(1469,4,108,0,94,''),(1470,4,71,0,94,''),(1471,4,73,0,94,''),(1472,4,74,0,94,'/l/a/ladies_firewood_sox.jpg'),(1473,4,75,0,94,'/l/a/ladies_firewood_sox.jpg'),(1474,4,76,0,94,'/l/a/ladies_firewood_sox.jpg'),(1475,4,92,0,94,''),(1476,4,96,0,94,''),(1477,4,98,0,94,'container2'),(1478,4,87,1,94,'ladies-long-warm-wellington-boot-socks.html'),(1479,4,87,0,94,'ladies-long-warm-wellington-boot-socks.html'),(1480,4,101,0,94,''),(1481,4,102,0,94,''),(1482,4,103,0,94,''),(1483,4,60,0,95,'Sunncamp Heritage Family Caravan Super king size Sleeping Bag'),(1484,4,86,0,95,'sunncamp-heritage-family-caravan-super-king-size-sleeping-bag'),(1485,4,108,0,95,''),(1486,4,71,0,95,''),(1487,4,73,0,95,''),(1488,4,74,0,95,'/h/e/heritage_green.jpg'),(1489,4,75,0,95,'/h/e/heritage_green.jpg'),(1490,4,76,0,95,'/h/e/heritage_green.jpg'),(1491,4,92,0,95,''),(1492,4,96,0,95,''),(1493,4,98,0,95,'container2'),(1494,4,87,1,95,'sunncamp-heritage-family-caravan-super-king-size-sleeping-bag.html'),(1495,4,87,0,95,'sunncamp-heritage-family-caravan-super-king-size-sleeping-bag.html'),(1496,4,101,0,95,''),(1497,4,102,0,95,''),(1498,4,103,0,95,''),(1499,4,60,0,96,'Sunncamp Kingsize Sleeping Bags Symphony'),(1500,4,86,0,96,'sunncamp-kingsizecaravan-family-sleeping-bags-symphony'),(1501,4,108,0,96,''),(1502,4,71,0,96,''),(1503,4,73,0,96,''),(1504,4,74,0,96,'/s/y/symphonybag.jpg'),(1505,4,75,0,96,'/s/y/symphonybag.jpg'),(1506,4,76,0,96,'/s/y/symphonybag.jpg'),(1507,4,92,0,96,''),(1508,4,96,0,96,''),(1509,4,98,0,96,'container2'),(1510,4,87,1,96,'sunncamp-kingsizecaravan-family-sleeping-bags-symphony.html'),(1511,4,87,0,96,'sunncamp-kingsizecaravan-family-sleeping-bags-symphony.html'),(1512,4,101,0,96,''),(1513,4,102,0,96,''),(1514,4,103,0,96,''),(1515,4,60,0,97,'Voyager Lite 3 Season Sleeping Bag'),(1516,4,86,0,97,'voyager-lite-3-season-lightweight-sleeping-bag-backpacking-doe-camping-1500grams'),(1517,4,108,0,97,''),(1518,4,71,0,97,''),(1519,4,73,0,97,''),(1520,4,74,0,97,'/v/o/voyager_lite.jpg'),(1521,4,75,0,97,'/v/o/voyager_lite.jpg'),(1522,4,76,0,97,'/v/o/voyager_lite.jpg'),(1523,4,92,0,97,''),(1524,4,96,0,97,''),(1525,4,98,0,97,'container2'),(1526,4,87,1,97,'voyager-lite-3-season-lightweight-sleeping-bag-backpacking-doe-camping-1500grams.html'),(1527,4,87,0,97,'voyager-lite-3-season-lightweight-sleeping-bag-backpacking-doe-camping-1500grams.html'),(1528,4,101,0,97,''),(1529,4,102,0,97,''),(1530,4,103,0,97,''),(1531,4,60,0,98,'Snugpak 3 Season Sleeperlite Sleeping Bag'),(1532,4,86,0,98,'snugpak-3-season-sleeperlite-army-military-sleeping-bag-lightweight-1600grams-softie-doe-camping'),(1533,4,108,0,98,''),(1534,4,71,0,98,''),(1535,4,73,0,98,''),(1536,4,74,0,98,'/s/l/sleeperlitered.jpg'),(1537,4,75,0,98,'/b/l/black_sleeperlite.jpg'),(1538,4,76,0,98,'/s/l/sleeper_lite_olive_medium.jpg'),(1539,4,92,0,98,''),(1540,4,96,0,98,''),(1541,4,98,0,98,'container2'),(1542,4,87,1,98,'snugpak-3-season-sleeperlite-army-military-sleeping-bag-lightweight-1600grams-softie-doe-camping.html'),(1543,4,87,0,98,'snugpak-3-season-sleeperlite-army-military-sleeping-bag-lightweight-1600grams-softie-doe-camping.html'),(1544,4,101,0,98,''),(1545,4,102,0,98,''),(1546,4,103,0,98,''),(1547,4,60,0,99,'Regatta Ad Tech 35 Litre Lighweight Framed Rucksack'),(1548,4,86,0,99,'regatta-ad-tech-35-litre-lighweight-framed-rambling-hiking-rucksack'),(1549,4,108,0,99,''),(1550,4,71,0,99,''),(1551,4,73,0,99,''),(1552,4,74,0,99,'/a/d/adtech35blk.jpg'),(1553,4,75,0,99,'/a/d/adtech35blk.jpg'),(1554,4,76,0,99,'/a/d/adtech35blk.jpg'),(1555,4,92,0,99,''),(1556,4,96,0,99,''),(1557,4,98,0,99,'container2'),(1558,4,87,1,99,'regatta-ad-tech-35-litre-lighweight-framed-rambling-hiking-rucksack.html'),(1559,4,87,0,99,'regatta-ad-tech-35-litre-lighweight-framed-rambling-hiking-rucksack.html'),(1560,4,101,0,99,''),(1561,4,102,0,99,''),(1562,4,103,0,99,''),(1563,4,60,0,100,'Dog Tags'),(1564,4,86,0,100,'siver-army-militarty-army-dog-tags'),(1565,4,108,0,100,''),(1566,4,71,0,100,''),(1567,4,73,0,100,''),(1568,4,74,0,100,'/d/o/dogtags.jpg'),(1569,4,75,0,100,'/d/o/dogtags.jpg'),(1570,4,76,0,100,'/d/o/dogtags.jpg'),(1571,4,92,0,100,''),(1572,4,96,0,100,''),(1573,4,98,0,100,'container2'),(1574,4,87,1,100,'siver-army-militarty-army-dog-tags.html'),(1575,4,87,0,100,'siver-army-militarty-army-dog-tags.html'),(1576,4,101,0,100,''),(1577,4,102,0,100,''),(1578,4,103,0,100,''),(1579,4,60,0,101,'Highlander 20 Litre Dublin Daysack'),(1580,4,86,0,101,'highlander-20-litre-dublinrambling-hiking-daysack'),(1581,4,108,0,101,''),(1582,4,71,0,101,''),(1583,4,73,0,101,''),(1584,4,74,0,101,'/d/u/dublin20.jpg'),(1585,4,75,0,101,'/d/u/dublin20.jpg'),(1586,4,76,0,101,'/d/u/dublin20.jpg'),(1587,4,92,0,101,''),(1588,4,96,0,101,''),(1589,4,98,0,101,'container2'),(1590,4,87,1,101,'highlander-20-litre-dublinrambling-hiking-daysack.html'),(1591,4,87,0,101,'highlander-20-litre-dublinrambling-hiking-daysack.html'),(1592,4,101,0,101,''),(1593,4,102,0,101,''),(1594,4,103,0,101,''),(1595,4,60,0,102,'Proforce \"Forces\" daylite 10 litre Rucksack'),(1596,4,86,0,102,'proforce-forces-daylite-military-army-10-litre-rucksack'),(1597,4,108,0,102,''),(1598,4,71,0,102,''),(1599,4,73,0,102,''),(1600,4,74,0,102,'/k/o/kombat10.jpg'),(1601,4,75,0,102,'/k/o/kombat10.jpg'),(1602,4,76,0,102,'/k/o/kombat10.jpg'),(1603,4,92,0,102,''),(1604,4,96,0,102,''),(1605,4,98,0,102,'container2'),(1606,4,87,1,102,'proforce-forces-daylite-military-army-10-litre-rucksack.html'),(1607,4,87,0,102,'proforce-forces-daylite-military-army-10-litre-rucksack.html'),(1608,4,101,0,102,''),(1609,4,102,0,102,''),(1610,4,103,0,102,''),(1611,4,60,0,103,'Proforce 44 Litre Forces Rucksack In Camouflage or Olive Green'),(1612,4,86,0,103,'proforce-44-litre-forces-dpm-camouflague-olive-rucksack'),(1613,4,108,0,103,''),(1614,4,71,0,103,''),(1615,4,73,0,103,''),(1616,4,74,0,103,'/f/o/forces44camo.jpg'),(1617,4,75,0,103,'/f/o/forces44camo.jpg'),(1618,4,76,0,103,'/f/o/forces44camo.jpg'),(1619,4,92,0,103,''),(1620,4,96,0,103,''),(1621,4,98,0,103,'container2'),(1622,4,87,1,103,'proforce-44-litre-forces-dpm-camouflague-olive-rucksack.html'),(1623,4,87,0,103,'proforce-44-litre-forces-dpm-camouflague-olive-rucksack.html'),(1624,4,101,0,103,''),(1625,4,102,0,103,''),(1626,4,103,0,103,''),(1627,4,60,0,104,'Highlander 66 litre Rambler Rucksacks'),(1628,4,86,0,104,'highlander-66-litre-rambler-doe-hiking-rambling-backpacking-rucksacks'),(1629,4,108,0,104,''),(1630,4,71,0,104,''),(1631,4,73,0,104,''),(1632,4,74,0,104,'/r/a/rambler66.jpg'),(1633,4,75,0,104,'/r/a/rambler66.jpg'),(1634,4,76,0,104,'/r/a/rambler66.jpg'),(1635,4,92,0,104,''),(1636,4,96,0,104,''),(1637,4,98,0,104,'container2'),(1638,4,87,1,104,'highlander-66-litre-rambler-doe-hiking-rambling-backpacking-rucksacks.html'),(1639,4,87,0,104,'highlander-66-litre-rambler-doe-hiking-rambling-backpacking-rucksacks.html'),(1640,4,101,0,104,''),(1641,4,102,0,104,''),(1642,4,103,0,104,''),(1643,4,60,0,105,'Gelert Wilderness 35 Litre Rucksacks'),(1644,4,86,0,105,'gelert-wilderness-walking-hiking-rambling-35-litre-rucksacks'),(1645,4,108,0,105,''),(1646,4,71,0,105,''),(1647,4,73,0,105,''),(1648,4,74,0,105,'/n/e/new_gel_35.jpg'),(1649,4,75,0,105,'/n/e/new_gel_35.jpg'),(1650,4,76,0,105,'/n/e/new_gel_35.jpg'),(1651,4,92,0,105,''),(1652,4,96,0,105,''),(1653,4,98,0,105,'container2'),(1654,4,87,1,105,'gelert-wilderness-walking-hiking-rambling-35-litre-rucksacks.html'),(1655,4,87,0,105,'gelert-wilderness-walking-hiking-rambling-35-litre-rucksacks.html'),(1656,4,101,0,105,''),(1657,4,102,0,105,''),(1658,4,103,0,105,''),(1659,4,102,0,33,''),(1660,4,103,0,33,''),(1661,4,60,0,106,'Military Style Army Black Beret'),(1662,4,86,0,106,'military-style-army-black-beret'),(1663,4,108,0,106,''),(1664,4,71,0,106,''),(1665,4,73,0,106,''),(1666,4,74,0,106,'/b/e/beret.jpg'),(1667,4,75,0,106,'/b/e/beret.jpg'),(1668,4,76,0,106,'/b/e/beret.jpg'),(1669,4,92,0,106,''),(1670,4,96,0,106,''),(1671,4,98,0,106,'container2'),(1672,4,87,1,106,'military-style-army-black-beret.html'),(1673,4,87,0,106,'military-style-army-black-beret.html'),(1674,4,101,0,106,''),(1675,4,102,0,106,''),(1676,4,103,0,106,''),(1677,4,60,0,107,'Woodland Camouflague Nets'),(1678,4,86,0,107,'woodland-camouflague-shooting-hunting-nets'),(1679,4,108,0,107,''),(1680,4,71,0,107,''),(1681,4,73,0,107,''),(1682,4,74,0,107,'/c/a/camonet.jpg'),(1683,4,75,0,107,'/c/a/camonet.jpg'),(1684,4,76,0,107,'/c/a/camonet.jpg'),(1685,4,92,0,107,''),(1686,4,96,0,107,''),(1687,4,98,0,107,'container2'),(1688,4,87,1,107,'woodland-camouflague-shooting-hunting-nets.html'),(1689,4,87,0,107,'woodland-camouflague-shooting-hunting-nets.html'),(1690,4,101,0,107,''),(1691,4,102,0,107,''),(1692,4,103,0,107,''),(1693,4,60,0,108,'Kids Camouflage DPM Army T-Shirt'),(1694,4,86,0,108,'kids-camouflage-dpm-army-t-shirt-camo-soldierstshirt'),(1695,4,108,0,108,''),(1696,4,71,0,108,''),(1697,4,73,0,108,''),(1698,4,74,0,108,'/c/a/camotshirt_1.jpg'),(1699,4,75,0,108,'/c/a/camotshirt_1.jpg'),(1700,4,76,0,108,'/c/a/camotshirt_1.jpg'),(1701,4,92,0,108,''),(1702,4,96,0,108,''),(1703,4,98,0,108,'container2'),(1704,4,87,1,108,'kids-camouflage-dpm-army-t-shirt-camo-soldierstshirt.html'),(1705,4,87,0,108,'kids-camouflage-dpm-army-t-shirt-camo-soldierstshirt.html'),(1706,4,101,0,108,''),(1707,4,102,0,108,''),(1708,4,103,0,108,''),(1709,4,60,0,109,'Knitted Thinsulate Warm  Lined Peaked Hat'),(1710,4,86,0,109,'knitted-thinsulatewarm-lined-peaked-hat'),(1711,4,108,0,109,''),(1712,4,71,0,109,''),(1713,4,73,0,109,''),(1714,4,74,0,109,'/p/e/peaked_thinhat_1.jpg'),(1715,4,75,0,109,'/p/e/peaked_thinhat_1.jpg'),(1716,4,76,0,109,'/p/e/peaked_thinhat_1.jpg'),(1717,4,92,0,109,''),(1718,4,96,0,109,''),(1719,4,98,0,109,'container2'),(1720,4,87,1,109,'knitted-thinsulatewarm-lined-peaked-hat.html'),(1721,4,87,0,109,'knitted-thinsulatewarm-lined-peaked-hat.html'),(1722,4,101,0,109,''),(1723,4,102,0,109,''),(1724,4,103,0,109,''),(1725,4,101,0,41,''),(1726,4,102,0,41,''),(1727,4,103,0,41,''),(1728,4,101,0,80,''),(1729,4,102,0,80,''),(1730,4,103,0,80,''),(1731,4,102,0,79,''),(1732,4,103,0,79,''),(1733,4,101,0,63,''),(1734,4,102,0,63,''),(1735,4,103,0,63,''),(1736,4,60,0,110,'Highlander Aversa20 Litre Daypack Rucksack '),(1737,4,86,0,110,'highlander-aversa20-litre-daypack-rucksack'),(1738,4,108,0,110,''),(1739,4,71,0,110,''),(1740,4,73,0,110,''),(1741,4,74,0,110,'/a/v/aversa.jpg'),(1742,4,75,0,110,'/a/v/aversa.jpg'),(1743,4,76,0,110,'/a/v/aversa.jpg'),(1744,4,92,0,110,''),(1745,4,96,0,110,''),(1746,4,98,0,110,'container2'),(1747,4,87,1,110,'highlander-aversa20-litre-daypack-rucksack.html'),(1748,4,87,0,110,'highlander-aversa20-litre-daypack-rucksack.html'),(1749,4,101,0,110,''),(1750,4,102,0,110,''),(1751,4,103,0,110,''),(1752,4,60,0,111,'Highlander Urban Seeker 20 Litre Daysack Rucksack With Mesh Padded Back'),(1753,4,86,0,111,'highlander-urban-seeker-20-litre-daysack-rucksack-with-mesh-padded-back'),(1754,4,108,0,111,''),(1755,4,71,0,111,''),(1756,4,73,0,111,''),(1757,4,74,0,111,'/u/r/urban_seeker_red_1.jpg'),(1758,4,75,0,111,'/u/r/urban_seeker_red_1.jpg'),(1759,4,76,0,111,'/u/r/urban_seeker_red_1.jpg'),(1760,4,92,0,111,''),(1761,4,96,0,111,''),(1762,4,98,0,111,'container2'),(1763,4,87,1,111,'highlander-urban-seeker-20-litre-daysack-rucksack-with-mesh-padded-back.html'),(1764,4,87,0,111,'highlander-urban-seeker-20-litre-daysack-rucksack-with-mesh-padded-back.html'),(1765,4,101,0,111,''),(1766,4,102,0,111,''),(1767,4,103,0,111,''),(1785,4,60,0,113,'Regatta Landtrek 65 Litre Rucksack , Ideal for Duke Of Edinburgh Awards'),(1786,4,86,0,113,'regatta-landtrek-65-litre-rucksack-ideal-for-duke-of-edinburgh-awards-haversack-65litre-doe'),(1787,4,108,0,113,''),(1788,4,71,0,113,''),(1789,4,73,0,113,''),(1790,4,74,0,113,'/l/a/landtrekka_65.jpg'),(1791,4,75,0,113,'/l/a/landtrekka_65.jpg'),(1792,4,76,0,113,'/l/a/landtrekka_65.jpg'),(1793,4,92,0,113,''),(1794,4,96,0,113,''),(1795,4,98,0,113,'container2'),(1796,4,87,1,113,'regatta-landtrek-65-litre-rucksack-ideal-for-duke-of-edinburgh-awards-haversack-65litre-doe.html'),(1797,4,87,0,113,'regatta-landtrek-65-litre-rucksack-ideal-for-duke-of-edinburgh-awards-haversack-65litre-doe.html'),(1798,4,101,0,113,''),(1799,4,102,0,113,''),(1800,4,103,0,113,''),(1801,4,60,0,114,'Nikwax Footwear Cleaning Gel'),(1802,4,86,0,114,'nikwax-footwear-cleaning-gel-walking-boots-hiking-rambling'),(1803,4,108,0,114,''),(1804,4,71,0,114,''),(1805,4,73,0,114,''),(1806,4,74,0,114,'/c/l/cleaning_gel.jpg'),(1807,4,75,0,114,'/c/l/cleaning_gel.jpg'),(1808,4,76,0,114,'/c/l/cleaning_gel.jpg'),(1809,4,92,0,114,''),(1810,4,96,0,114,''),(1811,4,98,0,114,'container2'),(1812,4,87,1,114,'nikwax-footwear-cleaning-gel-walking-boots-hiking-rambling.html'),(1813,4,87,0,114,'nikwax-footwear-cleaning-gel-walking-boots-hiking-rambling.html'),(1814,4,101,0,114,''),(1815,4,102,0,114,''),(1816,4,103,0,114,''),(1817,4,60,0,115,'Camouflague DPM Water Bottle'),(1818,4,86,0,115,'camouflage-dpm-water-bottle'),(1819,4,108,0,115,''),(1820,4,71,0,115,''),(1821,4,73,0,115,''),(1822,4,74,0,115,'/c/a/camo_waterbottle.jpg'),(1823,4,75,0,115,'/c/a/camo_waterbottle.jpg'),(1824,4,76,0,115,'/c/a/camo_waterbottle.jpg'),(1825,4,92,0,115,''),(1826,4,96,0,115,''),(1827,4,98,0,115,'container2'),(1828,4,87,1,115,'camouflage-dpm-water-bottle.html'),(1829,4,87,0,115,'camouflage-dpm-water-bottle.html'),(1830,4,101,0,115,''),(1831,4,102,0,115,''),(1832,4,103,0,115,''),(1833,4,60,0,116,'Gelert  Performance Hydration Pouch 2.0 Litre.'),(1834,4,86,0,116,'water-pouch-hydration-pouch-on-demand'),(1835,4,108,0,116,''),(1836,4,71,0,116,''),(1837,4,73,0,116,''),(1838,4,74,0,116,'/g/e/gelert_hydration.jpg'),(1839,4,75,0,116,'/g/e/gelert_hydration.jpg'),(1840,4,76,0,116,'/g/e/gelert_hydration.jpg'),(1841,4,92,0,116,''),(1842,4,96,0,116,''),(1843,4,98,0,116,'container2'),(1844,4,87,1,116,'water-pouch-hydration-pouch-on-demand.html'),(1845,4,87,0,116,'water-pouch-hydration-pouch-on-demand.html'),(1846,4,101,0,116,''),(1847,4,102,0,116,''),(1848,4,103,0,116,''),(1865,4,60,0,118,'Gelert Horizon 65L Rucksac ideal for the Duke of Edinburgh Awards'),(1866,4,86,0,118,'65litre-rucksack-dukeofedinburghsaward-interrailing-walking'),(1867,4,108,0,118,''),(1868,4,71,0,118,''),(1869,4,73,0,118,''),(1870,4,74,0,118,'/h/o/horizon_green.jpg'),(1871,4,75,0,118,'/h/o/horizon_green.jpg'),(1872,4,76,0,118,'/h/o/horizon_green.jpg'),(1873,4,92,0,118,''),(1874,4,96,0,118,''),(1875,4,98,0,118,'container2'),(1876,4,87,1,118,'65litre-rucksack-dukeofedinburghsaward-interrailing-walking.html'),(1877,4,87,0,118,'65litre-rucksack-dukeofedinburghsaward-interrailing-walking.html'),(1878,4,101,0,118,''),(1879,4,102,0,118,''),(1880,4,103,0,118,''),(1881,4,60,0,119,'Gelert Compact Double Burner and Grill includes regulator and Hose.'),(1882,4,86,0,119,'gelert-compactdouble-burner-and-grill-campingstove-cooker-camping'),(1883,4,108,0,119,''),(1884,4,71,0,119,''),(1885,4,73,0,119,''),(1886,4,74,0,119,'/g/e/gelert_compact_grill.jpg'),(1887,4,75,0,119,'/g/e/gelert_compact_grill.jpg'),(1888,4,76,0,119,'/g/e/gelert_compact_grill.jpg'),(1889,4,92,0,119,''),(1890,4,96,0,119,''),(1891,4,98,0,119,'container2'),(1892,4,87,1,119,'gelert-compactdouble-burner-and-grill-campingstove-cooker-camping.html'),(1893,4,87,0,119,'gelert-compactdouble-burner-and-grill-campingstove-cooker-camping.html'),(1894,4,101,0,119,''),(1895,4,102,0,119,''),(1896,4,103,0,119,''),(1897,4,60,0,120,'Pack of 12 Tent Pegs for Camping and Festivals'),(1898,4,86,0,120,'tentpegs-camping-festivals-steel-pegs-sparetentpegs'),(1899,4,108,0,120,''),(1900,4,71,0,120,''),(1901,4,73,0,120,''),(1902,4,74,0,120,'/p/m/pmstentpegs.jpg'),(1903,4,75,0,120,'/p/m/pmstentpegs.jpg'),(1904,4,76,0,120,'/p/m/pmstentpegs.jpg'),(1905,4,92,0,120,''),(1906,4,96,0,120,''),(1907,4,98,0,120,'container2'),(1908,4,87,1,120,'tentpegs-camping-festivals-steel-pegs-sparetentpegs.html'),(1909,4,87,0,120,'tentpegs-camping-festivals-steel-pegs-sparetentpegs.html'),(1910,4,101,0,120,''),(1911,4,102,0,120,''),(1912,4,103,0,120,''),(1913,4,60,0,121,'Festival Emergency Waterproof Ponchos'),(1914,4,86,0,121,'festivalwaterproofs-ponchos-lightweight-compact-onesize-waterproofs'),(1915,4,108,0,121,''),(1916,4,71,0,121,''),(1917,4,73,0,121,''),(1918,4,74,0,121,'/e/m/emergencyponchos.jpg'),(1919,4,75,0,121,'/e/m/emergencyponchos.jpg'),(1920,4,76,0,121,'/e/m/emergencyponchos.jpg'),(1921,4,92,0,121,''),(1922,4,96,0,121,''),(1923,4,98,0,121,'container2'),(1924,4,87,1,121,'festivalwaterproofs-ponchos-lightweight-compact-onesize-waterproofs.html'),(1925,4,87,0,121,'festivalwaterproofs-ponchos-lightweight-compact-onesize-waterproofs.html'),(1926,4,101,0,121,''),(1927,4,102,0,121,''),(1928,4,103,0,121,''),(1929,4,60,0,122,'Festival Army Style Hexy Stove Lightweight.'),(1930,4,86,0,122,'festivalcookers-hexystoves-hexycookers-hexicookers-hexistoves-camping-military-army'),(1931,4,108,0,122,''),(1932,4,71,0,122,''),(1933,4,73,0,122,''),(1934,4,74,0,122,'/h/e/hexy_stove.jpg'),(1935,4,75,0,122,'/h/e/hexy_stove.jpg'),(1936,4,76,0,122,'/h/e/hexy_stove.jpg'),(1937,4,92,0,122,''),(1938,4,96,0,122,''),(1939,4,98,0,122,'container2'),(1940,4,87,1,122,'festivalcookers-hexystoves-hexycookers-hexicookers-hexistoves-camping-military-army.html'),(1941,4,87,0,122,'festivalcookers-hexystoves-hexycookers-hexicookers-hexistoves-camping-military-army.html'),(1942,4,101,0,122,''),(1943,4,102,0,122,''),(1944,4,103,0,122,''),(1945,4,60,0,123,'Hexi Stove Refills for camping&festivals'),(1946,4,86,0,123,'hexi-refills-tablets-hexy-armycooker-tablets-hexi'),(1947,4,108,0,123,''),(1948,4,71,0,123,''),(1949,4,73,0,123,''),(1950,4,74,0,123,'/h/e/hexyrefills.jpg'),(1951,4,75,0,123,'/h/e/hexyrefills.jpg'),(1952,4,76,0,123,'/h/e/hexyrefills.jpg'),(1953,4,92,0,123,''),(1954,4,96,0,123,''),(1955,4,98,0,123,'container2'),(1956,4,87,1,123,'hexi-refills-tablets-hexy-armycooker-tablets-hexi.html'),(1957,4,87,0,123,'hexi-refills-tablets-hexy-armycooker-tablets-hexi.html'),(1958,4,101,0,123,''),(1959,4,102,0,123,''),(1960,4,103,0,123,''),(1961,4,60,0,124,'Craghoppers lightweight compact Walking/hiking pole.'),(1962,4,86,0,124,'craghoppers-walkingpole-hikingstick-compact-corkhandle'),(1963,4,108,0,124,''),(1964,4,71,0,124,''),(1965,4,73,0,124,''),(1966,4,74,0,124,'/c/o/compact_ploe.jpg'),(1967,4,75,0,124,'/c/o/compact_ploe.jpg'),(1968,4,76,0,124,'/c/o/compact_ploe.jpg'),(1969,4,92,0,124,''),(1970,4,96,0,124,''),(1971,4,98,0,124,'container2'),(1972,4,87,1,124,'craghoppers-walkingpole-hikingstick-compact-corkhandle.html'),(1973,4,87,0,124,'craghoppers-walkingpole-hikingstick-compact-corkhandle.html'),(1974,4,101,0,124,''),(1975,4,102,0,124,''),(1976,4,103,0,124,''),(1977,4,60,0,125,'Craghoppers Lightweight robust walking pole with anti shock absorber'),(1978,4,86,0,125,'craghoppers-walkingpole-hikingstick-antishockabsorber-lightweight'),(1979,4,108,0,125,''),(1980,4,71,0,125,''),(1981,4,73,0,125,''),(1982,4,74,0,125,'/c/r/crag_adventure_pole.jpg'),(1983,4,75,0,125,'/c/r/crag_adventure_pole.jpg'),(1984,4,76,0,125,'/c/r/crag_adventure_pole.jpg'),(1985,4,92,0,125,''),(1986,4,96,0,125,''),(1987,4,98,0,125,'container2'),(1988,4,87,1,125,'craghoppers-walkingpole-hikingstick-antishockabsorber-lightweight.html'),(1989,4,87,0,125,'craghoppers-walkingpole-hikingstick-antishockabsorber-lightweight.html'),(1990,4,101,0,125,''),(1991,4,102,0,125,''),(1992,4,103,0,125,''),(1993,4,60,0,126,'Sleeping Mat karrimatt bedroll rollmat'),(1994,4,86,0,126,'sleeping-mat-karrimatt-bedroll-rollmat'),(1995,4,108,0,126,''),(1996,4,71,0,126,''),(1997,4,73,0,126,''),(1998,4,74,0,126,'/n/e/new_muti_mat.jpg'),(1999,4,75,0,126,'/n/e/new_muti_mat.jpg'),(2000,4,76,0,126,'/n/e/new_muti_mat.jpg'),(2001,4,92,0,126,''),(2002,4,96,0,126,''),(2003,4,98,0,126,'container2'),(2004,4,87,1,126,'sleeping-mat-karrimatt-bedroll-rollmat.html'),(2005,4,87,0,126,'sleeping-mat-karrimatt-bedroll-rollmat.html'),(2006,4,101,0,126,''),(2007,4,102,0,126,''),(2008,4,103,0,126,''),(2009,4,60,0,127,'Gelert Wilderness 65 Litre rucksack for DOE awards'),(2010,4,86,0,127,'gelert-wilderness-65-litre-rucksack-for-doe-awards'),(2011,4,108,0,127,''),(2012,4,71,0,127,''),(2013,4,73,0,127,''),(2014,4,74,0,127,'/w/i/wilderness65.jpg'),(2015,4,75,0,127,'/w/i/wilderness65.jpg'),(2016,4,76,0,127,'/w/i/wilderness65.jpg'),(2017,4,92,0,127,''),(2018,4,96,0,127,''),(2019,4,98,0,127,'container2'),(2020,4,87,1,127,'gelert-wilderness-65-litre-rucksack-for-doe-awards.html'),(2021,4,87,0,127,'gelert-wilderness-65-litre-rucksack-for-doe-awards.html'),(2022,4,101,0,127,''),(2023,4,102,0,127,''),(2024,4,103,0,127,''),(2025,4,60,0,128,'Highlander Zing 20 Litre Rucksacksdaysacks'),(2026,4,86,0,128,'highlander-zing-20-litre-rucksacksdaysacks'),(2027,4,108,0,128,''),(2028,4,71,0,128,''),(2029,4,73,0,128,''),(2030,4,74,0,128,'/z/i/zing.jpg'),(2031,4,75,0,128,'/z/i/zing.jpg'),(2032,4,76,0,128,'/z/i/zing.jpg'),(2033,4,92,0,128,''),(2034,4,96,0,128,''),(2035,4,98,0,128,'container2'),(2036,4,87,1,128,'highlander-zing-20-litre-rucksacksdaysacks.html'),(2037,4,87,0,128,'highlander-zing-20-litre-rucksacksdaysacks.html'),(2038,4,101,0,128,''),(2039,4,102,0,128,''),(2040,4,103,0,128,''),(2041,4,60,0,129,'Gelert nero 25 Litre Daysack rucksack'),(2042,4,86,0,129,'gelert-nero-25-litre-daysack-rucksack'),(2043,4,108,0,129,''),(2044,4,71,0,129,''),(2045,4,73,0,129,''),(2046,4,74,0,129,'/n/e/nero_black.jpg'),(2047,4,75,0,129,'/n/e/nero_black.jpg'),(2048,4,76,0,129,'/n/e/nero_black.jpg'),(2049,4,92,0,129,''),(2050,4,96,0,129,''),(2051,4,98,0,129,'container2'),(2052,4,87,1,129,'gelert-nero-25-litre-daysack-rucksack.html'),(2053,4,87,0,129,'gelert-nero-25-litre-daysack-rucksack.html'),(2054,4,101,0,129,''),(2055,4,102,0,129,''),(2056,4,103,0,129,''),(2057,4,60,0,130,'Commando Compact Stove fits in webbing '),(2058,4,86,0,130,'commando-compact-stove-fits-in-webbing'),(2059,4,108,0,130,''),(2060,4,71,0,130,''),(2061,4,73,0,130,''),(2062,4,74,0,130,'/c/o/comact_stove.jpg'),(2063,4,75,0,130,'/c/o/comact_stove.jpg'),(2064,4,76,0,130,'/c/o/comact_stove.jpg'),(2065,4,92,0,130,''),(2066,4,96,0,130,''),(2067,4,98,0,130,'container2'),(2068,4,87,1,130,'commando-compact-stove-fits-in-webbing.html'),(2069,4,87,0,130,'commando-compact-stove-fits-in-webbing.html'),(2070,4,101,0,130,''),(2071,4,102,0,130,''),(2072,4,103,0,130,''),(2073,4,60,0,131,'Kids Army Outfit, camosuit ,Tee Shirt -trousers and cap.'),(2074,4,86,0,131,'kids-army-outfit-tee-shirt-trousers-and-cap'),(2075,4,108,0,131,''),(2076,4,71,0,131,''),(2077,4,73,0,131,''),(2078,4,74,0,131,'/k/i/kidsarmykit1.jpg'),(2079,4,75,0,131,'/k/i/kidsarmykit1.jpg'),(2080,4,76,0,131,'/k/i/kidsarmykit1.jpg'),(2081,4,92,0,131,''),(2082,4,96,0,131,''),(2083,4,98,0,131,'container2'),(2084,4,87,1,131,'kids-army-outfit-tee-shirt-trousers-and-cap.html'),(2085,4,87,0,131,'kids-army-outfit-tee-shirt-trousers-and-cap.html'),(2086,4,101,0,131,''),(2087,4,102,0,131,''),(2088,4,103,0,131,''),(2089,4,60,0,132,'ice and snow grippers'),(2090,4,86,0,132,'icegrippers-snowchains-yaktracks-crampons'),(2091,4,126,0,132,NULL),(2092,4,127,0,132,'2'),(2093,4,128,0,132,'4'),(2094,4,71,0,132,NULL),(2095,4,73,0,132,NULL),(2096,4,74,0,132,'/i/c/ice_grippers.jpg'),(2097,4,75,0,132,'/i/c/ice_grippers.jpg'),(2098,4,76,0,132,'/i/c/ice_grippers.jpg'),(2099,4,92,0,132,NULL),(2100,4,96,0,132,NULL),(2101,4,98,0,132,'container2'),(2102,4,108,0,132,NULL),(2103,4,87,1,132,'icegrippers-snowchains-yaktracks-crampons.html'),(2104,4,87,0,132,'icegrippers-snowchains-yaktracks-crampons.html'),(2105,4,101,0,132,NULL),(2106,4,102,0,132,NULL),(2107,4,103,0,132,NULL),(2108,4,126,0,37,NULL),(2109,4,127,0,37,'2'),(2110,4,128,0,37,'4'),(2111,4,126,0,36,NULL),(2112,4,127,0,36,'2'),(2113,4,128,0,36,'4'),(2114,4,126,0,48,NULL),(2115,4,127,0,48,'2'),(2116,4,128,0,48,'4'),(2117,4,126,0,25,NULL),(2118,4,127,0,25,'2'),(2119,4,128,0,25,'4'),(2120,4,126,0,24,NULL),(2121,4,127,0,24,'2'),(2122,4,128,0,24,'4'),(2123,4,126,0,87,NULL),(2124,4,127,0,87,'2'),(2125,4,128,0,87,'4'),(2126,4,60,0,133,'cub scout sweatshirt dark green  '),(2127,4,86,0,133,'cub-scout-scout-sweatshirt-dark-green'),(2128,4,126,0,133,NULL),(2129,4,127,0,133,'2'),(2130,4,128,0,133,'4'),(2131,4,71,0,133,NULL),(2132,4,73,0,133,NULL),(2133,4,74,0,133,'/c/u/cub-sweat__53962_std.jpg'),(2134,4,75,0,133,'/c/u/cub-sweat__53962_std.jpg'),(2135,4,76,0,133,'/c/u/cub-sweat__53962_std.jpg'),(2136,4,92,0,133,NULL),(2137,4,96,0,133,NULL),(2138,4,98,0,133,'container2'),(2139,4,108,0,133,NULL),(2140,4,87,1,133,'cub-scout-scout-sweatshirt-dark-green.html'),(2141,4,87,0,133,'cub-scout-scout-sweatshirt-dark-green.html'),(2142,4,101,0,133,NULL),(2143,4,102,0,133,NULL),(2144,4,103,0,133,NULL),(2145,4,126,0,3,NULL),(2146,4,127,0,3,'2'),(2147,4,128,0,3,'4'),(2148,4,126,0,47,NULL),(2149,4,127,0,47,'2'),(2150,4,128,0,47,'4'),(2151,4,126,0,46,NULL),(2152,4,127,0,46,'2'),(2153,4,128,0,46,'4'),(2154,4,126,0,41,NULL),(2155,4,127,0,41,'2'),(2156,4,128,0,41,'4'),(2157,4,126,0,70,NULL),(2158,4,127,0,70,'2'),(2159,4,128,0,70,'4'),(2160,4,126,0,66,NULL),(2161,4,127,0,66,'2'),(2162,4,128,0,66,'4'),(2163,4,126,0,65,NULL),(2164,4,127,0,65,'2'),(2165,4,128,0,65,'4'),(2166,4,126,0,61,NULL),(2167,4,127,0,61,'2'),(2168,4,128,0,61,'4'),(2169,4,126,0,60,NULL),(2170,4,127,0,60,'2'),(2171,4,128,0,60,'4'),(2172,4,126,0,71,NULL),(2173,4,127,0,71,'2'),(2174,4,128,0,71,'4'),(2175,4,126,0,83,NULL),(2176,4,127,0,83,'2'),(2177,4,128,0,83,'4'),(2178,4,126,0,79,NULL),(2179,4,127,0,79,'2'),(2180,4,128,0,79,'4'),(2181,4,126,0,75,NULL),(2182,4,127,0,75,'2'),(2183,4,128,0,75,'4'),(2184,4,126,0,100,NULL),(2185,4,127,0,100,'2'),(2186,4,128,0,100,'4'),(2187,4,60,0,134,'Cub Scout polo shirt'),(2188,4,86,0,134,'cub-scout-polo-shirt-poloshirt'),(2189,4,126,0,134,NULL),(2190,4,127,0,134,'2'),(2191,4,128,0,134,'4'),(2192,4,71,0,134,NULL),(2193,4,73,0,134,NULL),(2194,4,74,0,134,'/c/u/cub_polo_shirt_purple_trim.jpg'),(2195,4,75,0,134,'/c/u/cub_polo_shirt_purple_trim.jpg'),(2196,4,76,0,134,'/c/u/cub_polo_shirt_purple_trim.jpg'),(2197,4,92,0,134,NULL),(2198,4,96,0,134,NULL),(2199,4,98,0,134,'container2'),(2200,4,108,0,134,NULL),(2201,4,87,1,134,'cub-scout-polo-shirt-poloshirt.html'),(2202,4,87,0,134,'cub-scout-polo-shirt-poloshirt.html'),(2203,4,101,0,134,NULL),(2204,4,102,0,134,NULL),(2205,4,103,0,134,NULL),(2206,4,60,0,135,'Beaver Sweatshirt with purple trim'),(2207,4,86,0,135,'beaver-sweatshirt-purpletrim'),(2208,4,126,0,135,NULL),(2209,4,127,0,135,'2'),(2210,4,128,0,135,'4'),(2211,4,71,0,135,NULL),(2212,4,73,0,135,NULL),(2213,4,74,0,135,'/b/e/beaversweat.jpg'),(2214,4,75,0,135,'/b/e/beaversweat.jpg'),(2215,4,76,0,135,'/b/e/beaversweat.jpg'),(2216,4,92,0,135,NULL),(2217,4,96,0,135,NULL),(2218,4,98,0,135,'container2'),(2219,4,108,0,135,NULL),(2220,4,87,1,135,'beaver-sweatshirt-purpletrim.html'),(2221,4,87,0,135,'beaver-sweatshirt-purpletrim.html'),(2222,4,101,0,135,NULL),(2223,4,102,0,135,NULL),(2224,4,103,0,135,NULL),(2225,4,60,0,136,'Beaver Purple trimmed polo shirt'),(2226,4,86,0,136,'beaver-poloshirt-purpletrim'),(2227,4,126,0,136,NULL),(2228,4,127,0,136,'2'),(2229,4,128,0,136,'4'),(2230,4,71,0,136,NULL),(2231,4,73,0,136,NULL),(2232,4,74,0,136,'/b/e/beaverpolo.jpg'),(2233,4,75,0,136,'/b/e/beaverpolo.jpg'),(2234,4,76,0,136,'/b/e/beaverpolo.jpg'),(2235,4,92,0,136,NULL),(2236,4,96,0,136,NULL),(2237,4,98,0,136,'container2'),(2238,4,108,0,136,NULL),(2239,4,87,1,136,'beaver-poloshirt-purpletrim.html'),(2240,4,87,0,136,'beaver-poloshirt-purpletrim.html'),(2241,4,101,0,136,NULL),(2242,4,102,0,136,NULL),(2243,4,103,0,136,NULL),(2244,4,60,0,137,'brownie short sleeve t shirt'),(2245,4,86,0,137,'bownie-t-shirt-teeshirt-shortsleeve'),(2246,4,126,0,137,NULL),(2247,4,127,0,137,'2'),(2248,4,128,0,137,'4'),(2249,4,71,0,137,NULL),(2250,4,73,0,137,NULL),(2251,4,74,0,137,'/b/r/brownie_t.jpg'),(2252,4,75,0,137,'/b/r/brownie_t.jpg'),(2253,4,76,0,137,'/b/r/brownie_t.jpg'),(2254,4,92,0,137,NULL),(2255,4,96,0,137,NULL),(2256,4,98,0,137,'container2'),(2257,4,108,0,137,NULL),(2258,4,87,1,137,'bownie-t-shirt-teeshirt-shortsleeve.html'),(2259,4,87,0,137,'bownie-t-shirt-teeshirt-shortsleeve.html'),(2260,4,101,0,137,NULL),(2261,4,102,0,137,NULL),(2262,4,103,0,137,NULL),(2263,4,60,0,138,'Brownie hoodie sweatshirt zip front'),(2264,4,86,0,138,'brownie-hoodie-top-sweattop'),(2265,4,126,0,138,NULL),(2266,4,127,0,138,'2'),(2267,4,128,0,138,'4'),(2268,4,71,0,138,NULL),(2269,4,73,0,138,NULL),(2270,4,74,0,138,'/b/r/brownie_hoodie.jpg'),(2271,4,75,0,138,'/b/r/brownie_hoodie.jpg'),(2272,4,76,0,138,'/b/r/brownie_hoodie.jpg'),(2273,4,92,0,138,NULL),(2274,4,96,0,138,NULL),(2275,4,98,0,138,'container2'),(2276,4,108,0,138,NULL),(2277,4,87,1,138,'brownie-hoodie-top-sweattop.html'),(2278,4,87,0,138,'brownie-hoodie-top-sweattop.html'),(2279,4,101,0,138,NULL),(2280,4,102,0,138,NULL),(2281,4,103,0,138,NULL),(2282,4,60,0,139,'brownie trousers'),(2283,4,86,0,139,'brownie-trousrs-browniepants'),(2284,4,126,0,139,NULL),(2285,4,127,0,139,'2'),(2286,4,128,0,139,'4'),(2287,4,71,0,139,NULL),(2288,4,73,0,139,NULL),(2289,4,74,0,139,'/b/r/brownie_trousers.jpg'),(2290,4,75,0,139,'/b/r/brownie_trousers.jpg'),(2291,4,76,0,139,'/b/r/brownie_trousers.jpg'),(2292,4,92,0,139,NULL),(2293,4,96,0,139,NULL),(2294,4,98,0,139,'container2'),(2295,4,108,0,139,NULL),(2296,4,87,1,139,'brownie-trousrs-browniepants.html'),(2297,4,87,0,139,'brownie-trousrs-browniepants.html'),(2298,4,101,0,139,NULL),(2299,4,102,0,139,NULL),(2300,4,103,0,139,NULL),(2301,4,60,0,140,'brownie leggings'),(2302,4,86,0,140,'brownie-leggings-browniesleggings'),(2303,4,126,0,140,NULL),(2304,4,127,0,140,'2'),(2305,4,128,0,140,'4'),(2306,4,71,0,140,NULL),(2307,4,73,0,140,NULL),(2308,4,74,0,140,'/b/r/brownie_leggings.jpg'),(2309,4,75,0,140,'/b/r/brownie_leggings.jpg'),(2310,4,76,0,140,'/b/r/brownie_leggings.jpg'),(2311,4,92,0,140,NULL),(2312,4,96,0,140,NULL),(2313,4,98,0,140,'container2'),(2314,4,108,0,140,NULL),(2315,4,87,1,140,'brownie-leggings-browniesleggings.html'),(2316,4,87,0,140,'brownie-leggings-browniesleggings.html'),(2317,4,101,0,140,NULL),(2318,4,102,0,140,NULL),(2319,4,103,0,140,NULL),(2320,4,60,0,141,'brownie long sleeve tee shirt top'),(2321,4,86,0,141,'brownies-longsleeve-tee-t-tshirt'),(2322,4,126,0,141,NULL),(2323,4,127,0,141,'2'),(2324,4,128,0,141,'4'),(2325,4,71,0,141,NULL),(2326,4,73,0,141,NULL),(2327,4,74,0,141,'/b/r/brownie_long_sl.jpg'),(2328,4,75,0,141,'/b/r/brownie_long_sl.jpg'),(2329,4,76,0,141,'/b/r/brownie_long_sl.jpg'),(2330,4,92,0,141,NULL),(2331,4,96,0,141,NULL),(2332,4,98,0,141,'container2'),(2333,4,108,0,141,NULL),(2334,4,87,1,141,'brownies-longsleeve-tee-t-tshirt.html'),(2335,4,87,0,141,'brownies-longsleeve-tee-t-tshirt.html'),(2336,4,101,0,141,NULL),(2337,4,102,0,141,NULL),(2338,4,103,0,141,NULL),(2339,4,60,0,142,'brownie sash for the your badges'),(2340,4,86,0,142,'brownies-sash-browniessash'),(2341,4,126,0,142,NULL),(2342,4,127,0,142,'2'),(2343,4,128,0,142,'4'),(2344,4,71,0,142,NULL),(2345,4,73,0,142,NULL),(2346,4,74,0,142,'/b/r/brownie_sash.jpg'),(2347,4,75,0,142,'/b/r/brownie_sash.jpg'),(2348,4,76,0,142,'/b/r/brownie_sash.jpg'),(2349,4,92,0,142,NULL),(2350,4,96,0,142,NULL),(2351,4,98,0,142,'container2'),(2352,4,108,0,142,NULL),(2353,4,87,1,142,'brownies-sash-browniessash.html'),(2354,4,87,0,142,'brownies-sash-browniessash.html'),(2355,4,101,0,142,NULL),(2356,4,102,0,142,NULL),(2357,4,103,0,142,NULL),(2358,4,126,0,106,NULL),(2359,4,127,0,106,'2'),(2360,4,128,0,106,'4'),(2361,4,126,0,109,NULL),(2362,4,127,0,109,'2'),(2363,4,128,0,109,'4'),(2364,4,126,0,115,NULL),(2365,4,127,0,115,'2'),(2366,4,128,0,115,'4'),(2367,4,126,0,35,NULL),(2368,4,127,0,35,'2'),(2369,4,128,0,35,'4'),(2370,4,60,0,143,'Beaver uniform trousers'),(2371,4,86,0,143,'beaver-cubs-uniform-beavertrousers-beaverpants'),(2372,4,126,0,143,NULL),(2373,4,127,0,143,'2'),(2374,4,128,0,143,'4'),(2375,4,71,0,143,NULL),(2376,4,73,0,143,NULL),(2377,4,74,0,143,'/c/u/cub-beaver_pants.jpg'),(2378,4,75,0,143,'/c/u/cub-beaver_pants.jpg'),(2379,4,76,0,143,'/c/u/cub-beaver_pants.jpg'),(2380,4,92,0,143,NULL),(2381,4,96,0,143,NULL),(2382,4,98,0,143,'container2'),(2383,4,108,0,143,NULL),(2384,4,87,1,143,'beaver-cubs-uniform-beavertrousers-beaverpants.html'),(2385,4,87,0,143,'beaver-cubs-uniform-beavertrousers-beaverpants.html'),(2386,4,101,0,143,NULL),(2387,4,102,0,143,NULL),(2388,4,103,0,143,NULL),(2389,4,60,0,144,'Cub Uniform trousers/pants'),(2390,4,86,0,144,'cub-uniform-trousers-pants'),(2391,4,126,0,144,NULL),(2392,4,127,0,144,'2'),(2393,4,128,0,144,'4'),(2394,4,71,0,144,NULL),(2395,4,73,0,144,NULL),(2396,4,74,0,144,'/c/u/cub-beaver_pants_1.jpg'),(2397,4,75,0,144,'/c/u/cub-beaver_pants_1.jpg'),(2398,4,76,0,144,'/c/u/cub-beaver_pants_1.jpg'),(2399,4,92,0,144,NULL),(2400,4,96,0,144,NULL),(2401,4,98,0,144,'container2'),(2402,4,108,0,144,NULL),(2403,4,87,1,144,'cub-uniform-trousers-pants.html'),(2404,4,87,0,144,'cub-uniform-trousers-pants.html'),(2405,4,101,0,144,NULL),(2406,4,102,0,144,NULL),(2407,4,103,0,144,NULL),(2408,4,60,0,145,'rainbow uniform  hooded sweat top'),(2409,4,86,0,145,'rainbow-hooded-sweattop'),(2410,4,126,0,145,NULL),(2411,4,127,0,145,'2'),(2412,4,128,0,145,'4'),(2413,4,71,0,145,NULL),(2414,4,73,0,145,NULL),(2415,4,74,0,145,'/r/a/rainbow_hoodie.jpg'),(2416,4,75,0,145,'/r/a/rainbow_hoodie.jpg'),(2417,4,76,0,145,'/r/a/rainbow_hoodie.jpg'),(2418,4,92,0,145,NULL),(2419,4,96,0,145,NULL),(2420,4,98,0,145,'container2'),(2421,4,108,0,145,NULL),(2422,4,87,1,145,'rainbow-hooded-sweattop.html'),(2423,4,87,0,145,'rainbow-hooded-sweattop.html'),(2424,4,101,0,145,NULL),(2425,4,102,0,145,NULL),(2426,4,103,0,145,NULL),(2427,4,60,0,146,'Rainbow tee shirt polo shirt'),(2428,4,86,0,146,'rainbow-polo-teeshirt-rainbowuniform'),(2429,4,126,0,146,NULL),(2430,4,127,0,146,'2'),(2431,4,128,0,146,'4'),(2432,4,71,0,146,NULL),(2433,4,73,0,146,NULL),(2434,4,74,0,146,'/r/a/rainbow_polo.jpg'),(2435,4,75,0,146,'/r/a/rainbow_polo.jpg'),(2436,4,76,0,146,'/r/a/rainbow_polo.jpg'),(2437,4,92,0,146,NULL),(2438,4,96,0,146,NULL),(2439,4,98,0,146,'container2'),(2440,4,108,0,146,NULL),(2441,4,87,1,146,'rainbow-polo-teeshirt-rainbowuniform.html'),(2442,4,87,0,146,'rainbow-polo-teeshirt-rainbowuniform.html'),(2443,4,101,0,146,NULL),(2444,4,102,0,146,NULL),(2445,4,103,0,146,NULL),(2446,4,60,0,147,'rainbow jog pants rainbow trousers'),(2447,4,86,0,147,'rainbow-jog-pants-rainbow-trousers'),(2448,4,126,0,147,NULL),(2449,4,127,0,147,'2'),(2450,4,128,0,147,'4'),(2451,4,71,0,147,'rainbowpants'),(2452,4,73,0,147,'rainbowpants'),(2453,4,74,0,147,'/r/a/rainbow_pants.jpg'),(2454,4,75,0,147,'/r/a/rainbow_pants.jpg'),(2455,4,76,0,147,'/r/a/rainbow_pants.jpg'),(2456,4,92,0,147,NULL),(2457,4,96,0,147,NULL),(2458,4,98,0,147,'container2'),(2459,4,108,0,147,NULL),(2460,4,87,1,147,'rainbow-jog-pants-rainbow-trousers.html'),(2461,4,87,0,147,'rainbow-jog-pants-rainbow-trousers.html'),(2462,4,101,0,147,NULL),(2463,4,102,0,147,NULL),(2464,4,103,0,147,NULL),(2465,4,60,0,148,'scout uniform shirt scout shirt'),(2466,4,86,0,148,'scout-uniform-shirt-scout-shirt'),(2467,4,126,0,148,NULL),(2468,4,127,0,148,'2'),(2469,4,128,0,148,'4'),(2470,4,71,0,148,'scoutshirt'),(2471,4,73,0,148,'scoutshirt'),(2472,4,74,0,148,'/s/c/scout_shirts_1.jpg'),(2473,4,75,0,148,'/s/c/scout_shirts_1.jpg'),(2474,4,76,0,148,'/s/c/scout_shirts_1.jpg'),(2475,4,92,0,148,NULL),(2476,4,96,0,148,NULL),(2477,4,98,0,148,'container2'),(2478,4,108,0,148,NULL),(2479,4,87,1,148,'scout-uniform-shirt-scout-shirt.html'),(2480,4,87,0,148,'scout-uniform-shirt-scout-shirt.html'),(2481,4,101,0,148,NULL),(2482,4,102,0,148,NULL),(2483,4,103,0,148,NULL),(2484,4,60,0,149,'Long sleeve thermal tee shirts'),(2485,4,86,0,149,'theremal-longslevv-teeshirt-warmunderwear'),(2486,4,126,0,149,NULL),(2487,4,127,0,149,'2'),(2488,4,128,0,149,'4'),(2489,4,71,0,149,'thermallongsleevetshirts'),(2490,4,73,0,149,'longsleevethermal'),(2491,4,74,0,149,'/l/o/long_sleeve_thermal_t.jpg'),(2492,4,75,0,149,'/l/o/long_sleeve_thermal_t.jpg'),(2493,4,76,0,149,'/l/o/long_sleeve_thermal_t.jpg'),(2494,4,92,0,149,NULL),(2495,4,96,0,149,NULL),(2496,4,98,0,149,'container2'),(2497,4,108,0,149,NULL),(2498,4,87,1,149,'theremal-longslevv-teeshirt-warmunderwear.html'),(2499,4,87,0,149,'theremal-longslevv-teeshirt-warmunderwear.html'),(2500,4,101,0,149,NULL),(2501,4,102,0,149,NULL),(2502,4,103,0,149,NULL),(2503,4,126,0,88,NULL),(2504,4,127,0,88,'2'),(2505,4,128,0,88,'4'),(2506,4,60,0,150,'Craghoppers Winter Lined Kiwi Walking Trousers'),(2507,4,86,0,150,'kiwi-winterlined-kiwi-walkingtrousers-craghoppers'),(2508,4,126,0,150,NULL),(2509,4,127,0,150,'2'),(2510,4,128,0,150,'4'),(2511,4,71,0,150,'kiwiwinterlinedtrousers'),(2512,4,73,0,150,'cragswintertrousers'),(2513,4,74,0,150,'/n/a/navy_lined_kiwis.jpg'),(2514,4,75,0,150,'/n/a/navy_lined_kiwis.jpg'),(2515,4,76,0,150,'/n/a/navy_lined_kiwis.jpg'),(2516,4,92,0,150,NULL),(2517,4,96,0,150,NULL),(2518,4,98,0,150,'container2'),(2519,4,108,0,150,NULL),(2520,4,87,1,150,'kiwi-winterlined-kiwi-walkingtrousers-craghoppers.html'),(2521,4,87,0,150,'kiwi-winterlined-kiwi-walkingtrousers-craghoppers.html'),(2522,4,101,0,150,NULL),(2523,4,102,0,150,NULL),(2524,4,103,0,150,NULL),(2525,4,126,0,45,NULL),(2526,4,127,0,45,'2'),(2527,4,128,0,45,'4'),(2528,4,126,0,76,NULL),(2529,4,127,0,76,'2'),(2530,4,128,0,76,'4'),(2531,4,126,0,17,NULL),(2532,4,127,0,17,'2'),(2533,4,128,0,17,'4'),(2534,4,126,0,18,NULL),(2535,4,127,0,18,'2'),(2536,4,128,0,18,'4'),(2537,4,60,0,151,'Boys/Girls camouflague DPM army style trousers ages  13/14 '),(2538,4,86,0,151,'age13-14-armypants-camopants-dpmpants'),(2539,4,126,0,151,NULL),(2540,4,127,0,151,'2'),(2541,4,128,0,151,'4'),(2542,4,71,0,151,'camopantsage13/14'),(2543,4,73,0,151,'camopants13/14'),(2544,4,74,0,151,'/k/i/kids_camo_pants.jpg'),(2545,4,75,0,151,'/k/i/kids_camo_pants.jpg'),(2546,4,76,0,151,'/k/i/kids_camo_pants.jpg'),(2547,4,92,0,151,NULL),(2548,4,96,0,151,NULL),(2549,4,98,0,151,'container2'),(2550,4,108,0,151,NULL),(2551,4,87,1,151,'age13-14-armypants-camopants-dpmpants.html'),(2552,4,87,0,151,'age13-14-armypants-camopants-dpmpants.html'),(2553,4,101,0,151,NULL),(2554,4,102,0,151,NULL),(2555,4,103,0,151,NULL),(2556,4,126,0,63,NULL),(2557,4,127,0,63,'2'),(2558,4,128,0,63,'4'),(2559,4,126,0,91,NULL),(2560,4,127,0,91,'2'),(2561,4,128,0,91,'4'),(2562,4,126,0,80,NULL),(2563,4,127,0,80,'2'),(2564,4,128,0,80,'4'),(2565,4,126,0,131,NULL),(2566,4,127,0,131,'2'),(2567,4,128,0,131,'4'),(2568,4,126,0,129,NULL),(2569,4,127,0,129,'2'),(2570,4,128,0,129,'4'),(2571,4,126,0,108,NULL),(2572,4,127,0,108,'2'),(2573,4,128,0,108,'4'),(2574,4,126,0,53,NULL),(2575,4,127,0,53,'2'),(2576,4,128,0,53,'4'),(2577,4,126,0,54,NULL),(2578,4,127,0,54,'2'),(2579,4,128,0,54,'4'),(2580,4,126,0,55,NULL),(2581,4,127,0,55,'2'),(2582,4,128,0,55,'4'),(2583,4,126,0,56,NULL),(2584,4,127,0,56,'2'),(2585,4,128,0,56,'4'),(2586,4,126,0,57,NULL),(2587,4,127,0,57,'2'),(2588,4,128,0,57,'4'),(2589,4,126,0,64,NULL),(2590,4,127,0,64,'2'),(2591,4,128,0,64,'4'),(2592,4,126,0,67,NULL),(2593,4,127,0,67,'2'),(2594,4,128,0,67,'4'),(2595,4,126,0,40,NULL),(2596,4,127,0,40,'2'),(2597,4,128,0,40,'4'),(2598,4,126,0,38,NULL),(2599,4,127,0,38,'2'),(2600,4,128,0,38,'4'),(2601,4,126,0,32,NULL),(2602,4,127,0,32,'2'),(2603,4,128,0,32,'4'),(2604,4,126,0,31,NULL),(2605,4,127,0,31,'2'),(2606,4,128,0,31,'4'),(2607,4,126,0,44,NULL),(2608,4,127,0,44,'2'),(2609,4,128,0,44,'4'),(2610,4,126,0,28,NULL),(2611,4,127,0,28,'2'),(2612,4,128,0,28,'4'),(2613,4,126,0,14,NULL),(2614,4,127,0,14,'2'),(2615,4,128,0,14,'4'),(2616,4,126,0,82,NULL),(2617,4,127,0,82,'2'),(2618,4,128,0,82,'4'),(2619,4,60,0,152,'Fleece lined hooded shirt by castle'),(2620,4,86,0,152,'fleece-linedhoodie-hoodedshirt'),(2621,4,126,0,152,NULL),(2622,4,127,0,152,'2'),(2623,4,128,0,152,'4'),(2624,4,71,0,152,'hoodedfleecejacket'),(2625,4,73,0,152,'hoodedfleece'),(2626,4,74,0,152,'/p/e/penarth_hoody.jpg'),(2627,4,75,0,152,'/p/e/penarth_hoody.jpg'),(2628,4,76,0,152,'/p/e/penarth_hoody.jpg'),(2629,4,92,0,152,NULL),(2630,4,96,0,152,NULL),(2631,4,98,0,152,'container2'),(2632,4,108,0,152,NULL),(2633,4,87,1,152,'fleece-linedhoodie-hoodedshirt.html'),(2634,4,87,0,152,'fleece-linedhoodie-hoodedshirt.html'),(2635,4,101,0,152,NULL),(2636,4,102,0,152,NULL),(2637,4,103,0,152,NULL),(2638,4,60,0,153,'Military army signalling angled torch with coloured filters'),(2639,4,86,0,153,'military-army-torch-angledtorch-signallingtorch-torchwithcolouredfilters'),(2640,4,126,0,153,NULL),(2641,4,127,0,153,'2'),(2642,4,128,0,153,'4'),(2643,4,71,0,153,'military signallingtorch'),(2644,4,73,0,153,'armytorch'),(2645,4,74,0,153,'/a/n/angle_torch.jpg'),(2646,4,75,0,153,'/a/n/angle_torch.jpg'),(2647,4,76,0,153,'/a/n/angle_torch.jpg'),(2648,4,92,0,153,NULL),(2649,4,96,0,153,NULL),(2650,4,98,0,153,'container2'),(2651,4,108,0,153,NULL),(2652,4,87,1,153,'military-army-torch-angledtorch-signallingtorch-torchwithcolouredfilters.html'),(2653,4,87,0,153,'military-army-torch-angledtorch-signallingtorch-torchwithcolouredfilters.html'),(2654,4,101,0,153,NULL),(2655,4,102,0,153,NULL),(2656,4,103,0,153,NULL),(2657,4,60,0,154,'Army camouflague military wallet DPM'),(2658,4,86,0,154,'dpm-wallet-camowallet-armywallet'),(2659,4,126,0,154,NULL),(2660,4,127,0,154,'2'),(2661,4,128,0,154,'4'),(2662,4,71,0,154,'wallet'),(2663,4,73,0,154,'camowallet'),(2664,4,74,0,154,'/c/a/camo_wallet.jpg'),(2665,4,75,0,154,'/c/a/camo_wallet.jpg'),(2666,4,76,0,154,'/b/l/black_wallet.jpg'),(2667,4,92,0,154,NULL),(2668,4,96,0,154,NULL),(2669,4,98,0,154,'container2'),(2670,4,108,0,154,NULL),(2671,4,87,1,154,'dpm-wallet-camowallet-armywallet.html'),(2672,4,87,0,154,'dpm-wallet-camowallet-armywallet.html'),(2673,4,101,0,154,NULL),(2674,4,102,0,154,NULL),(2675,4,103,0,154,NULL),(2676,4,60,0,155,'Regatta Waterproof Tectonic Fleece Jacket'),(2677,4,86,0,155,'regatta-waterproof-tectonic-fleece-jacket'),(2678,4,126,0,155,NULL),(2679,4,127,0,155,'2'),(2680,4,128,0,155,'4'),(2681,4,71,0,155,'regattawaterprooffleece'),(2682,4,73,0,155,'regattawaterprooffleece'),(2683,4,74,0,155,'/n/a/navy_wproof_fleece.jpg'),(2684,4,75,0,155,'/n/a/navy_wproof_fleece.jpg'),(2685,4,76,0,155,'/b/l/blk_wproof_fleece.jpg'),(2686,4,92,0,155,NULL),(2687,4,96,0,155,NULL),(2688,4,98,0,155,'container2'),(2689,4,108,0,155,NULL),(2690,4,87,1,155,'regatta-waterproof-tectonic-fleece-jacket.html'),(2691,4,87,0,155,'regatta-waterproof-tectonic-fleece-jacket.html'),(2692,4,101,0,155,NULL),(2693,4,102,0,155,NULL),(2694,4,103,0,155,NULL),(2695,4,60,0,156,'Ladies Regatta Waterproof Fleece Tectonic '),(2696,4,86,0,156,'waterproof-regattafleece'),(2697,4,126,0,156,NULL),(2698,4,127,0,156,'2'),(2699,4,128,0,156,'4'),(2700,4,71,0,156,'regattawaterprooffleece'),(2701,4,73,0,156,NULL),(2702,4,74,0,156,'/h/o/hot_choc.jpg'),(2703,4,75,0,156,'/h/o/hot_choc.jpg'),(2704,4,76,0,156,'/b/l/blk_wproof_fleece_1.jpg'),(2705,4,92,0,156,NULL),(2706,4,96,0,156,NULL),(2707,4,98,0,156,'container2'),(2708,4,108,0,156,NULL),(2709,4,87,1,156,'waterproof-regattafleece.html'),(2710,4,87,0,156,'waterproof-regattafleece.html'),(2711,4,101,0,156,NULL),(2712,4,102,0,156,NULL),(2713,4,103,0,156,NULL),(2714,4,126,0,121,NULL),(2715,4,127,0,121,'2'),(2716,4,128,0,121,'4'),(2717,4,126,0,11,NULL),(2718,4,127,0,11,'2'),(2719,4,128,0,11,'4'),(2720,4,126,0,4,NULL),(2721,4,127,0,4,'2'),(2722,4,128,0,4,'4'),(2723,4,126,0,7,NULL),(2724,4,127,0,7,'2'),(2725,4,128,0,7,'4'),(2726,4,126,0,8,NULL),(2727,4,127,0,8,'2'),(2728,4,128,0,8,'4'),(2729,4,126,0,10,NULL),(2730,4,127,0,10,'2'),(2731,4,128,0,10,'4'),(2732,4,126,0,29,NULL),(2733,4,127,0,29,'2'),(2734,4,128,0,29,'4'),(2735,4,126,0,26,NULL),(2736,4,127,0,26,'2'),(2737,4,128,0,26,'4'),(2738,4,126,0,23,NULL),(2739,4,127,0,23,'2'),(2740,4,128,0,23,'4'),(2741,4,126,0,22,NULL),(2742,4,127,0,22,'2'),(2743,4,128,0,22,'4'),(2744,4,126,0,21,NULL),(2745,4,127,0,21,'2'),(2746,4,128,0,21,'4'),(2747,4,126,0,16,NULL),(2748,4,127,0,16,'2'),(2749,4,128,0,16,'4'),(2750,4,126,0,15,NULL),(2751,4,127,0,15,'2'),(2752,4,128,0,15,'4'),(2753,4,126,0,13,NULL),(2754,4,127,0,13,'2'),(2755,4,128,0,13,'4'),(2756,4,126,0,12,NULL),(2757,4,127,0,12,'2'),(2758,4,128,0,12,'4'),(2759,4,126,0,52,NULL),(2760,4,127,0,52,'2'),(2761,4,128,0,52,'4'),(2762,4,126,0,51,NULL),(2763,4,127,0,51,'2'),(2764,4,128,0,51,'4'),(2765,4,126,0,50,NULL),(2766,4,127,0,50,'2'),(2767,4,128,0,50,'4'),(2768,4,126,0,49,NULL),(2769,4,127,0,49,'2'),(2770,4,128,0,49,'4'),(2771,4,126,0,42,NULL),(2772,4,127,0,42,'2'),(2773,4,128,0,42,'4'),(2774,4,126,0,39,NULL),(2775,4,127,0,39,'2'),(2776,4,128,0,39,'4'),(2777,4,126,0,34,NULL),(2778,4,127,0,34,'2'),(2779,4,128,0,34,'4'),(2780,4,126,0,33,NULL),(2781,4,127,0,33,'2'),(2782,4,128,0,33,'4'),(2783,4,126,0,130,NULL),(2784,4,127,0,130,'2'),(2785,4,128,0,130,'4'),(2786,4,126,0,128,NULL),(2787,4,127,0,128,'2'),(2788,4,128,0,128,'4'),(2789,4,126,0,127,NULL),(2790,4,127,0,127,'2'),(2791,4,128,0,127,'4'),(2792,4,126,0,126,NULL),(2793,4,127,0,126,'2'),(2794,4,128,0,126,'4'),(2795,4,126,0,125,NULL),(2796,4,127,0,125,'2'),(2797,4,128,0,125,'4'),(2798,4,126,0,123,NULL),(2799,4,127,0,123,'2'),(2800,4,128,0,123,'4'),(2801,4,126,0,95,NULL),(2802,4,127,0,95,'2'),(2803,4,128,0,95,'4'),(2804,4,126,0,94,NULL),(2805,4,127,0,94,'2'),(2806,4,128,0,94,'4'),(2807,4,126,0,93,NULL),(2808,4,127,0,93,'2'),(2809,4,128,0,93,'4'),(2810,4,126,0,90,NULL),(2811,4,127,0,90,'2'),(2812,4,128,0,90,'4'),(2813,4,60,0,157,'Leather Safety Boots with Steel Midsole'),(2814,4,86,0,157,'leather-safety-boots-with-steel-midsole'),(2815,4,126,0,157,NULL),(2816,4,127,0,157,'2'),(2817,4,128,0,157,'4'),(2818,4,71,0,157,'safety boot'),(2819,4,73,0,157,'safetyboots'),(2820,4,74,0,157,'/s/a/safety_m475.jpg'),(2821,4,75,0,157,'/s/a/safety_m475.jpg'),(2822,4,76,0,157,'/s/a/safety_m475.jpg'),(2823,4,92,0,157,NULL),(2824,4,96,0,157,NULL),(2825,4,98,0,157,'container2'),(2826,4,108,0,157,NULL),(2827,4,87,1,157,'leather-safety-boots-with-steel-midsole.html'),(2828,4,87,0,157,'leather-safety-boots-with-steel-midsole.html'),(2829,4,101,0,157,NULL),(2830,4,102,0,157,NULL),(2831,4,103,0,157,NULL),(2832,4,126,0,120,NULL),(2833,4,127,0,120,'2'),(2834,4,128,0,120,'4'),(2835,4,126,0,119,NULL),(2836,4,127,0,119,'2'),(2837,4,128,0,119,'4'),(2838,4,126,0,118,NULL),(2839,4,127,0,118,'2'),(2840,4,128,0,118,'4'),(2841,4,126,0,114,NULL),(2842,4,127,0,114,'2'),(2843,4,128,0,114,'4'),(2844,4,60,0,158,'1000 Mile fusion walking sock'),(2845,4,86,0,158,'1000mile-walkingsocks-socks-fusion-hikingsocks'),(2846,4,126,0,158,NULL),(2847,4,127,0,158,'2'),(2848,4,128,0,158,'4'),(2849,4,71,0,158,NULL),(2850,4,73,0,158,NULL),(2851,4,74,0,158,'/1/0/100_mile_fusion.jpg'),(2852,4,75,0,158,'/1/0/100_mile_fusion.jpg'),(2853,4,76,0,158,'/1/0/100_mile_fusion.jpg'),(2854,4,92,0,158,NULL),(2855,4,96,0,158,NULL),(2856,4,98,0,158,'container2'),(2857,4,108,0,158,NULL),(2858,4,87,1,158,'1000mile-walkingsocks-socks-fusion-hikingsocks.html'),(2859,4,87,0,158,'1000mile-walkingsocks-socks-fusion-hikingsocks.html'),(2860,4,101,0,158,NULL),(2861,4,102,0,158,NULL),(2862,4,103,0,158,NULL),(2863,4,60,0,159,'1000 mile ladies fusion walking socks'),(2864,4,86,0,159,'1000mile-walkingsocks-socks-sox-hiking-trekking-fusion'),(2865,4,126,0,159,NULL),(2866,4,127,0,159,'2'),(2867,4,128,0,159,'4'),(2868,4,71,0,159,NULL),(2869,4,73,0,159,NULL),(2870,4,74,0,159,'/l/a/ladies_fusion.jpg'),(2871,4,75,0,159,'/l/a/ladies_fusion.jpg'),(2872,4,76,0,159,'/l/a/ladies_fusion.jpg'),(2873,4,92,0,159,NULL),(2874,4,96,0,159,NULL),(2875,4,98,0,159,'container2'),(2876,4,108,0,159,NULL),(2877,4,87,1,159,'1000mile-walkingsocks-socks-sox-hiking-trekking-fusion.html'),(2878,4,87,0,159,'1000mile-walkingsocks-socks-sox-hiking-trekking-fusion.html'),(2879,4,101,0,159,NULL),(2880,4,102,0,159,NULL),(2881,4,103,0,159,NULL),(2882,4,126,0,68,NULL),(2883,4,127,0,68,'2'),(2884,4,128,0,68,'4'),(2885,4,126,0,58,NULL),(2886,4,127,0,58,'2'),(2887,4,128,0,58,'4'),(2888,4,126,0,111,NULL),(2889,4,127,0,111,'2'),(2890,4,128,0,111,'4'),(2891,4,126,0,103,NULL),(2892,4,127,0,103,'2'),(2893,4,128,0,103,'4'),(2894,4,126,0,102,NULL),(2895,4,127,0,102,'2'),(2896,4,128,0,102,'4'),(2897,4,126,0,101,NULL),(2898,4,127,0,101,'2'),(2899,4,128,0,101,'4'),(2900,4,126,0,98,NULL),(2901,4,127,0,98,'2'),(2902,4,128,0,98,'4'),(2903,4,126,0,97,NULL),(2904,4,127,0,97,'2'),(2905,4,128,0,97,'4'),(2906,4,126,0,96,NULL),(2907,4,127,0,96,'2'),(2908,4,128,0,96,'4'),(2909,4,126,0,92,NULL),(2910,4,127,0,92,'2'),(2911,4,128,0,92,'4'),(2912,4,126,0,84,NULL),(2913,4,127,0,84,'2'),(2914,4,128,0,84,'4'),(2915,4,126,0,74,NULL),(2916,4,127,0,74,'2'),(2917,4,128,0,74,'4'),(2918,4,126,0,72,NULL),(2919,4,127,0,72,'2'),(2920,4,128,0,72,'4'),(2921,4,126,0,62,NULL),(2922,4,127,0,62,'2'),(2923,4,128,0,62,'4'),(2924,4,60,0,160,'Doc marten shoes classic 1461'),(2925,4,86,0,160,'docs-docmarten-airwear-shoes-footwear-foot-airwear'),(2926,4,126,0,160,NULL),(2927,4,127,0,160,'2'),(2928,4,128,0,160,'4'),(2929,4,71,0,160,NULL),(2930,4,73,0,160,NULL),(2931,4,74,0,160,'/d/o/doc_shoe.jpg'),(2932,4,75,0,160,'/d/o/doc_shoe.jpg'),(2933,4,76,0,160,'/d/o/doc_shoe.jpg'),(2934,4,92,0,160,NULL),(2935,4,96,0,160,NULL),(2936,4,98,0,160,'container2'),(2937,4,108,0,160,NULL),(2938,4,87,1,160,'docs-docmarten-airwear-shoes-footwear-foot-airwear.html'),(2939,4,87,0,160,'docs-docmarten-airwear-shoes-footwear-foot-airwear.html'),(2940,4,60,0,161,'Doc Marten Classic 1460 Boot'),(2941,4,86,0,161,'doc-marten-classic-1460-boot'),(2942,4,126,0,161,NULL),(2943,4,127,0,161,'2'),(2944,4,128,0,161,'4'),(2945,4,71,0,161,NULL),(2946,4,73,0,161,NULL),(2947,4,74,0,161,'/d/o/doc_boots.jpg'),(2948,4,75,0,161,'/d/o/doc_boots.jpg'),(2949,4,76,0,161,'/d/o/doc_boots.jpg'),(2950,4,92,0,161,NULL),(2951,4,96,0,161,NULL),(2952,4,98,0,161,'container2'),(2953,4,108,0,161,NULL),(2954,4,87,1,161,'doc-marten-classic-1460-boot.html'),(2955,4,87,0,161,'doc-marten-classic-1460-boot.html'),(2956,4,101,0,161,NULL),(2957,4,102,0,161,NULL),(2958,4,103,0,161,NULL),(2959,4,101,0,160,NULL),(2960,4,102,0,160,NULL),(2961,4,103,0,160,NULL),(2962,4,60,0,162,'Victorinox swiss army knives Duke of Edinburgh Approved'),(2963,4,86,0,162,'victorinox-swiss-army-knives-duke-of-edinburgh-approved'),(2964,4,126,0,162,NULL),(2965,4,127,0,162,'2'),(2966,4,128,0,162,'4'),(2967,4,71,0,162,NULL),(2968,4,73,0,162,NULL),(2969,4,74,0,162,'/s/w/swiss_doe.jpg'),(2970,4,75,0,162,'/s/w/swiss_doe.jpg'),(2971,4,76,0,162,'/s/w/swiss_doe.jpg'),(2972,4,92,0,162,NULL),(2973,4,96,0,162,NULL),(2974,4,98,0,162,'container2'),(2975,4,108,0,162,NULL),(2976,4,87,1,162,'victorinox-swiss-army-knives-duke-of-edinburgh-approved.html'),(2977,4,87,0,162,'victorinox-swiss-army-knives-duke-of-edinburgh-approved.html'),(2978,4,101,0,162,NULL),(2979,4,102,0,162,NULL),(2980,4,103,0,162,NULL),(2981,4,60,0,163,'Victorinox Swiss Army Knives Spartan'),(2982,4,86,0,163,'victoinox-swissarmyknives-knives-army'),(2983,4,126,0,163,NULL),(2984,4,127,0,163,'2'),(2985,4,128,0,163,'4'),(2986,4,71,0,163,NULL),(2987,4,73,0,163,NULL),(2988,4,74,0,163,'/s/w/swiss_spartin.jpg'),(2989,4,75,0,163,'/s/w/swiss_spartin.jpg'),(2990,4,76,0,163,'/s/w/swiss_spartin.jpg'),(2991,4,92,0,163,NULL),(2992,4,96,0,163,NULL),(2993,4,98,0,163,'container2'),(2994,4,108,0,163,NULL),(2995,4,87,1,163,'victoinox-swissarmyknives-knives-army.html'),(2996,4,87,0,163,'victoinox-swissarmyknives-knives-army.html'),(2997,4,101,0,163,NULL),(2998,4,102,0,163,NULL),(2999,4,103,0,163,NULL),(3000,4,60,0,164,'Victorinox Swiss army knives -climber'),(3001,4,86,0,164,'victorinox-swiss-army-knives-climber'),(3002,4,126,0,164,NULL),(3003,4,127,0,164,'2'),(3004,4,128,0,164,'4'),(3005,4,71,0,164,NULL),(3006,4,73,0,164,NULL),(3007,4,74,0,164,'/s/w/swiss_red_climber.jpg'),(3008,4,75,0,164,'/s/w/swiss_red_climber.jpg'),(3009,4,76,0,164,'/s/w/swiss_red_climber.jpg'),(3010,4,92,0,164,NULL),(3011,4,96,0,164,NULL),(3012,4,98,0,164,'container2'),(3013,4,108,0,164,NULL),(3014,4,87,1,164,'victorinox-swiss-army-knives-climber.html'),(3015,4,87,0,164,'victorinox-swiss-army-knives-climber.html'),(3016,4,101,0,164,NULL),(3017,4,102,0,164,NULL),(3018,4,103,0,164,NULL),(3019,4,126,0,27,NULL),(3020,4,127,0,27,'2'),(3021,4,128,0,27,'4'),(3022,4,60,0,165,'cub/beaver reversible camp blanket'),(3023,4,86,0,165,'cub-beaver-reversible-blanket-campblanket'),(3024,4,126,0,165,NULL),(3025,4,127,0,165,'2'),(3026,4,128,0,165,'4'),(3027,4,71,0,165,'cub beavers reversible blanket'),(3028,4,73,0,165,NULL),(3029,4,74,0,165,'/b/l/blanket.jpg'),(3030,4,75,0,165,'/b/l/blanket.jpg'),(3031,4,76,0,165,'/b/l/blanket.jpg'),(3032,4,92,0,165,NULL),(3033,4,96,0,165,NULL),(3034,4,98,0,165,'container2'),(3035,4,108,0,165,NULL),(3036,4,87,1,165,'cub-beaver-reversible-blanket-campblanket.html'),(3037,4,87,0,165,'cub-beaver-reversible-blanket-campblanket.html'),(3038,4,101,0,165,NULL),(3039,4,102,0,165,NULL),(3040,4,103,0,165,NULL),(3041,4,126,0,81,NULL),(3042,4,127,0,81,'2'),(3043,4,128,0,81,'4'),(3044,4,126,0,43,NULL),(3045,4,127,0,43,'2'),(3046,4,128,0,43,'4'),(3047,4,60,0,166,'Grisport Peaklander Waterproof  Leather Walking Boot'),(3048,4,86,0,166,'grisport-walkingboots-foot-footwear-hikingboots-waterproofboots'),(3049,4,126,0,166,NULL),(3050,4,127,0,166,'2'),(3051,4,128,0,166,'4'),(3052,4,71,0,166,NULL),(3053,4,73,0,166,NULL),(3054,4,74,0,166,'/p/e/peaklander2.jpg'),(3055,4,75,0,166,'/p/e/peaklander2.jpg'),(3056,4,76,0,166,'/p/e/peaklander2.jpg'),(3057,4,92,0,166,NULL),(3058,4,96,0,166,NULL),(3059,4,98,0,166,'container2'),(3060,4,108,0,166,NULL),(3061,4,87,1,166,'grisport-walkingboots-foot-footwear-hikingboots-waterproofboots.html'),(3062,4,87,0,166,'grisport-walkingboots-foot-footwear-hikingboots-waterproofboots.html'),(3063,4,101,0,166,NULL),(3064,4,102,0,166,NULL),(3065,4,103,0,166,NULL),(3066,4,60,0,167,'Grisport Leather waterproof Walking shoe with Vibram Sole'),(3067,4,86,0,167,'grisport-leather-waterproof-walking-shoe-with-vibram-sole'),(3068,4,126,0,167,NULL),(3069,4,127,0,167,'2'),(3070,4,128,0,167,'4'),(3071,4,71,0,167,NULL),(3072,4,73,0,167,NULL),(3073,4,74,0,167,'/d/a/dartmoorbrownpimg.jpg'),(3074,4,75,0,167,'/d/a/dartmoorbrownpimg.jpg'),(3075,4,76,0,167,'/d/a/dartmoorbrownpimg.jpg'),(3076,4,92,0,167,NULL),(3077,4,96,0,167,NULL),(3078,4,98,0,167,'container2'),(3079,4,108,0,167,NULL),(3080,4,87,1,167,'grisport-leather-waterproof-walking-shoe-with-vibram-sole.html'),(3081,4,87,0,167,'grisport-leather-waterproof-walking-shoe-with-vibram-sole.html'),(3082,4,101,0,167,NULL),(3083,4,102,0,167,NULL),(3084,4,103,0,167,NULL),(3085,4,60,0,168,'Nikwax Fabric&Leather Proofing'),(3086,4,86,0,168,'nikwax-proofing-leather-foot-footwer-fabricfootwear'),(3087,4,126,0,168,NULL),(3088,4,127,0,168,'2'),(3089,4,128,0,168,'4'),(3090,4,71,0,168,NULL),(3091,4,73,0,168,NULL),(3092,4,74,0,168,'no_selection'),(3093,4,75,0,168,'no_selection'),(3094,4,76,0,168,'no_selection'),(3095,4,92,0,168,NULL),(3096,4,96,0,168,NULL),(3097,4,98,0,168,'container2'),(3098,4,108,0,168,NULL),(3099,4,87,1,168,'nikwax-proofing-leather-foot-footwer-fabricfootwear.html'),(3100,4,87,0,168,'nikwax-proofing-leather-foot-footwer-fabricfootwear.html'),(3101,4,60,0,169,'Camoflague Army Combat DPM Trousers'),(3102,4,86,0,169,'combatpants'),(3103,4,126,0,169,NULL),(3104,4,127,0,169,'2'),(3105,4,128,0,169,'4'),(3106,4,71,0,169,'camouflague, camopants, armytrousers'),(3107,4,73,0,169,NULL),(3108,4,74,0,169,'/c/a/castlecamo.jpg'),(3109,4,75,0,169,'/c/a/castlecamo.jpg'),(3110,4,76,0,169,'/c/a/castlecamo.jpg'),(3111,4,92,0,169,NULL),(3112,4,96,0,169,NULL),(3113,4,98,0,169,'container2'),(3114,4,108,0,169,NULL),(3115,4,87,1,169,'combatpants.html'),(3116,4,87,0,169,'combatpants.html'),(3117,4,101,0,169,NULL),(3118,4,102,0,169,NULL),(3119,4,103,0,169,NULL),(3120,4,60,0,170,'Mini pick folding shovel'),(3121,4,86,0,170,'mini-pick-folding-shovel'),(3122,4,126,0,170,NULL),(3123,4,127,0,170,'2'),(3124,4,128,0,170,'4'),(3125,4,71,0,170,'folding shovel'),(3126,4,73,0,170,'foldingshovel'),(3127,4,74,0,170,'/s/h/shovel_1.jpg'),(3128,4,75,0,170,'/s/h/shovel_1.jpg'),(3129,4,76,0,170,'/s/h/shovel_1.jpg'),(3130,4,92,0,170,NULL),(3131,4,96,0,170,NULL),(3132,4,98,0,170,'container2'),(3133,4,108,0,170,NULL),(3134,4,87,1,170,'mini-pick-folding-shovel.html'),(3135,4,87,0,170,'mini-pick-folding-shovel.html'),(3136,4,101,0,170,NULL),(3137,4,102,0,170,NULL),(3138,4,103,0,170,NULL),(3139,4,60,0,171,'Highlander Map Compass'),(3140,4,86,0,171,'compass-mapcompass-highlander'),(3141,4,126,0,171,NULL),(3142,4,127,0,171,'2'),(3143,4,128,0,171,'4'),(3144,4,71,0,171,'highlander compass'),(3145,4,73,0,171,'compass'),(3146,4,74,0,171,'/m/a/map-compass-com026.jpg'),(3147,4,75,0,171,'/m/a/map-compass-com026.jpg'),(3148,4,76,0,171,'/m/a/map-compass-com026.jpg'),(3149,4,92,0,171,NULL),(3150,4,96,0,171,NULL),(3151,4,98,0,171,'container2'),(3152,4,108,0,171,NULL),(3153,4,87,1,171,'compass-mapcompass-highlander.html'),(3154,4,87,0,171,'compass-mapcompass-highlander.html'),(3155,4,60,0,172,'Highlander Deluxe Map Compass '),(3156,4,86,0,172,'highlander-deluxe-map-compass'),(3157,4,126,0,172,NULL),(3158,4,127,0,172,'2'),(3159,4,128,0,172,'4'),(3160,4,71,0,172,'highlander deluxe map compass'),(3161,4,73,0,172,NULL),(3162,4,74,0,172,'/c/o/com006.jpg'),(3163,4,75,0,172,'/c/o/com006.jpg'),(3164,4,76,0,172,'/c/o/com006.jpg'),(3165,4,92,0,172,NULL),(3166,4,96,0,172,NULL),(3167,4,98,0,172,'container2'),(3168,4,108,0,172,NULL),(3169,4,87,1,172,'highlander-deluxe-map-compass.html'),(3170,4,87,0,172,'highlander-deluxe-map-compass.html'),(3171,4,101,0,172,NULL),(3172,4,102,0,172,NULL),(3173,4,103,0,172,NULL),(3174,4,101,0,171,NULL),(3175,4,102,0,171,NULL),(3176,4,103,0,171,NULL),(3177,4,60,0,173,'Highlander Roamer Mapcase'),(3178,4,86,0,173,'highlander-mapcase-map-case'),(3179,4,126,0,173,NULL),(3180,4,127,0,173,'2'),(3181,4,128,0,173,'4'),(3182,4,71,0,173,'mapcase highlander'),(3183,4,73,0,173,NULL),(3184,4,74,0,173,'/r/o/roamermap.jpg'),(3185,4,75,0,173,'/r/o/roamermap.jpg'),(3186,4,76,0,173,'/r/o/roamermap.jpg'),(3187,4,92,0,173,NULL),(3188,4,96,0,173,NULL),(3189,4,98,0,173,'container2'),(3190,4,108,0,173,NULL),(3191,4,87,1,173,'highlander-mapcase-map-case.html'),(3192,4,87,0,173,'highlander-mapcase-map-case.html'),(3193,4,101,0,173,NULL),(3194,4,102,0,173,NULL),(3195,4,103,0,173,NULL),(3196,4,60,0,174,'Trekmates Soft Feel Mapcase'),(3197,4,86,0,174,'trekmates-soft-feel-mapcase'),(3198,4,126,0,174,NULL),(3199,4,127,0,174,'2'),(3200,4,128,0,174,'4'),(3201,4,71,0,174,'trekmates mapcase'),(3202,4,73,0,174,NULL),(3203,4,74,0,174,'/t/r/trek_feel_1.jpg'),(3204,4,75,0,174,'/t/r/trek_feel_1.jpg'),(3205,4,76,0,174,'/t/r/trek_feel_1.jpg'),(3206,4,92,0,174,NULL),(3207,4,96,0,174,NULL),(3208,4,98,0,174,'container2'),(3209,4,108,0,174,NULL),(3210,4,87,1,174,'trekmates-soft-feel-mapcase.html'),(3211,4,87,0,174,'trekmates-soft-feel-mapcase.html'),(3212,4,101,0,174,NULL),(3213,4,102,0,174,NULL),(3214,4,103,0,174,NULL),(3215,4,60,0,175,'Castle Zip Front Overalls-boilersuits-coveralls'),(3216,4,86,0,175,'castle-zip-front-overalls-boilersuits-coveralls'),(3217,4,126,0,175,NULL),(3218,4,127,0,175,'2'),(3219,4,128,0,175,'4'),(3220,4,71,0,175,'overalls by castle'),(3221,4,73,0,175,NULL),(3222,4,74,0,175,'/3/6/366.png'),(3223,4,75,0,175,'/3/6/366.png'),(3224,4,76,0,175,'/3/6/366.png'),(3225,4,92,0,175,NULL),(3226,4,96,0,175,NULL),(3227,4,98,0,175,'container2'),(3228,4,108,0,175,NULL),(3229,4,87,1,175,'castle-zip-front-overalls-boilersuits-coveralls.html'),(3230,4,87,0,175,'castle-zip-front-overalls-boilersuits-coveralls.html'),(3231,4,101,0,175,NULL),(3232,4,102,0,175,NULL),(3233,4,103,0,175,NULL),(3234,4,60,0,176,'Highlander Kingfisher Lock Knife'),(3235,4,86,0,176,'highlander-kingfisher-lock-knife'),(3236,4,126,0,176,NULL),(3237,4,127,0,176,'2'),(3238,4,128,0,176,'4'),(3239,4,71,0,176,'6.5 lock knife'),(3240,4,73,0,176,NULL),(3241,4,74,0,176,'/6/_/6.5_lock.jpg'),(3242,4,75,0,176,'/6/_/6.5_lock.jpg'),(3243,4,76,0,176,'/6/_/6.5_lock.jpg'),(3244,4,92,0,176,NULL),(3245,4,96,0,176,NULL),(3246,4,98,0,176,'container2'),(3247,4,108,0,176,NULL),(3248,4,87,1,176,'highlander-kingfisher-lock-knife.html'),(3249,4,87,0,176,'highlander-kingfisher-lock-knife.html'),(3250,4,101,0,176,NULL),(3251,4,102,0,176,NULL),(3252,4,103,0,176,NULL),(3253,4,60,0,177,'Highlander Survival Bag'),(3254,4,86,0,177,'highlander-survival-bag'),(3255,4,126,0,177,NULL),(3256,4,127,0,177,'2'),(3257,4,128,0,177,'4'),(3258,4,71,0,177,'survivalbag'),(3259,4,73,0,177,NULL),(3260,4,74,0,177,'/s/u/survival_bag.jpg'),(3261,4,75,0,177,'/s/u/survival_bag.jpg'),(3262,4,76,0,177,'/s/u/survival_bag.jpg'),(3263,4,92,0,177,NULL),(3264,4,96,0,177,NULL),(3265,4,98,0,177,'container2'),(3266,4,108,0,177,NULL),(3267,4,87,1,177,'highlander-survival-bag.html'),(3268,4,87,0,177,'highlander-survival-bag.html'),(3269,4,101,0,177,NULL),(3270,4,102,0,177,NULL),(3271,4,103,0,177,NULL),(3272,4,60,0,178,'Rucksack liner'),(3273,4,86,0,178,'rucksack-liner'),(3274,4,126,0,178,NULL),(3275,4,127,0,178,'2'),(3276,4,128,0,178,'4'),(3277,4,71,0,178,'rucksack liner'),(3278,4,73,0,178,NULL),(3279,4,74,0,178,'/s/a/sacliner1.jpg'),(3280,4,75,0,178,'/s/a/sacliner1.jpg'),(3281,4,76,0,178,'/s/a/sacliner1.jpg'),(3282,4,92,0,178,NULL),(3283,4,96,0,178,NULL),(3284,4,98,0,178,'container2'),(3285,4,108,0,178,NULL),(3286,4,87,1,178,'rucksack-liner.html'),(3287,4,87,0,178,'rucksack-liner.html'),(3288,4,101,0,178,NULL),(3289,4,102,0,178,NULL),(3290,4,103,0,178,NULL),(3291,4,60,0,179,'Emergency Survival Whistles'),(3292,4,86,0,179,'emergency-survival-whistles'),(3293,4,126,0,179,NULL),(3294,4,127,0,179,'2'),(3295,4,128,0,179,'4'),(3296,4,71,0,179,'perry whistle emerency survival whistle'),(3297,4,73,0,179,NULL),(3298,4,74,0,179,'/w/h/whistle.jpg'),(3299,4,75,0,179,'/w/h/whistle.jpg'),(3300,4,76,0,179,'/w/h/whistle.jpg'),(3301,4,92,0,179,NULL),(3302,4,96,0,179,NULL),(3303,4,98,0,179,'container2'),(3304,4,108,0,179,NULL),(3305,4,87,1,179,'emergency-survival-whistles.html'),(3306,4,87,0,179,'emergency-survival-whistles.html'),(3307,4,101,0,179,NULL),(3308,4,102,0,179,NULL),(3309,4,103,0,179,NULL),(3310,4,60,0,180,'Highlander Hydration Systems  2 Litre'),(3311,4,86,0,180,'highlander-hydration-systes-2-litre'),(3312,4,126,0,180,NULL),(3313,4,127,0,180,'2'),(3314,4,128,0,180,'4'),(3315,4,71,0,180,'hydration bag 2 litre'),(3316,4,73,0,180,NULL),(3317,4,74,0,180,'/m/i/microban_hydration.jpg'),(3318,4,75,0,180,'/m/i/microban_hydration.jpg'),(3319,4,76,0,180,'/m/i/microban_hydration.jpg'),(3320,4,92,0,180,NULL),(3321,4,96,0,180,NULL),(3322,4,98,0,180,'container2'),(3323,4,108,0,180,NULL),(3324,4,87,1,180,'highlander-hydration-systes-2-litre.html'),(3325,4,87,0,180,'highlander-hydration-systes-2-litre.html'),(3326,4,101,0,180,NULL),(3327,4,102,0,180,NULL),(3328,4,103,0,180,NULL),(3332,4,60,0,181,'Emergency Blankets Silver reflective insulating'),(3333,4,86,0,181,'emergency-blankets-silver-reflective-insulating'),(3334,4,126,0,181,NULL),(3335,4,127,0,181,'2'),(3336,4,128,0,181,'4'),(3337,4,71,0,181,'emergency blanket'),(3338,4,73,0,181,'emergencyblankey'),(3339,4,74,0,181,'/e/m/emergblanket.jpg'),(3340,4,75,0,181,'/e/m/emergblanket.jpg'),(3341,4,76,0,181,'/e/m/emergblanket.jpg'),(3342,4,92,0,181,NULL),(3343,4,96,0,181,NULL),(3344,4,98,0,181,'container2'),(3345,4,108,0,181,NULL),(3346,4,87,1,181,'emergency-blankets-silver-reflective-insulating.html'),(3347,4,87,0,181,'emergency-blankets-silver-reflective-insulating.html'),(3348,4,101,0,181,NULL),(3349,4,102,0,181,NULL),(3350,4,103,0,181,NULL),(3351,4,60,0,182,'Firestarter'),(3352,4,86,0,182,'firestarter'),(3353,4,126,0,182,NULL),(3354,4,127,0,182,'2'),(3355,4,128,0,182,'4'),(3356,4,71,0,182,'firestarters'),(3357,4,73,0,182,NULL),(3358,4,74,0,182,'/f/i/firestarter.jpg'),(3359,4,75,0,182,'/f/i/firestarter.jpg'),(3360,4,76,0,182,'/f/i/firestarter.jpg'),(3361,4,92,0,182,NULL),(3362,4,96,0,182,NULL),(3363,4,98,0,182,'container2'),(3364,4,108,0,182,NULL),(3365,4,87,1,182,'firestarter.html'),(3366,4,87,0,182,'firestarter.html'),(3367,4,101,0,182,NULL),(3368,4,102,0,182,NULL),(3369,4,103,0,182,NULL),(3370,4,60,0,183,'Craghoppers Basecamp Ladies Lined Winter Trousers'),(3371,4,86,0,183,'crags-craghoppers-basecamp-lined-winterlined'),(3372,4,126,0,183,NULL),(3373,4,127,0,183,'2'),(3374,4,128,0,183,'4'),(3375,4,71,0,183,'craghoppers'),(3376,4,73,0,183,NULL),(3377,4,74,0,183,'/l/i/linedbasecamp.jpg'),(3378,4,75,0,183,'/l/i/linedbasecamp.jpg'),(3379,4,76,0,183,'/l/i/linedbasecamp.jpg'),(3380,4,92,0,183,NULL),(3381,4,96,0,183,NULL),(3382,4,98,0,183,'container2'),(3383,4,108,0,183,NULL),(3384,4,87,1,183,'crags-craghoppers-basecamp-lined-winterlined.html'),(3385,4,87,0,183,'crags-craghoppers-basecamp-lined-winterlined.html'),(3386,4,101,0,183,NULL),(3387,4,102,0,183,NULL),(3388,4,103,0,183,NULL);
/*!40000 ALTER TABLE `catalog_product_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_flat_1`
--

DROP TABLE IF EXISTS `catalog_product_flat_1`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_flat_1` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Set Id',
  `type_id` varchar(32) NOT NULL default 'simple' COMMENT 'Type Id',
  `cost` decimal(12,4) default NULL COMMENT 'Cost',
  `created_at` timestamp NULL default NULL COMMENT 'Created At',
  `enable_googlecheckout` smallint(6) default NULL COMMENT 'Enable Googlecheckout',
  `has_options` smallint(6) NOT NULL default '0' COMMENT 'Has Options',
  `image_label` varchar(255) default NULL COMMENT 'Image Label',
  `is_recurring` smallint(6) default NULL COMMENT 'Is Recurring',
  `links_exist` int(11) default NULL COMMENT 'Links Exist',
  `links_purchased_separately` int(11) default NULL COMMENT 'Links Purchased Separately',
  `links_title` varchar(255) default NULL COMMENT 'Links Title',
  `name` varchar(255) default NULL COMMENT 'Name',
  `news_from_date` datetime default NULL COMMENT 'News From Date',
  `news_to_date` datetime default NULL COMMENT 'News To Date',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `price_type` int(11) default NULL COMMENT 'Price Type',
  `price_view` int(11) default NULL COMMENT 'Price View',
  `recurring_profile` text COMMENT 'Recurring Profile',
  `required_options` smallint(5) unsigned NOT NULL default '0' COMMENT 'Required Options',
  `shipment_type` int(11) default NULL COMMENT 'Shipment Type',
  `short_description` text COMMENT 'Short Description',
  `sku` varchar(64) default NULL COMMENT 'Sku',
  `sku_type` int(11) default NULL COMMENT 'Sku Type',
  `small_image` varchar(255) default NULL COMMENT 'Small Image',
  `small_image_label` varchar(255) default NULL COMMENT 'Small Image Label',
  `special_from_date` datetime default NULL COMMENT 'Special From Date',
  `special_price` decimal(12,4) default NULL COMMENT 'Special Price',
  `special_to_date` datetime default NULL COMMENT 'Special To Date',
  `tax_class_id` int(10) unsigned default NULL COMMENT 'Tax Class Id',
  `thumbnail` varchar(255) default NULL COMMENT 'Thumbnail',
  `thumbnail_label` varchar(255) default NULL COMMENT 'Thumbnail Label',
  `updated_at` timestamp NULL default NULL COMMENT 'Updated At',
  `url_key` varchar(255) default NULL COMMENT 'Url Key',
  `url_path` varchar(255) default NULL COMMENT 'Url Path',
  `visibility` smallint(5) unsigned default NULL COMMENT 'Visibility',
  `weight` decimal(12,4) default NULL COMMENT 'Weight',
  `weight_type` int(11) default NULL COMMENT 'Weight Type',
  `color` int(11) default NULL COMMENT 'Color',
  `color_value` varchar(255) default NULL COMMENT 'Color Value',
  `combat_style_main_size` int(11) default NULL COMMENT 'Combat Style Main Size',
  `combat_style_main_size_value` varchar(255) default NULL COMMENT 'Combat Style Main Size Value',
  `custom_design_from` datetime default NULL COMMENT 'Custom Design From',
  `custom_design_to` datetime default NULL COMMENT 'Custom Design To',
  `custom_layout_update` text COMMENT 'Custom Layout Update',
  `description` text COMMENT 'Description',
  `gallery` varchar(255) default NULL COMMENT 'Gallery',
  `gift_message_available` smallint(6) default NULL COMMENT 'Gift Message Available',
  `image` varchar(255) default NULL COMMENT 'Image',
  `is_imported` smallint(6) default NULL COMMENT 'Is Imported',
  `manufacturer` int(11) default NULL COMMENT 'Manufacturer',
  `manufacturer_value` varchar(255) default NULL COMMENT 'Manufacturer Value',
  `media_gallery` varchar(255) default NULL COMMENT 'Media Gallery',
  `meta_description` varchar(255) default NULL COMMENT 'Meta Description',
  `meta_keyword` text COMMENT 'Meta Keyword',
  `meta_title` varchar(255) default NULL COMMENT 'Meta Title',
  `minimal_price` decimal(12,4) default NULL COMMENT 'Minimal Price',
  `msrp` decimal(12,4) default NULL COMMENT 'Msrp',
  `msrp_display_actual_price_type` varchar(255) default NULL COMMENT 'Msrp Display Actual Price Type',
  `msrp_enabled` smallint(6) default NULL COMMENT 'Msrp Enabled',
  `old_id` int(11) default NULL COMMENT 'Old Id',
  PRIMARY KEY  (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_FLAT_1_TYPE_ID` (`type_id`),
  KEY `IDX_CATALOG_PRODUCT_FLAT_1_ATTRIBUTE_SET_ID` (`attribute_set_id`),
  KEY `IDX_CATALOG_PRODUCT_FLAT_1_NAME` (`name`),
  KEY `IDX_CATALOG_PRODUCT_FLAT_1_PRICE` (`price`),
  CONSTRAINT `FK_CAT_PRD_FLAT_1_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_flat_1`
--

LOCK TABLES `catalog_product_flat_1` WRITE;
/*!40000 ALTER TABLE `catalog_product_flat_1` DISABLE KEYS */;
INSERT INTO `catalog_product_flat_1` VALUES (3,4,'simple',NULL,'2010-10-17 22:08:53',1,1,'',0,NULL,NULL,NULL,'3 Season Gelert Tryfan Classic Sleeping Bag ',NULL,NULL,'19.9900',NULL,NULL,NULL,1,NULL,'3 Season Warm and Cosy Gelert Tryfan Classic Sleeping Bag ','Tryfan300DLBlack',NULL,'/t/r/tryfan_olive.jpg','',NULL,NULL,NULL,2,'/t/r/tryfan_olive.jpg','','2011-12-01 12:43:44','3-season-warm-sleeping-bag-by-gelert','3-season-warm-sleeping-bag-by-gelert.html',4,'2.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Gelert Tryfan Classic Sleeping\r\n\r\nThe ever popular Gelert classic range offers outstanding value, comfort & durability.\r\n\r\n* Ridge hood\r\n* Zip baffle\r\n* Shoulder baffle\r\n* Internal security pocket\r\n* Compression sac\r\n\r\nSPECIFICATIONS\r\n\r\n* Size: 230 x 80 x 50 cm\r\n* Size: Packed: 23 x 35 cm\r\n* Shell: 190T/70D Polyester\r\n* Lining: Poly-Cotton\r\n* Filling: 300g/m² Double Layer Polyester/Mono Fibre Mix\r\nColour - Olive Green or Black.\r\nWeight - 1.7kg\r\nComfort 0.3oC\r\nExtreme -16oC\r\n\r\n',NULL,0,'/t/r/tryfan_olive.jpg',0,NULL,NULL,NULL,'','3season, sleepingbag, sleepingbags, tryfan, gelertsleepingbags, ','tryfan sleeping bag',NULL,NULL,'4',2,NULL),(4,4,'simple',NULL,'2010-10-17 22:12:34',1,0,'',0,NULL,NULL,NULL,'Proforce 33 litre Camoflage Rucksack suitable for cadets',NULL,NULL,'39.9900',NULL,NULL,NULL,0,NULL,'Forces 33 proforce Rucksack suitable for cadets','35LCamo',NULL,'/h/i/high25camo_1.jpg','',NULL,NULL,NULL,2,'/h/i/high25camo_1.jpg','','2011-12-01 12:47:41','33-litre-cadet-army-camouflage-rucksacks','33-litre-cadet-army-camouflage-rucksacks.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Item Description\r\n\r\n    * Capacity: 33L\r\n    * Colour: DPM\r\n    * Material: XTP900\r\n    * Size: Length: 45cm\r\n    * Weight: 1.3 kg\r\n\r\n    * Duraflex branded buckles and clips\r\n    * 10 Gauge self repair zips\r\n    * Shock cord top system\r\n    * Draw cord snow closure, Chest and waist strap\r\n    * Waterproof transit case, Lid Compartment\r\n    * Accessory D-rings, Utility chain\r\n    * Airmesh funnel back system\r\n    * Side Pockets: 2x1.5 litre\r\n\r\nXTP is a specialist woven fabric that has been designed for rugged outdoor use, making it the ideal choice for rucksacks and day sacks. It is woven from polyester yarns and is specially textured to maximise strength and to prevent abrasion, tears and scuffs. XTP has a durable waterproof coating to maximise water repellency.\r\n\r\nAirmesh is a fabric specially developed for rucksacks and daysacks. It is padded with open cell foam to ensure maximum comfort in body contact areas. Airmesh is specially woven from high wicking fibres to ensure maximum air circulation and breathability. It is soft to the touch but highly durable.\r\nproforce 33 litre rucksacks\r\ntunnel mesh back systems\r\nlid pocket\r\nwaist strap\r\n2 side pockets\r\nduraflex buckles and clips\r\nshock cord system top \r\nXTP9oo fabric',NULL,0,'/h/i/high25camo_1.jpg',0,NULL,NULL,NULL,'33litre rucksacks','bergan, camoruckascks, camouflague, armyrucksacks, proforce33litrecadetrucksacks, cadetbags, dpmrucksacks','33 litre army rucksack',NULL,NULL,'4',2,NULL),(7,14,'simple',NULL,'2010-10-18 22:21:52',1,0,'',0,NULL,NULL,NULL,'Proforce 25 Litre Rucksack - Camo',NULL,NULL,'34.9900',NULL,NULL,NULL,0,NULL,'Proforce 25 litreDPM camouflague  Rucksack suitable for Cadeta and the TA','Forces 25 litre camo ',NULL,'/h/i/high25camo_2.jpg','',NULL,NULL,NULL,2,'/h/i/high25camo_2.jpg','','2011-12-29 15:10:14','proforce-25-litre-rucksack-camo-dpm-cadets-ta','proforce-25-litre-rucksack-camo-dpm-cadets-ta.html',4,'1.1500',NULL,8,'Camo',NULL,NULL,NULL,NULL,'','Proforce 25 Litre rucksack in camouflague\r\nAirmesh tunnel back  system\r\nLid compartment\r\n2 side pockets\r\nwaist strap\r\n',NULL,0,'/h/i/high25camo_2.jpg',0,NULL,NULL,NULL,'25litrerucksacks','bergan, 25litrecadetrucksack, camo, camouflaguerucksacks, dpmruckscaks, tarucksacks, camouflague, camoflage, camoflague, ','25 litre cadet rucksack',NULL,NULL,'4',2,NULL),(8,14,'simple',NULL,'2010-10-18 22:23:11',1,0,'',0,NULL,NULL,NULL,'Proforce 25 Litre Military Lightweight Rucksack  for Cadets/TA- ',NULL,NULL,'34.9900',NULL,NULL,NULL,0,NULL,'Proforce 25 litre Military Army Cadet  Rucksack, suitable daybag for the TA','forces25camo',NULL,'/o/l/oliveforces25.jpg','',NULL,NULL,NULL,2,'/o/l/oliveforces25.jpg','','2011-12-01 13:02:16','proforce-25-litre-rucksack-olive-ta-daybag-cadets-military','proforce-25-litre-rucksack-olive-ta-daybag-cadets-military.html',4,'1.1500',NULL,7,'Olive',NULL,NULL,NULL,NULL,'','Proforce 25 litre Rucksacks\r\nAirmesh funnel back\r\nLid compartment\r\n2 side pockets\r\nWaist strap\r\nDuraflex buckles and clips\r\n10 guage self repair zips\r\nShock cord topsystem\r\nXTP900 fabric for greater durablity',NULL,0,'/o/l/oliveforces25.jpg',0,NULL,NULL,NULL,'proforce25','bergan, camo ,camouflaguerucksack, dpmrucksacks, cadetrucksack, tarucksack.proforcerucksack.','25 litre proforce',NULL,NULL,'4',2,NULL),(10,4,'simple',NULL,'2010-10-23 09:52:50',1,1,'Cadet Army Assault Boots',0,NULL,NULL,NULL,'Cadet  Army Assault  Miltiary TA Security Boots',NULL,NULL,'49.9900',NULL,NULL,NULL,1,NULL,'Assault, TA,Cadet Security Boots\r\n\r\nModelled after the British Forces issue assault boot, and ever popular with the cadets and the TA.','Cadet Assault Boot',NULL,'/c/a/cadet_assault_boot.jpg','Cadet Army Assault Boots',NULL,NULL,NULL,2,'/c/a/cadet_assault_boot.jpg','Cadet Army Assault Boots','2012-01-04 13:12:12','cadet-assault-security-ta-boots','cadet-assault-security-ta-boots.html',4,'2.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Modelled after the British Forces issue assault boot and ever popular with the cadets and the TA.',NULL,0,'/c/a/cadet_assault_boot.jpg',0,NULL,NULL,NULL,'assault boots','assaultboot, armyassaultboot, boots, cadetboots, militartyboots, footwear.','assault boot',NULL,NULL,'4',2,NULL),(11,4,'simple',NULL,'2010-10-23 10:00:38',1,1,'',0,NULL,NULL,NULL,'Army Style Hooded Military Army waterproof Ponchos.',NULL,NULL,'18.9900',NULL,NULL,NULL,1,NULL,'Army Style Military Waterproof Hooded Ponchos','Army ponchos',NULL,'/a/r/armyponcho.jpg','',NULL,NULL,NULL,2,'/a/r/armyponcho.jpg','','2012-01-06 09:33:47','army-style-hooded-ponchos-military-waterproof','army-style-hooded-ponchos-military-waterproof.html',4,'0.3500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','US Style Waterproof ponchos .\r\nWaterproof ripstop Nylon\r\n6 Brass eyelets and pressstuds down both sides.\r\nDrawcord hood\r\nWeighs only 350 grams\r\n',NULL,0,'/a/r/armyponcho.jpg',0,NULL,NULL,NULL,'camoponcho','poncho, ponchos, waterproof,armystylewaterproof, camoponcho, camoflague, camouflague, ponchoes,','camoponcho',NULL,NULL,'4',2,NULL),(12,4,'simple',NULL,'2010-10-23 10:10:09',1,1,'',0,NULL,NULL,NULL,'Camouflage DPM Military Army T-Shirt',NULL,NULL,'6.9900',NULL,NULL,NULL,1,NULL,'Camoulage T-Shirt Military Style\r\nBritish DPM ','Camo T-Shirt',NULL,'/c/a/camotshirt.jpg','',NULL,NULL,NULL,2,'/c/a/camotshirt.jpg','','2011-12-01 14:56:09','army-t-shirt-military-camoflage-dpm-shooting','army-t-shirt-military-camoflage-dpm-shooting.html',4,'0.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Camouflage British DPM T-Shirt\r\n100% Cotton\r\n',NULL,0,'/c/a/camotshirt.jpg',0,NULL,NULL,NULL,'camotshirt','camotshirt, cammo, camouflaguetshirt, dpm, dpmtshirt, teeshirt.','camoteeshirt',NULL,NULL,'4',2,NULL),(13,4,'simple',NULL,'2010-10-23 10:14:43',1,1,'',0,NULL,NULL,NULL,'Olive Green Army Cadet T-Shirt',NULL,NULL,'4.9900',NULL,NULL,NULL,1,NULL,'Olive Green Army Cadet T-Shirt','Olive T-Shirt',NULL,'/o/l/olivet.jpg','',NULL,NULL,NULL,2,'/o/l/olivet.jpg','','2011-12-01 14:52:21','olive-green-army-t-shirt-cadets-ta','olive-green-army-t-shirt-cadets-ta.html',4,'0.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Olive T-Shirt\r\n100& Cotton\r\nIdeal to wear under 95 Pattern Shirts\r\nTA and cadet suitable',NULL,0,'/o/l/olivet.jpg',0,NULL,NULL,NULL,'armytshirt','armytshirt, teeshirt, greenteeshirt, cadet, tshirt, teeshirt, olivegreentshirt, cadettshirt.','armytshirt',NULL,NULL,'4',2,NULL),(14,4,'simple',NULL,'2010-10-23 10:21:52',1,1,'',0,NULL,NULL,NULL,'Military Style Army Commando Pullover',NULL,NULL,'14.9900',NULL,NULL,NULL,1,NULL,'Military Style Army Commando Sweater','Commando Sweaters',NULL,'/c/o/commando_sweater.jpg','',NULL,NULL,NULL,2,'/c/o/commando_sweater.jpg','','2011-12-01 14:49:22','military-style-army-commando-sweater','military-style-army-commando-sweater.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Military Style Commando Sweater\r\n100 % Acrylic\r\nReinforced elbows & shoulders\r\nShoulder epaulettes\r\n\r\nSize XXL in NAVY BLUE  temporarily out of stock until 3rd December 2011.\r\n\r\n',NULL,0,'/c/o/commando_sweater.jpg',0,NULL,NULL,NULL,'armysweater','armysweater, armyjumper, swater, militarysweater,commandosweater,pullover, armypullover.','armysweater',NULL,NULL,'4',2,NULL),(15,4,'simple',NULL,'2010-10-23 10:29:12',1,1,'',0,NULL,NULL,NULL,'Kids Camoflage Jacket',NULL,NULL,'14.9900',NULL,NULL,NULL,1,NULL,'Kids Camoflage Jackets','kids Camo Jacket',NULL,'/k/i/kids_camo_jkt.jpg','',NULL,NULL,NULL,0,'/k/i/kids_camo_jkt.jpg','','2011-12-29 14:32:39','kids-camoflage-jacket','kids-camoflage-jacket.html',4,'1.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Childrens Camouflage Combat Jacket\r\nPolyester filled\r\nPadded for warmth',NULL,0,'/k/i/kids_camo_jkt.jpg',0,NULL,NULL,NULL,'kidscamojacket','kidscamojacket, camouflague,camojacket, armysuits, suits, camoflague, camoflages, camoflage, ','kidscamojacket',NULL,NULL,'4',2,NULL),(16,4,'simple',NULL,'2010-10-23 10:33:16',1,0,'',0,NULL,NULL,NULL,'Kids Camouflague Army DPM Combat Jacket  Age 13/14 Years',NULL,NULL,'17.5000',NULL,NULL,NULL,0,NULL,'Kids Camouflague Combat Army DPM  Jacket Age 13/14 Years','kids Camo Jackets age13/14 Years',NULL,'/k/i/kids_camo_jkt_1.jpg','',NULL,NULL,NULL,2,'/k/i/kids_camo_jkt_1.jpg','','2011-12-29 14:31:16','kids-camouflague-combat-army-dpm-jacket-age-13-14-years','kids-camouflague-combat-army-dpm-jacket-age-13-14-years.html',4,'1.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Kids Camouflague Combat Jackets\r\n\r\nAge 13/14 Years\r\n\r\nPadded for warmth',NULL,0,'/k/i/kids_camo_jkt_1.jpg',0,NULL,NULL,NULL,'13/14camopants','13to14armypants, camopants, camouflaguetrousers, armysuits, suits, camoflague, camouflagues,','13to14armypants',NULL,NULL,'4',2,NULL),(17,4,'simple',NULL,'2010-10-23 10:40:01',1,1,'',0,NULL,NULL,NULL,'Kids Camouflague Combat camo  Army  Trousers',NULL,NULL,'12.9900',NULL,NULL,NULL,1,NULL,'Kids Camouflague Combat Army Trousers','Kids Camo  trousers',NULL,'/k/i/kids_camo_trs.jpg','',NULL,NULL,NULL,0,'/k/i/kids_camo_trs.jpg','','2011-12-29 14:30:34','kids-camouflague-combat-army-trousers','kids-camouflague-combat-army-trousers.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Kids Camouflague Combat Trousers\r\nPolyester/Cotton\r\nBritish DPM\r\nAnkle Adjusters\r\nSide Pockets\r\nSizes available\r\n3/4, 5/6,7/8 9/10,11/12\r\n\r\nAge 13/14 also available \r\n\r\n',NULL,0,'/k/i/kids_camo_trs.jpg',0,NULL,NULL,NULL,'kidscamopants','kidscamotrousers, camo, armytrousers, kidsarmytrousers, armypants, camouflague, camouflaguepants, armysuits, suits, cmoflague, camoflague, ','kidscamotrousers',NULL,NULL,'4',2,NULL),(18,4,'simple',NULL,'2010-10-23 10:47:52',1,0,'',0,NULL,NULL,NULL,' Cotton army  military  uniform Pistol Belts',NULL,NULL,'5.9900',NULL,NULL,NULL,0,NULL,'Cotton Army Pistol Belts','Pistol Belts',NULL,'/p/i/pistolbelts_1.jpg','',NULL,NULL,NULL,2,'/p/i/pistolbelts_1.jpg','','2011-12-01 14:42:01','cotton-army-pistol-belts-militarybelts-uniformbelts','cotton-army-pistol-belts-militarybelts-uniformbelts.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Heavy duty canvas webbing belts\r\nSize adjusts to fit up to 40 inch waist\r\nEasy fasten metal buckle\r\n56mm width',NULL,0,'/p/i/pistolbelts_1.jpg',0,NULL,NULL,NULL,'armypistolbelts','pistolbelts, belts, armybelts, amy, militarybelts, military, tabelts, armyuniformbelts, uniformbets','armypistolbelts',NULL,NULL,'4',2,NULL),(21,4,'simple',NULL,'2010-10-23 12:35:53',1,0,'',0,NULL,NULL,NULL,'Army style mess Tins',NULL,NULL,'5.9900',NULL,NULL,NULL,0,NULL,'Army Style Mess tins suitable for cadets and camping','Messtins',NULL,'/m/e/mess_set_lrg.jpg','',NULL,NULL,NULL,2,'/m/e/mess_set_lrg.jpg','','2011-12-01 14:37:58','army-style-mess-tins-camping-cadets','army-style-mess-tins-camping-cadets.html',4,'0.8500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',' Army style Mess Tins\r\nTough aluminum construction\r\n1.5litre and a 1.3 litre capacity',NULL,0,'/m/e/mess_set_lrg.jpg',0,NULL,NULL,NULL,'messtins','armymesstins, messtins, ta tins,billycan,','armymesstins',NULL,NULL,'4',2,NULL),(22,4,'simple',NULL,'2010-10-23 12:55:28',1,1,'',0,NULL,NULL,NULL,'Soldier 95 Shirts Grade 1 Issue',NULL,NULL,'11.9900',NULL,NULL,NULL,1,NULL,'Soldier 95 Shirts Grade 1 Issue','95 shirts grade 1',NULL,'/9/5/95_shirts.jpg','',NULL,NULL,NULL,2,'/9/5/95_shirts.jpg','','2011-12-29 14:29:05','soldier-95-shirts-grade-1-issue','soldier-95-shirts-grade-1-issue.html',4,'1.2500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Soldier 95 Shirts Grade 1 Issue\r\nKindly contact for sizes available',NULL,0,'/9/5/95_shirts.jpg',0,NULL,NULL,NULL,'soldier95shirts','soldier95, soldier95kit, soldier95shirts, armyissuekit, armysurplusshirts, 95shirts.95shirt, camoflage, camouflgue, camoflague, ','soldier95shirts',NULL,NULL,'4',2,NULL),(23,4,'simple',NULL,'2010-10-23 13:20:52',1,1,'',0,NULL,NULL,NULL,'Snugpak Elite Softie Jacket',NULL,NULL,'69.9900',NULL,NULL,NULL,1,NULL,'SnugpakElite Softie Jacket packable the original brand','Softi Elite',NULL,'/s/l/sleeka_elitelite1.jpg','',NULL,NULL,NULL,2,'/s/l/sleeka_elitelite1.jpg','','2011-12-01 14:34:59','snugpak-elite-softie-jacket-packable-the-original','snugpak-elite-softie-jacket-packable-the-original.html',4,'2.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Snugpak Elite Softi Jacket\r\nSleeka Elite\r\nDescription\r\nElite Jackets have been equipped with reinforced patches covering all stress points; shoulder, elbow and cuff and now supplied with a compression stuff sack so you can really get the benefit out of our highly compressible Softie insulation\r\n\r\nAvailable in medium, large, xlarge\r\n\r\n\r\n',NULL,0,'/s/l/sleeka_elitelite1.jpg',0,NULL,NULL,NULL,'snugpak sleeka elite','snugpak, softie, softiejacket,softiesleekajacket, softiesleekalite, sleekaelite.','snugpaksoftie jacket',NULL,NULL,'4',2,NULL),(24,4,'simple',NULL,'2010-10-25 07:55:18',1,1,'',0,NULL,NULL,NULL,'Regatta Pakaway Waterproof & Breathable Jacket',NULL,NULL,'19.9900',NULL,NULL,NULL,1,NULL,'regatta Pakaway jacket lighweight waterproof & breathable, packs into a bag.','Pakaway jkt',NULL,'/p/a/pakaway_jkt.jpg','',NULL,NULL,NULL,2,'/p/a/pakaway_jkt.jpg','','2011-12-01 14:31:51','regatta-pakaway-waterproof-and-breathable-jacket-packable','regatta-pakaway-waterproof-and-breathable-jacket-packable.html',4,'0.7000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','PACKAWAY II JACKET   \r\n\r\n\r\nPackaway II Jacket\r\n\r\n    * Waterproof and breathable Isolite 5000 lightweight polyamide fabric\r\n    * Windproof fabric\r\n    * Taped seams\r\n    * Integral hood\r\n    * Studded stormflap with hook and loop\r\n    * 2 lower pockets\r\n    * Mesh stuff sack\r\n\r\nSizes:\r\nXS-XXXL\r\n\r\nRRP £27.00\r\n\r\nIsolite5000Packaway\r\n\r\nCustomer Reviews (2)',NULL,0,'/p/a/pakaway_jkt.jpg',0,NULL,NULL,NULL,'regatta pakaway jackets','waterproofs, waterproofjackets, kagools, kagoules, reagattawaterproofs,lightweighwaterproofandbreathablejackets, lightweight, regatta,regattawaterproofs, pakawayjackets, regattawaterproofandbreathablejackets.','regattawaterproofandbreathable jackets',NULL,NULL,'4',2,NULL),(25,4,'simple',NULL,'2010-10-25 08:01:19',1,1,'',0,NULL,NULL,NULL,'Regatta Pakaway Waterproof & Breathable Overtrousers Lighweight',NULL,NULL,'11.9900',NULL,NULL,NULL,1,NULL,'Regatta Breathable waterproof overtrousers lightweight','Pakaway Trs',NULL,'/n/a/navy_paka_trs.jpg','',NULL,NULL,NULL,2,'/n/a/navy_paka_trs.jpg','','2011-12-01 14:28:30','reagatta-pakaway-waterproof-breathable-overtrousers','reagatta-pakaway-waterproof-breathable-overtrousers.html',4,'0.7000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Colourway:  Navy < Black\r\nPackaway II Overtrousers\r\n\r\n    * Waterproof and breathable Isolite 5000 lightweight polyamide fabric\r\n    * Windproof fabric\r\n    * Taped seams\r\n    * Elasticated waist\r\n    * Press studs at hem\r\n    * 2 side pocket openings\r\n    * Mesh stuff sack\r\n\r\nSizes:\r\nS-XXXL\r\n\r\nRRP £15.00\r\n\r\nIsolite5000Packaway\r\n\r\nCustomer Reviews (3)',NULL,0,'/n/a/navy_paka_trs.jpg',0,NULL,NULL,NULL,'regattawaterproofovertrousers','reagatta, waterproofovertrousers, overtrousers, breathableovertrousers,waterproofand breathableovertrousers,lightweigtovertrousers, pakawayovertrousers.','regatta waterproof&breathable overtrousers',NULL,NULL,'4',2,NULL),(26,4,'simple',NULL,'2010-10-26 09:23:21',1,1,'Cadet Army Combat Assault Boot',0,NULL,NULL,NULL,'Cadet Army Combat Assault Boot',NULL,NULL,'45.0000',NULL,NULL,NULL,1,NULL,'Cadet combat Boot assault boots','Combat Boot',NULL,'/m/6/m671a_1.jpg','Cadet Army Combat Assault Boot',NULL,NULL,NULL,2,'/m/6/m671a_1.jpg','Cadet Army Combat Assault Boot','2011-12-01 14:24:14','cadet-army-combat-assault-boot','cadet-army-combat-assault-boot.html',4,'3.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Full  Leather  Upper\r\nThinsulate Lining\r\nRubber Sole unit\r\nSteel shank\r\nSuede Collar\r\nAvailable in sizes 3 to 13',NULL,0,'/m/6/m671a_1.jpg',0,NULL,NULL,NULL,'cadet boots','cadetboots, armyboots, boots,taboots, militaryboots, combatboots, armykit, footwear, thinsulatelinedboots.','cadet army boots',NULL,NULL,'4',2,NULL),(27,4,'simple',NULL,'2010-10-26 09:34:04',1,1,'Grisport Ascent Walking Boots',0,NULL,NULL,NULL,'Grisport Ascent Lightweight and Breathable  Walking Trekking Hiking Boots',NULL,NULL,'55.0000',NULL,NULL,NULL,1,NULL,'Grisport Ascent Lightweight and Breathable  Walking Trekking Hiking Boots','Ascent',NULL,'/t/h/thumbascent.jpg','Grisport Ascent Walking Boots',NULL,NULL,NULL,2,'/t/h/thumbascent.jpg','Grisport Ascent Walking Boots','2012-01-04 16:42:24','grisport-ascent-lightweight-breathable-hiking-trekking-walking-boots','grisport-ascent-lightweight-breathable-hiking-trekking-walking-boots.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','ASCENT\r\nAscent is our entry level, lower cut waterproof trekking boot featuring our patented waterproof & breathable ‘spotex’ membrane.\r\n\r\nUnisex trekking boot\r\nSizes 36 x 47\r\nWeight: 1000g\r\nColours - Grey\r\nSpotex lined - Waterproof & breathable\r\n \r\n\r\n\r\n\r\nPrice Guide:   £60.00',NULL,0,'/t/h/thumbascent.jpg',0,NULL,NULL,NULL,'','','',NULL,NULL,'4',2,NULL),(28,4,'simple',NULL,'2010-10-26 10:01:25',1,1,'Grisport Wolf Walking Boots',0,NULL,NULL,NULL,'Wolf By Grisport Lightweight Waterproof And breathable Walking, hiking trekking Boots',NULL,NULL,'55.0000',NULL,NULL,NULL,1,NULL,'Grisport Lightweight Waterproof And breathable Walking, hiking trekking Boots','Wolf',NULL,'/g/r/grisport-wolf-boots.jpg','Grisport Wolf Walking Boots',NULL,NULL,NULL,2,'/g/r/grisport-wolf-boots.jpg','Grisport Wolf Walking Boots','2012-02-21 09:48:05','grisport-wolf-lightweight-breathablewaterproof-hiking-trekking-walking-boots','grisport-wolf-lightweight-breathablewaterproof-hiking-trekking-walking-boots.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','\r\n	\r\nGrisport Wolf Lightweight Waterproof Walking Boot\r\n\r\nThe outstanding Wolf walking boot from Grisport is one of our most popular styles.\r\n The Grisport Wolf  is a suede & Cordura lightweight designed boot, with a waterproof and breathable lining.\r\n The Wolf sells really well in our shop, for its pure simplicity \r\n Lightweight, great value for money and as soon as you put you\'re foot in the wolf it just feels comfortable.\r\n\r\n\r\nGrisport Wolf Lightweight Walking Boot Features:\r\n\r\n   >Tough cordura and suede leather construction\r\n   > Heel Support System, to ensure grip though movement\r\n   > Padded, fairly low, ankle cuffs and padded tongue.\r\n   > Italian-made boot in unisex sizing for men and ladies\r\n  > Available in Navy \r\n    >Great value for money walking boot\r\n\r\n>Support System:\r\n The extremely effective heel-locking system is designed to provide perfect control of the foot by ensuring an excellent grip is maintained on the ground through all phases of movement.\r\n\r\n>Waterproof and Breathable Membrane Lining:\r\n> The Grisport Wolf Walking boot benefits from the branded \'Spotex\' waterproof and breathable membrane with taped    seams, this ensures your feet stay dry, whilst still allowing them and the leather to breath.\r\n> Happy comfortable feet.\r\n\r\n>Cordura Durability: \r\nCordura is a performance fabric and a key element in all high quality hiking boots, it is renowned for its durability and resistance to tear and puncture\r\n>. Footwear manufactured in this super fabric will guarantee you many years of walking comfort and enjoyment.\r\n\r\n',NULL,0,'/g/r/grisport-wolf-boots.jpg',0,NULL,NULL,NULL,'waterproof walkingboots','waterproof , walkingboots, waterproofwalkingboots, grisportwalkingboots, waterproofandbreathablewalkingboots, grisportwaterproofwalkingboots,foot, footwear, wlfboots, wolf,','waterproof wolf walking boots',NULL,NULL,'4',2,NULL),(29,4,'simple',NULL,'2010-10-26 12:25:30',1,1,'',0,NULL,NULL,NULL,'Full PLCE Army cadet TA military  Webbing System',NULL,NULL,'59.9900',NULL,NULL,NULL,1,NULL,'Full PLCE Army cadet TA military  Webbing System ','PLCE',NULL,'/f/u/full_plce_webbing_system_back.jpg','',NULL,NULL,NULL,2,'/f/u/full_plce_webbing_system_back.jpg','','2011-12-29 14:28:04','full-plce-military-cadet-ta-army-webbing-system','full-plce-military-cadet-ta-army-webbing-system.html',4,'2.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Full PLCE Webbing System\r\nBritsh DPM\r\n2 x double ammo pouches\r\n2 x  utility pouches\r\n1 x  standard yoke\r\n1 x  PLCE belt.\r\n',NULL,0,'/f/u/full_plce_webbing_system_back.jpg',0,NULL,NULL,NULL,'plce ebbing system','plce, webbing, armywebbing,tawebbing,cadetkit,plcewebbing,fullplcewebbing,camoflague, camouflague,','plce webbing systems',NULL,NULL,'4',2,NULL),(31,4,'simple',NULL,'2010-10-26 17:37:33',1,1,'',0,NULL,NULL,NULL,'Camouflague DPM Flexible  Waterproof & Breathable Jackets',NULL,NULL,'37.5000',NULL,NULL,NULL,1,NULL,'Camouflague DPM Flexible  Waterproof & Breathable Jackets','Camo waterproof Jkt',NULL,'/k/o/kombatuk_064_1.jpg','',NULL,NULL,NULL,2,'/k/o/kombatuk_064_1.jpg','','2012-02-07 09:43:07','camouflague-dpm-flexible-waterproof-breathable-jackets','camouflague-dpm-flexible-waterproof-breathable-jackets.html',4,'1.4500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Camouflague Waterproof & Breathable Jacket\r\nFortex Breathable Fabric\r\nThree layer construction\r\nVelcro twin storm flap covered zip\r\nCuff & waist adjusters\r\nTrousers to match\r\n\r\nKINDLY NOTE SIZE 3XL DUE IN EARLY MARCH !!!',NULL,0,'/k/o/kombatuk_064_1.jpg',0,NULL,NULL,NULL,'camo waterproof','camowaterproof, camouflague,waterproofcoat, dpmwaterproof, armyjacket,waterproof, camoflage, camoflague, ','camowaterprof jacket',NULL,NULL,'4',2,NULL),(32,4,'simple',NULL,'2010-10-26 17:42:35',1,1,'',0,NULL,NULL,NULL,'Camoufllague DPM  Waterproof Flexible &Breathable Overtrousers',NULL,NULL,'22.5000',NULL,NULL,NULL,1,NULL,'Camoufllague DPM  Waterproof Flexible &Breathable Overtrousers','Camo W/proof overtrs.',NULL,'/k/o/kombatuk_065_1.jpg','',NULL,NULL,NULL,2,'/k/o/kombatuk_065_1.jpg','','2012-01-19 11:39:31','camouflague-dpm-flexible-waterproof-breathable-overtrousers','camouflague-dpm-flexible-waterproof-breathable-overtrousers.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','>Camouflague Waterproof & Breathable Overtrousers\r\n>Fortex 5000 breathable fabric\r\n>3 layer construction\r\n>Zipped Hand Pockets\r\n> Ankle Adjusters.\r\n\r\n\r\nSIZE MEDIUM TEMPORARILY OUT OF STOCK',NULL,0,'/k/o/kombatuk_065_1.jpg',0,NULL,NULL,NULL,'camowaterproofovertrousers.','camowaterproof, camouflague, dpmwaterproof, waterproofcamotrousers,,armywaterproof,overtrouserscamo,cadetkit,camoovertrousers, armywaterproofovertrousers, camoflague, camoflage, overtrousers,','camo waterproof trousers',NULL,NULL,'4',2,NULL),(33,4,'simple',NULL,'2010-10-26 17:47:20',1,1,'',0,NULL,NULL,NULL,'Soldier 95 Army Combat Trousers',NULL,NULL,'12.9900',NULL,NULL,NULL,1,NULL,'DPM Soldier 95 Combat Trousers','Castle 95 trs',NULL,'/n/e/new_95s_trousers.jpg','',NULL,NULL,NULL,2,'/n/e/new_95s_trousers.jpg','','2011-12-01 16:41:30','soldier-95-army-combat-trousers-camopants-greens-uniform-trousers-camogear','soldier-95-army-combat-trousers-camopants-greens-uniform-trousers-camogear.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','DPM Soldier 95 Combat Trousers\r\nPoly /Cotton\r\n5 pockets\r\nzip fly\r\nbelt loops\r\ninternal draw-string waist\r\ntie bottoms\r\nleg 32.5 ins\r\n',NULL,0,'/n/e/new_95s_trousers.jpg',0,NULL,NULL,NULL,'camo95trousers','95s, 95trousers, camopants, camouflaguepants, cammypants','5styletrousersarmy',NULL,NULL,'4',2,NULL),(34,4,'simple',NULL,'2010-10-26 17:53:11',1,0,'',0,NULL,NULL,NULL,'Cadet KFS',NULL,NULL,'1.9900',NULL,NULL,NULL,0,NULL,'KFS','kfs',NULL,'/k/o/kombatuk_302.jpg','',NULL,NULL,NULL,2,'/k/o/kombatuk_302.jpg','','2011-12-01 16:37:12','cadet-kfs','cadet-kfs.html',4,'0.2500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Combat cadet knife, for &spoon set (KFS)',NULL,0,'/k/o/kombatuk_302.jpg',0,NULL,NULL,NULL,'kfs','kfs, knifeforkspoon, cadetkit, fork, knife, spoon','armykfs,knifefork&spoon',NULL,NULL,'4',2,NULL),(35,4,'simple',NULL,'2010-10-26 17:57:43',1,0,'',0,NULL,NULL,NULL,'DPM (Camouflague) Water Bottle & Cup ',NULL,NULL,'7.5000',NULL,NULL,NULL,0,NULL,'Camouflague Water Bottle','Camo bottle kombat',NULL,'/k/o/kombatbottle.jpg','',NULL,NULL,NULL,2,'/k/o/kombatbottle.jpg','','2011-12-29 14:25:39','dpm-camouflague-water-bottle-cup','dpm-camouflague-water-bottle-cup.html',4,'0.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','100 % Cotton ripstop.\r\n1000 denier cordura cover.\r\nwaterpurification tablet pocket\r\nUS military issue.',NULL,0,'/k/o/kombatbottle.jpg',0,NULL,NULL,NULL,'camowaterbottle.','camowaterbottleandcup, waterbottle, armykit, armywaterbottle, waterbottlewithcup, camouflaguewaterbottle, camouflague, camoflage, camoflague, ','camowaterbottleandcup',NULL,NULL,'4',2,NULL),(36,4,'simple',NULL,'2010-10-26 18:01:55',1,1,'',0,NULL,NULL,NULL,'Open face balaclavas',NULL,NULL,'3.0000',NULL,NULL,NULL,1,NULL,'Open face balacavas','Open face balacavas',NULL,'/k/o/kombatuk_214.jpg','',NULL,NULL,NULL,2,'/k/o/kombatuk_214.jpg','','2011-12-09 15:53:26','open-face-balaclavas-hats-caps-headwear','open-face-balaclavas-hats-caps-headwear.html',4,'0.3500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','100 %  Acrlyic \r\nDouble layers',NULL,0,'/k/o/kombatuk_214.jpg',0,NULL,NULL,NULL,'balaclavas','oneholebalaclavs, balaclavs, blackbalaclavas, hats, headwear, caps, snoods, buffs, ','balaclava',NULL,NULL,'4',2,NULL),(37,4,'simple',NULL,'2010-10-26 18:07:07',1,1,'',0,NULL,NULL,NULL,'3 hole warm miitary army SAS style balaclavas',NULL,NULL,'3.0000',NULL,NULL,NULL,1,NULL,'3 hole warm miitary army SAS style balaclavas','SAS Bala',NULL,'/k/o/kombatuk_167.jpg','',NULL,NULL,NULL,2,'/k/o/kombatuk_167.jpg','','2011-12-09 15:51:14','3-hole-sas-warm-military-army-style-balacavas','3-hole-sas-warm-military-army-style-balacavas.html',4,'0.3500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','100 % Acrylic\r\ndouble layer construction\r\nBlack or Olive Green',NULL,0,'/k/o/kombatuk_167.jpg',0,NULL,NULL,NULL,'sasbalaclava','sas, balaclavas, balaclava, 3holehat, 3holebalaclava, hadwera, caps, hats, ','sasbalaclavas',NULL,NULL,'4',2,NULL),(38,4,'simple',NULL,'2010-10-26 18:17:17',1,1,'',0,NULL,NULL,NULL,'Britsh Special Forces Army Hat DPM Bush Hat.',NULL,NULL,'5.9900',NULL,NULL,NULL,1,NULL,'Special Forces Army  DPM Hat','SAS bush',NULL,'/k/o/kombatuk_178.jpg','',NULL,NULL,NULL,2,'/k/o/kombatuk_178.jpg','','2011-12-29 14:24:49','britsh-special-forces-army-military-hat-dpm-bush-hat-craphat','britsh-special-forces-army-military-hat-dpm-bush-hat-craphat.html',4,'0.2500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Britsh Special Forces Hats\r\nBritsh DPM\r\nsmall tailored brim\r\nadjustable  retaining chin strap\r\neasily folded into a pocket\r\nsizes 57,58,59,60,61.',NULL,0,'/k/o/kombatuk_178.jpg',0,NULL,NULL,NULL,'craphat','craphat, camohat, specialforceshat, cadetkit, cadethat, dpmbushat,armyhat.camoflague, camoflage, camouflague, ','craphat,bushhat',NULL,NULL,'4',2,NULL),(39,4,'simple',NULL,'2010-10-26 18:22:20',1,0,'',0,NULL,NULL,NULL,'Para Cord suitable for use with a basha',NULL,NULL,'2.5000',NULL,NULL,NULL,0,NULL,'Para Cord for use with cadets and TA and a Bashas','paracord',NULL,'/k/o/kombatuk_324.jpg','',NULL,NULL,NULL,2,'/k/o/kombatuk_324.jpg','','2011-12-01 16:27:38','para-cord-cadets-ta-bashas','para-cord-cadets-ta-bashas.html',4,'0.2500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Para Cord\r\n3mm x 15 metres.\r\nolive green',NULL,0,'/k/o/kombatuk_324.jpg',0,NULL,NULL,NULL,'paracord','paracord, bashastring,','paracord',NULL,NULL,'4',2,NULL),(40,4,'simple',NULL,'2010-10-26 18:25:22',1,0,'',0,NULL,NULL,NULL,'Military Army Style Bungees',NULL,NULL,'1.0000',NULL,NULL,NULL,0,NULL,'Military Bungees suitable for use with a basha','Bungees',NULL,'/k/o/kombatuk_314.jpg','',NULL,NULL,NULL,2,'/k/o/kombatuk_314.jpg','','2011-12-01 16:26:10','military-army-style-bashas-bungees','military-army-style-bashas-bungees.html',4,'0.2500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Military Style Army Bungees\r\nOlive Green',NULL,0,'/k/o/kombatuk_314.jpg',0,NULL,NULL,NULL,'bungees','bungees,armybungees, greenbungees, armykit, cadetkit, bashaskit, militarybungees','bungees, militarybungees',NULL,NULL,'4',2,NULL),(41,4,'simple',NULL,'2010-10-26 18:36:24',1,1,'',0,NULL,NULL,NULL,'Gelert Tryfan 3 Season Classic Sleeping Bag',NULL,NULL,'19.9900',NULL,NULL,NULL,1,NULL,' 3 season gelert tryfan  sleeping bag','tryfan',NULL,'/t/r/tryfan_olive_1.jpg','',NULL,NULL,NULL,2,'/t/r/tryfan_olive_1.jpg','','2011-12-01 16:02:20','gelert-tryfan-3-season-classic-sleeping-bag','gelert-tryfan-3-season-classic-sleeping-bag.html',4,'1.7000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',' 3 season sleeping bag\r\ncompression bag included\r\n Filling 300 gram double layer mono fibre/ polyester mix \r\nblack/ochre\r\nweight 1.7 kgs\r\nsize 230 x 80 x 50 (length, width on chest, width at feet)\r\nsleeps to minus 7 degrees centrigrade.',NULL,0,'/t/r/tryfan_olive_1.jpg',0,NULL,NULL,NULL,'tryfansleepingbag','tryfan, sleepingbag, 3season, tryfansleepingbag, gelertsleepingbag.','3seasonsleepingbag',NULL,NULL,'4',2,NULL),(42,4,'simple',NULL,'2010-10-26 18:43:37',1,0,'',0,NULL,NULL,NULL,'Proforce 3 Season Ranger Cadet  TA Fishing Military Sleeping Bags',NULL,NULL,'35.9900',NULL,NULL,NULL,0,NULL,'Proforce 3 Season Ranger Cadet  TA Fishing Military Sleeping Bags','ranger s/bag',NULL,'/r/a/ranger_sbag.jpg','',NULL,NULL,NULL,2,'/r/a/ranger_sbag.jpg','','2011-12-01 16:00:32','proforce-3-season-ranger-cadet-ta-military-fishing-sleeping-bags','proforce-3-season-ranger-cadet-ta-military-fishing-sleeping-bags.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','The warmest Ranger 3 season sleeping bag\r\nmummy style hood for greater protection\r\nzip baffles to protect from wind and drafts\r\nhexagonal rip stop outer stops snags spreading\r\nlow of - 5 degrees.\r\nolive green',NULL,0,'/r/a/ranger_sbag.jpg',0,NULL,NULL,NULL,'3seasonsleepingbag','3seasonsleepingbag, 3season, sleepingbag,armysleepingbag,cadetkit, cadetsleepingbag,fishingsleepingbag,profocesleepingbag.','3seasonarmysleepingbag',NULL,NULL,'4',2,NULL),(43,4,'simple',NULL,'2010-10-26 18:54:05',1,0,'',0,NULL,NULL,NULL,'Combat Military Army TA  Cadet Boot Care Kit',NULL,NULL,'7.9900',NULL,NULL,NULL,0,NULL,'Combat Military Army TA  Cadet Boot Care Kit','Bootcare kit',NULL,'/k/o/kombatuk_133.jpg','',NULL,NULL,NULL,2,'/k/o/kombatuk_133.jpg','','2011-12-29 14:23:55','combat-cadet-ta-military-boot-care-kit','combat-cadet-ta-military-boot-care-kit.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Combat army cadet boot care kit\r\nIncludes stash bag  , made froim 1000 denier cordura\r\nincludes spare laces, brushes, polish , polishing cloths.\r\n',NULL,0,'/k/o/kombatuk_133.jpg',0,NULL,NULL,NULL,'','bootcare, bootcleaningit, polish, camostashbag, stashbag, brushes, ','',NULL,NULL,'4',2,NULL),(44,4,'simple',NULL,'2010-10-26 19:05:42',1,1,'',0,NULL,NULL,NULL,'Bridgedale Ladies Comfort Trekker Walking Socks',NULL,NULL,'12.9900',NULL,NULL,NULL,1,NULL,'Ladies Comfort Trekker Bridgedale Walking Hiking Rambling  Socks','Ladies trekker',NULL,'/l/a/ladies_trekker.jpg','',NULL,NULL,NULL,2,'/l/a/ladies_trekker.jpg','','2012-03-17 12:28:16','bridgedale-ladies-comfort-trekker-walking-rambling-hiking-socks','bridgedale-ladies-comfort-trekker-walking-rambling-hiking-socks.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Womens fit ,all day comfort\r\nMerino wool/coolmax mixture\r\nlow tension cuff\r\ndesigned for any season trekking, walking, and backpacking.\r\ndesigned for all day protection and superior next to skin  comfort\r\nthis style ensures a dry enviorment for comfort and healthy feet.\r\nfibre content 50 % coolmax\r\n27 % merino wool\r\n22 % nylon\r\n1 % lycra\r\nAvailable in szes 3 to 4.5,5 to 6.5,7 to 8.5.',NULL,0,'/l/a/ladies_trekker.jpg',0,NULL,NULL,NULL,'','socks, walkingsocks, hiking, walking, trekking,bridgdale, 1000mile, bridgedale, climbing, ','',NULL,NULL,'4',2,NULL),(45,4,'simple',NULL,'2010-10-27 08:05:09',1,1,'',0,NULL,NULL,NULL,'Commando Army Cadet TA Military Socks',NULL,NULL,'5.9900',NULL,NULL,NULL,1,NULL,'Commando Army Cadet TA Military Work  Socks','Commando socks',NULL,'/c/o/commando_sox.jpg','',NULL,NULL,NULL,2,'/c/o/commando_sox.jpg','','2011-12-06 14:54:22','commando-army-cadet-miltary-ta-work-socks','commando-army-cadet-miltary-ta-work-socks.html',4,'0.3500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Army Cadet Socks\r\nOlive Green\r\n65% Wool, 35 % Nylon\r\nSize 6- 11',NULL,0,'/c/o/commando_sox.jpg',0,NULL,NULL,NULL,'armysocks','armysocks, army, socks, miltary, cadetsocks, cadets, ta, commandosocks.worksocks, workwear.','armysocks',NULL,NULL,'4',2,NULL),(46,4,'simple',NULL,'2010-10-27 09:21:56',1,1,'',0,NULL,NULL,NULL,'Thinsulate Beanie Watch Hat',NULL,NULL,'2.9900',NULL,NULL,NULL,1,NULL,'Thinsulate Beanie Watch hat','Thinsulate Hat',NULL,'/t/h/thinhat_blk.jpg','',NULL,NULL,NULL,2,'/t/h/thinhat_blk.jpg','','2011-12-01 15:47:16','thinsulate-beanie-watch-hat','thinsulate-beanie-watch-hat.html',4,'0.3000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','100 % acyrlic\r\nThinsulate lined\r\nAvailable in \r\nBlack\r\nNavy\r\nGrey\r\nOne Size',NULL,0,'/t/h/thinhat_blk.jpg',0,NULL,NULL,NULL,'thinsulatehats','thinsulatehats,bennies, warmhats, watchhats, hats.\r\n','thinsulatewarmbeanniehats',NULL,NULL,'4',2,NULL),(47,4,'simple',NULL,'2010-10-27 09:33:50',1,1,'',0,NULL,NULL,NULL,'Chunky Thinsulate Ski/Beanie Warm Knitted  Hats',NULL,NULL,'4.9900',NULL,NULL,NULL,1,NULL,'Chunky Thinsulate Knitted Warm  Ski/Beanie Hats','Chunky Thin Hat',NULL,'/c/h/chunky_hat.jpg','',NULL,NULL,NULL,2,'/c/h/chunky_hat.jpg','','2011-12-01 15:45:26','chunky-thinsulate-ski-beanie-warm-hats','chunky-thinsulate-ski-beanie-warm-hats.html',4,'0.3500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','100 % Acrylic \r\nThinsulate lined\r\nIdeal For those cold winter days\r\nAvailable in\r\nNavy\r\nBlack',NULL,0,'/c/h/chunky_hat.jpg',0,NULL,NULL,NULL,'chunkybeannies','beanniehats, knittedhats, hats, thinsulate,skihats, ski, warmhats,chunkyhats.','beanniehats',NULL,NULL,'4',2,NULL),(48,4,'simple',NULL,'2010-10-27 09:42:03',1,1,'',0,NULL,NULL,NULL,'Thinsulate Shooter Mitts',NULL,NULL,'4.9900',NULL,NULL,NULL,1,NULL,'Hooded Mitts','Hooded mitts',NULL,'/b/l/black_shooter_mitts.jpg','',NULL,NULL,NULL,2,'/b/l/black_shooter_mitts.jpg','','2011-12-01 15:32:53','thinsulate-shooter-mitts','thinsulate-shooter-mitts.html',4,'0.3000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Thinsulate Lined Shooter Hooded Mitts\r\nFingerles mitts with the option to pull the hood over your fingers!\r\n\r\nOnly avalable in BLACK, at the moment\r\n',NULL,0,'/b/l/black_shooter_mitts.jpg',0,NULL,NULL,NULL,'shootermitts','shootermitts, mitts, mits,mittens, fingerlessmitts, fingerless.','shootermittsgloves',NULL,NULL,'4',2,NULL),(49,4,'simple',NULL,'2010-10-27 12:19:43',1,1,'',0,NULL,NULL,NULL,'Bridgedale Comfort Trekker Walking Socks',NULL,NULL,'12.9900',NULL,NULL,NULL,1,NULL,'Bridgedale Comfort Trekker  mens walking socks','Mens Comfort trekker ',NULL,'/m/e/mens_comfort_trekker.jpg','',NULL,NULL,NULL,2,'/m/e/mens_comfort_trekker.jpg','','2011-12-06 14:51:54','bridgedale-comfort-trekker-walking-socks','bridgedale-comfort-trekker-walking-socks.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Comfort trekker Walking Socks\r\n\r\nComfort:\r\nWoolFusion® of Merino/Coolmax®. Low tension cuff.\r\n\r\nTrekker:\r\nDesigned for any-season, Hiking, Trekking and Backpacking.\r\n\r\nDesigned for day-long protection and superior next-to-skin comfort, this style ensures a dry environment for comfortable and healthy feet.\r\nFibre Content:\r\n50% Coolmax®/polyester\r\n27% Merino Wool\r\n22% Nylon/polyamide\r\n1% Lycra®/elastane \r\nAvailable in sizes 6 to 8.5, 9 to 11.5\r\nAlso in Navy blue',NULL,0,'/m/e/mens_comfort_trekker.jpg',0,NULL,NULL,NULL,'bridgedalewalkingsocks','bridgedalewalkingsocks, socks, walkingsocks, bridgedale, comfort, trekker, comforttrekker.','bridgedalewalkingsocks',NULL,NULL,'4',2,NULL),(50,4,'simple',NULL,'2010-10-27 13:18:47',1,1,'',0,NULL,NULL,NULL,'1000 Mile All Terrain walking Socks',NULL,NULL,'11.5000',NULL,NULL,NULL,1,NULL,'1000 Mile All terrain Walking socks','1000 Mile All terrain ',NULL,'/1/0/1000mileallternav.jpg','',NULL,NULL,NULL,2,'/1/0/1000mileallternav.jpg','','2011-12-06 14:53:31','1000-mile-all-terrain-walking-socks','1000-mile-all-terrain-walking-socks.html',4,'0.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','45% merino wool, 42% cotton, 12% nylon, 1% lycra. The 100% Tactel® inner layer stays with the foot, wicking away moisture, whilst the soft wool-cotton mix outer moves with the shoe. The unique combination of fibres maintains a comfortable temperature for the foot.\r\n\r\n    * Arch bracing for additional support.\r\n    * Flat toe seam for extra comfort.\r\n\r\n				\r\nSizes available\r\nLadies Sizes 3 -5.5 and 6-8.5 (in Navy blue or purple)\r\nGents Sizes  6to 8.5and 9to 11.5.(in navy blue or grey)\r\n	',NULL,0,'/1/0/1000mileallternav.jpg',0,NULL,NULL,NULL,'1000milesocks','1000milewalkingsocks, walkingsocks, socks,1000, 1000mile, mile,blisterfree, blisterfreesocks','1000mile, walkingsocks,',NULL,NULL,'4',2,NULL),(51,4,'simple',NULL,'2010-10-27 14:02:03',1,0,'',0,NULL,NULL,NULL,'Highlander Islay Walking Poles',NULL,NULL,'12.9900',NULL,NULL,NULL,0,NULL,'Islay walking poles','Islay poles',NULL,'/i/s/islay_pole.jpg','',NULL,NULL,NULL,2,'/i/s/islay_pole.jpg','','2011-12-20 14:55:50','highlander-islay-walking-poles','highlander-islay-walking-poles.html',4,'0.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','ISLAY WALKING POLE SINGLE\r\nDescription\r\n\r\n    * Four section pole with anti-shock system\r\n    * Ergonomic handle\r\n    * Webbing wrist strap\r\n    * Rubber Foot\r\n    * Large and small basket\r\n\r\nSpecifications\r\n\r\nMinimum Length:\r\n\r\n    55cm\r\n\r\nMaximum Length:\r\n\r\n    125cm\r\n\r\nTip:\r\n\r\n    Tungsten Alloy\r\n\r\nFabric/Materials:\r\n\r\n    Aluminium\r\n\r\nWeight:\r\n\r\n    0.36 kg\r\n',NULL,0,'/i/s/islay_pole.jpg',0,NULL,NULL,NULL,'islaywalkingpoles','islaywalkingpoles, walkingpoles, poles, walking, sticks, highlanderwalkingpoles.','walkingpoles',NULL,NULL,'4',2,NULL),(52,4,'simple',NULL,'2010-10-27 14:06:11',1,0,NULL,0,NULL,NULL,NULL,'Highlander Arran walking Poles',NULL,NULL,'12.9900',NULL,NULL,NULL,0,NULL,'Arran walking pole','Arran Pole',NULL,'/a/r/arran_walking_pole.jpg',NULL,NULL,NULL,NULL,2,'/a/r/arran_walking_pole.jpg',NULL,'2011-12-20 18:32:35','highlander-arran-walking-poles','highlander-arran-walking-poles.html',4,'0.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','ARRAN WALKING POLE \r\n\r\nDescription\r\n\r\n    * Silver/green\r\n    * Weight  370g\r\n    *Maximum length 137cms\r\n    * Minimum 68cms\r\n    *Tip tungsten alloy\r\n    *Pole Aluminimum 6061\r\n    * Handle T shape walking grip.\r\n    * Features . Webbing hand loop with Duraflex buckle \r\n    * Rubber foot\r\n    * Grass basket\r\n     \r\n\r\n    \r\n',NULL,0,'/a/r/arran_walking_pole.jpg',0,NULL,NULL,NULL,'walkingpoles','walkingpoles, walking, poles, hiking, walking, arranwalkingpoles, highlanderwalkingpoles, walkingsticks, sticks,','walkingpoles',NULL,NULL,'4',2,NULL),(53,4,'simple',NULL,'2010-10-28 07:32:58',1,0,'',0,NULL,NULL,NULL,'NIKWAX WASH-IN TX DIRECT',NULL,NULL,'7.9900',NULL,NULL,NULL,0,NULL,'Nikwax TX Direct Wash -in Waterproofing','TX Direct300',NULL,'/t/x/tx10direct.jpg','',NULL,NULL,NULL,2,'/t/x/tx10direct.jpg','','2011-12-07 12:12:42','nikwax-wash-in-tx-direct','nikwax-wash-in-tx-direct.html',4,'0.9500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Nikwax Wash -in waterproofing for wet weather clothing\r\n\r\nPut new life into that old waterproof!!',NULL,0,'/t/x/tx10direct.jpg',0,NULL,NULL,NULL,'','nikwax, reproofing, waterproofing, wash in proofing, txdirect tx, proof, proofing,','',NULL,NULL,'4',2,NULL),(54,4,'simple',NULL,'2010-10-28 07:36:20',1,0,'',0,NULL,NULL,NULL,'NIKWAX TECH-WASH',NULL,NULL,'4.5000',NULL,NULL,NULL,0,NULL,'NIKWAX TECH-WASH \r\nWASH - IN CLEANER','TECH WASH 300',NULL,'/t/e/tech_wash.jpg','',NULL,NULL,NULL,2,'/t/e/tech_wash.jpg','','2011-12-07 12:10:24','nikwax-tech-wash','nikwax-tech-wash.html',4,'0.9500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','WASH-IN CLEANER FOR WATERPROOF CLOTHING AND EQUIPMENT',NULL,0,'/t/e/tech_wash.jpg',0,NULL,NULL,NULL,'','nikwax , cleaner, wash, washin, washingstuff, reproof, ','',NULL,NULL,'4',2,NULL),(55,4,'simple',NULL,'2010-10-28 07:44:55',1,0,'',0,NULL,NULL,NULL,'NIKWAX FABRIC&LEATHER WATERPROOFING SPRAY',NULL,NULL,'4.5000',NULL,NULL,NULL,0,NULL,'NIKWAX FABRIC&LEATHER WATERPROOFING SPRAY','NIKWAX FABRIC125',NULL,'/n/i/nikfableath_1.jpg','',NULL,NULL,NULL,2,'/n/i/nikfableath_1.jpg','','2011-12-07 12:09:08','nikwax-fabric-leather-waterproofing-spray','nikwax-fabric-leather-waterproofing-spray.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','NIKWAX FABRIC&LEATHER WATERPROOFING SPRAY\r\nSPRAY ON WATERPROOFING FOR ALL FABRIC AND LEATHER COMBINATION FOOTWEAR',NULL,0,'/n/i/nikfableath_1.jpg',0,NULL,NULL,NULL,'','nikwax, waterproofing, wax, footwear, foot, fabricboots, leather, fabric, ','',NULL,NULL,'4',2,NULL),(56,4,'simple',NULL,'2010-10-28 07:48:41',1,0,'',0,NULL,NULL,NULL,'NIKWAX NUBUCK&SUEDE PROOFING SPRAY',NULL,NULL,'4.5000',NULL,NULL,NULL,0,NULL,'NIKWAX NUBUCK&SUEDE PROOFING SPRAY','NUBUCK SPRAY',NULL,'/n/u/nubuck.jpg','',NULL,NULL,NULL,2,'/n/u/nubuck.jpg','','2011-12-07 12:07:36','nikwax-nubuck-suede-proofing-spray','nikwax-nubuck-suede-proofing-spray.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','NIKWAX NUBUCK&SUEDE PROOFING SPRAY\r\nSPRAY ON WATERPROOFING FOR SUEDE AND NUBUCK FOOTWEAR.',NULL,0,'/n/u/nubuck.jpg',0,NULL,NULL,NULL,'','nikwax, waterproofing, suede, nubuck, spray, foot, footwear, ','',NULL,NULL,'4',2,NULL),(57,4,'simple',NULL,'2010-10-28 07:53:59',1,0,'',0,NULL,NULL,NULL,'NIKWAX WATERPROOFING WAX FOR LEATHER',NULL,NULL,'3.9900',NULL,NULL,NULL,0,NULL,'NIKWAX WATERPROOFING WAX FOR LEATHER','NIKWAX LEATHER',NULL,'/n/i/nikwaxleather.jpg','',NULL,NULL,NULL,2,'/n/i/nikwaxleather.jpg','','2011-12-07 12:06:01','nikwax-waterproofing-wax-for-leather','nikwax-waterproofing-wax-for-leather.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','NIKWAX WATERPROOFING WAX FOR LEATHER\r\nIDEAL FOR ALL LEATHER FOOTWEAR',NULL,0,'/n/i/nikwaxleather.jpg',0,NULL,NULL,NULL,'','nikwax, waterproofing, leather, foot, footwear, ','',NULL,NULL,'4',2,NULL),(58,4,'simple',NULL,'2010-10-28 08:05:05',1,1,'',0,NULL,NULL,NULL,'PENNINE LOOP PILE LINED WALKING SOCKS',NULL,NULL,'5.9900',NULL,NULL,NULL,1,NULL,'PENNINE LOOP PILE LINED WALKING SOCKS','PENNINE SHORT ',NULL,'/f/u/full_450553cf33005.jpg','',NULL,NULL,NULL,2,'/f/u/full_450553cf33005.jpg','','2011-12-06 15:02:22','pennine-loop-pile-lined-walking-socks','pennine-loop-pile-lined-walking-socks.html',4,'0.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','PENNINE LOOP PILE LINED WALKING SOCKS\r\nFULL CUSHIONED LOOP PILE LINED \r\nHIGH WARMTH AND COMFORT\r\nEXTRA DENSITY PROTECTION PADS\r\nSOFT GRIP TOE\r\n75% WOOL ,25% NYLON REINFORCED\r\nAVAILABLE IN 3 COLOURS\r\nSIZS 4 TO 7 AND 7 TO 11.\r\n',NULL,0,'/f/u/full_450553cf33005.jpg',0,NULL,NULL,NULL,'','looppilesocks, walkingsocks, socks, sox, trekkingsocks, hikingsocks','',NULL,NULL,'4',2,NULL),(60,4,'simple',NULL,'2010-11-10 16:33:30',1,1,'',0,NULL,NULL,NULL,'Thermal Short Sleeve T-Shirt',NULL,NULL,'5.5000',NULL,NULL,NULL,1,NULL,'THERMAL T SHIRT ','THERMAL T SHIRT',NULL,'/t/h/thermal_t_shirt_denim.jpg','',NULL,NULL,NULL,2,'no_selection',NULL,'2011-12-07 12:04:00','thermal-short-sleeve-t-shirt','thermal-short-sleeve-t-shirt.html',4,'0.6500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','THERMAL SHORT SLEEVE T SHIRT\r\nBRUSHED FABRIC\r\n50% POLYESTER/ 50 % COTTON\r\nLIGHTWEIGHT AND WARM\r\nAVAILABLE IN WHITE OR DENIM BLUE\r\nSIZES MEDIUM, LARGE, XLARGE, AND XX LARGE.',NULL,0,'/t/h/thermal_t_shirt_denim.jpg',0,NULL,NULL,NULL,'','thermals, teeshirt, tshirt, warm, themaltshirts, ','',NULL,NULL,'4',2,NULL),(61,4,'simple',NULL,'2010-11-11 11:34:54',1,1,'',0,NULL,NULL,NULL,'THERMAL LONGJOHNS ',NULL,NULL,'5.5000',NULL,NULL,NULL,1,NULL,'THERMAL LONGJOHNS','LONGJOHNS',NULL,'/l/o/longjohns.jpg','',NULL,NULL,NULL,2,'/l/o/longjohns.jpg','','2011-12-07 12:02:48','thermal-longjohns','thermal-longjohns.html',4,'0.5600',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','THERMAL LONGJOHNS\r\n50% COTTN/50% POLYESTER\r\nBRUSHED LINING FOR WARMTH\r\nAVAILABLE IN WHITE OR DENIM BLUE\r\nSIZES MEDIUM, LARGE, X LARGE.',NULL,0,'/l/o/longjohns.jpg',0,NULL,NULL,NULL,'','thermals,longjohns, underwear, thermal, ','',NULL,NULL,'4',2,NULL),(62,4,'simple',NULL,'2010-11-11 11:59:22',1,1,'',0,NULL,NULL,NULL,'Ladies Parade Shoes',NULL,NULL,'29.9900',NULL,NULL,NULL,1,NULL,'Ladies Parade Shoes','LADIES PARADE SHOE',NULL,'/l/a/ladies_parade_shoes.jpg','',NULL,NULL,NULL,2,'/l/a/ladies_parade_shoes.jpg','','2011-12-07 12:00:15','ladies-parade-shoes-uniform-dressshoes-raf-shoes-genuine','ladies-parade-shoes-uniform-dressshoes-raf-shoes-genuine.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Ladies Parade Shoes\r\nBlack Hi-shine Leather Uppers\r\nLeather 1/4 Lining and Sock\r\nPVC Sole\r\nAvailable in sizes 3, 4, 5, 6, 7.',NULL,0,'/l/a/ladies_parade_shoes.jpg',0,NULL,NULL,NULL,'','ladiesparadeshoes, parade, ladies, atcshoes, foot, raf, ','',NULL,NULL,'4',2,NULL),(63,4,'simple',NULL,'2010-11-11 12:05:01',1,1,'',0,NULL,NULL,NULL,'Mens & Boys Parade Shoes',NULL,NULL,'24.9900',NULL,NULL,NULL,1,NULL,'Mens & Boys Parade Shoes with Toe Cap','MENS & BOYS PARADE SHOES WITH TOE CAP',NULL,'/n/e/new_parade_she.jpg','',NULL,NULL,NULL,2,'/n/e/new_parade_she.jpg','','2011-12-07 11:58:57','mens-boys-parade-shoes-rafparadeshoes-uniformshoes','mens-boys-parade-shoes-rafparadeshoes-uniformshoes.html',4,'1.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Mens & Boys Parade Shoes with Toe Cap\r\nBlack Leather Uppers\r\nPVC Sole\r\nLeather lined\r\nATC Parade Shoes\r\nAvailable in sizes 3 to 12\r\n\r\n\r\n',NULL,0,'/n/e/new_parade_she.jpg',0,NULL,NULL,NULL,'','paradeshoes, footwear, shoes, parade, foot, atcshotes, rafshoes, raf ,','',NULL,NULL,'4',2,NULL),(64,21,'simple',NULL,'2010-11-11 12:17:41',1,0,'',0,NULL,NULL,NULL,'MENS 3 PACK THERMAL SOCKS ',NULL,NULL,'3.0000',NULL,NULL,NULL,0,NULL,'MENS 3 PACK THERMAL SOCKS ','MENS 3 PACK THERMAL SOCKS ',NULL,'/m/e/mens_thermal_socks.jpg','',NULL,NULL,NULL,2,'/m/e/mens_thermal_socks.jpg','','2011-12-06 15:00:13','mens-3-pack-thermal-socks','mens-3-pack-thermal-socks.html',2,'0.9500',NULL,NULL,NULL,25,'9',NULL,NULL,'','MENS 3 PACK THERMAL SOCKS \r\nWINTER THERMAL SOCKS\r\nSIZES 6 TO 11\r\nLOOPED TERRY LINED FOR WARMTH AND COMFORT\r\nGENTLE WELT FOR COMFORT\r\n\r\nPLEASE NOTE THE ITEM IS ONLY FOR ONE BUNDLE OF 3 PAIRS!!\r\n',NULL,0,'/m/e/mens_thermal_socks.jpg',0,NULL,NULL,NULL,'','thermalsocks, socks, sox, warmsocks','',NULL,NULL,'4',2,NULL),(65,4,'simple',NULL,'2010-11-11 12:26:17',1,0,'',0,NULL,NULL,NULL,'LADIES 3 PACK WOOL THERMAL BOOT SOCKS',NULL,NULL,'4.9900',NULL,NULL,NULL,0,NULL,'LADIES 3 PACK WOOL THERMAL BOOT SOCKS','LADIES 3 PACK WOOL THERMAL BOOT SOCKS',NULL,'/l/a/ladies_wool_boot_socks.jpg','',NULL,NULL,NULL,2,'/l/a/ladies_wool_boot_socks.jpg','','2011-11-17 16:34:38','ladies-3-pack-wool-thermal-boot-socks','ladies-3-pack-wool-thermal-boot-socks.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','LADIES 3 PACK WOOL THERMAL BOOT SOCKS\r\n48% WOOL\r\nWARMTH WITHOUT WEIGHT\r\nFIT SIZES 4 TO 7\r\nASSSORTED COLOURS',NULL,0,'/l/a/ladies_wool_boot_socks.jpg',0,NULL,NULL,NULL,'','','',NULL,NULL,'4',2,NULL),(66,4,'simple',NULL,'2010-11-11 12:30:49',1,0,'',0,NULL,NULL,NULL,'MENS 3 PACK WOOL THERMAL BOOT SOCKS',NULL,NULL,'4.9900',NULL,NULL,NULL,0,NULL,'MENS 3 PACK WOOL THERMAL BOOT SOCKS','MENS 3 PACK WOOL THERMAL BOOT SOCKS',NULL,'/m/e/mens_wool_3_pack.jpg','',NULL,NULL,NULL,2,'/m/e/mens_wool_3_pack.jpg','','2011-12-13 10:16:38','mens-3-pack-wool-thermal-boot-socks','mens-3-pack-wool-thermal-boot-socks.html',4,'0.5100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','MENS 3 PACK WOOL THERMAL BOOT SOCKS\r\nWARMTH WITHOUT WEIGHT\r\n60% WOOL\r\nFIT SIZES 6 TO 11',NULL,0,'/m/e/mens_wool_3_pack.jpg',0,NULL,NULL,NULL,'','woolthermalsocks, thermals, woolysocks, ','',NULL,NULL,'4',2,NULL),(67,4,'simple',NULL,'2010-11-11 12:58:23',1,1,'',0,NULL,NULL,NULL,'Mens wool knee length thermal walking socks',NULL,NULL,'6.9900',NULL,NULL,NULL,1,NULL,'Mens wool knee length thermal walking socks','Mens wool knee length thermal walking socks',NULL,'/l/o/long_pennine_mens.jpg','',NULL,NULL,NULL,2,'/l/o/long_pennine_mens.jpg','','2012-03-17 12:29:42','mens-knee-length-wool-boot-thermal-socks','mens-knee-length-wool-boot-thermal-socks.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','MENS KNEE LENGTH WOOL BOOT SOCKS\r\nFULLY CUSHIONED LOOP PILE FOR MAXIMUM COMFORT AND WARMTH\r\nEXTRA DENSITY PROTECTION PADS \r\nSOFT GRIP TOES\r\nDESIGNED TO KEEP THE HEAT IN AND THE MOISTURE OUT\r\n75% WOOL 25% NYLON FOR DURABILITY\r\nCHOICE OF 3COLOURS\r\nPLEASE STATE 2ND COLOUR CHOICE\r\nFITS SIZES 7 TO 11',NULL,0,'/l/o/long_pennine_mens.jpg',0,NULL,NULL,NULL,'','longwalkingsocks, socks, kneelength, menswalkingsocks, sox, thermal,looppile, ','',NULL,NULL,'4',2,NULL),(68,4,'simple',NULL,'2010-11-11 13:05:40',1,1,'',0,NULL,NULL,NULL,'LADIES KNEE LENGTH Warm  WOOL Rambling Hiking Walking SOCKS',NULL,NULL,'6.9900',NULL,NULL,NULL,1,NULL,'LADIES KNEE LENGTH Warm Rambling hiking walking  WOOL SOCKS','LADIES KNEE LENGTH WOOL SOCKS',NULL,'/l/o/long_pennine_mens_1.jpg','',NULL,NULL,NULL,2,'/l/o/long_pennine_mens_1.jpg','','2012-01-04 14:13:34','ladies-knee-length-wool-rambling-hiking-walking-warm-socks','ladies-knee-length-wool-rambling-hiking-walking-warm-socks.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','LADIES KNEE LENGTH WOOL BOOT SOCKS\r\nFULLY CUSHIONED LOOP PILE FOR MAXIMUM COMFORT AND WARMTH\r\nEXTRA DENSITY PROTECTION PADS \r\nSOFT GRIP TOES\r\nDESIGNED TO KEEP THE HEAT IN AND THE MOISTURE OUT\r\n75% WOOL 25% NYLON FOR DURABILITY\r\nCHOICE OF 3COLOURS\r\nPLEASE STATE 2ND COLOUR CHOICE\r\nFITS SIZES 4 TO 7',NULL,0,'/l/o/long_pennine_mens_1.jpg',0,NULL,NULL,NULL,'','walkingsock, longwalkingsocks, socks, hiking, rambling, loopknit, thermal, kneelength,','',NULL,NULL,'4',2,NULL),(70,4,'simple',NULL,'2010-11-11 14:33:33',1,0,'',0,NULL,NULL,NULL,'RECHARGEABLE HAND WARMERS',NULL,NULL,'5.9900',NULL,NULL,NULL,0,NULL,'RECHARGEABLE HAND WARMERS','RECHARGEABLE HAND WARMERS',NULL,'/r/e/recharge_handwarmers.jpg','',NULL,NULL,NULL,2,'/r/e/recharge_handwarmers.jpg','','2011-12-07 11:39:29','rechargeable-hand-warmers','rechargeable-hand-warmers.html',4,'0.7000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','RECHARGEABLE HAND WARMERS\r\n2 REUSEABLE HANDWARMER GEL PDS\r\nDOES NOT NEED ELECTRICAL OR PRE HEATING\r\nGENERATES HEAT TO APPROXIMATELY 50 DEGREESFOR UP TO AN HOUR\r\nIDEAL FOR WALKS TREKS, CAMPING ETC.\r\nEASILY RECHARGED\r\nSIMPLY BOLI IN WATER UNTIL SOLID CRYSTALS TURN CLEAR.',NULL,0,'/r/e/recharge_handwarmers.jpg',0,NULL,NULL,NULL,'','handwarmers, rechargeable, warmhands,','',NULL,NULL,'4',2,NULL),(71,4,'simple',NULL,'2010-11-11 14:43:43',1,0,'',0,NULL,NULL,NULL,'Hotties  INSTANT HANDWARMERS 2 pairs',NULL,NULL,'1.5000',NULL,NULL,NULL,0,NULL,'Hotties INSTANT HANDWARMERS','HottiesINSTANT HANDWARMERS',NULL,'/h/o/hotties.jpg','',NULL,NULL,NULL,2,'/h/o/hotties.jpg','','2011-12-07 11:38:31','heatwave-instant-handwarmers','heatwave-instant-handwarmers.html',4,'0.4000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Hotties  INSTANT HANDWARMERS\r\n\r\nA pair (one for each hand)\r\n\r\nSINGLE USE\r\n\r\nMINIMUM TEMPERATURE 40 DEGREES',NULL,0,'/h/o/hotties.jpg',0,NULL,NULL,NULL,'','handwarmers, instantheat, dispossiblehandwarmers, ','',NULL,NULL,'4',2,NULL),(72,4,'simple',NULL,'2010-11-13 13:49:13',1,0,'',0,NULL,NULL,NULL,'CARABINAS 6mm',NULL,NULL,'1.9900',NULL,NULL,NULL,0,NULL,'6MM CARABINAS','6MM CARABINAS',NULL,'/c/a/caribinas_pairs_6mm.jpg','',NULL,NULL,NULL,2,'/c/a/caribinas_pairs_6mm.jpg','','2011-12-07 11:36:52','carabinas','carabinas.html',4,'0.3000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','CARINBINAS 6MM\r\n\r\nNOT SUITABLE FOR CLIMBING',NULL,0,'/c/a/caribinas_pairs_6mm.jpg',0,NULL,NULL,NULL,'','carabinas, hooks, karabinas,','',NULL,NULL,'4',2,NULL),(74,4,'simple',NULL,'2010-11-13 14:47:03',1,0,'',0,NULL,NULL,NULL,'Kids Army Military Style DPM Camouflage Assault Vest',NULL,NULL,'17.5000',NULL,NULL,NULL,0,NULL,'Kids Army Military Style DPM Camouflage Assault vest','KIDS ASSAULT VEST',NULL,'/k/i/kids_tactical_assault_vest.jpg','',NULL,NULL,NULL,0,'/k/i/kids_tactical_assault_vest.jpg','','2012-03-24 10:22:26','kids-army-military-style-dpm-camouflage-assault-vest','kids-army-military-style-dpm-camouflage-assault-vest.html',4,'0.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','KIDS ASSAULT VEST\r\nLIGHTWEIGHT MESH WITH ADJUSTABLE STRAPS ON SHOULDERS,FRONT & SIDES\r\n9 POCKETS\r\nDPM 1000 DENIER WATERPROOF CODURA\r\nONE SIZE FITS ALL.\r\nBRITSH DPM\r\n',NULL,0,'/k/i/kids_tactical_assault_vest.jpg',0,NULL,NULL,NULL,'','kidsarmyvests, plce, assaultvests, camogear, camo, camouflague, cammygear, vests, camoflage, camoflague, ','',NULL,NULL,'4',2,NULL),(75,4,'simple',NULL,'2010-11-13 14:59:54',1,0,'',0,NULL,NULL,NULL,'M1 Plastic Army Helmet with Rip-stop DPM Cover (Adult/Child)',NULL,NULL,'11.9900',NULL,NULL,NULL,0,NULL,'M1 Plastic Army Helmet with Rip-stop DPM Cover','M1 PLASTIC HELMET WITH RIPSTOP DPM COVER',NULL,'/m/1/m1_plastic_helmet_with_ripstop_cover_dpm.jpg','',NULL,NULL,NULL,2,'/m/1/m1_plastic_helmet_with_ripstop_cover_dpm.jpg','','2012-03-24 10:24:57','m1-plastic-helmet-army-style-military-helmet-with-ripstop-dpm-cover','m1-plastic-helmet-army-style-military-helmet-with-ripstop-dpm-cover.html',4,'1.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','M1 Plastic Army Helmet\r\nRip-stop DPM Cover\r\nFully Adjustable \r\nSuitable for Children and Adults\r\nPlease Note: This is not a safety helmet.',NULL,0,'/m/1/m1_plastic_helmet_with_ripstop_cover_dpm.jpg',0,NULL,NULL,NULL,'','armyhelmets, helmets, hats, military ,camo, armykit, kidsarmyoutfits,camoflague, camoflage, tinhat, ','',NULL,NULL,'4',2,NULL),(76,4,'simple',NULL,'2010-11-13 15:19:46',1,0,'',0,NULL,NULL,NULL,'ARMY Military Style  KIT BAGS',NULL,NULL,'9.9900',NULL,NULL,NULL,0,NULL,'ARMY Military Style KIT BAGS','ARMY KIT BGS',NULL,'/k/i/kitbags.jpg','',NULL,NULL,NULL,2,'/k/i/kitbags.jpg','','2011-12-07 11:31:28','army-military-style-kit-bags-bags-punchbags-kitbags','army-military-style-kit-bags-bags-punchbags-kitbags.html',4,'1.2500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','ARMY KIT BAGS\r\nHEAVY DUTY COTTON CANVAS \r\n12 \" DIAMETER\r\nEYELET AND CLIP CLOSURE',NULL,0,'/k/i/kitbags.jpg',0,NULL,NULL,NULL,'','kitbags, bags, armykitbags, militarybags,','',NULL,NULL,'4',2,NULL),(77,4,'simple',NULL,'2010-11-13 15:26:15',1,1,'',0,NULL,NULL,NULL,'LARGE WEBBINGMilitary Army style  BACKPACK',NULL,NULL,'4.9900',NULL,NULL,NULL,1,NULL,'LARGE WEBBING Military Army Style  BACKPACK','LARGE WEBBING BACKPACK',NULL,'/w/e/web_khaki.jpg','',NULL,NULL,NULL,2,'/w/e/web_khaki.jpg','','2011-05-20 10:10:36','large-webbing-military-army-style-backpack','large-webbing-military-army-style-backpack.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','LARGE WEBBING BACKPACK\r\nADJUSTABLE STRAPS\r\nCOTTON CANVAS\r\n\r\nAVAILABLE IN BLACK, KHAKI , OLIVE GREEN RAF BLUE',NULL,0,'/w/e/web_khaki.jpg',NULL,NULL,NULL,NULL,'','','',NULL,NULL,NULL,NULL,NULL),(78,4,'simple',NULL,'2010-11-13 15:38:32',1,1,'',0,NULL,NULL,NULL,'Military Army Warm Headover',NULL,NULL,'4.9900',NULL,NULL,NULL,1,NULL,'Military Army Warm Headover','MILITARY HEADOVERS',NULL,'/o/l/olive_headovers.jpg','',NULL,NULL,NULL,2,'/o/l/olive_headovers.jpg','','2011-09-02 13:08:19','military-army-warm-headover','military-army-warm-headover.html',4,'0.6500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Military Army Warm Headover\r\n95% Cotton 5% Spandex\r\nAvailable in British DPM Camoflage and Army Olive Green\r\nCan be used as a neck-warmer, balaclava, etc.',NULL,0,'/o/l/olive_headovers.jpg',NULL,NULL,NULL,NULL,'','','',NULL,NULL,NULL,NULL,NULL),(79,4,'simple',NULL,'2010-11-13 15:46:31',1,1,'',0,NULL,NULL,NULL,'SHEMAGH Military Army  SCARF',NULL,NULL,'7.5000',NULL,NULL,NULL,1,NULL,'SHEMAGH Military  Army  SCARF','SHEMAGH SCARF',NULL,'/b/l/black-white_shemaghs.jpg','',NULL,NULL,NULL,2,'/b/l/black-white_shemaghs.jpg','','2011-10-25 13:51:32','shemagh-army-military-scarf-scarves','shemagh-army-military-scarf-scarves.html',4,'0.6500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','SHEMAGH SCARF \r\n\r\n100 % COTTON\r\n\r\nChoose from \r\nBlack/White or Red and White,Sand and Black or Olive and Black',NULL,0,'/b/l/black-white_shemaghs.jpg',0,NULL,NULL,NULL,'','','',NULL,NULL,'4',2,NULL),(80,4,'simple',NULL,'2010-11-13 16:10:30',1,0,'',0,NULL,NULL,NULL,'RUBBER ENDS  WALKING POLE FEET or ferrules for walking hiking rambling poles or sticks',NULL,NULL,'1.5000',NULL,NULL,NULL,0,NULL,'SPARE WALKING POLE FEET or ferrules  for walking, rambling,hiking poles or sticks','SPARE WALKING POLE FEET',NULL,'/p/o/pole_feet.jpg','',NULL,NULL,NULL,2,'/p/o/pole_feet.jpg','','2011-12-20 14:34:27','spare-walking-pole-ferrules-walking-rambling-hiking-feet','spare-walking-pole-ferrules-walking-rambling-hiking-feet.html',4,'0.2000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','SPARE WALKING POLE FEET\r\n\r\nREPLACEMENT RUBBER FEET FOR USE ON ROCKYGROUND\r\n\r\nPACK OF TWO',NULL,0,'/p/o/pole_feet.jpg',0,NULL,NULL,NULL,'','feet, tips, replacement tips,pole feet, rubber tips, walkingpolereplacementtips, ferrules, ','',NULL,NULL,'4',2,NULL),(81,4,'simple',NULL,'2010-11-15 09:55:44',1,1,'',0,NULL,NULL,NULL,'DPM Combat Military  Army-style Camoflage Jacket',NULL,NULL,'24.9900',NULL,NULL,NULL,1,NULL,'DPM Combat Military  Army-style Camoflage Jacket','DPM COMBAT CAMOUFLAGE JACKET',NULL,'/c/a/castle_combat_jkt.jpg','',NULL,NULL,NULL,2,'/c/a/castle_combat_jkt.jpg','','2011-12-29 14:20:04','dpm-combat-camouflage-army-military-jacket','dpm-combat-camouflage-army-military-jacket.html',4,'2.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','DPM COMBAT CAMOUFLAGUE JACKET\r\n\r\nWOODLAND CAMOUFLAGUE\r\n\r\nPOLYESTER/COTTON PRE WASHED\r\n\r\nMULTIPOCKETED\r\n\r\nVELCRO ADJUSTABLE CUFFS\r\n\r\nDRAWCORD BOTTOM',NULL,0,'/c/a/castle_combat_jkt.jpg',0,NULL,NULL,NULL,'','camoflague, camoflague, coats, jackets, combatjackets,','',NULL,NULL,'4',2,NULL),(82,4,'simple',NULL,'2010-11-15 13:11:40',1,1,'',0,NULL,NULL,NULL,'Jack Pyke Hunters Waterproof & Breathable Shooting and Hunting Camoflage Jacket',NULL,NULL,'65.9900',NULL,NULL,NULL,1,NULL,'Jack Pyke Hunters Waterproof & Breathable Shooting and Hunting Camoflage Jacket','JACK PYKE  HUNTERS WATERPROOF JACKET',NULL,'/j/a/jack-pyke-hunter-jacket-english-oak-447-p_1_1.jpg','',NULL,NULL,NULL,2,'/j/a/jack-pyke-hunter-jacket-english-oak-447-p_1_1.jpg','','2011-11-19 09:45:58','jack-pyke-hunter-shooting-hunting-breathable-waterproof-jacket','jack-pyke-hunter-shooting-hunting-breathable-waterproof-jacket.html',4,'3.4000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','The Jack Pyke Hunter Jacket\r\n\r\nWaterproof - Breathable - Noiseless.\r\n\r\nWe like this one, it offers great value and is an all round good product. These jackets relly do sell like hot cakes and are a great alternative to the Deerhunter range.  \r\n\r\nOuter shell: 100% Polyester brushed tricot with laminated membrane.\r\n\r\nLining: 100% Polyester brushed mesh & taffeta.\r\n\r\nProduct Details:\r\n\r\n    * Full length double opening zip\r\n    * Concealed hood in pocket\r\n    * 2 lower front bellow pockets with cartridge holders\r\n    * 2 hand-warmer pockets\r\n    * 1 internal chest pocket\r\n    * Fold-down waterproof seat flap\r\n    * Elasticated weather shrouds on wrist\r\n\r\nAvailable in plain Olive green and English Oak Pattern.\r\n\r\n\r\n',NULL,0,'/j/a/jack-pyke-hunter-jacket-english-oak-447-p_1_1.jpg',0,NULL,NULL,NULL,'','','',NULL,NULL,'4',2,NULL),(83,4,'simple',NULL,'2010-11-15 13:59:24',1,1,'',0,NULL,NULL,NULL,'WROXHAM MENS WARM BODYWARMERS',NULL,NULL,'15.9900',NULL,NULL,NULL,1,NULL,'WROXHAM MENS Insulated   WARM BODYWARMERS','WROXHAM MENS WARM BODYWARMERS OLIVE',NULL,'/w/r/wroxham_olive.jpg','',NULL,NULL,NULL,2,'/w/r/wroxham_olive.jpg','','2011-12-07 10:59:08','wroxham-mens-warm-insulated-bodywarmers','wroxham-mens-warm-insulated-bodywarmers.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','WROXHAM MENS WARM BODYWARMERS\r\n\r\n	\r\n\r\nWroxham Bodywarmer Olive\r\n* Poly/cotton * Nylon lined * Zip front with studded stormflap * Multi pocketed * Elasticated waist * Inside pocket * Mobile phone pocket\r\n',NULL,0,'/w/r/wroxham_olive.jpg',0,NULL,NULL,NULL,'','bodywarmers, workwear, warm, gilets, ','',NULL,NULL,'4',2,NULL),(84,4,'simple',NULL,'2010-11-19 12:05:35',1,1,'',0,NULL,NULL,NULL,'Kids Camouflage Combat Army Military Trousers Age 13/14',NULL,NULL,'14.9900',NULL,NULL,NULL,1,NULL,'Kids Camouflage Army Military Combat Trousers Age 13/14','Kids Camouflage Trousers Age 13/14',NULL,'/k/i/kids_camo_trs_1.jpg','',NULL,NULL,NULL,2,'/k/i/kids_camo_trs_1.jpg','','2011-12-29 14:17:14','kids-camouflage-combat-army-military-dpm-trousers-age-v13-14','kids-camouflage-combat-army-military-dpm-trousers-age-v13-14.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Kids Camouflage Combat  Trousers\r\nBritish DPM\r\nAnkle adjusters\r\n2 Side pockets\r\nPoly/Cotton.\r\nAge 13/ 14 Years',NULL,0,'/k/i/kids_camo_trs_1.jpg',0,NULL,NULL,NULL,'','camopants, kidsarmypants, cammogear, 95trousers, camouflague, camoflage, camoflague, ','',NULL,NULL,'4',2,NULL),(87,4,'simple',NULL,'2010-11-20 09:48:27',1,1,'',0,NULL,NULL,NULL,'Craghoppers Ladies Warmlined Kiwi Stretch Trousers',NULL,NULL,'27.5000',NULL,NULL,NULL,1,NULL,'Craghoppers Ladies Warmlined Kiwi Stretch Trousers','Craghoppers Ladies Warmlined Kiwi Stretch Trousers',NULL,'/c/r/cragsladiesstretch.jpg','',NULL,NULL,NULL,2,'/c/r/cragsladiesstretch.jpg','','2011-12-19 12:05:20','craghoppers-ladies-warmlined-kiwi-stretch-trousers','craghoppers-ladies-warmlined-kiwi-stretch-trousers.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Ladies warm lined stretch Kiwi walking trousers\r\nYour favourite outdoor trousers with stretch! These streamlined Kiwis move with you, for unrestricted movement and a flattering, lasting fit. The quick-drying fabric makes light work of muddy trails, and washes without a fuss at the end of the day. Oh, and they wouldn\'t make the Kiwi range without complete sun-protection.\r\nColour available Black\r\n',NULL,0,'/c/r/cragsladiesstretch.jpg',0,NULL,NULL,NULL,'','craghoppers, kiwi, trousers, stretch, ladieslinedtrousers, pants, winterlinedtrousers, ','',NULL,NULL,'4',2,NULL),(88,4,'simple',NULL,'2010-11-20 09:55:22',1,1,'',0,NULL,NULL,NULL,'Ladies Craghoppers  Warm Lined Kiwi Walking Trousers',NULL,NULL,'27.5000',NULL,NULL,NULL,1,NULL,'Ladies Craghoppers  Warm lined Kiwi Walking Trousers','Ladies Craghoppers  Warm lined Kiwi Walking Trousers',NULL,'/k/i/kiwiladieswlinedcocoa.jpg','',NULL,NULL,NULL,2,'/k/i/kiwiladieswlinedcocoa.jpg','','2011-12-14 13:11:12','ladies-craghoppers-warm-lined-kiwi-walking-trousers','ladies-craghoppers-warm-lined-kiwi-walking-trousers.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Give your hard-working legs a treat on cold winter days, in these luxuriously-lined Kiwi Trousers. The warm, fleecy inner isn\'t heavy or bulky, and because it\'s quick-drying you\'ll never feel soggy. The fit is still fantastic and the fabric still shrugs off showers and stains. \r\nClassic warm lined kiwi walking trousers\r\nDry very quickly\r\nAvailable in colour Cocoa',NULL,0,'/k/i/kiwiladieswlinedcocoa.jpg',0,NULL,NULL,NULL,'','craghoppers, kiwi, trousers, winterlinedtrousers, warmlined,','',NULL,NULL,'4',2,NULL),(91,4,'simple',NULL,'2010-11-20 14:58:41',1,0,'',0,NULL,NULL,NULL,'5 Colour Army military Camo Cream',NULL,NULL,'3.5000',NULL,NULL,NULL,0,NULL,'5 Colour Army Military   Camo Cream','5 Colour Camo Cream',NULL,'/5/_/5_col_camo_cream.jpg','',NULL,NULL,NULL,2,'/5/_/5_col_camo_cream.jpg','','2011-12-29 14:15:16','5-colour-army-military-camo-cream','5-colour-army-military-camo-cream.html',4,'0.4000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','5 Colour Camo Cream',NULL,0,'/5/_/5_col_camo_cream.jpg',0,NULL,NULL,NULL,'','camcream, camocream, camouflaguepaint, camoflage, camoflague, ','',NULL,NULL,'4',2,NULL),(92,4,'simple',NULL,'2010-11-20 15:19:17',1,1,'',0,NULL,NULL,NULL,'Childrens & Ladies  Dunlop Wellingtons',NULL,NULL,'9.5000',NULL,NULL,NULL,1,NULL,'Kids and Ladies Waterproof Dunlop Wellingtons','Kids  Dunlop Wellingtons',NULL,'/k/i/kids_blk_wlly.jpg','',NULL,NULL,NULL,0,'/k/i/kids_blk_wlly.jpg','','2011-12-07 10:49:51','kids-ladies-dunlop-wellingtons','kids-ladies-dunlop-wellingtons.html',4,'1.4000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Childrens  Dunlop Wellingtons\r\nWaterproof\r\nAvailable in Black or Green\r\nSizes 10 to 7\r\n',NULL,0,'/k/i/kids_blk_wlly.jpg',0,NULL,NULL,NULL,'','wellys, wellingtons, kidswellys, childrenswellys, wellies, green, blackwellingtons,','',NULL,NULL,'4',2,NULL),(93,4,'simple',NULL,'2010-11-20 15:51:33',1,1,'',0,NULL,NULL,NULL,'MensWarm  Seaboot Socks for wellingtons',NULL,NULL,'6.9900',NULL,NULL,NULL,1,NULL,'MensWarm wool mix  Seaboot Socks for wellingtons','Mens Seaboot Socks for wellingtons',NULL,'/s/e/seaboot.jpg','',NULL,NULL,NULL,2,'/s/e/seaboot.jpg','','2011-12-03 11:37:07','mens-warm-woolmix-seaboot-socks-for-wellingtons','mens-warm-woolmix-seaboot-socks-for-wellingtons.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Mens Seaboot Socks for wellingtons\r\nPerfect for warming up your wellingtons\r\n40% wool\r\n27%Viscose\r\n27% polypropylene6 % Mixed fibres\r\nColours are assorted\r\nWill send them randomly.\r\nAvailable in 8-9.5&10 -11.5.\r\n',NULL,0,'/s/e/seaboot.jpg',0,NULL,NULL,NULL,'','warm socks, wellysocks, seabootsocks','',NULL,NULL,'4',2,NULL),(95,4,'simple',NULL,'2010-11-23 10:41:18',1,0,'',0,NULL,NULL,NULL,'Sunncamp Heritage Family Caravan Super king size Sleeping Bag',NULL,NULL,'29.9900',NULL,NULL,NULL,0,NULL,'Sunncamp Heritage Family Caravan  Super king size Sleeping Bag','Sunncamp Heritage Super king size Sleeping Bag',NULL,'/h/e/heritage_green.jpg','',NULL,NULL,NULL,2,'/h/e/heritage_green.jpg','','2011-12-03 11:33:09','sunncamp-heritage-family-caravan-super-king-size-sleeping-bag','sunncamp-heritage-family-caravan-super-king-size-sleeping-bag.html',4,'2.7000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Super king size Sleeping bag\r\n\r\nApprox. 203x 92 cms.\r\n\r\nPoly/cotton inner and outer\r\n\r\n2.7kgs\r\n\r\nExtreme temperature - 7 degrees\r\n\r\nZip 2 together to form double bag.\r\n',NULL,0,'/h/e/heritage_green.jpg',0,NULL,NULL,NULL,'','slepingbags','',NULL,NULL,'4',2,NULL),(97,4,'simple',NULL,'2010-11-23 11:16:45',1,0,'',0,NULL,NULL,NULL,'Voyager Lite 3 Season Sleeping Bag',NULL,NULL,'34.9900',NULL,NULL,NULL,0,NULL,'Voyager Lite 3 Season Lightweight Sleeping Bag','Voyager Lite 3 Season Sleeping Bag',NULL,'/v/o/voyager_lite.jpg','',NULL,NULL,NULL,2,'/v/o/voyager_lite.jpg','','2012-01-04 16:56:58','voyager-lite-3-season-lightweight-sleeping-bag-backpacking-doe-camping-1500grams','voyager-lite-3-season-lightweight-sleeping-bag-backpacking-doe-camping-1500grams.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Voyager Lite 3 Season Sleeping Bag\r\n\r\nOnly available in Black And Mocha\r\n\r\nWeight 1500 grams\r\n\r\n    * Our warmest Voyager bag\r\n    * Mummy style hood for greater heat retention\r\n    * Good warmth to weight ratio at an affordable price\r\n    * Zip baffles to protect from wind and drafts\r\n    * Hexagonal rip stop outer stops snags spreading\r\n\r\nSpecifications\r\n\r\nItem Dimension:\r\n\r\n    225x70x50cm\r\n\r\nPack Size:\r\n\r\n    33x21x21cm\r\n\r\nExtreme Temp:\r\n\r\n    -5°c\r\n\r\nFabric/Materials:\r\n\r\n    250gsm 7 hole siliconised hollow fibre fill\r\n\r\nInner:\r\n\r\n    Breathable polyester\r\n\r\nOuter:\r\n\r\n    Rip-stop polyester\r\n\r\nComfort Range (Season):\r\n\r\n    10°c to -2°c (3)\r\n\r\nWeight:\r\n\r\n    1.5 kg\r\n',NULL,0,'/v/o/voyager_lite.jpg',0,NULL,NULL,NULL,'','highlandersleepingbags, 3season, sleepingbags, voyagerlite, shapedsleepingbags, lightweight,','',NULL,NULL,'4',2,NULL),(98,4,'simple',NULL,'2010-11-23 11:27:16',1,1,'',0,NULL,NULL,NULL,'Snugpak 3 Season Sleeperlite Sleeping Bag',NULL,NULL,'35.9900',NULL,NULL,NULL,1,NULL,'Snugpak 3 Season Sleeperlite Army Military  Sleeping Bag.','Snugpak 3 Season Sleeperlite Sleeping Bag',NULL,'/b/l/black_sleeperlite.jpg','',NULL,NULL,NULL,2,'/s/l/sleeper_lite_olive_medium.jpg','','2011-12-07 10:45:50','snugpak-3-season-sleeperlite-army-military-sleeping-bag-lightweight-1600grams-softie-doe-camping','snugpak-3-season-sleeperlite-army-military-sleeping-bag-lightweight-1600grams-softie-doe-camping.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Description\r\n\r\nRobust sleeping bag, an ideal introduction to Snugpaks performance range. Provides plenty of warmth in a realistic pack size. Highly siliconised synthetic fibres give a soft touch and prolonged lifespan compared to a traditional hollowfibre filled product. Used extensively by static troop divisions deep in hostile territory\r\n\r\nFeatures\r\nColours available:\r\nBlack\r\nMilitary Green \r\nCivilian Red and Grey\r\n\r\n\r\n\r\nTechnical Information\r\nZip Style: 	\r\nLeft or Right Handed\r\nShape: 	\r\nMummy\r\nTemp Rating: 	\r\nComfort: 0°c\r\nTemp Rating: 	\r\nExtreme: -7°c\r\nWeight: 	1600g (inc. compression stuff sack)\r\nPacksize\r\n(Fully Compressed): 	23x23cm (\'How to\' Guide)\r\nPacksize (Uncompressed) 	 \r\nLength: 	220cm\r\nWidth (Chest): 	150cm\r\nWidth (Foot): 	 \r\n\r\n',NULL,0,'/s/l/sleeperlitered.jpg',0,NULL,NULL,NULL,'','snugpaksleepingbags, snugpaksofties, snugpaksleeperlite. sleepingbags, 3season, snugpak,','',NULL,NULL,'4',2,NULL),(100,4,'simple',NULL,'2010-11-23 13:47:49',1,0,'',0,NULL,NULL,NULL,'Dog Tags',NULL,NULL,'1.5000',NULL,NULL,NULL,0,NULL,'Silver army military style Dog Tags','Silver dogtags',NULL,'/d/o/dogtags.jpg','',NULL,NULL,NULL,2,'/d/o/dogtags.jpg','','2011-12-07 10:38:28','siver-army-militarty-army-dog-tags','siver-army-militarty-army-dog-tags.html',4,'0.2500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Silver Dog Tags',NULL,0,'/d/o/dogtags.jpg',0,NULL,NULL,NULL,'','armydogtags, dogtags, tags,','',NULL,NULL,'4',2,NULL),(101,4,'simple',NULL,'2010-11-23 15:34:13',1,1,'',0,NULL,NULL,NULL,'Highlander 20 Litre Dublin Daysack',NULL,NULL,'7.9900',NULL,NULL,NULL,1,NULL,'Highlander 20 Litre Dublin rambling -hiking-Daysack','Highlander 20 Litre Dublin Daysack',NULL,'/d/u/dublin20.jpg','',NULL,NULL,NULL,2,'/d/u/dublin20.jpg','','2011-12-07 10:21:26','highlander-20-litre-dublinrambling-hiking-daysack','highlander-20-litre-dublinrambling-hiking-daysack.html',4,'0.6500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Highlander 20 Litre Dublin Daysack\r\n20 litre capacity\r\nXTP 600 D fabric\r\nTough and durable waterproof coating.\r\nWide mouth zip pocket\r\nTwo side mesh pockets (Ideal for carrying a drink)\r\nPadeed back system\r\nAvailable in Blue or Red\r\n',NULL,0,'/d/u/dublin20.jpg',0,NULL,NULL,NULL,'','20litredaysacks, walkingbags, hiking, trekking, haversacks, rucksaks,','',NULL,NULL,'4',2,NULL),(102,4,'simple',NULL,'2010-11-23 15:39:49',1,1,'',0,NULL,NULL,NULL,'Proforce \"Forces\" daylite 10 litre Rucksack',NULL,NULL,'10.9900',NULL,NULL,NULL,1,NULL,'Proforce \"Forces\" daylite military army 10 litre Rucksack','Proforce \"Forces\" daylite 10 litre Rucksack',NULL,'/k/o/kombat10.jpg','',NULL,NULL,NULL,2,'/k/o/kombat10.jpg','','2011-12-29 14:14:16','proforce-forces-daylite-military-army-10-litre-rucksack','proforce-forces-daylite-military-army-10-litre-rucksack.html',4,'0.6500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Proforce \"Forces\" daylite 10 litre Rucksack\r\n10 litre capacity\r\nDurable XTP900 PU fabric\r\nZipped front pocket\r\n10 guage self repair zips\r\nDrawstring opening\r\nDuraflex  Plastic Accesories\r\n',NULL,0,'/k/o/kombat10.jpg',0,NULL,NULL,NULL,'','kidsarmyrucksacks, camorucksacks, bergans, armyrucksacks, camo, camoflage, camouflague, camoflague,','',NULL,NULL,'4',2,NULL),(103,4,'simple',NULL,'2010-11-23 15:49:05',1,1,'',0,NULL,NULL,NULL,'Proforce 44 Litre Forces Rucksack In Camouflage or Olive Green',NULL,NULL,'39.9900',NULL,NULL,NULL,1,NULL,'Proforce 44 Litre Army Military  Forces camouflage DPM or olive Rucksack','Proforce 44 Litre Forces Rucksack',NULL,'/f/o/forces44camo.jpg','',NULL,NULL,NULL,2,'/f/o/forces44camo.jpg','','2011-12-29 14:13:28','proforce-44-litre-forces-dpm-camouflague-olive-rucksack','proforce-44-litre-forces-dpm-camouflague-olive-rucksack.html',4,'1.4500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','    * Duraflex branded buckles and clips\r\n    * 10 Gauge self repair zips\r\n    * Shock cord top system\r\n    * Draw cord snow closure, Chest and waist strap\r\n    * Waterproof transit case, Lid Compartment\r\n    * Accessory D-rings, Utility chain\r\n    * Airmesh funnel back system, Padded waist system\r\n\r\nSpecifications\r\n\r\nFabric/Materials:\r\n\r\n    XTP900\r\n\r\nCapacity:\r\n\r\n    44 litre\r\n\r\nSide Pockets:\r\n\r\n    2x2 litre\r\n\r\nWeight:\r\n\r\n    1.45 kg\r\n',NULL,0,'/f/o/forces44camo.jpg',0,NULL,NULL,NULL,'','camorucksacks, armysacks, bergans, militaryrucksacks, 44ltrerucksacks, camogear,camoflague, camoflage,','',NULL,NULL,'4',2,NULL),(106,4,'simple',NULL,'2010-11-24 10:37:45',1,1,'',0,NULL,NULL,NULL,'Military Style Army Black Beret',NULL,NULL,'4.9900',NULL,NULL,NULL,1,NULL,'Military Style Army  Black Beret','Military Style Black Beret',NULL,'/b/e/beret.jpg','',NULL,NULL,NULL,2,'/b/e/beret.jpg','','2011-12-07 09:28:03','military-style-army-black-beret','military-style-army-black-beret.html',4,'0.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Military Style Black Beret',NULL,0,'/b/e/beret.jpg',0,NULL,NULL,NULL,'','militaryberets, berets, armyberets, ','',NULL,NULL,'4',2,NULL),(108,4,'simple',NULL,'2010-11-24 11:17:33',1,1,'',0,NULL,NULL,NULL,'Kids Camouflage DPM Army T-Shirt',NULL,NULL,'6.5000',NULL,NULL,NULL,1,NULL,'Kids Camouflage DPM Army T-Shirt','Kids Camouflage DPM Army T-Shirt',NULL,'/c/a/camotshirt_1.jpg','',NULL,NULL,NULL,0,'/c/a/camotshirt_1.jpg','','2011-12-13 10:18:50','kids-camouflage-dpm-army-t-shirt-camo-soldierstshirt','kids-camouflage-dpm-army-t-shirt-camo-soldierstshirt.html',4,'0.4500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Kids Camouflage T-Shirt\r\nBritsh DPM\r\n100% Cotton\r\nBrushed Cotton\r\nSizes 24 to 34\r\n\r\nPLEASE NOTE\r\n\r\nWE SUGGEST THAT YOU BUY A SIZE BIGGER THAN NORMAL < AS THEY ARE SMALL TO SIZE .',NULL,0,'/c/a/camotshirt_1.jpg',0,NULL,NULL,NULL,'','kidscamotshirt, camgear, camoflage, teeshirts, cammygear, armytshirt,','',NULL,NULL,'4',2,NULL),(109,4,'simple',NULL,'2010-11-24 11:42:24',1,0,'',0,NULL,NULL,NULL,'Knitted Thinsulate Warm  Lined Peaked Hat',NULL,NULL,'3.9900',NULL,NULL,NULL,0,NULL,'Knitted Thinsulate Warm  Lined Peaked Hat','Knitted Thinsulate Lined Peaked Hat',NULL,'/p/e/peaked_thinhat_1.jpg','',NULL,NULL,NULL,2,'/p/e/peaked_thinhat_1.jpg','','2011-12-07 09:24:32','knitted-thinsulatewarm-lined-peaked-hat','knitted-thinsulatewarm-lined-peaked-hat.html',4,'0.4000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Knitted Thinsulate Warm  Lined Peaked Hat\r\n\r\nThinsulate Lined\r\n\r\nOne size',NULL,0,'/p/e/peaked_thinhat_1.jpg',0,NULL,NULL,NULL,'','knittedpeakedhat. peak, hat, headwear, peakedhat,','',NULL,NULL,'4',2,NULL),(110,4,'simple',NULL,'2011-02-12 11:07:09',1,1,'',0,NULL,NULL,NULL,'Highlander Aversa20 Litre Daypack Rucksack ',NULL,NULL,'12.9900',NULL,NULL,NULL,1,NULL,'Aversa 20 Litre Rucksacks\r\n\r\nMesh padded back \r\n\r\nLightweight \r\n','Aversa 20 litre Rucsacks',NULL,'/a/v/aversa.jpg','',NULL,NULL,NULL,2,'/a/v/aversa.jpg','','2011-02-12 11:17:35','highlander-aversa20-litre-daypack-rucksack','highlander-aversa20-litre-daypack-rucksack.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Aversa 20 litre day bag \r\n\r\nideal for walking, rambling , or days out !\r\n\r\n\r\nColour:\r\nBlue/Grey, Green/Grey, \r\n\r\nDescription\r\n\r\n    * 2 front pockets, 2 side pockets\r\n    * Internal organiser\r\n    * Padded mesh backsystem\r\n\r\nSpecifications\r\n\r\nFabric/Materials:\r\n\r\n    XTP600 weather resistant material\r\n\r\nCapacity:\r\n\r\n    20 Litre\r\n',NULL,0,'/a/v/aversa.jpg',NULL,NULL,NULL,NULL,'','','',NULL,NULL,NULL,NULL,NULL),(114,4,'simple',NULL,'2011-02-17 17:03:47',1,0,'',0,NULL,NULL,NULL,'Nikwax Footwear Cleaning Gel',NULL,NULL,'3.9900',NULL,NULL,NULL,0,NULL,'	\r\nCleans all types of leisure, lifestyle and sports shoes and boots. Revitalising cleaner for all footwear\r\n\r\n\r\nBenefits of using this product\r\n\r\n    * Removes dirt and helps to release stains\r\n    * Improves the appearance of dirty footwear\r\n    * Prepares the footwear for proofing with an appropriate footwear product\r\n    * Prolongs the life and performance of all types of footwear\r\n    * Maintains breathability\r\n    * Ideal for footwear with breathable linings e.g. Gore-Tex\r\n    * Easy to apply\r\n    * WaterBased - environmentally friendly, biodegradable, non flammable, non hazardous\r\n    * Does not contain fluorocarbons\r\n\r\n\r\n\r\n	','Nikwax Footwear Cleaning Gel',NULL,'/c/l/cleaning_gel.jpg','',NULL,NULL,NULL,2,'/c/l/cleaning_gel.jpg','','2011-12-03 14:52:31','nikwax-footwear-cleaning-gel-walking-boots-hiking-rambling','nikwax-footwear-cleaning-gel-walking-boots-hiking-rambling.html',4,'0.4500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','	\r\nCleans all types of leisure, lifestyle and sports shoes and boots. Revitalising cleaner for all footwear\r\n\r\n\r\nBenefits of using this product\r\n\r\n    * Removes dirt and helps to release stains\r\n    * Improves the appearance of dirty footwear\r\n    * Prepares the footwear for proofing with an appropriate footwear product\r\n    * Prolongs the life and performance of all types of footwear\r\n    * Maintains breathability\r\n    * Ideal for footwear with breathable linings e.g. Gore-Tex\r\n    * Easy to apply\r\n    * WaterBased - environmentally friendly, biodegradable, non flammable, non hazardous\r\n    * Does not contain fluorocarbons\r\n\r\n\r\n\r\n	',NULL,0,'/c/l/cleaning_gel.jpg',0,NULL,NULL,NULL,'','nikwax, cleaner, footwear, cleaninggel, gel','',NULL,NULL,'4',2,NULL),(118,4,'simple',NULL,'2011-04-13 12:10:46',1,1,'',0,NULL,NULL,NULL,'Gelert Horizon 65L Rucksac ideal for the Duke of Edinburgh Awards',NULL,NULL,'45.0000',NULL,NULL,NULL,1,NULL,'Horizon 65L Rucksac','Horizon 65 Litre',NULL,'/h/o/horizon_green.jpg','',NULL,NULL,NULL,2,'/h/o/horizon_green.jpg','','2011-12-03 14:51:10','65litre-rucksack-dukeofedinburghsaward-interrailing-walking','65litre-rucksack-dukeofedinburghsaward-interrailing-walking.html',4,'2.3500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Horizon 65L Rucksac\r\n\r\nPerformance bags which are loaded with technical features, perfectly suited for the first time backpacker. Their adjustable back systems make them exceptionally versatile.\r\n\r\nHorizon 65L Rucksac\r\nAdjustable padded cool air design for cool back comfort\r\n2 zippered side pockets\r\nPadded adjustable waist belt with additional lumbar support\r\nAdjustable chest strap\r\nZippered pocket on hood\r\nWalking pole holders\r\nHydration compatible\r\nVolume: 65 litre\r\nMaterial: P600D Polyester/P600D honeycomb Polyester Ripstop\r\nSize: W 31 x D 22 x H 87cm\r\nWeight: 2.35Kg\r\nColours: Olive/Black/Grey - Deep Blue/Black/Grey\r\n',NULL,0,'/h/o/horizon_green.jpg',0,NULL,NULL,NULL,'','65litre, rucksacks, haversacks, backpack, ','',NULL,NULL,'4',2,NULL),(119,4,'simple',NULL,'2011-05-03 12:43:30',1,0,'',0,NULL,NULL,NULL,'Gelert Compact Double Burner and Grill includes regulator and Hose.',NULL,NULL,'34.9900',NULL,NULL,NULL,0,NULL,'Gelert Folding Compact Double Burner and Grill','Gelert Folding Compact Double Burner and Grill',NULL,'/g/e/gelert_compact_grill.jpg','',NULL,NULL,NULL,0,'/g/e/gelert_compact_grill.jpg','','2011-12-03 14:49:51','gelert-compactdouble-burner-and-grill-campingstove-cooker-camping','gelert-compactdouble-burner-and-grill-campingstove-cooker-camping.html',4,'4.9000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','2 x 15KW high performance stainless Steel burners\r\n1 x 1.5KW centre grill\r\nPiezo quick ignition function\r\nLarge surface cooking area\r\nPortable folding design for easy transportation\r\nGrill pan tray included\r\nIncludes Regulator And Hose.\r\nDetailed instruction & maintenance manual included\r\n\r\nWeight: 4.7Kg\r\nPack Size: 56 x 29 x 7cm\r\nColour: Black',NULL,0,'/g/e/gelert_compact_grill.jpg',0,NULL,NULL,NULL,'','doubleburnerandgrill, campingstove, grill, cookers, stoves, stove, hos, regulator','',NULL,NULL,'4',2,NULL),(120,4,'simple',NULL,'2011-06-08 09:21:14',1,0,'',0,NULL,NULL,NULL,'Pack of 12 Tent Pegs for Camping and Festivals',NULL,NULL,'1.5000',NULL,NULL,NULL,0,NULL,'Pack of 12 Steel Tent pegs','Pack of 12 Steel Tent Pegs',NULL,'/p/m/pmstentpegs.jpg','',NULL,NULL,NULL,2,'/p/m/pmstentpegs.jpg','','2011-12-03 14:47:34','tentpegs-camping-festivals-steel-pegs-sparetentpegs','tentpegs-camping-festivals-steel-pegs-sparetentpegs.html',4,'0.2500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Pack of 12 Steel Tent  Pegs \r\n\r\nIdeal for spares when you loose them.\r\n',NULL,0,'/p/m/pmstentpegs.jpg',0,NULL,NULL,NULL,'','tentpegs, camping, sparepegs, pegs','',NULL,NULL,'4',2,NULL),(121,4,'simple',NULL,'2011-06-08 09:35:40',1,1,'',0,NULL,NULL,NULL,'Festival Emergency Waterproof Ponchos',NULL,NULL,'2.5000',NULL,NULL,NULL,1,NULL,'Festival Emergency Waterproof Ponchos','Emergency Ponchos',NULL,'/e/m/emergencyponchos.jpg','',NULL,NULL,NULL,2,'/e/m/emergencyponchos.jpg','','2011-12-01 12:08:44','festivalwaterproofs-ponchos-lightweight-compact-onesize-waterproofs','festivalwaterproofs-ponchos-lightweight-compact-onesize-waterproofs.html',4,'500.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Lightweight Emergency Ponchos\r\n\r\nCompact\r\n\r\nWaterproof \r\n\r\nLightweight\r\n\r\nBasic reusable \r\n\r\nBright or Dark Colours.\r\n\r\n\r\n',NULL,0,'/e/m/emergencyponchos.jpg',0,NULL,NULL,NULL,'','poncho','',NULL,NULL,'4',2,NULL),(122,4,'simple',NULL,'2011-06-08 14:13:54',1,0,'',0,NULL,NULL,NULL,'Festival Army Style Hexy Stove Lightweight.',NULL,NULL,'3.9900',NULL,NULL,NULL,0,NULL,'Festival Army Style Hexy Stove Lightweight.','Festival Army Style Hexy Stove Lightweight.',NULL,'/h/e/hexy_stove.jpg','',NULL,NULL,NULL,2,'/h/e/hexy_stove.jpg','','2011-06-08 14:15:54','festivalcookers-hexystoves-hexycookers-hexicookers-hexistoves-camping-military-army','festivalcookers-hexystoves-hexycookers-hexicookers-hexistoves-camping-military-army.html',4,'0.3450',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Lightweight, strong and compact cooker supplied with Hexamine Tablets.\r\n.Perfect for festivals, backpacking and wild camping.\r\nHexi solid fuel tablets burn without odour and ignite easily with a match -\r\n 4  fuel tablets will bring to the boil 2.5 cups of water in approximately 5 minutes.\r\nFeatures:\r\nStrong durable plated steel construction\r\nLightweight and compact\r\nIncludes  fuel tablets\r\nSpecification:\r\nSize: 12cm x 10cm x 3cm\r\nWeight: 320g\r\nGreat Festival Kit\r\nLightweight\r\n Ideal for emergencies\r\n As Supplied to British Army\r\n Compact to stow away in any small pouch \r\n',NULL,0,'/h/e/hexy_stove.jpg',NULL,NULL,NULL,NULL,'','','',NULL,NULL,NULL,NULL,NULL),(123,4,'simple',NULL,'2011-06-08 14:25:25',1,0,'',0,NULL,NULL,NULL,'Hexi Stove Refills for camping&festivals',NULL,NULL,'2.2500',NULL,NULL,NULL,0,NULL,'Hexi Stove Refills for camping&festivals','Hexi Stove Refills for camping&festivals',NULL,'/h/e/hexyrefills.jpg','',NULL,NULL,NULL,2,'/h/e/hexyrefills.jpg','','2012-03-17 12:22:30','hexi-refills-tablets-hexy-armycooker-tablets-hexi','hexi-refills-tablets-hexy-armycooker-tablets-hexi.html',4,'0.3400',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Hexi Stove Refills for camping&festivals\r\n\r\nContains 8 Tablets',NULL,0,'/h/e/hexyrefills.jpg',0,NULL,NULL,NULL,'','hexistoves, hexycookers, cookers, stoves, hexi,','',NULL,NULL,'4',2,NULL),(125,4,'simple',NULL,'2011-06-09 10:30:30',1,0,'',0,NULL,NULL,NULL,'Craghoppers Lightweight robust walking pole with anti shock absorber',NULL,NULL,'12.5000',NULL,NULL,NULL,0,NULL,'Craghoppers Lightweight robust walking pole with anti shock absorber','Craghoppers Lightweight robust walking pole with anti shock abso',NULL,'/c/r/crag_adventure_pole.jpg','',NULL,NULL,NULL,2,'/c/r/crag_adventure_pole.jpg','','2011-12-20 14:44:46','craghoppers-walkingpole-hikingstick-antishockabsorber-lightweight','craghoppers-walkingpole-hikingstick-antishockabsorber-lightweight.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Craghoppers Lightweight robust walking pole with anti shock absorber\r\n\r\nFully adjustable.\r\n\r\nSpring into action on the rockiest roads with this high-performance anti-shock walking pole.\r\n\r\n Amazingly light, yet superbly strong, it takes the strain out of any hilly trek.\r\n\r\n The fabulous cork grip handle means it won’t chafe your palm and the padded, adjustable strap enables you to comfortably secure it when scrambling up the fells.\r\n\r\n Perfect for walking in mountain terrain,or low level walking too.',NULL,0,'/c/r/crag_adventure_pole.jpg',0,NULL,NULL,NULL,'','craghoppers, walkingpoles, walkingsticks, antishock, antishockwalkingpoles','',NULL,NULL,'4',2,NULL),(126,4,'simple',NULL,'2011-06-09 12:56:44',1,1,'',0,NULL,NULL,NULL,'Sleeping Mat karrimatt bedroll rollmat',NULL,NULL,'4.9900',NULL,NULL,NULL,1,NULL,'Sleeping Mat \r\n\r\nMade in wales\r\n\r\nGood performer','Sleeping Mat karrimatt bedroll rollmat',NULL,'/n/e/new_muti_mat.jpg','',NULL,NULL,NULL,2,'/n/e/new_muti_mat.jpg','','2012-04-07 10:44:12','sleeping-mat-karrimatt-bedroll-rollmat','sleeping-mat-karrimatt-bedroll-rollmat.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Ideal for Spring, Summer and Autumn camping.\r\n\r\nGood functional performance from selected grades of polyolefin foam sourced only from quality manufacturers.\r\n\r\nIndividually tested & fully guaranteed. \r\n\r\nAvailable In Green Or Blue',NULL,0,'/n/e/new_muti_mat.jpg',0,NULL,NULL,NULL,'','sleepingmat, karrimat, bedroll,keepfitmat','',NULL,NULL,'4',2,NULL),(127,4,'simple',NULL,'2011-07-16 13:04:17',1,1,'',0,NULL,NULL,NULL,'Gelert Wilderness 65 Litre rucksack for DOE awards',NULL,NULL,'39.9900',NULL,NULL,NULL,1,NULL,'Gelert Wilderness 65 Litre rucksack for DOE awards','Gelert Wilderness 65 Litre rucksack for DOE awards',NULL,'/w/i/wilderness65.jpg','',NULL,NULL,NULL,2,'/w/i/wilderness65.jpg','','2011-12-03 09:47:17','gelert-wilderness-65-litre-rucksack-for-doe-awards','gelert-wilderness-65-litre-rucksack-for-doe-awards.html',4,'2.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Cool Air Design for cool back comfort\r\nPadded adjustable waist belt with additional lumbar support\r\nZipped hood pocket\r\nFront map pocket with waterproof zip\r\nPull forward hip belt adjustment\r\nAdjustable chest strap\r\n2 expandable bellows side pockets\r\nWalking pole holders\r\nHydration compatible\r\nBuilt in high visibility rain cover for increased visibility  \r\nInternal bivy divider\r\nAdjustable VTS back system',NULL,0,'/w/i/wilderness65.jpg',0,NULL,NULL,NULL,'','65litreruckacks, dukeofedinburgh, doeawards, backpackingrucksacks','',NULL,NULL,'4',2,NULL),(128,4,'simple',NULL,'2011-07-16 13:32:28',1,1,'',0,NULL,NULL,NULL,'Highlander Zing 20 Litre Rucksacksdaysacks',NULL,NULL,'5.9900',NULL,NULL,NULL,1,NULL,'Highlander Zing 20 Litre Rucksacksdaysacks','Highlander Zing 20 Litre Rucksacksdaysacks',NULL,'/z/i/zing.jpg','',NULL,NULL,NULL,2,'/z/i/zing.jpg','','2011-12-03 09:45:47','highlander-zing-20-litre-rucksacksdaysacks','highlander-zing-20-litre-rucksacksdaysacks.html',4,'0.9500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',' Highlander Daysack 20L\r\n20L Rucksack \r\n\r\nLarge Main Compartment\r\n\r\nZipped Front Pocket\r\n\r\nTough and Durable XTP 600 polyester fabric\r\n\r\n Adjustable and Padded Straps\r\n\r\nGrab Handle\r\n\r\nAvailable in many colours\r\n\r\n \r\n\r\nIdeal basic daysack for days out and college.  Adjustable shoulder straps for a great fit.  Large main compartent and a handy zipped pocket in the front.  Great daysack for great price.\r\n\r\n \r\n\r\n\r\n',NULL,0,'/z/i/zing.jpg',0,NULL,NULL,NULL,'','20litrerucksack, haversacks, daysack, 20 litre.','',NULL,NULL,'4',2,NULL),(130,4,'simple',NULL,'2011-08-13 10:55:06',1,0,'',0,NULL,NULL,NULL,'Commando Compact Stove fits in webbing ',NULL,NULL,'10.9900',NULL,NULL,NULL,0,NULL,'Commando lightweight army style stove','Commando lightweight army style stove',NULL,'/c/o/comact_stove.jpg','',NULL,NULL,NULL,2,'/c/o/comact_stove.jpg','','2011-12-03 09:44:22','commando-compact-stove-fits-in-webbing','commando-compact-stove-fits-in-webbing.html',4,'900.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','...the premier bushcraft & sustainable living internet retailer...\r\n \r\n\r\n    * Home\r\n    * Places\r\n    * Friends\r\n    * Shop For Items\r\n    * Search\r\n    * Shopping basket\r\n    * Contact form\r\n\r\nDetailed item view\r\nProducts » Cooking & Eating » Commando Compact Stove\r\nCommando Compact Stove\r\n\r\nStrong high quality aluminium alloy and stainless steel\r\nLightweight and compact\r\nHigh level weight bearing\r\nUltra compact folding cooker\r\nAdjustable gas flow\r\nHigh efficiency flame (3000W)\r\nCompatible with many gas bottles - ISO Screw Thread (EN417)\r\nComes with plastic storage / carry box\r\nSize: 11 x 5 x 5 cm (boxed)\r\nWeight: 90 grams',NULL,0,'/c/o/comact_stove.jpg',0,NULL,NULL,NULL,'','cookers, stoves, lighweightstoves, ','',NULL,NULL,'4',2,NULL),(131,4,'simple',NULL,'2011-09-17 08:45:05',1,1,'',0,NULL,NULL,NULL,'Kids Army Outfit, camosuit ,Tee Shirt -trousers and cap.',NULL,NULL,'21.4800',NULL,NULL,NULL,1,NULL,'Kids camo outfit','kids-army-kit-camouflague-tshirt-soldier95-trousers-armyhat',NULL,'/k/i/kidsarmykit1.jpg','',NULL,NULL,NULL,0,'/k/i/kidsarmykit1.jpg','','2011-12-29 14:10:30','kids-army-outfit-tee-shirt-trousers-and-cap','kids-army-outfit-tee-shirt-trousers-and-cap.html',4,'1.2000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','Kids Army Style Outfit\r\n\r\nCamouflague T Shirt\r\n\r\nRipstop Baseball Hat (one size adjustale)\r\n\r\nSoldier \"95\" style Trousers\r\n\r\nPLEASE NOTE !!\r\n\r\nTHE TEE SHIRTS ARE SMALL TO SIZE, WE SUGGEST PURCHASING ONE SIZE BIGGER.',NULL,0,'/k/i/kidsarmykit1.jpg',0,NULL,NULL,NULL,'','kidssuits, suits, armykit, armyoutfits, armydressingupoutfits, camoflague, camo, cammygear, camoflage, camoflague,','',NULL,NULL,'4',2,NULL),(132,4,'simple',NULL,'2011-09-21 14:16:22',1,1,NULL,0,NULL,NULL,NULL,'ice and snow grippers',NULL,NULL,'8.9900',NULL,NULL,NULL,1,NULL,'Ice grippers','ice and snow grippers',NULL,'/i/c/ice_grippers.jpg',NULL,NULL,NULL,NULL,2,'/i/c/ice_grippers.jpg',NULL,'2011-12-03 09:39:52','icegrippers-snowchains-yaktracks-crampons','icegrippers-snowchains-yaktracks-crampons.html',4,'0.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Product Features\r\n\r\n    Made from thermoplastic rubber\r\n    Stays flexible to -40°\r\n    Tough & Durable\r\n    Non-slip metal studs offer excellent traction\r\n    Size fits shoes/boots from UK 3-6 or 7 to 11\r\n\r\n',NULL,NULL,'/i/c/ice_grippers.jpg',0,NULL,NULL,NULL,NULL,'icegrippers, snowandicegrippers, yaktrax, crampons',NULL,NULL,NULL,'4',2,NULL),(133,4,'simple',NULL,'2011-10-22 13:12:33',1,1,NULL,0,NULL,NULL,NULL,'cub scout sweatshirt dark green  ',NULL,NULL,'13.9900',NULL,NULL,NULL,1,NULL,'Cub Sweatshirt','cub-scout-uniform-sweatshirt',NULL,'/c/u/cub-sweat__53962_std.jpg',NULL,NULL,NULL,NULL,0,'/c/u/cub-sweat__53962_std.jpg',NULL,'2011-12-03 14:46:06','cub-scout-scout-sweatshirt-dark-green','cub-scout-scout-sweatshirt-dark-green.html',4,'0.9500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Official Scout Association Sweatshirt\r\n\r\nAvailable from size 28 to 34 inch',NULL,NULL,'/c/u/cub-sweat__53962_std.jpg',0,NULL,NULL,NULL,NULL,'cubs, uniform ,cubjumper,sweatshirt, ',NULL,NULL,NULL,'4',2,NULL),(134,4,'simple',NULL,'2011-10-26 08:50:06',1,1,NULL,0,NULL,NULL,NULL,'Cub Scout polo shirt',NULL,NULL,'11.0000',NULL,NULL,NULL,1,NULL,'Cub polo shirt','cub-polo-shirt',NULL,'/c/u/cub_polo_shirt_purple_trim.jpg',NULL,NULL,NULL,NULL,0,'/c/u/cub_polo_shirt_purple_trim.jpg',NULL,'2011-12-03 14:45:03','cub-scout-polo-shirt-poloshirt','cub-scout-polo-shirt-poloshirt.html',4,'0.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Cub Polo Shirt',NULL,NULL,'/c/u/cub_polo_shirt_purple_trim.jpg',0,NULL,NULL,NULL,NULL,'cubs, poloshirt,scouts, uniform',NULL,NULL,NULL,'4',2,NULL),(135,4,'simple',NULL,'2011-10-26 08:57:36',1,1,NULL,0,NULL,NULL,NULL,'Beaver Sweatshirt with purple trim',NULL,NULL,'11.9900',NULL,NULL,NULL,1,NULL,'Beaver Sweatshirt','beaver sweatshirt',NULL,'/b/e/beaversweat.jpg',NULL,NULL,NULL,NULL,0,'/b/e/beaversweat.jpg',NULL,'2011-12-03 14:43:54','beaver-sweatshirt-purpletrim','beaver-sweatshirt-purpletrim.html',4,'0.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Beaver Scout Sweatshirt\r\nPurple trim',NULL,NULL,'/b/e/beaversweat.jpg',0,NULL,NULL,NULL,NULL,'beavers, uniform,sweatshirt, newbeaverssweatshirt, beaverstop',NULL,NULL,NULL,'4',2,NULL),(136,4,'simple',NULL,'2011-10-26 09:11:30',1,1,NULL,0,NULL,NULL,NULL,'Beaver Purple trimmed polo shirt',NULL,NULL,'10.0000',NULL,NULL,NULL,1,NULL,'Beaver purple trim polo shirt','Beaver purple trim polo shirt',NULL,'/b/e/beaverpolo.jpg',NULL,NULL,NULL,NULL,0,'/b/e/beaverpolo.jpg',NULL,'2011-12-03 14:42:58','beaver-poloshirt-purpletrim','beaver-poloshirt-purpletrim.html',4,'0.7000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Beaver  Polo Shirt\r\nPurple trim',NULL,NULL,'/b/e/beaverpolo.jpg',0,NULL,NULL,NULL,NULL,'beavers, uniform ,beaveruniform,poloshirt, teeshirt',NULL,NULL,NULL,'4',2,NULL),(137,4,'simple',NULL,'2011-10-26 09:18:04',1,1,NULL,0,NULL,NULL,NULL,'brownie short sleeve t shirt',NULL,NULL,'7.0000',NULL,NULL,NULL,1,NULL,'Brownie t shirt','brownie short sleeve t shirt',NULL,'/b/r/brownie_t.jpg',NULL,NULL,NULL,NULL,0,'/b/r/brownie_t.jpg',NULL,'2011-12-03 14:42:03','bownie-t-shirt-teeshirt-shortsleeve','bownie-t-shirt-teeshirt-shortsleeve.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Brownie t shirt\r\n\r\nshort sleeve',NULL,NULL,'/b/r/brownie_t.jpg',0,NULL,NULL,NULL,NULL,'brownies, tshit, uniform ,brownieuniform, teeshirt',NULL,NULL,NULL,'4',2,NULL),(138,4,'simple',NULL,'2011-10-26 09:25:29',1,1,NULL,0,NULL,NULL,NULL,'Brownie hoodie sweatshirt zip front',NULL,NULL,'18.9900',NULL,NULL,NULL,1,NULL,'Brownie hoodie','brownie hoodied top',NULL,'/b/r/brownie_hoodie.jpg',NULL,NULL,NULL,NULL,0,'/b/r/brownie_hoodie.jpg',NULL,'2011-12-03 14:40:37','brownie-hoodie-top-sweattop','brownie-hoodie-top-sweattop.html',4,'0.9500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Brownie hoodied sweatshirt\r\n\r\nWarm fleecy lining\r\n\r\n',NULL,NULL,'/b/r/brownie_hoodie.jpg',0,NULL,NULL,NULL,NULL,'brownies, hoody, hoodie, sweatshirt, uniform ',NULL,NULL,NULL,'4',2,NULL),(139,4,'simple',NULL,'2011-10-26 09:31:24',1,1,NULL,0,NULL,NULL,NULL,'brownie trousers',NULL,NULL,'12.5000',NULL,NULL,NULL,1,NULL,'brownie trousers','brownie trousers',NULL,'/b/r/brownie_trousers.jpg',NULL,NULL,NULL,NULL,0,'/b/r/brownie_trousers.jpg',NULL,'2011-12-03 14:39:06','brownie-trousrs-browniepants','brownie-trousrs-browniepants.html',4,'0.6500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'brownie trousers\r\n\r\nadjustable waist',NULL,NULL,'/b/r/brownie_trousers.jpg',0,NULL,NULL,NULL,NULL,'brownies, hoody, trousers, uniform, ',NULL,NULL,NULL,'4',2,NULL),(140,4,'simple',NULL,'2011-10-26 09:36:37',1,1,NULL,0,NULL,NULL,NULL,'brownie leggings',NULL,NULL,'9.0000',NULL,NULL,NULL,1,NULL,'brownie leggings','brownie leggings',NULL,'/b/r/brownie_leggings.jpg',NULL,NULL,NULL,NULL,0,'/b/r/brownie_leggings.jpg',NULL,'2011-12-03 14:38:08','brownie-leggings-browniesleggings','brownie-leggings-browniesleggings.html',4,'0.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'brownie leggings',NULL,NULL,'/b/r/brownie_leggings.jpg',0,NULL,NULL,NULL,NULL,'brownies, leggings, uniform, browniesuniform, ',NULL,NULL,NULL,'4',2,NULL),(141,4,'simple',NULL,'2011-10-26 09:42:20',1,1,NULL,0,NULL,NULL,NULL,'brownie long sleeve tee shirt top',NULL,NULL,'10.5000',NULL,NULL,NULL,1,NULL,'brownie long sleeve tee','brownie long sleeve tee shirt',NULL,'/b/r/brownie_long_sl.jpg',NULL,NULL,NULL,NULL,0,'/b/r/brownie_long_sl.jpg',NULL,'2011-10-26 10:38:40','brownies-longsleeve-tee-t-tshirt','brownies-longsleeve-tee-t-tshirt.html',4,'0.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'brownie long sleeve tee shirt to',NULL,NULL,'/b/r/brownie_long_sl.jpg',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'4',2,NULL),(143,4,'simple',NULL,'2011-10-31 13:59:25',1,1,NULL,0,NULL,NULL,NULL,'Beaver uniform trousers',NULL,NULL,'17.5000',NULL,NULL,NULL,1,NULL,'Beaver Trousers','beaver uniform trousers',NULL,'/c/u/cub-beaver_pants.jpg',NULL,NULL,NULL,NULL,0,'/c/u/cub-beaver_pants.jpg',NULL,'2011-10-31 14:07:21','beaver-cubs-uniform-beavertrousers-beaverpants','beaver-cubs-uniform-beavertrousers-beaverpants.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Beaver uniform Navy Blue Trousers',NULL,NULL,'/c/u/cub-beaver_pants.jpg',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'4',2,NULL),(144,4,'simple',NULL,'2011-10-31 14:10:00',1,1,NULL,0,NULL,NULL,NULL,'Cub Uniform trousers/pants',NULL,NULL,'17.5000',NULL,NULL,NULL,1,NULL,'Cub trousers','cub trousers',NULL,'/c/u/cub-beaver_pants_1.jpg',NULL,NULL,NULL,NULL,0,'/c/u/cub-beaver_pants_1.jpg',NULL,'2011-10-31 14:16:21','cub-uniform-trousers-pants','cub-uniform-trousers-pants.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Cub uniform trousers',NULL,NULL,'/c/u/cub-beaver_pants_1.jpg',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'4',2,NULL),(145,4,'simple',NULL,'2011-10-31 14:28:49',1,1,NULL,0,NULL,NULL,NULL,'rainbow uniform  hooded sweat top',NULL,NULL,'16.9900',NULL,NULL,NULL,1,NULL,'rainbow hoodie','rainbow hoodie',NULL,'/r/a/rainbow_hoodie.jpg',NULL,NULL,NULL,NULL,0,'/r/a/rainbow_hoodie.jpg',NULL,'2011-10-31 14:32:10','rainbow-hooded-sweattop','rainbow-hooded-sweattop.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'rainbow hoodie',NULL,NULL,'/r/a/rainbow_hoodie.jpg',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'4',2,NULL),(146,4,'simple',NULL,'2011-10-31 14:35:26',1,1,NULL,0,NULL,NULL,NULL,'Rainbow tee shirt polo shirt',NULL,NULL,'9.5000',NULL,NULL,NULL,1,NULL,'rainbow tee polo shirt','rainbow polo shirt',NULL,'/r/a/rainbow_polo.jpg',NULL,NULL,NULL,NULL,0,'/r/a/rainbow_polo.jpg',NULL,'2011-11-22 11:23:30','rainbow-polo-teeshirt-rainbowuniform','rainbow-polo-teeshirt-rainbowuniform.html',4,'0.5100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'rainbow polo tee shirt\r\n\r\nOnly Large size available until 01 December.',NULL,NULL,'/r/a/rainbow_polo.jpg',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'4',2,NULL),(147,4,'simple',NULL,'2011-10-31 14:40:51',1,0,NULL,0,NULL,NULL,NULL,'rainbow jog pants rainbow trousers',NULL,NULL,'11.5000',NULL,NULL,NULL,0,NULL,'rainbow pants','rainbow pants',NULL,'/r/a/rainbow_pants.jpg',NULL,NULL,NULL,NULL,0,'/r/a/rainbow_pants.jpg',NULL,'2011-12-02 11:18:09','rainbow-jog-pants-rainbow-trousers','rainbow-jog-pants-rainbow-trousers.html',4,'0.5100',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'rainbow pants',NULL,NULL,'/r/a/rainbow_pants.jpg',0,NULL,NULL,NULL,'rainbowpants','rainbows, rainbowunifom,uniform, rainbowpants, pants, trousers','rainbowpants',NULL,NULL,'4',2,NULL),(148,4,'simple',NULL,'2011-10-31 14:46:53',1,1,NULL,0,NULL,NULL,NULL,'scout uniform shirt scout shirt',NULL,NULL,'17.5000',NULL,NULL,NULL,1,NULL,'scout shirt','scout shirt',NULL,'/s/c/scout_shirts_1.jpg',NULL,NULL,NULL,NULL,0,'/s/c/scout_shirts_1.jpg',NULL,'2011-12-02 11:16:40','scout-uniform-shirt-scout-shirt','scout-uniform-shirt-scout-shirt.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'scout shirt',NULL,NULL,'/s/c/scout_shirts_1.jpg',0,NULL,NULL,NULL,'scoutshirt','scoutuniform, scouts, shirts, uniform, boyscouts,','scoutshirt',NULL,NULL,'4',2,NULL),(149,4,'simple',NULL,'2011-10-31 15:26:11',1,1,NULL,0,NULL,NULL,NULL,'Long sleeve thermal tee shirts',NULL,NULL,'6.5000',NULL,NULL,NULL,1,NULL,'long sleeve thermal t shirt','long sleeve thermal tee shirts',NULL,'/l/o/long_sleeve_thermal_t.jpg',NULL,NULL,NULL,NULL,2,'/l/o/long_sleeve_thermal_t.jpg',NULL,'2011-12-02 11:15:24','theremal-longslevv-teeshirt-warmunderwear','theremal-longslevv-teeshirt-warmunderwear.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'long sleeve thermal tshirts\r\n\r\navaiable in blue/grey and white',NULL,NULL,'/l/o/long_sleeve_thermal_t.jpg',0,NULL,NULL,NULL,'longsleevethermal','thermals, longsleevethermalteeshirts,tshirts, teeshirts, shirts, longsleeve,','thermallongsleevetshirts',NULL,NULL,'4',2,NULL),(150,4,'simple',NULL,'2011-11-08 15:24:50',1,1,NULL,0,NULL,NULL,NULL,'Craghoppers Winter Lined Kiwi Walking Trousers',NULL,NULL,'27.5000',NULL,NULL,NULL,1,NULL,'Craghoppers Lined Trousers','craghoppers winter lined kiwi walking trousers',NULL,'/n/a/navy_lined_kiwis.jpg',NULL,NULL,NULL,NULL,2,'/n/a/navy_lined_kiwis.jpg',NULL,'2012-03-10 13:01:32','kiwi-winterlined-kiwi-walkingtrousers-craghoppers','kiwi-winterlined-kiwi-walkingtrousers-craghoppers.html',4,'1.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Make room for Winter-Lined Kiwis this season. Our winter walking trousers have all the durability and comfort of our best-selling classic Kiwi Trousers, but with a snug fleecy lining for added warmth. Featuring a reliably weather-resistant finish and with eight useful pockets, they\'re great winter hiking trousers.\r\n\r\n    SolarDry polyester cotton with brushed polyester lining\r\n    Weight: 600g\r\n    Fit: Original\r\n    Classic walking trousers with brushed lining\r\n    8 pockets including 4 zipped security pockets and map-sized cargo pocket\r\n    Double seat and knee\r\n   \r\n    Part-elasticated waist with belt\r\n    Mobile phone holder\r\n    Lifetime guarantee',NULL,NULL,'/n/a/navy_lined_kiwis.jpg',0,NULL,NULL,NULL,'cragswintertrousers','kiwitrousers, craghoppers, warmlinedtrousers, winterwalkingtrousers, linedwalkingtrousers,trousers, pants, winterpants.','kiwiwinterlinedtrousers',NULL,NULL,'4',2,NULL),(151,4,'simple',NULL,'2011-11-10 15:58:37',1,0,NULL,0,NULL,NULL,NULL,'Boys/Girls camouflague DPM army style trousers ages  13/14 ',NULL,NULL,'14.9900',NULL,NULL,NULL,0,NULL,'13/14 Army pants','13/14 army pants',NULL,'/k/i/kids_camo_pants.jpg',NULL,NULL,NULL,NULL,2,'/k/i/kids_camo_pants.jpg',NULL,'2011-12-29 14:09:15','age13-14-armypants-camopants-dpmpants','age13-14-armypants-camopants-dpmpants.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Remain unseen by your enemies with these great kids woodland camouflage trousers. And with 6 pockets, there’s plenty of room to carry your essential kit.\r\n\r\nAvailable  in age 13/14',NULL,NULL,'/k/i/kids_camo_pants.jpg',0,NULL,NULL,NULL,'camopants13/14','kidscamopants, camo, camouflague, age13/14camotrousers, armypants, dpm, soldier95stylekidspants, camoflague,','camopantsage13/14',NULL,NULL,'4',2,NULL),(152,4,'simple',NULL,'2011-11-19 12:01:38',1,1,NULL,0,NULL,NULL,NULL,'Fleece lined hooded shirt by castle',NULL,NULL,'21.9900',NULL,NULL,NULL,1,NULL,'Castle Hooded Penarth','Castle hoodie',NULL,'/p/e/penarth_hoody.jpg',NULL,NULL,NULL,NULL,2,'/p/e/penarth_hoody.jpg',NULL,'2011-12-02 11:04:28','fleece-linedhoodie-hoodedshirt','fleece-linedhoodie-hoodedshirt.html',4,'2.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'100 percent acrylic fabric\r\nPolyester Fleece Lining\r\nZip Front Closure\r\nTwo Breast pockets\r\nAngled Pockets\r\nDrawstring Hood\r\n\r\nAvailable in Medium, Large, Xlarge, XXlarge,XXXlarge\r\n\r\nChoice of three colours\r\n\r\nBlue, red, green.\r\n\r\nPLEASE ADVISE 1st and 2nd Colour Choice, in your PAYPAL Notes Section ',NULL,NULL,'/p/e/penarth_hoody.jpg',0,NULL,NULL,NULL,'hoodedfleece','fleece, coat, jacket, hoodedfleece, warmfleece, hoodie, hoody, castlehoodedfleece.','hoodedfleecejacket',NULL,NULL,'4',2,NULL),(154,4,'simple',NULL,'2011-11-24 11:03:34',1,1,NULL,0,NULL,NULL,NULL,'Army camouflague military wallet DPM',NULL,NULL,'5.0000',NULL,NULL,NULL,1,NULL,'Camo wallet','army wallet',NULL,'/c/a/camo_wallet.jpg',NULL,NULL,NULL,NULL,2,'/b/l/black_wallet.jpg',NULL,'2011-12-29 14:08:28','dpm-wallet-camowallet-armywallet','dpm-wallet-camowallet-armywallet.html',4,'0.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DPM Wallet\r\n\r\nComplete with chain for security\r\n\r\nHeavy duty Nylon\r\n\r\nZip compartment \r\n\r\nPockets for cards\r\n\r\nChoice of Camo or Black',NULL,NULL,'/c/a/camo_wallet.jpg',0,NULL,NULL,NULL,'camowallet','camowallet, armykit, wallet, camouflaguewallet, camouflague, dpmwallet, cadetkit, camoflague,','wallet',NULL,NULL,'4',2,NULL),(155,4,'simple',NULL,'2011-11-26 12:52:31',1,1,NULL,0,NULL,NULL,NULL,'Regatta Waterproof Tectonic Fleece Jacket',NULL,NULL,'34.9500',NULL,NULL,NULL,1,NULL,'Tectonic mens fleece','regatta waterproof fleece',NULL,'/n/a/navy_wproof_fleece.jpg',NULL,NULL,NULL,NULL,2,'/b/l/blk_wproof_fleece.jpg',NULL,'2011-12-22 15:11:23','regatta-waterproof-tectonic-fleece-jacket','regatta-waterproof-tectonic-fleece-jacket.html',4,'1.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'When the hard chill sets in don the comfortable, waterproof and breathable Tectonic II, the ideal choice for practical adventure\r\nwear.\r\n\r\n    250 series anti-pill Symmetry fleece\r\n    Durable water repellent finish\r\n    Waterproof and breathable Isotex 5000 membrane drop liner\r\n\r\n    Taped seams\r\n    Adjustable neck cinch\r\n    2 zipped lower pockets and inner map pocket\r\n    Adjustable shockcord hem\r\n\r\nSizes:\r\nS-XXXL \r\n\r\nAvailable in BLACK or Navy Blue',NULL,NULL,'/n/a/navy_wproof_fleece.jpg',0,NULL,NULL,NULL,'regattawaterprooffleece','regattawaterprooffleece, waterproof, fleece, windprooffleece, waterproofbreathablefleece,isotex, adventuretech.','regattawaterprooffleece',NULL,NULL,'4',2,NULL),(156,4,'simple',NULL,'2011-11-26 13:10:42',1,1,NULL,0,NULL,NULL,NULL,'Ladies Regatta Waterproof Fleece Tectonic ',NULL,NULL,'34.9500',NULL,NULL,NULL,1,NULL,'Ladies Tectonic Fleece','Ladies Waterproof Fleece',NULL,'/h/o/hot_choc.jpg',NULL,NULL,NULL,NULL,2,'/b/l/blk_wproof_fleece_1.jpg',NULL,'2011-12-22 15:10:40','waterproof-regattafleece','waterproof-regattafleece.html',4,'1.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Capture the look with this waterproof and breathable symmetry fleece, creating a fashion statement for any adventure.\r\n\r\n    250 series anti-pill Symmetry fleece\r\n    Durable water repellent finish\r\n    Waterproof and breathable Isotex 5000 membrane drop liner\r\n    Taped seams\r\n    Adjustable neck cinch\r\n    2 zipped lower pockets and inner map pocket\r\n    Adjustable shockcord hem\r\n\r\nAvailable in Black Or Hot Choclate\r\n\r\n',NULL,NULL,'/h/o/hot_choc.jpg',0,NULL,NULL,NULL,NULL,'fleece, ladies coat, waterprooffleece, regattafleece, isotex, jackets, adventuretech, windprooffleece, waterproofwindproofbreathablefleece, regattatectonic.','regattawaterprooffleece',NULL,NULL,'4',2,NULL),(157,4,'simple',NULL,'2011-12-03 14:09:00',1,1,NULL,0,NULL,NULL,NULL,'Leather Safety Boots with Steel Midsole',NULL,NULL,'17.5000',NULL,NULL,NULL,1,NULL,'Steel chukka','steelchukka',NULL,'/s/a/safety_m475.jpg',NULL,NULL,NULL,NULL,0,'/s/a/safety_m475.jpg',NULL,'2012-01-04 16:03:59','leather-safety-boots-with-steel-midsole','leather-safety-boots-with-steel-midsole.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Black Grain Leather\r\n\r\nSafety Toe Cap\r\n\r\nSteel midsole\r\n\r\nAntistatic sole',NULL,NULL,'/s/a/safety_m475.jpg',0,NULL,NULL,NULL,'safetyboots','safetyboot, safetys, workboot, steelmidsole, grafterssafety, midsole, paddedankle, safetytoecap, nonmetalsafety, footwear, workwear','safety boot',NULL,NULL,'4',2,NULL),(158,4,'simple',NULL,'2011-12-06 11:44:07',1,1,NULL,0,NULL,NULL,NULL,'1000 Mile fusion walking sock',NULL,NULL,'14.5000',NULL,NULL,NULL,1,NULL,'1000 mile fusion','1000 mile fusion walking socks',NULL,'/1/0/100_mile_fusion.jpg',NULL,NULL,NULL,NULL,2,'/1/0/100_mile_fusion.jpg',NULL,'2011-12-06 14:46:05','1000mile-walkingsocks-socks-fusion-hikingsocks','1000mile-walkingsocks-socks-fusion-hikingsocks.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New from 1000 Mile the Fusion walking sock is a revoloution in sock design.\r\n\r\nAchilles Tendon protection: full length padded protection for the Achilles Tendon - the first sock to offer you this.\r\nArch bracing: for additional support.\r\nPadded comfort zones: padding on the toe, heel and ball area of the foot for extra comfort and protection.\r\nDouble layer construction: eliminates friction between foot and shoe, reducing wear and preventing blisters.\r\nTactel® inner layer: wicks away perspiration o keep feet dry and cool.\r\n\r\n\r\nCONTENT: Outer layer: 40% Merino Wool, 29% Nylon, 23% Polyester, 6% Cotton and 2% Lycra. Inner Layer: 100% Tactel®\r\n',NULL,NULL,'/1/0/100_mile_fusion.jpg',0,NULL,NULL,NULL,NULL,'1000mile, walkingsock, socks, hiking, trekking, sox, fusion, ',NULL,NULL,NULL,'4',2,NULL),(159,4,'simple',NULL,'2011-12-06 11:56:28',1,1,NULL,0,NULL,NULL,NULL,'1000 mile ladies fusion walking socks',NULL,NULL,'14.5000',NULL,NULL,NULL,1,NULL,'1000 mile ladies fusion','1000 mile socks',NULL,'/l/a/ladies_fusion.jpg',NULL,NULL,NULL,NULL,2,'/l/a/ladies_fusion.jpg',NULL,'2011-12-06 14:46:42','1000mile-walkingsocks-socks-sox-hiking-trekking-fusion','1000mile-walkingsocks-socks-sox-hiking-trekking-fusion.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'New from 1000 Mile the Fusion walking sock is a revoloution in sock design.\r\n\r\nAchilles Tendon protection: full length padded protection for the Achilles Tendon - the first sock to offer you this.\r\nArch bracing: for additional support.\r\nPadded comfort zones: padding on the toe, heel and ball area of the foot for extra comfort and protection.\r\nDouble layer construction: eliminates friction between foot and shoe, reducing wear and preventing blisters.\r\nTactel® inner layer: wicks away perspiration o keep feet dry and cool.\r\n\r\n\r\nCONTENT: Outer layer: 40% Merino Wool, 29% Nylon, 23% Polyester, 6% Cotton and 2% Lycra. Inner Layer: 100% Tactel®\r\n',NULL,NULL,'/l/a/ladies_fusion.jpg',0,NULL,NULL,NULL,NULL,'1000mile, walkingsocks, socks, sox, footwear, trekking, hiking',NULL,NULL,NULL,'4',2,NULL),(160,4,'simple',NULL,'2011-12-13 11:16:07',1,1,NULL,0,NULL,NULL,NULL,'Doc marten shoes classic 1461',NULL,NULL,'69.9900',NULL,NULL,NULL,1,NULL,'Doc Shoe','doc marten shoe',NULL,'/d/o/doc_shoe.jpg',NULL,NULL,NULL,NULL,2,'/d/o/doc_shoe.jpg',NULL,'2011-12-13 12:12:46','docs-docmarten-airwear-shoes-footwear-foot-airwear','docs-docmarten-airwear-shoes-footwear-foot-airwear.html',4,'2.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Classic shoe\r\n\r\nLeather upper\r\n\r\nDoc Martens Airwear  Sole ',NULL,NULL,'/d/o/doc_shoe.jpg',0,NULL,NULL,NULL,NULL,'docmatens, docs, shoes, foot, footwear, 1461, classics, docmartin, docmarten,',NULL,NULL,NULL,'4',2,NULL),(161,4,'simple',NULL,'2011-12-13 11:37:15',1,1,NULL,0,NULL,NULL,NULL,'Doc Marten Classic 1460 Boot',NULL,NULL,'79.9900',NULL,NULL,NULL,1,NULL,'Doc Boots','doc marten classic boots',NULL,'/d/o/doc_boots.jpg',NULL,NULL,NULL,NULL,2,'/d/o/doc_boots.jpg',NULL,'2012-01-04 16:05:20','doc-marten-classic-1460-boot','doc-marten-classic-1460-boot.html',4,'3.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Doc Marten Classic Boots\r\n\r\nLeather Uppers\r\n\r\nDoc Marten Airwear Soles',NULL,NULL,'/d/o/doc_boots.jpg',0,NULL,NULL,NULL,NULL,'docs, classics, 1460 , boots, foot, footwear, docmartens, docmartin, ',NULL,NULL,NULL,'4',2,NULL),(162,4,'simple',NULL,'2011-12-21 16:36:54',1,0,NULL,0,NULL,NULL,NULL,'Victorinox swiss army knives Duke of Edinburgh Approved',NULL,NULL,'28.9900',NULL,NULL,NULL,0,NULL,'DOE swiss ','victorinox-swissarmyknives-DOE-armyknives-knives',NULL,'/s/w/swiss_doe.jpg',NULL,NULL,NULL,NULL,2,'/s/w/swiss_doe.jpg',NULL,'2011-12-21 16:46:56','victorinox-swiss-army-knives-duke-of-edinburgh-approved','victorinox-swiss-army-knives-duke-of-edinburgh-approved.html',4,'0.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'*   Duke of Edinburgh Award Approved\r\n\r\n*    Safety Blade\r\n*    Scissors\r\n*    Can Opener\r\n*    Bottle Opener\r\n*    Wire Cutter\r\n*    Wire Stripper\r\n*    Screwdriver\r\n*    Phillips Screwdriver\r\n*    Multi Purpose Hook\r\n*    Keyring\r\n*    Tweezers\r\n*    Toothpick',NULL,NULL,'/s/w/swiss_doe.jpg',0,NULL,NULL,NULL,NULL,'army, swissarmyknives, knives, dukeofedinburgh,',NULL,NULL,NULL,'4',2,NULL),(163,4,'simple',NULL,'2011-12-21 16:54:49',1,0,NULL,0,NULL,NULL,NULL,'Victorinox Swiss Army Knives Spartan',NULL,NULL,'22.0000',NULL,NULL,NULL,0,NULL,'Swiss spartan','swissarmy-knives-genuinearmyknives-victorinox-',NULL,'/s/w/swiss_spartin.jpg',NULL,NULL,NULL,NULL,2,'/s/w/swiss_spartin.jpg',NULL,'2011-12-21 16:57:45','victoinox-swissarmyknives-knives-army','victoinox-swissarmyknives-knives-army.html',4,'0.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'* Genuine Swiss Army Knife\r\n* Large Blade\r\n* Small Blade\r\n* Corkscrew\r\n* Can Opener with Small Screwdriver\r\n* Bottle Opener with Screwdriver\r\n* Wire Stripper\r\n* Reamer\r\n* Punch\r\n* Keyring\r\n* Tweezers\r\n* Toothpick',NULL,NULL,'/s/w/swiss_spartin.jpg',0,NULL,NULL,NULL,NULL,'victorinox, swissarmyknives, armyknives, knife, knifes,spartan, ',NULL,NULL,NULL,'4',2,NULL),(164,4,'simple',NULL,'2011-12-21 17:03:04',1,1,NULL,0,NULL,NULL,NULL,'Victorinox Swiss army knives -climber',NULL,NULL,'27.5000',NULL,NULL,NULL,1,NULL,'Swiss Climber','victorinox-swissarmyknives-armyknife-knives-swiss-',NULL,'/s/w/swiss_red_climber.jpg',NULL,NULL,NULL,NULL,2,'/s/w/swiss_red_climber.jpg',NULL,'2011-12-21 17:06:23','victorinox-swiss-army-knives-climber','victorinox-swiss-army-knives-climber.html',4,'0.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'* Genuine Victorinox Swiss Army Knives\r\n* Large Blade\r\n* Small Blade\r\n* Corkscrew\r\n* Can Opener with Small Screwdriver\r\n*Bottle Opener with Screwdriver\r\n* Wire Stripper\r\n* Reamer\r\n* Punch \r\n* Keyring\r\n* Tweezers\r\n* Toothpick\r\n* Multi Purpose Hook\r\n* Scissors\r\n* Available in RED or BLACK\r\n',NULL,NULL,'/s/w/swiss_red_climber.jpg',0,NULL,NULL,NULL,NULL,'victorinox, swissarmyknives, knifes, knife, knives, armyknives,',NULL,NULL,NULL,'4',2,NULL),(165,4,'simple',NULL,'2011-12-29 13:58:57',1,0,NULL,0,NULL,NULL,NULL,'cub/beaver reversible camp blanket',NULL,NULL,'13.5000',NULL,NULL,NULL,0,NULL,'Reversible blanket','cub-beaver-blanket-reversible',NULL,'/b/l/blanket.jpg',NULL,NULL,NULL,NULL,2,'/b/l/blanket.jpg',NULL,'2011-12-29 14:04:00','cub-beaver-reversible-blanket-campblanket','cub-beaver-reversible-blanket-campblanket.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'cub & beaver reversible camp blanket',NULL,NULL,'/b/l/blanket.jpg',0,NULL,NULL,NULL,NULL,'cubs, beavers, reversibleblanket, blanket, campblanket, campfireblanket ','cub beavers reversible blanket',NULL,NULL,'4',2,NULL),(166,4,'simple',NULL,'2012-01-07 12:46:23',1,1,NULL,0,NULL,NULL,NULL,'Grisport Peaklander Waterproof  Leather Walking Boot',NULL,NULL,'69.9900',NULL,NULL,NULL,1,NULL,'Peaklander Boots','peaklander',NULL,'/p/e/peaklander2.jpg',NULL,NULL,NULL,NULL,2,'/p/e/peaklander2.jpg',NULL,'2012-02-21 09:40:49','grisport-walkingboots-foot-footwear-hikingboots-waterproofboots','grisport-walkingboots-foot-footwear-hikingboots-waterproofboots.html',4,'3.4500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Unisex leather trekking boot\r\nSizes 36 x 47\r\nWeight: 1120g\r\nColours - Brown \r\nSpotex lined - Waterproof & breathable\r\n>Rubber mac, durble sole unit\r\n\r\nRRP £79.99\r\nThe Grisport Peaklander Leather Walking Boot is our best selling leather hiking & walking boot.\r\n The Peaklander is a classic leather Italian-made boot, with a waterproof and breathable lining membrane. \r\nIt\'s lightweight, comfortable and the leather is pre-waxed for extra protection.\r\nA fantastic boot for an amazing price.\r\n\r\nGrisport Peaklander Leather Walking Boot Features:\r\n\r\n    Lightweight & Supportive Walking Boot\r\n    Comfy with pre-softened padded ankle cuffs and padded tongue.\r\n    Quality \'Spotex\' Waterproof & Breathable lining\r\n    Italian-made boot.\r\n    Great value for money and a tried and tested classic\r\n    \r\n\r\n\r\n\r\nLeather Boots:\r\n Grisport use the finest selection of leathers and the Peaklander boot is no exception, its leather upper comes pre-waxed for added protection.\r\n\r\nWaterproof and Breathable Membrane Lining:\r\n The Peaklander boots benefit from GriSports branded \'Spotex\' waterproof and breathable membrane with taped seams, this lines the boot ensuring your feet stay dry, whilst still allowing them and the leather to breath.\r\n Thus ensuring your feet stay comfortable and dry.\r\n\r\n\r\n\r\n',NULL,NULL,'/p/e/peaklander2.jpg',0,NULL,NULL,NULL,NULL,'grisport, foot, footwear, waterproof, walkingboots, boots, hikingboots, lightweightwalkingboots, leaterwalkingboots, ',NULL,NULL,NULL,'4',2,NULL),(167,4,'simple',NULL,'2012-01-07 13:17:10',1,1,NULL,0,NULL,NULL,NULL,'Grisport Leather waterproof Walking shoe with Vibram Sole',NULL,NULL,'69.9900',NULL,NULL,NULL,1,NULL,'dartmoor','grisport-walkingshoe-shoe- foot-waterprrofshoe-footwear-',NULL,'/d/a/dartmoorbrownpimg.jpg',NULL,NULL,NULL,NULL,2,'/d/a/dartmoorbrownpimg.jpg',NULL,'2012-01-07 13:50:22','grisport-leather-waterproof-walking-shoe-with-vibram-sole','grisport-leather-waterproof-walking-shoe-with-vibram-sole.html',4,'3.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Unisex trekking Shoe\r\nSizes 36 x 47\r\nWeight: 1040g\r\nColours - Brown leather.\r\nSpo-tex lined - Waterproof & Breathable\r\nVibram outsole',NULL,NULL,'/d/a/dartmoorbrownpimg.jpg',0,NULL,NULL,NULL,NULL,'grisport, walkingshoes, waterproof, foot, footwear, shoes, vibramsoles,',NULL,NULL,NULL,'4',2,NULL),(168,4,'simple',NULL,'2012-01-19 10:59:43',1,0,NULL,0,NULL,NULL,NULL,'Nikwax Fabric&Leather Proofing',NULL,NULL,'4.5000',NULL,NULL,NULL,0,NULL,'Fabric and leather proofing','nikwax-fabric&leather-proofing',NULL,'no_selection',NULL,NULL,NULL,NULL,2,'no_selection',NULL,'2012-01-19 11:09:36','nikwax-proofing-leather-foot-footwer-fabricfootwear','nikwax-proofing-leather-foot-footwer-fabricfootwear.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'>Fabric and leather proofing\r\n>Spray on proofing\r\n>Waterproofs, maintains cosmetic apparance &breathability.\r\n> Easy to use water based waterproofing\r\n\r\n',NULL,NULL,'no_selection',0,NULL,NULL,NULL,NULL,'nikwax, foot, footwear, proofing, leatherproofing, proofingforfootwear, fabricproofing, ',NULL,NULL,NULL,'4',2,NULL),(169,4,'simple',NULL,'2012-02-07 11:36:29',1,1,NULL,0,NULL,NULL,NULL,'Camoflague Army Combat DPM Trousers',NULL,NULL,'12.9900',NULL,NULL,NULL,1,NULL,'Castle Combat','camouflague-combat-pants-armypants-cammygear-',NULL,'/c/a/castlecamo.jpg',NULL,NULL,NULL,NULL,2,'/c/a/castlecamo.jpg',NULL,'2012-02-07 11:56:50','combatpants','combatpants.html',4,'1.5000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'>Camouflague Combat Pants\r\n>6 Pockets\r\n>Draw tapes on hem\r\n>Available in.\r\n>Navy \r\n>Black\r\n>Olive Green\r\n>Camouflague',NULL,NULL,'/c/a/castlecamo.jpg',0,NULL,NULL,NULL,NULL,'camouflage, armypants, 95s, trousers, kex, combatpants, combats, cargopants, trousers, ','camouflague, camopants, armytrousers',NULL,NULL,'4',2,NULL),(170,4,'simple',NULL,'2012-02-13 11:07:47',1,0,NULL,0,NULL,NULL,NULL,'Mini pick folding shovel',NULL,NULL,'7.0000',NULL,NULL,NULL,0,NULL,'Folding shovel','folding shovel',NULL,'/s/h/shovel_1.jpg',NULL,NULL,NULL,NULL,2,'/s/h/shovel_1.jpg',NULL,'2012-02-17 10:07:00','mini-pick-folding-shovel','mini-pick-folding-shovel.html',4,'0.9000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'>Mini Pick/Shovel\r\n\r\n>Strong folding 3 way shovel with in-built pick. \r\n\r\n> Compact and lightweight. With black Cordura pouch. ',NULL,NULL,'/s/h/shovel_1.jpg',0,NULL,NULL,NULL,'foldingshovel','foldingshovel, shovel, folding, armyshovel, spade, entrenchingtool,','folding shovel',NULL,NULL,'4',2,NULL),(171,4,'simple',NULL,'2012-02-21 16:02:46',1,0,NULL,0,NULL,NULL,NULL,'Highlander Map Compass',NULL,NULL,'2.9900',NULL,NULL,NULL,0,NULL,'Highlander Map Compass','highlander-compass-map-mapcompass',NULL,'/m/a/map-compass-com026.jpg',NULL,NULL,NULL,NULL,2,'/m/a/map-compass-com026.jpg',NULL,'2012-02-22 11:34:36','compass-mapcompass-highlander','compass-mapcompass-highlander.html',4,'0.3000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Description\r\n\r\n   > Magnifying glass\r\n   > Luminous needle tip & direction markers\r\n    >Neck cord\r\n\r\n>Specifications\r\n\r\nFabric/Materials: plastic\r\n\r\n>Item Dimension: 10x6.5x1cm\r\n\r\nPack Size: 20x10x1cm\r\n\r\nWeight: 0.03 kg\r\n\r\n\r\n\r\n',NULL,NULL,'/m/a/map-compass-com026.jpg',0,NULL,NULL,NULL,'compass','compass, map, mapcompass, orrienterringcompass, DOEcompass, highlander,orienteeringkit, ','highlander compass',NULL,NULL,'4',2,NULL),(172,4,'simple',NULL,'2012-02-21 16:32:44',1,0,NULL,0,NULL,NULL,NULL,'Highlander Deluxe Map Compass ',NULL,NULL,'4.9900',NULL,NULL,NULL,0,NULL,'Highlander deluxe compass','highlander-deluxecompass-compass-orienterring-',NULL,'/c/o/com006.jpg',NULL,NULL,NULL,NULL,2,'/c/o/com006.jpg',NULL,'2012-02-22 11:34:00','highlander-deluxe-map-compass','highlander-deluxe-map-compass.html',4,'0.3000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Item Description\r\n\r\n   \r\n\r\n    Highlander Deluxe Map Compass\r\n    Material: Plastic\r\n    Size: 13 x 6cm\r\n    Weight: 60g\r\n\r\n    Millimetre, Centimetre, Inch\r\n    Romer scales, magnifying glass\r\n    Luminous needle tip & direction markers\r\n    Neck cord\r\n    120mm/2 scale ruler\r\n\r\n',NULL,NULL,'/c/o/com006.jpg',0,NULL,NULL,NULL,NULL,'compass, compasses, highlander, orienterring, orienterringmapcompass, map,','highlander deluxe map compass',NULL,NULL,'4',2,NULL),(173,4,'simple',NULL,'2012-02-21 16:47:03',1,0,NULL,0,NULL,NULL,NULL,'Highlander Roamer Mapcase',NULL,NULL,'7.9900',NULL,NULL,NULL,0,NULL,'Roamer Map Case','mapcase-roamer-map-case-',NULL,'/r/o/roamermap.jpg',NULL,NULL,NULL,NULL,2,'/r/o/roamermap.jpg',NULL,'2012-02-22 11:33:16','highlander-mapcase-map-case','highlander-mapcase-map-case.html',4,'0.4500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlander Roamer Map Case Product Description\r\n\r\nThe Highlander Roamer Map Case is a water resistant TPU map case that is designed to allow you to use your map regardless of the weather, and should it be raining it prevents your map from getting wet.\r\n\r\nThe map case has an adjustable neck strap so that you can carry it around with you at all times, without the risk of losing it.\r\nFeatures and Benefits of the Highlander Roamer Map Case\r\n\r\n    Water resistant TPU map case\r\n    Adjustable strap\r\n    Roll top with Velcro closure\r\n\r\n',NULL,NULL,'/r/o/roamermap.jpg',0,NULL,NULL,NULL,NULL,'map, mapcase, orienterring, walking , map','mapcase highlander',NULL,NULL,'4',2,NULL),(174,4,'simple',NULL,'2012-02-21 16:54:28',1,0,NULL,0,NULL,NULL,NULL,'Trekmates Soft Feel Mapcase',NULL,NULL,'10.9900',NULL,NULL,NULL,0,NULL,'Trekmate mapcase','trekmates-map-mapcase-compassholder-mapbag-',NULL,'/t/r/trek_feel_1.jpg',NULL,NULL,NULL,NULL,2,'/t/r/trek_feel_1.jpg',NULL,'2012-02-22 11:32:42','trekmates-soft-feel-mapcase','trekmates-soft-feel-mapcase.html',4,'0.4000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'The Trekmates® Soft Feel Map Case Is lightweight and water resistant. It\'s strong and durable whilst still being compact and has a roll down closure system so it\'s easy to access what\'s inside.\r\n',NULL,NULL,'/t/r/trek_feel_1.jpg',0,NULL,NULL,NULL,NULL,'trekmates, map, mapcase, map, mapbag, bag, waterproofmapcover, mapcover, cover,','trekmates mapcase',NULL,NULL,'4',2,NULL),(175,4,'simple',NULL,'2012-02-22 10:19:51',1,1,NULL,0,NULL,NULL,NULL,'Castle Zip Front Overalls-boilersuits-coveralls',NULL,NULL,'17.9900',NULL,NULL,NULL,1,NULL,'Castle coverall','overalls-boilersuits-workwear-castle-',NULL,'/3/6/366.png',NULL,NULL,NULL,NULL,2,'/3/6/366.png',NULL,'2012-02-22 10:35:28','castle-zip-front-overalls-boilersuits-coveralls','castle-zip-front-overalls-boilersuits-coveralls.html',4,'1.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Blue Casle Zip Front Boiler Suit / Overalls 366\r\nCastle overalls has been used by workers in most environments with its nylon zip it ideal for working on cars , washable and used daily in industrail workwear.\r\n\r\n>>>>>>>>>>>>>>>PLEASE NOTE NAVY ONLY IN SIZES 52\" to 60\" <<<<<<<<<<<<<<\r\n\r\nFeatures\r\n\r\nChoice of Navy Blue or Royal Blue (Royal only available in sizes 34\" to 50\" )\r\n\r\n240 GMS Polyester/Cotton\r\n\r\n* Single piece back\r\n\r\n* Action back\r\n\r\n* Zip front with cover placket\r\n\r\n* 2 slant zip breast pockets\r\n\r\n* 2 back pockets, one with velcro\r\n\r\n* Pen pocket\r\n\r\n* Hammer loop\r\n\r\n* Elasticated back\r\n\r\n* Rule pocket',NULL,NULL,'/3/6/366.png',0,NULL,NULL,NULL,NULL,'overalls, boilersuits, coveralls, workwear,bluecastle,ovvies, ','overalls by castle',NULL,NULL,'4',2,NULL),(176,4,'simple',NULL,'2012-02-22 10:41:32',1,0,NULL,0,NULL,NULL,NULL,'Highlander Kingfisher Lock Knife',NULL,NULL,'5.9900',NULL,NULL,NULL,0,NULL,'6. 5lock knife','lockknife-knives-knife-lock-',NULL,'/6/_/6.5_lock.jpg',NULL,NULL,NULL,NULL,2,'/6/_/6.5_lock.jpg',NULL,'2012-02-22 10:44:07','highlander-kingfisher-lock-knife','highlander-kingfisher-lock-knife.html',4,'0.9900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlander Classic 6.5cm Folding Lock Knife\r\nKingfisher knife\r\nLocking blade\r\nClassic looking\r\nComes with nylon belt pouch\r\n6.5cm blade approx\r\nPicture shows open and closed - only one knife supplied\r\nShade of wood colour on knife may vary slightly from photo ',NULL,NULL,'/6/_/6.5_lock.jpg',0,NULL,NULL,NULL,NULL,'lockknife, knives, lockingblade, knife, locking, ','6.5 lock knife',NULL,NULL,'4',2,NULL),(177,4,'simple',NULL,'2012-02-22 10:53:59',1,0,NULL,0,NULL,NULL,NULL,'Highlander Survival Bag',NULL,NULL,'2.9900',NULL,NULL,NULL,0,NULL,'survival bag','bivvbag-survivalbag-bag-survival-emergencybag-',NULL,'/s/u/survival_bag.jpg',NULL,NULL,NULL,NULL,2,'/s/u/survival_bag.jpg',NULL,'2012-02-22 10:56:43','highlander-survival-bag','highlander-survival-bag.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Lightweight 90cm X 180cm approx emergency survival bivvi bag.\r\n\r\nFits in pocket\r\n\r\nSurvival instructions and and tips printed on the bag\r\n\r\nBright orange for high visibility, even in bad weather.\r\n\r\nIdeal for emergency circumstances and can be improvised to form a short-term waterproof shelter.\r\n\r\nUse whilst Hiking, mountaineering and general outdoor activities.\r\n\r\nAn essential piece of outdoor kit which takes up hardly any space in your Rucksack',NULL,NULL,'/s/u/survival_bag.jpg',0,NULL,NULL,NULL,NULL,'emergencybag, survival, survivalbag,bivvybag, bivvy,bag,','survivalbag',NULL,NULL,'4',2,NULL),(178,4,'simple',NULL,'2012-02-22 11:04:08',1,0,NULL,0,NULL,NULL,NULL,'Rucksack liner',NULL,NULL,'1.9900',NULL,NULL,NULL,0,NULL,'Rucksacl liner','rucksackliner-sacliner-liner',NULL,'/s/a/sacliner1.jpg',NULL,NULL,NULL,NULL,2,'/s/a/sacliner1.jpg',NULL,'2012-02-22 11:17:08','rucksack-liner','rucksack-liner.html',4,'0.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlander Waterproof Rucksack Liner - Orange\r\n\r\nWaterproof rucksack liner.\r\nFits up to a 85 LitreRucksack\r\nEnhances Protection for your gear against the elements\r\n',NULL,NULL,'/s/a/sacliner1.jpg',0,NULL,NULL,NULL,NULL,'rucksackliner, sacliner, rucksack, ','rucksack liner',NULL,NULL,'4',2,NULL),(179,4,'simple',NULL,'2012-02-22 11:43:21',1,0,NULL,0,NULL,NULL,NULL,'Emergency Survival Whistles',NULL,NULL,'1.5000',NULL,NULL,NULL,0,NULL,'Perry Whistle','survival-whistle-emergencywhistle-whistle-perrywhistle-',NULL,'/w/h/whistle.jpg',NULL,NULL,NULL,NULL,2,'/w/h/whistle.jpg',NULL,'2012-02-22 11:46:41','emergency-survival-whistles','emergency-survival-whistles.html',4,'0.1500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Classic bright orange plastic pealess whistle for emergency use.\r\nThis strong plastic whistle weighs only 15g and its one piece construction means there is nothing to go wrong.\r\nFloating design for marine use. Hole for attaching lanyard.\r\nYou should always carry an emergency whistle for attracting attention whenever you venture into the fells or mountains.\r\nSimple and cheap but potentially life saving.\r\nPerry Whistle\r\nPlastic too, so no risk of freeze injury to lips in sub-zero temperatures\r\n',NULL,NULL,'/w/h/whistle.jpg',0,NULL,NULL,NULL,NULL,'whistle, emergencywhistle, safetywhistle,survivalwhistle, perrywhistle,','perry whistle emerency survival whistle',NULL,NULL,'4',2,NULL),(180,4,'simple',NULL,'2012-02-22 11:57:25',1,0,NULL,0,NULL,NULL,NULL,'Highlander Hydration Systems  2 Litre',NULL,NULL,'13.9900',NULL,NULL,NULL,0,NULL,'Microban hydration ','hydration- camelbak-waterbags-watercarriers-',NULL,'/m/i/microban_hydration.jpg',NULL,NULL,NULL,NULL,2,'/m/i/microban_hydration.jpg',NULL,'2012-02-22 12:00:58','highlander-hydration-systes-2-litre','highlander-hydration-systes-2-litre.html',4,'0.7500',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Highlander SL Hydration System Features\r\n\r\nThe Highlander SL Hydration System is a PEVA/TPU construction bladder for use with your hydration pouch or backpack.\r\n\r\n    PEVA/TPU Construction\r\n    Hose with inner TPU material and outer PVC\r\n    Wide lock opening with slide lock closure - easy to fill and clean\r\n    Microban® antimicrobial protection, fights bacteria that causes stains, odors and product deterioration\r\n    OMC high flow bite valve with anti dirt cover\r\n    Attachment points for hydration sleeve in rucksacks\r\n    Capacity of 2 litres\r\n',NULL,NULL,'/m/i/microban_hydration.jpg',0,NULL,NULL,NULL,NULL,'camelak, hydrationbag, 2 litresack, waterbag,','hydration bag 2 litre',NULL,NULL,'4',2,NULL),(181,4,'simple',NULL,'2012-02-22 12:13:07',1,0,NULL,0,NULL,NULL,NULL,'Emergency Blankets Silver reflective insulating',NULL,NULL,'1.9900',NULL,NULL,NULL,0,NULL,'Emergency blanket','survivalblanket-emergencyblanket-survivalblanket-',NULL,'/e/m/emergblanket.jpg',NULL,NULL,NULL,NULL,2,'/e/m/emergblanket.jpg',NULL,'2012-02-22 12:15:50','emergency-blankets-silver-reflective-insulating','emergency-blankets-silver-reflective-insulating.html',4,'0.2000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'>Emergency Blanket\r\n>Insulating Reflective Coating\r\n>Provides Insulation\r\n>Retains bodyheat\r\n>Potential life saver\r\n>Size 140x210 cms.\r\n>All weathe protection',NULL,NULL,'/e/m/emergblanket.jpg',0,NULL,NULL,NULL,'emergencyblankey','emergencyblanket, blanket, survivalcover, surivalblanke, ','emergency blanket',NULL,NULL,'4',2,NULL),(182,4,'simple',NULL,'2012-02-22 12:29:01',1,0,NULL,0,NULL,NULL,NULL,'Firestarter',NULL,NULL,'5.9900',NULL,NULL,NULL,0,NULL,'Firestarters','firestarters',NULL,'/f/i/firestarter.jpg',NULL,NULL,NULL,NULL,2,'/f/i/firestarter.jpg',NULL,'2012-02-22 12:32:36','firestarter','firestarter.html',4,'0.4000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'>Magnesium Firestarters\r\n>Lasts Approx 400 Strikes\r\n>Lights a fire quickly',NULL,NULL,'/f/i/firestarter.jpg',0,NULL,NULL,NULL,NULL,'firestarters, sparks, ','firestarters',NULL,NULL,'4',2,NULL),(183,4,'simple',NULL,'2012-03-10 13:10:37',1,1,NULL,0,NULL,NULL,NULL,'Craghoppers Basecamp Ladies Lined Winter Trousers',NULL,NULL,'19.9900',NULL,NULL,NULL,1,NULL,'Craghoppers Basecamp Ladies Lined Winter Trousers','craghoppers-basecamp-winterlined-kiwis-ladies',NULL,'/l/i/linedbasecamp.jpg',NULL,NULL,NULL,NULL,2,'/l/i/linedbasecamp.jpg',NULL,'2012-03-10 13:16:41','crags-craghoppers-basecamp-lined-winterlined','crags-craghoppers-basecamp-lined-winterlined.html',4,'1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'	\r\n\r\nKeep warm on cold and chilly days in the womens Basecamp lined trousers. Features include a warm scrim lining, water repellent fabric treatment and a part elasticated waist to ensure a comfortable fit\r\n\r\n   > SolarDry UPF40+ sun-protective fabric\r\n    >4 pockets including 1 zip fastening\r\n    >Cargo pocket that will hold O/S map\r\n   > Warm and comfortable scrim lining\r\n  >  Part elasticated waistband at sides ensures a comfortable fit\r\n   > SmartDry Nano water repellent and stain resistant fabric\r\n   > Wash and wear\r\n   > Heel tape\r\n   > Zip fly with button fastening waistband\r\n    \r\n   > Feminine fit\r\n   > 400gam fabric weight\r\n\r\n>Fabric:\r\n\r\n>Outer: 65% Polyester, 35% Cotton\r\n>Lining: Warm polyester scrim lined',NULL,NULL,'/l/i/linedbasecamp.jpg',0,NULL,NULL,NULL,NULL,'craghoppers, basecamp, winterlined, warmlined, ladies, kiwis, trousers, pants,','craghoppers',NULL,NULL,'4',2,NULL);
/*!40000 ALTER TABLE `catalog_product_flat_1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav`
--

DROP TABLE IF EXISTS `catalog_product_index_eav`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_eav` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL default '0' COMMENT 'Value',
  PRIMARY KEY  (`entity_id`,`attribute_id`,`store_id`,`value`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`),
  CONSTRAINT `FK_CATALOG_PRODUCT_INDEX_EAV_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_IDX_EAV_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_IDX_EAV_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_eav`
--

LOCK TABLES `catalog_product_index_eav` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav` DISABLE KEYS */;
INSERT INTO `catalog_product_index_eav` VALUES (7,80,1,8),(8,80,1,7),(3,85,1,2),(4,85,1,2),(7,85,1,2),(8,85,1,2),(10,85,1,2),(11,85,1,2),(12,85,1,2),(13,85,1,2),(14,85,1,2),(15,85,1,0),(16,85,1,2),(17,85,1,0),(18,85,1,2),(21,85,1,2),(22,85,1,2),(23,85,1,2),(24,85,1,2),(25,85,1,2),(26,85,1,2),(27,85,1,2),(28,85,1,2),(29,85,1,2),(31,85,1,2),(32,85,1,2),(33,85,1,2),(34,85,1,2),(35,85,1,2),(36,85,1,2),(37,85,1,2),(38,85,1,2),(39,85,1,2),(40,85,1,2),(41,85,1,2),(42,85,1,2),(43,85,1,2),(44,85,1,2),(45,85,1,2),(46,85,1,2),(47,85,1,2),(48,85,1,2),(49,85,1,2),(50,85,1,2),(51,85,1,2),(52,85,1,2),(53,85,1,2),(54,85,1,2),(55,85,1,2),(56,85,1,2),(57,85,1,2),(58,85,1,2),(60,85,1,2),(61,85,1,2),(62,85,1,2),(63,85,1,2),(64,85,1,2),(65,85,1,2),(66,85,1,2),(67,85,1,2),(68,85,1,2),(70,85,1,2),(71,85,1,2),(72,85,1,2),(74,85,1,0),(75,85,1,2),(76,85,1,2),(77,85,1,2),(78,85,1,2),(79,85,1,2),(80,85,1,2),(81,85,1,2),(82,85,1,2),(83,85,1,2),(84,85,1,2),(87,85,1,2),(88,85,1,2),(91,85,1,2),(92,85,1,0),(93,85,1,2),(95,85,1,2),(97,85,1,2),(98,85,1,2),(100,85,1,2),(101,85,1,2),(102,85,1,2),(103,85,1,2),(106,85,1,2),(108,85,1,0),(109,85,1,2),(110,85,1,2),(114,85,1,2),(118,85,1,2),(119,85,1,0),(120,85,1,2),(121,85,1,2),(122,85,1,2),(123,85,1,2),(125,85,1,2),(126,85,1,2),(127,85,1,2),(128,85,1,2),(130,85,1,2),(131,85,1,0),(132,85,1,2),(133,85,1,0),(134,85,1,0),(135,85,1,0),(136,85,1,0),(137,85,1,0),(138,85,1,0),(139,85,1,0),(140,85,1,0),(141,85,1,0),(143,85,1,0),(144,85,1,0),(145,85,1,0),(146,85,1,0),(147,85,1,0),(148,85,1,0),(149,85,1,2),(150,85,1,2),(151,85,1,2),(152,85,1,2),(154,85,1,2),(155,85,1,2),(156,85,1,2),(157,85,1,0),(158,85,1,2),(159,85,1,2),(160,85,1,2),(161,85,1,2),(162,85,1,2),(163,85,1,2),(164,85,1,2),(165,85,1,2),(166,85,1,2),(167,85,1,2),(168,85,1,2),(169,85,1,2),(170,85,1,2),(171,85,1,2),(172,85,1,2),(173,85,1,2),(174,85,1,2),(175,85,1,2),(176,85,1,2),(177,85,1,2),(178,85,1,2),(179,85,1,2),(180,85,1,2),(181,85,1,2),(182,85,1,2),(183,85,1,2),(64,121,1,25);
/*!40000 ALTER TABLE `catalog_product_index_eav` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_decimal`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_eav_decimal` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value',
  PRIMARY KEY  (`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`),
  CONSTRAINT `FK_CAT_PRD_IDX_EAV_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_IDX_EAV_DEC_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_IDX_EAV_DEC_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_eav_decimal`
--

LOCK TABLES `catalog_product_index_eav_decimal` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_decimal_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_eav_decimal_idx` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value',
  PRIMARY KEY  (`entity_id`,`attribute_id`,`store_id`,`value`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_eav_decimal_idx`
--

LOCK TABLES `catalog_product_index_eav_decimal_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_decimal_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_eav_decimal_tmp` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value',
  PRIMARY KEY  (`entity_id`,`attribute_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_eav_decimal_tmp`
--

LOCK TABLES `catalog_product_index_eav_decimal_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_eav_idx` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL default '0' COMMENT 'Value',
  PRIMARY KEY  (`entity_id`,`attribute_id`,`store_id`,`value`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_IDX_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_IDX_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_IDX_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_IDX_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_eav_idx`
--

LOCK TABLES `catalog_product_index_eav_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_idx` DISABLE KEYS */;
INSERT INTO `catalog_product_index_eav_idx` VALUES (7,80,1,8),(8,80,1,7),(3,85,1,2),(4,85,1,2),(7,85,1,2),(8,85,1,2),(10,85,1,2),(11,85,1,2),(12,85,1,2),(13,85,1,2),(14,85,1,2),(15,85,1,0),(16,85,1,2),(17,85,1,0),(18,85,1,2),(21,85,1,2),(22,85,1,2),(23,85,1,2),(24,85,1,2),(25,85,1,2),(26,85,1,2),(27,85,1,2),(28,85,1,2),(29,85,1,2),(31,85,1,2),(32,85,1,2),(33,85,1,2),(34,85,1,2),(35,85,1,2),(36,85,1,2),(37,85,1,2),(38,85,1,2),(39,85,1,2),(40,85,1,2),(41,85,1,2),(42,85,1,2),(43,85,1,2),(44,85,1,2),(45,85,1,2),(46,85,1,2),(47,85,1,2),(48,85,1,2),(49,85,1,2),(50,85,1,2),(51,85,1,2),(52,85,1,2),(53,85,1,2),(54,85,1,2),(55,85,1,2),(56,85,1,2),(57,85,1,2),(58,85,1,2),(60,85,1,2),(61,85,1,2),(62,85,1,2),(63,85,1,2),(64,85,1,2),(65,85,1,2),(66,85,1,2),(67,85,1,2),(68,85,1,2),(70,85,1,2),(71,85,1,2),(72,85,1,2),(74,85,1,0),(75,85,1,2),(76,85,1,2),(77,85,1,2),(78,85,1,2),(79,85,1,2),(80,85,1,2),(81,85,1,2),(82,85,1,2),(83,85,1,2),(84,85,1,2),(87,85,1,2),(88,85,1,2),(91,85,1,2),(92,85,1,0),(93,85,1,2),(95,85,1,2),(97,85,1,2),(98,85,1,2),(100,85,1,2),(101,85,1,2),(102,85,1,2),(103,85,1,2),(106,85,1,2),(108,85,1,0),(109,85,1,2),(110,85,1,2),(114,85,1,2),(118,85,1,2),(119,85,1,0),(120,85,1,2),(121,85,1,2),(122,85,1,2),(123,85,1,2),(125,85,1,2),(126,85,1,2),(127,85,1,2),(128,85,1,2),(130,85,1,2),(131,85,1,0),(132,85,1,2),(133,85,1,0),(134,85,1,0),(135,85,1,0),(136,85,1,0),(137,85,1,0),(138,85,1,0),(139,85,1,0),(140,85,1,0),(141,85,1,0),(143,85,1,0),(144,85,1,0),(145,85,1,0),(146,85,1,0),(147,85,1,0),(148,85,1,0),(149,85,1,2),(150,85,1,2),(151,85,1,2),(152,85,1,2),(154,85,1,2),(155,85,1,2),(156,85,1,2),(157,85,1,0),(158,85,1,2),(159,85,1,2),(160,85,1,2),(161,85,1,2),(162,85,1,2),(163,85,1,2),(164,85,1,2),(165,85,1,2),(166,85,1,2),(167,85,1,2),(168,85,1,2),(169,85,1,2),(170,85,1,2),(171,85,1,2),(172,85,1,2),(173,85,1,2),(174,85,1,2),(175,85,1,2),(176,85,1,2),(177,85,1,2),(178,85,1,2),(179,85,1,2),(180,85,1,2),(181,85,1,2),(182,85,1,2),(183,85,1,2),(64,121,1,25);
/*!40000 ALTER TABLE `catalog_product_index_eav_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_eav_tmp` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `value` int(10) unsigned NOT NULL default '0' COMMENT 'Value',
  PRIMARY KEY  (`entity_id`,`attribute_id`,`store_id`,`value`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_TMP_ENTITY_ID` (`entity_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_TMP_ATTRIBUTE_ID` (`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_TMP_STORE_ID` (`store_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_TMP_VALUE` (`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_eav_tmp`
--

LOCK TABLES `catalog_product_index_eav_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_tmp` DISABLE KEYS */;
INSERT INTO `catalog_product_index_eav_tmp` VALUES (126,85,1,2);
/*!40000 ALTER TABLE `catalog_product_index_eav_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price`
--

DROP TABLE IF EXISTS `catalog_product_index_price`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class ID',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `final_price` decimal(12,4) default NULL COMMENT 'Final Price',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_WEBSITE_ID` (`website_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  CONSTRAINT `FK_CAT_PRD_IDX_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_IDX_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_IDX_PRICE_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price`
--

LOCK TABLES `catalog_product_index_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price` DISABLE KEYS */;
INSERT INTO `catalog_product_index_price` VALUES (3,0,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(3,1,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(3,2,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(3,3,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(4,0,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(4,1,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(4,2,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(4,3,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(7,0,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(7,1,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(7,2,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(7,3,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(8,0,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(8,1,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(8,2,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(8,3,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(10,0,1,2,'49.9900','49.9900','49.9900','49.9900',NULL),(10,1,1,2,'49.9900','49.9900','49.9900','49.9900',NULL),(10,2,1,2,'49.9900','49.9900','49.9900','49.9900',NULL),(10,3,1,2,'49.9900','49.9900','49.9900','49.9900',NULL),(11,0,1,2,'18.9900','18.9900','18.9900','18.9900',NULL),(11,1,1,2,'18.9900','18.9900','18.9900','18.9900',NULL),(11,2,1,2,'18.9900','18.9900','18.9900','18.9900',NULL),(11,3,1,2,'18.9900','18.9900','18.9900','18.9900',NULL),(12,0,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(12,1,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(12,2,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(12,3,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(13,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(13,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(13,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(13,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(14,0,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(14,1,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(14,2,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(14,3,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(15,0,1,0,'14.9900','14.9900','14.9900','14.9900',NULL),(15,1,1,0,'14.9900','14.9900','14.9900','14.9900',NULL),(15,2,1,0,'14.9900','14.9900','14.9900','14.9900',NULL),(15,3,1,0,'14.9900','14.9900','14.9900','14.9900',NULL),(16,0,1,2,'17.5000','17.5000','17.5000','17.5000',NULL),(16,1,1,2,'17.5000','17.5000','17.5000','17.5000',NULL),(16,2,1,2,'17.5000','17.5000','17.5000','17.5000',NULL),(16,3,1,2,'17.5000','17.5000','17.5000','17.5000',NULL),(17,0,1,0,'12.9900','12.9900','12.9900','12.9900',NULL),(17,1,1,0,'12.9900','12.9900','12.9900','12.9900',NULL),(17,2,1,0,'12.9900','12.9900','12.9900','12.9900',NULL),(17,3,1,0,'12.9900','12.9900','12.9900','12.9900',NULL),(18,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(18,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(18,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(18,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(21,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(21,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(21,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(21,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(22,0,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(22,1,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(22,2,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(22,3,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(23,0,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(23,1,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(23,2,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(23,3,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(24,0,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(24,1,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(24,2,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(24,3,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(25,0,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(25,1,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(25,2,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(25,3,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(26,0,1,2,'45.0000','45.0000','45.0000','47.5000',NULL),(26,1,1,2,'45.0000','45.0000','45.0000','47.5000',NULL),(26,2,1,2,'45.0000','45.0000','45.0000','47.5000',NULL),(26,3,1,2,'45.0000','45.0000','45.0000','47.5000',NULL),(27,0,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(27,1,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(27,2,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(27,3,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(28,0,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(28,1,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(28,2,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(28,3,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(29,0,1,2,'59.9900','59.9900','59.9900','59.9900',NULL),(29,1,1,2,'59.9900','59.9900','59.9900','59.9900',NULL),(29,2,1,2,'59.9900','59.9900','59.9900','59.9900',NULL),(29,3,1,2,'59.9900','59.9900','59.9900','59.9900',NULL),(31,0,1,2,'37.5000','37.5000','37.5000','37.5000',NULL),(31,1,1,2,'37.5000','37.5000','37.5000','37.5000',NULL),(31,2,1,2,'37.5000','37.5000','37.5000','37.5000',NULL),(31,3,1,2,'37.5000','37.5000','37.5000','37.5000',NULL),(32,0,1,2,'22.5000','22.5000','22.5000','22.5000',NULL),(32,1,1,2,'22.5000','22.5000','22.5000','22.5000',NULL),(32,2,1,2,'22.5000','22.5000','22.5000','22.5000',NULL),(32,3,1,2,'22.5000','22.5000','22.5000','22.5000',NULL),(33,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(33,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(33,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(33,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(34,0,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(34,1,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(34,2,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(34,3,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(35,0,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(35,1,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(35,2,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(35,3,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(36,0,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(36,1,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(36,2,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(36,3,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(37,0,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(37,1,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(37,2,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(37,3,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(38,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(38,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(38,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(38,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(39,0,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(39,1,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(39,2,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(39,3,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(40,0,1,2,'1.0000','1.0000','1.0000','1.0000',NULL),(40,1,1,2,'1.0000','1.0000','1.0000','1.0000',NULL),(40,2,1,2,'1.0000','1.0000','1.0000','1.0000',NULL),(40,3,1,2,'1.0000','1.0000','1.0000','1.0000',NULL),(41,0,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(41,1,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(41,2,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(41,3,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(42,0,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(42,1,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(42,2,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(42,3,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(43,0,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(43,1,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(43,2,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(43,3,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(44,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(44,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(44,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(44,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(45,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(45,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(45,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(45,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(46,0,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(46,1,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(46,2,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(46,3,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(47,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(47,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(47,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(47,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(48,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(48,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(48,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(48,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(49,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(49,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(49,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(49,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(50,0,1,2,'11.5000','11.5000','11.5000','11.5000',NULL),(50,1,1,2,'11.5000','11.5000','11.5000','11.5000',NULL),(50,2,1,2,'11.5000','11.5000','11.5000','11.5000',NULL),(50,3,1,2,'11.5000','11.5000','11.5000','11.5000',NULL),(51,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(51,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(51,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(51,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(52,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(52,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(52,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(52,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(53,0,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(53,1,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(53,2,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(53,3,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(54,0,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(54,1,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(54,2,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(54,3,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(55,0,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(55,1,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(55,2,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(55,3,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(56,0,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(56,1,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(56,2,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(56,3,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(57,0,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(57,1,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(57,2,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(57,3,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(58,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(58,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(58,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(58,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(60,0,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(60,1,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(60,2,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(60,3,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(61,0,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(61,1,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(61,2,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(61,3,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(62,0,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(62,1,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(62,2,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(62,3,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(63,0,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(63,1,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(63,2,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(63,3,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(64,0,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(64,1,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(64,2,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(64,3,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(65,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(65,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(65,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(65,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(66,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(66,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(66,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(66,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(67,0,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(67,1,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(67,2,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(67,3,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(68,0,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(68,1,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(68,2,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(68,3,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(70,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(70,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(70,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(70,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(71,0,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(71,1,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(71,2,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(71,3,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(72,0,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(72,1,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(72,2,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(72,3,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(74,0,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(74,1,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(74,2,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(74,3,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(75,0,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(75,1,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(75,2,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(75,3,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(76,0,1,2,'9.9900','9.9900','9.9900','9.9900',NULL),(76,1,1,2,'9.9900','9.9900','9.9900','9.9900',NULL),(76,2,1,2,'9.9900','9.9900','9.9900','9.9900',NULL),(76,3,1,2,'9.9900','9.9900','9.9900','9.9900',NULL),(77,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(77,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(77,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(77,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(78,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(78,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(78,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(78,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(79,0,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(79,1,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(79,2,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(79,3,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(80,0,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(80,1,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(80,2,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(80,3,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(81,0,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(81,1,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(81,2,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(81,3,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(82,0,1,2,'65.9900','65.9900','65.9900','65.9900',NULL),(82,1,1,2,'65.9900','65.9900','65.9900','65.9900',NULL),(82,2,1,2,'65.9900','65.9900','65.9900','65.9900',NULL),(82,3,1,2,'65.9900','65.9900','65.9900','65.9900',NULL),(83,0,1,2,'15.9900','15.9900','15.9900','15.9900',NULL),(83,1,1,2,'15.9900','15.9900','15.9900','15.9900',NULL),(83,2,1,2,'15.9900','15.9900','15.9900','15.9900',NULL),(83,3,1,2,'15.9900','15.9900','15.9900','15.9900',NULL),(84,0,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(84,1,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(84,2,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(84,3,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(87,0,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(87,1,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(87,2,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(87,3,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(88,0,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(88,1,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(88,2,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(88,3,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(91,0,1,2,'3.5000','3.5000','3.5000','3.5000',NULL),(91,1,1,2,'3.5000','3.5000','3.5000','3.5000',NULL),(91,2,1,2,'3.5000','3.5000','3.5000','3.5000',NULL),(91,3,1,2,'3.5000','3.5000','3.5000','3.5000',NULL),(92,0,1,0,'9.5000','9.5000','9.5000','9.9900',NULL),(92,1,1,0,'9.5000','9.5000','9.5000','9.9900',NULL),(92,2,1,0,'9.5000','9.5000','9.5000','9.9900',NULL),(92,3,1,0,'9.5000','9.5000','9.5000','9.9900',NULL),(93,0,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(93,1,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(93,2,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(93,3,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(95,0,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(95,1,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(95,2,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(95,3,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(97,0,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(97,1,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(97,2,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(97,3,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(98,0,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(98,1,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(98,2,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(98,3,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(100,0,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(100,1,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(100,2,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(100,3,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(101,0,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(101,1,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(101,2,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(101,3,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(102,0,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(102,1,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(102,2,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(102,3,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(103,0,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(103,1,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(103,2,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(103,3,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(106,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(106,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(106,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(106,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(108,0,1,0,'6.5000','6.5000','6.5000','6.5000',NULL),(108,1,1,0,'6.5000','6.5000','6.5000','6.5000',NULL),(108,2,1,0,'6.5000','6.5000','6.5000','6.5000',NULL),(108,3,1,0,'6.5000','6.5000','6.5000','6.5000',NULL),(109,0,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(109,1,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(109,2,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(109,3,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(110,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(110,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(110,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(110,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(114,0,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(114,1,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(114,2,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(114,3,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(118,0,1,2,'45.0000','45.0000','45.0000','45.0000',NULL),(118,1,1,2,'45.0000','45.0000','45.0000','45.0000',NULL),(118,2,1,2,'45.0000','45.0000','45.0000','45.0000',NULL),(118,3,1,2,'45.0000','45.0000','45.0000','45.0000',NULL),(119,0,1,0,'34.9900','34.9900','34.9900','34.9900',NULL),(119,1,1,0,'34.9900','34.9900','34.9900','34.9900',NULL),(119,2,1,0,'34.9900','34.9900','34.9900','34.9900',NULL),(119,3,1,0,'34.9900','34.9900','34.9900','34.9900',NULL),(120,0,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(120,1,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(120,2,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(120,3,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(121,0,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(121,1,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(121,2,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(121,3,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(122,0,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(122,1,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(122,2,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(122,3,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(123,0,1,2,'2.2500','2.2500','2.2500','2.2500',NULL),(123,1,1,2,'2.2500','2.2500','2.2500','2.2500',NULL),(123,2,1,2,'2.2500','2.2500','2.2500','2.2500',NULL),(123,3,1,2,'2.2500','2.2500','2.2500','2.2500',NULL),(125,0,1,2,'12.5000','12.5000','12.5000','12.5000',NULL),(125,1,1,2,'12.5000','12.5000','12.5000','12.5000',NULL),(125,2,1,2,'12.5000','12.5000','12.5000','12.5000',NULL),(125,3,1,2,'12.5000','12.5000','12.5000','12.5000',NULL),(126,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(126,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(126,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(126,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(127,0,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(127,1,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(127,2,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(127,3,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(128,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(128,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(128,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(128,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(130,0,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(130,1,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(130,2,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(130,3,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(131,0,1,0,'21.4800','21.4800','21.4800','21.4800',NULL),(131,1,1,0,'21.4800','21.4800','21.4800','21.4800',NULL),(131,2,1,0,'21.4800','21.4800','21.4800','21.4800',NULL),(131,3,1,0,'21.4800','21.4800','21.4800','21.4800',NULL),(132,0,1,2,'8.9900','8.9900','8.9900','8.9900',NULL),(132,1,1,2,'8.9900','8.9900','8.9900','8.9900',NULL),(132,2,1,2,'8.9900','8.9900','8.9900','8.9900',NULL),(132,3,1,2,'8.9900','8.9900','8.9900','8.9900',NULL),(133,0,1,0,'13.9900','13.9900','13.9900','13.9900',NULL),(133,1,1,0,'13.9900','13.9900','13.9900','13.9900',NULL),(133,2,1,0,'13.9900','13.9900','13.9900','13.9900',NULL),(133,3,1,0,'13.9900','13.9900','13.9900','13.9900',NULL),(134,0,1,0,'11.0000','11.0000','11.0000','11.0000',NULL),(134,1,1,0,'11.0000','11.0000','11.0000','11.0000',NULL),(134,2,1,0,'11.0000','11.0000','11.0000','11.0000',NULL),(134,3,1,0,'11.0000','11.0000','11.0000','11.0000',NULL),(135,0,1,0,'11.9900','11.9900','11.9900','11.9900',NULL),(135,1,1,0,'11.9900','11.9900','11.9900','11.9900',NULL),(135,2,1,0,'11.9900','11.9900','11.9900','11.9900',NULL),(135,3,1,0,'11.9900','11.9900','11.9900','11.9900',NULL),(136,0,1,0,'10.0000','10.0000','10.0000','10.0000',NULL),(136,1,1,0,'10.0000','10.0000','10.0000','10.0000',NULL),(136,2,1,0,'10.0000','10.0000','10.0000','10.0000',NULL),(136,3,1,0,'10.0000','10.0000','10.0000','10.0000',NULL),(137,0,1,0,'7.0000','7.0000','7.0000','7.0000',NULL),(137,1,1,0,'7.0000','7.0000','7.0000','7.0000',NULL),(137,2,1,0,'7.0000','7.0000','7.0000','7.0000',NULL),(137,3,1,0,'7.0000','7.0000','7.0000','7.0000',NULL),(138,0,1,0,'18.9900','18.9900','18.9900','18.9900',NULL),(138,1,1,0,'18.9900','18.9900','18.9900','18.9900',NULL),(138,2,1,0,'18.9900','18.9900','18.9900','18.9900',NULL),(138,3,1,0,'18.9900','18.9900','18.9900','18.9900',NULL),(139,0,1,0,'12.5000','12.5000','12.5000','12.5000',NULL),(139,1,1,0,'12.5000','12.5000','12.5000','12.5000',NULL),(139,2,1,0,'12.5000','12.5000','12.5000','12.5000',NULL),(139,3,1,0,'12.5000','12.5000','12.5000','12.5000',NULL),(140,0,1,0,'9.0000','9.0000','9.0000','9.0000',NULL),(140,1,1,0,'9.0000','9.0000','9.0000','9.0000',NULL),(140,2,1,0,'9.0000','9.0000','9.0000','9.0000',NULL),(140,3,1,0,'9.0000','9.0000','9.0000','9.0000',NULL),(141,0,1,0,'10.5000','10.5000','10.5000','10.5000',NULL),(141,1,1,0,'10.5000','10.5000','10.5000','10.5000',NULL),(141,2,1,0,'10.5000','10.5000','10.5000','10.5000',NULL),(141,3,1,0,'10.5000','10.5000','10.5000','10.5000',NULL),(143,0,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(143,1,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(143,2,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(143,3,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(144,0,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(144,1,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(144,2,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(144,3,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(145,0,1,0,'16.9900','16.9900','16.9900','16.9900',NULL),(145,1,1,0,'16.9900','16.9900','16.9900','16.9900',NULL),(145,2,1,0,'16.9900','16.9900','16.9900','16.9900',NULL),(145,3,1,0,'16.9900','16.9900','16.9900','16.9900',NULL),(146,0,1,0,'9.5000','9.5000','9.5000','9.5000',NULL),(146,1,1,0,'9.5000','9.5000','9.5000','9.5000',NULL),(146,2,1,0,'9.5000','9.5000','9.5000','9.5000',NULL),(146,3,1,0,'9.5000','9.5000','9.5000','9.5000',NULL),(147,0,1,0,'11.5000','11.5000','11.5000','11.5000',NULL),(147,1,1,0,'11.5000','11.5000','11.5000','11.5000',NULL),(147,2,1,0,'11.5000','11.5000','11.5000','11.5000',NULL),(147,3,1,0,'11.5000','11.5000','11.5000','11.5000',NULL),(148,0,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(148,1,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(148,2,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(148,3,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(149,0,1,2,'6.5000','6.5000','6.5000','6.5000',NULL),(149,1,1,2,'6.5000','6.5000','6.5000','6.5000',NULL),(149,2,1,2,'6.5000','6.5000','6.5000','6.5000',NULL),(149,3,1,2,'6.5000','6.5000','6.5000','6.5000',NULL),(150,0,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(150,1,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(150,2,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(150,3,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(151,0,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(151,1,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(151,2,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(151,3,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(152,0,1,2,'21.9900','21.9900','21.9900','21.9900',NULL),(152,1,1,2,'21.9900','21.9900','21.9900','21.9900',NULL),(152,2,1,2,'21.9900','21.9900','21.9900','21.9900',NULL),(152,3,1,2,'21.9900','21.9900','21.9900','21.9900',NULL),(154,0,1,2,'5.0000','5.0000','5.0000','5.0000',NULL),(154,1,1,2,'5.0000','5.0000','5.0000','5.0000',NULL),(154,2,1,2,'5.0000','5.0000','5.0000','5.0000',NULL),(154,3,1,2,'5.0000','5.0000','5.0000','5.0000',NULL),(155,0,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(155,1,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(155,2,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(155,3,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(156,0,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(156,1,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(156,2,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(156,3,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(157,0,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(157,1,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(157,2,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(157,3,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(158,0,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(158,1,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(158,2,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(158,3,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(159,0,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(159,1,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(159,2,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(159,3,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(160,0,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(160,1,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(160,2,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(160,3,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(161,0,1,2,'79.9900','79.9900','79.9900','79.9900',NULL),(161,1,1,2,'79.9900','79.9900','79.9900','79.9900',NULL),(161,2,1,2,'79.9900','79.9900','79.9900','79.9900',NULL),(161,3,1,2,'79.9900','79.9900','79.9900','79.9900',NULL),(162,0,1,2,'28.9900','28.9900','28.9900','28.9900',NULL),(162,1,1,2,'28.9900','28.9900','28.9900','28.9900',NULL),(162,2,1,2,'28.9900','28.9900','28.9900','28.9900',NULL),(162,3,1,2,'28.9900','28.9900','28.9900','28.9900',NULL),(163,0,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(163,1,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(163,2,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(163,3,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(164,0,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(164,1,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(164,2,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(164,3,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(165,0,1,2,'13.5000','13.5000','13.5000','13.5000',NULL),(165,1,1,2,'13.5000','13.5000','13.5000','13.5000',NULL),(165,2,1,2,'13.5000','13.5000','13.5000','13.5000',NULL),(165,3,1,2,'13.5000','13.5000','13.5000','13.5000',NULL),(166,0,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(166,1,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(166,2,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(166,3,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(167,0,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(167,1,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(167,2,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(167,3,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(168,0,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(168,1,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(168,2,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(168,3,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(169,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(169,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(169,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(169,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(170,0,1,2,'7.0000','7.0000','7.0000','7.0000',NULL),(170,1,1,2,'7.0000','7.0000','7.0000','7.0000',NULL),(170,2,1,2,'7.0000','7.0000','7.0000','7.0000',NULL),(170,3,1,2,'7.0000','7.0000','7.0000','7.0000',NULL),(171,0,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(171,1,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(171,2,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(171,3,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(172,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(172,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(172,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(172,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(173,0,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(173,1,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(173,2,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(173,3,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(174,0,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(174,1,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(174,2,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(174,3,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(175,0,1,2,'17.9900','17.9900','17.9900','17.9900',NULL),(175,1,1,2,'17.9900','17.9900','17.9900','17.9900',NULL),(175,2,1,2,'17.9900','17.9900','17.9900','17.9900',NULL),(175,3,1,2,'17.9900','17.9900','17.9900','17.9900',NULL),(176,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(176,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(176,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(176,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(177,0,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(177,1,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(177,2,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(177,3,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(178,0,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(178,1,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(178,2,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(178,3,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(179,0,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(179,1,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(179,2,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(179,3,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(180,0,1,2,'13.9900','13.9900','13.9900','13.9900',NULL),(180,1,1,2,'13.9900','13.9900','13.9900','13.9900',NULL),(180,2,1,2,'13.9900','13.9900','13.9900','13.9900',NULL),(180,3,1,2,'13.9900','13.9900','13.9900','13.9900',NULL),(181,0,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(181,1,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(181,2,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(181,3,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(182,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(182,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(182,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(182,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(183,0,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(183,1,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(183,2,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(183,3,1,2,'19.9900','19.9900','19.9900','19.9900',NULL);
/*!40000 ALTER TABLE `catalog_product_index_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_bundle_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class Id',
  `price_type` smallint(5) unsigned NOT NULL COMMENT 'Price Type',
  `special_price` decimal(12,4) default NULL COMMENT 'Special Price',
  `tier_percent` decimal(12,4) default NULL COMMENT 'Tier Percent',
  `orig_price` decimal(12,4) default NULL COMMENT 'Orig Price',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  `base_tier` decimal(12,4) default NULL COMMENT 'Base Tier',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Idx';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_bundle_idx`
--

LOCK TABLES `catalog_product_index_price_bundle_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_opt_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_opt_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_bundle_opt_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `alt_price` decimal(12,4) default NULL COMMENT 'Alt Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  `alt_tier_price` decimal(12,4) default NULL COMMENT 'Alt Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Idx';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_bundle_opt_idx`
--

LOCK TABLES `catalog_product_index_price_bundle_opt_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_opt_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_opt_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_bundle_opt_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `alt_price` decimal(12,4) default NULL COMMENT 'Alt Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  `alt_tier_price` decimal(12,4) default NULL COMMENT 'Alt Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Tmp';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_bundle_opt_tmp`
--

LOCK TABLES `catalog_product_index_price_bundle_opt_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_sel_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_sel_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_bundle_sel_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id',
  `selection_id` int(10) unsigned NOT NULL default '0' COMMENT 'Selection Id',
  `group_type` smallint(5) unsigned default '0' COMMENT 'Group Type',
  `is_required` smallint(5) unsigned default '0' COMMENT 'Is Required',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Idx';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_bundle_sel_idx`
--

LOCK TABLES `catalog_product_index_price_bundle_sel_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_sel_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_sel_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_bundle_sel_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id',
  `selection_id` int(10) unsigned NOT NULL default '0' COMMENT 'Selection Id',
  `group_type` smallint(5) unsigned default '0' COMMENT 'Group Type',
  `is_required` smallint(5) unsigned default '0' COMMENT 'Is Required',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Tmp';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_bundle_sel_tmp`
--

LOCK TABLES `catalog_product_index_price_bundle_sel_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_bundle_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_bundle_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_bundle_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id',
  `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class Id',
  `price_type` smallint(5) unsigned NOT NULL COMMENT 'Price Type',
  `special_price` decimal(12,4) default NULL COMMENT 'Special Price',
  `tier_percent` decimal(12,4) default NULL COMMENT 'Tier Percent',
  `orig_price` decimal(12,4) default NULL COMMENT 'Orig Price',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  `base_tier` decimal(12,4) default NULL COMMENT 'Base Tier',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Tmp';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_bundle_tmp`
--

LOCK TABLES `catalog_product_index_price_bundle_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_bundle_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_agr_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_agr_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_cfg_opt_agr_idx` (
  `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent ID',
  `child_id` int(10) unsigned NOT NULL default '0' COMMENT 'Child ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`parent_id`,`child_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Index ';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_agr_idx`
--

LOCK TABLES `catalog_product_index_price_cfg_opt_agr_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_agr_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_agr_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_cfg_opt_agr_tmp` (
  `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent ID',
  `child_id` int(10) unsigned NOT NULL default '0' COMMENT 'Child ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`parent_id`,`child_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Temp T';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_agr_tmp`
--

LOCK TABLES `catalog_product_index_price_cfg_opt_agr_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_cfg_opt_idx` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_idx`
--

LOCK TABLES `catalog_product_index_price_cfg_opt_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_cfg_opt_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_cfg_opt_tmp` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_cfg_opt_tmp`
--

LOCK TABLES `catalog_product_index_price_cfg_opt_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_downlod_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_downlod_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_downlod_idx` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Minimum price',
  `max_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Maximum price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Indexer Table for price of downloadable products';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_downlod_idx`
--

LOCK TABLES `catalog_product_index_price_downlod_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_downlod_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_downlod_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_downlod_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_downlod_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_downlod_tmp` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Minimum price',
  `max_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Maximum price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Temporary Indexer Table for price of downloadable products';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_downlod_tmp`
--

LOCK TABLES `catalog_product_index_price_downlod_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_downlod_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_downlod_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_final_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_final_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_final_idx` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class ID',
  `orig_price` decimal(12,4) default NULL COMMENT 'Original Price',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  `base_tier` decimal(12,4) default NULL COMMENT 'Base Tier',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_final_idx`
--

LOCK TABLES `catalog_product_index_price_final_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_final_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_final_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_final_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_final_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_final_tmp` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class ID',
  `orig_price` decimal(12,4) default NULL COMMENT 'Original Price',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  `base_tier` decimal(12,4) default NULL COMMENT 'Base Tier',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_final_tmp`
--

LOCK TABLES `catalog_product_index_price_final_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_final_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_final_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_idx` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class ID',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `final_price` decimal(12,4) default NULL COMMENT 'Final Price',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_IDX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_IDX_WEBSITE_ID` (`website_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_IDX_MIN_PRICE` (`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_idx`
--

LOCK TABLES `catalog_product_index_price_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_idx` DISABLE KEYS */;
INSERT INTO `catalog_product_index_price_idx` VALUES (3,0,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(3,1,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(3,2,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(3,3,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(4,0,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(4,1,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(4,2,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(4,3,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(7,0,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(7,1,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(7,2,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(7,3,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(8,0,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(8,1,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(8,2,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(8,3,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(10,0,1,2,'49.9900','49.9900','49.9900','49.9900',NULL),(10,1,1,2,'49.9900','49.9900','49.9900','49.9900',NULL),(10,2,1,2,'49.9900','49.9900','49.9900','49.9900',NULL),(10,3,1,2,'49.9900','49.9900','49.9900','49.9900',NULL),(11,0,1,2,'18.9900','18.9900','18.9900','18.9900',NULL),(11,1,1,2,'18.9900','18.9900','18.9900','18.9900',NULL),(11,2,1,2,'18.9900','18.9900','18.9900','18.9900',NULL),(11,3,1,2,'18.9900','18.9900','18.9900','18.9900',NULL),(12,0,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(12,1,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(12,2,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(12,3,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(13,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(13,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(13,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(13,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(14,0,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(14,1,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(14,2,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(14,3,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(15,0,1,0,'14.9900','14.9900','14.9900','14.9900',NULL),(15,1,1,0,'14.9900','14.9900','14.9900','14.9900',NULL),(15,2,1,0,'14.9900','14.9900','14.9900','14.9900',NULL),(15,3,1,0,'14.9900','14.9900','14.9900','14.9900',NULL),(16,0,1,2,'17.5000','17.5000','17.5000','17.5000',NULL),(16,1,1,2,'17.5000','17.5000','17.5000','17.5000',NULL),(16,2,1,2,'17.5000','17.5000','17.5000','17.5000',NULL),(16,3,1,2,'17.5000','17.5000','17.5000','17.5000',NULL),(17,0,1,0,'12.9900','12.9900','12.9900','12.9900',NULL),(17,1,1,0,'12.9900','12.9900','12.9900','12.9900',NULL),(17,2,1,0,'12.9900','12.9900','12.9900','12.9900',NULL),(17,3,1,0,'12.9900','12.9900','12.9900','12.9900',NULL),(18,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(18,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(18,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(18,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(21,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(21,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(21,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(21,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(22,0,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(22,1,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(22,2,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(22,3,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(23,0,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(23,1,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(23,2,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(23,3,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(24,0,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(24,1,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(24,2,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(24,3,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(25,0,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(25,1,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(25,2,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(25,3,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(26,0,1,2,'45.0000','45.0000','45.0000','47.5000',NULL),(26,1,1,2,'45.0000','45.0000','45.0000','47.5000',NULL),(26,2,1,2,'45.0000','45.0000','45.0000','47.5000',NULL),(26,3,1,2,'45.0000','45.0000','45.0000','47.5000',NULL),(27,0,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(27,1,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(27,2,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(27,3,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(28,0,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(28,1,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(28,2,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(28,3,1,2,'55.0000','55.0000','55.0000','55.0000',NULL),(29,0,1,2,'59.9900','59.9900','59.9900','59.9900',NULL),(29,1,1,2,'59.9900','59.9900','59.9900','59.9900',NULL),(29,2,1,2,'59.9900','59.9900','59.9900','59.9900',NULL),(29,3,1,2,'59.9900','59.9900','59.9900','59.9900',NULL),(31,0,1,2,'37.5000','37.5000','37.5000','37.5000',NULL),(31,1,1,2,'37.5000','37.5000','37.5000','37.5000',NULL),(31,2,1,2,'37.5000','37.5000','37.5000','37.5000',NULL),(31,3,1,2,'37.5000','37.5000','37.5000','37.5000',NULL),(32,0,1,2,'22.5000','22.5000','22.5000','22.5000',NULL),(32,1,1,2,'22.5000','22.5000','22.5000','22.5000',NULL),(32,2,1,2,'22.5000','22.5000','22.5000','22.5000',NULL),(32,3,1,2,'22.5000','22.5000','22.5000','22.5000',NULL),(33,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(33,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(33,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(33,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(34,0,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(34,1,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(34,2,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(34,3,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(35,0,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(35,1,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(35,2,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(35,3,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(36,0,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(36,1,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(36,2,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(36,3,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(37,0,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(37,1,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(37,2,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(37,3,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(38,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(38,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(38,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(38,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(39,0,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(39,1,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(39,2,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(39,3,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(40,0,1,2,'1.0000','1.0000','1.0000','1.0000',NULL),(40,1,1,2,'1.0000','1.0000','1.0000','1.0000',NULL),(40,2,1,2,'1.0000','1.0000','1.0000','1.0000',NULL),(40,3,1,2,'1.0000','1.0000','1.0000','1.0000',NULL),(41,0,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(41,1,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(41,2,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(41,3,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(42,0,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(42,1,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(42,2,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(42,3,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(43,0,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(43,1,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(43,2,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(43,3,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(44,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(44,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(44,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(44,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(45,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(45,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(45,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(45,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(46,0,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(46,1,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(46,2,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(46,3,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(47,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(47,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(47,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(47,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(48,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(48,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(48,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(48,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(49,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(49,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(49,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(49,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(50,0,1,2,'11.5000','11.5000','11.5000','11.5000',NULL),(50,1,1,2,'11.5000','11.5000','11.5000','11.5000',NULL),(50,2,1,2,'11.5000','11.5000','11.5000','11.5000',NULL),(50,3,1,2,'11.5000','11.5000','11.5000','11.5000',NULL),(51,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(51,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(51,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(51,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(52,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(52,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(52,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(52,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(53,0,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(53,1,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(53,2,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(53,3,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(54,0,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(54,1,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(54,2,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(54,3,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(55,0,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(55,1,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(55,2,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(55,3,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(56,0,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(56,1,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(56,2,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(56,3,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(57,0,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(57,1,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(57,2,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(57,3,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(58,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(58,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(58,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(58,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(60,0,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(60,1,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(60,2,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(60,3,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(61,0,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(61,1,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(61,2,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(61,3,1,2,'5.5000','5.5000','5.5000','5.5000',NULL),(62,0,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(62,1,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(62,2,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(62,3,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(63,0,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(63,1,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(63,2,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(63,3,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(64,0,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(64,1,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(64,2,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(64,3,1,2,'3.0000','3.0000','3.0000','3.0000',NULL),(65,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(65,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(65,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(65,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(66,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(66,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(66,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(66,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(67,0,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(67,1,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(67,2,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(67,3,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(68,0,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(68,1,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(68,2,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(68,3,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(70,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(70,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(70,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(70,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(71,0,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(71,1,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(71,2,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(71,3,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(72,0,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(72,1,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(72,2,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(72,3,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(74,0,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(74,1,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(74,2,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(74,3,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(75,0,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(75,1,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(75,2,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(75,3,1,2,'11.9900','11.9900','11.9900','11.9900',NULL),(76,0,1,2,'9.9900','9.9900','9.9900','9.9900',NULL),(76,1,1,2,'9.9900','9.9900','9.9900','9.9900',NULL),(76,2,1,2,'9.9900','9.9900','9.9900','9.9900',NULL),(76,3,1,2,'9.9900','9.9900','9.9900','9.9900',NULL),(77,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(77,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(77,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(77,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(78,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(78,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(78,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(78,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(79,0,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(79,1,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(79,2,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(79,3,1,2,'7.5000','7.5000','7.5000','7.5000',NULL),(80,0,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(80,1,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(80,2,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(80,3,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(81,0,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(81,1,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(81,2,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(81,3,1,2,'24.9900','24.9900','24.9900','24.9900',NULL),(82,0,1,2,'65.9900','65.9900','65.9900','65.9900',NULL),(82,1,1,2,'65.9900','65.9900','65.9900','65.9900',NULL),(82,2,1,2,'65.9900','65.9900','65.9900','65.9900',NULL),(82,3,1,2,'65.9900','65.9900','65.9900','65.9900',NULL),(83,0,1,2,'15.9900','15.9900','15.9900','15.9900',NULL),(83,1,1,2,'15.9900','15.9900','15.9900','15.9900',NULL),(83,2,1,2,'15.9900','15.9900','15.9900','15.9900',NULL),(83,3,1,2,'15.9900','15.9900','15.9900','15.9900',NULL),(84,0,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(84,1,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(84,2,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(84,3,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(87,0,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(87,1,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(87,2,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(87,3,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(88,0,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(88,1,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(88,2,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(88,3,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(91,0,1,2,'3.5000','3.5000','3.5000','3.5000',NULL),(91,1,1,2,'3.5000','3.5000','3.5000','3.5000',NULL),(91,2,1,2,'3.5000','3.5000','3.5000','3.5000',NULL),(91,3,1,2,'3.5000','3.5000','3.5000','3.5000',NULL),(92,0,1,0,'9.5000','9.5000','9.5000','9.9900',NULL),(92,1,1,0,'9.5000','9.5000','9.5000','9.9900',NULL),(92,2,1,0,'9.5000','9.5000','9.5000','9.9900',NULL),(92,3,1,0,'9.5000','9.5000','9.5000','9.9900',NULL),(93,0,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(93,1,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(93,2,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(93,3,1,2,'6.9900','6.9900','6.9900','6.9900',NULL),(95,0,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(95,1,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(95,2,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(95,3,1,2,'29.9900','29.9900','29.9900','29.9900',NULL),(97,0,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(97,1,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(97,2,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(97,3,1,2,'34.9900','34.9900','34.9900','34.9900',NULL),(98,0,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(98,1,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(98,2,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(98,3,1,2,'35.9900','35.9900','35.9900','35.9900',NULL),(100,0,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(100,1,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(100,2,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(100,3,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(101,0,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(101,1,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(101,2,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(101,3,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(102,0,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(102,1,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(102,2,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(102,3,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(103,0,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(103,1,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(103,2,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(103,3,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(106,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(106,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(106,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(106,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(108,0,1,0,'6.5000','6.5000','6.5000','6.5000',NULL),(108,1,1,0,'6.5000','6.5000','6.5000','6.5000',NULL),(108,2,1,0,'6.5000','6.5000','6.5000','6.5000',NULL),(108,3,1,0,'6.5000','6.5000','6.5000','6.5000',NULL),(109,0,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(109,1,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(109,2,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(109,3,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(110,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(110,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(110,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(110,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(114,0,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(114,1,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(114,2,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(114,3,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(118,0,1,2,'45.0000','45.0000','45.0000','45.0000',NULL),(118,1,1,2,'45.0000','45.0000','45.0000','45.0000',NULL),(118,2,1,2,'45.0000','45.0000','45.0000','45.0000',NULL),(118,3,1,2,'45.0000','45.0000','45.0000','45.0000',NULL),(119,0,1,0,'34.9900','34.9900','34.9900','34.9900',NULL),(119,1,1,0,'34.9900','34.9900','34.9900','34.9900',NULL),(119,2,1,0,'34.9900','34.9900','34.9900','34.9900',NULL),(119,3,1,0,'34.9900','34.9900','34.9900','34.9900',NULL),(120,0,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(120,1,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(120,2,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(120,3,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(121,0,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(121,1,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(121,2,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(121,3,1,2,'2.5000','2.5000','2.5000','2.5000',NULL),(122,0,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(122,1,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(122,2,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(122,3,1,2,'3.9900','3.9900','3.9900','3.9900',NULL),(123,0,1,2,'2.2500','2.2500','2.2500','2.2500',NULL),(123,1,1,2,'2.2500','2.2500','2.2500','2.2500',NULL),(123,2,1,2,'2.2500','2.2500','2.2500','2.2500',NULL),(123,3,1,2,'2.2500','2.2500','2.2500','2.2500',NULL),(125,0,1,2,'12.5000','12.5000','12.5000','12.5000',NULL),(125,1,1,2,'12.5000','12.5000','12.5000','12.5000',NULL),(125,2,1,2,'12.5000','12.5000','12.5000','12.5000',NULL),(125,3,1,2,'12.5000','12.5000','12.5000','12.5000',NULL),(126,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(126,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(126,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(126,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(127,0,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(127,1,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(127,2,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(127,3,1,2,'39.9900','39.9900','39.9900','39.9900',NULL),(128,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(128,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(128,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(128,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(130,0,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(130,1,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(130,2,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(130,3,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(131,0,1,0,'21.4800','21.4800','21.4800','21.4800',NULL),(131,1,1,0,'21.4800','21.4800','21.4800','21.4800',NULL),(131,2,1,0,'21.4800','21.4800','21.4800','21.4800',NULL),(131,3,1,0,'21.4800','21.4800','21.4800','21.4800',NULL),(132,0,1,2,'8.9900','8.9900','8.9900','8.9900',NULL),(132,1,1,2,'8.9900','8.9900','8.9900','8.9900',NULL),(132,2,1,2,'8.9900','8.9900','8.9900','8.9900',NULL),(132,3,1,2,'8.9900','8.9900','8.9900','8.9900',NULL),(133,0,1,0,'13.9900','13.9900','13.9900','13.9900',NULL),(133,1,1,0,'13.9900','13.9900','13.9900','13.9900',NULL),(133,2,1,0,'13.9900','13.9900','13.9900','13.9900',NULL),(133,3,1,0,'13.9900','13.9900','13.9900','13.9900',NULL),(134,0,1,0,'11.0000','11.0000','11.0000','11.0000',NULL),(134,1,1,0,'11.0000','11.0000','11.0000','11.0000',NULL),(134,2,1,0,'11.0000','11.0000','11.0000','11.0000',NULL),(134,3,1,0,'11.0000','11.0000','11.0000','11.0000',NULL),(135,0,1,0,'11.9900','11.9900','11.9900','11.9900',NULL),(135,1,1,0,'11.9900','11.9900','11.9900','11.9900',NULL),(135,2,1,0,'11.9900','11.9900','11.9900','11.9900',NULL),(135,3,1,0,'11.9900','11.9900','11.9900','11.9900',NULL),(136,0,1,0,'10.0000','10.0000','10.0000','10.0000',NULL),(136,1,1,0,'10.0000','10.0000','10.0000','10.0000',NULL),(136,2,1,0,'10.0000','10.0000','10.0000','10.0000',NULL),(136,3,1,0,'10.0000','10.0000','10.0000','10.0000',NULL),(137,0,1,0,'7.0000','7.0000','7.0000','7.0000',NULL),(137,1,1,0,'7.0000','7.0000','7.0000','7.0000',NULL),(137,2,1,0,'7.0000','7.0000','7.0000','7.0000',NULL),(137,3,1,0,'7.0000','7.0000','7.0000','7.0000',NULL),(138,0,1,0,'18.9900','18.9900','18.9900','18.9900',NULL),(138,1,1,0,'18.9900','18.9900','18.9900','18.9900',NULL),(138,2,1,0,'18.9900','18.9900','18.9900','18.9900',NULL),(138,3,1,0,'18.9900','18.9900','18.9900','18.9900',NULL),(139,0,1,0,'12.5000','12.5000','12.5000','12.5000',NULL),(139,1,1,0,'12.5000','12.5000','12.5000','12.5000',NULL),(139,2,1,0,'12.5000','12.5000','12.5000','12.5000',NULL),(139,3,1,0,'12.5000','12.5000','12.5000','12.5000',NULL),(140,0,1,0,'9.0000','9.0000','9.0000','9.0000',NULL),(140,1,1,0,'9.0000','9.0000','9.0000','9.0000',NULL),(140,2,1,0,'9.0000','9.0000','9.0000','9.0000',NULL),(140,3,1,0,'9.0000','9.0000','9.0000','9.0000',NULL),(141,0,1,0,'10.5000','10.5000','10.5000','10.5000',NULL),(141,1,1,0,'10.5000','10.5000','10.5000','10.5000',NULL),(141,2,1,0,'10.5000','10.5000','10.5000','10.5000',NULL),(141,3,1,0,'10.5000','10.5000','10.5000','10.5000',NULL),(143,0,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(143,1,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(143,2,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(143,3,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(144,0,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(144,1,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(144,2,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(144,3,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(145,0,1,0,'16.9900','16.9900','16.9900','16.9900',NULL),(145,1,1,0,'16.9900','16.9900','16.9900','16.9900',NULL),(145,2,1,0,'16.9900','16.9900','16.9900','16.9900',NULL),(145,3,1,0,'16.9900','16.9900','16.9900','16.9900',NULL),(146,0,1,0,'9.5000','9.5000','9.5000','9.5000',NULL),(146,1,1,0,'9.5000','9.5000','9.5000','9.5000',NULL),(146,2,1,0,'9.5000','9.5000','9.5000','9.5000',NULL),(146,3,1,0,'9.5000','9.5000','9.5000','9.5000',NULL),(147,0,1,0,'11.5000','11.5000','11.5000','11.5000',NULL),(147,1,1,0,'11.5000','11.5000','11.5000','11.5000',NULL),(147,2,1,0,'11.5000','11.5000','11.5000','11.5000',NULL),(147,3,1,0,'11.5000','11.5000','11.5000','11.5000',NULL),(148,0,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(148,1,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(148,2,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(148,3,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(149,0,1,2,'6.5000','6.5000','6.5000','6.5000',NULL),(149,1,1,2,'6.5000','6.5000','6.5000','6.5000',NULL),(149,2,1,2,'6.5000','6.5000','6.5000','6.5000',NULL),(149,3,1,2,'6.5000','6.5000','6.5000','6.5000',NULL),(150,0,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(150,1,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(150,2,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(150,3,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(151,0,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(151,1,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(151,2,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(151,3,1,2,'14.9900','14.9900','14.9900','14.9900',NULL),(152,0,1,2,'21.9900','21.9900','21.9900','21.9900',NULL),(152,1,1,2,'21.9900','21.9900','21.9900','21.9900',NULL),(152,2,1,2,'21.9900','21.9900','21.9900','21.9900',NULL),(152,3,1,2,'21.9900','21.9900','21.9900','21.9900',NULL),(154,0,1,2,'5.0000','5.0000','5.0000','5.0000',NULL),(154,1,1,2,'5.0000','5.0000','5.0000','5.0000',NULL),(154,2,1,2,'5.0000','5.0000','5.0000','5.0000',NULL),(154,3,1,2,'5.0000','5.0000','5.0000','5.0000',NULL),(155,0,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(155,1,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(155,2,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(155,3,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(156,0,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(156,1,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(156,2,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(156,3,1,2,'34.9500','34.9500','34.9500','34.9500',NULL),(157,0,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(157,1,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(157,2,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(157,3,1,0,'17.5000','17.5000','17.5000','17.5000',NULL),(158,0,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(158,1,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(158,2,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(158,3,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(159,0,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(159,1,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(159,2,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(159,3,1,2,'14.5000','14.5000','14.5000','14.5000',NULL),(160,0,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(160,1,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(160,2,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(160,3,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(161,0,1,2,'79.9900','79.9900','79.9900','79.9900',NULL),(161,1,1,2,'79.9900','79.9900','79.9900','79.9900',NULL),(161,2,1,2,'79.9900','79.9900','79.9900','79.9900',NULL),(161,3,1,2,'79.9900','79.9900','79.9900','79.9900',NULL),(162,0,1,2,'28.9900','28.9900','28.9900','28.9900',NULL),(162,1,1,2,'28.9900','28.9900','28.9900','28.9900',NULL),(162,2,1,2,'28.9900','28.9900','28.9900','28.9900',NULL),(162,3,1,2,'28.9900','28.9900','28.9900','28.9900',NULL),(163,0,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(163,1,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(163,2,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(163,3,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(164,0,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(164,1,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(164,2,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(164,3,1,2,'27.5000','27.5000','27.5000','27.5000',NULL),(165,0,1,2,'13.5000','13.5000','13.5000','13.5000',NULL),(165,1,1,2,'13.5000','13.5000','13.5000','13.5000',NULL),(165,2,1,2,'13.5000','13.5000','13.5000','13.5000',NULL),(165,3,1,2,'13.5000','13.5000','13.5000','13.5000',NULL),(166,0,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(166,1,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(166,2,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(166,3,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(167,0,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(167,1,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(167,2,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(167,3,1,2,'69.9900','69.9900','69.9900','69.9900',NULL),(168,0,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(168,1,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(168,2,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(168,3,1,2,'4.5000','4.5000','4.5000','4.5000',NULL),(169,0,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(169,1,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(169,2,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(169,3,1,2,'12.9900','12.9900','12.9900','12.9900',NULL),(170,0,1,2,'7.0000','7.0000','7.0000','7.0000',NULL),(170,1,1,2,'7.0000','7.0000','7.0000','7.0000',NULL),(170,2,1,2,'7.0000','7.0000','7.0000','7.0000',NULL),(170,3,1,2,'7.0000','7.0000','7.0000','7.0000',NULL),(171,0,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(171,1,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(171,2,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(171,3,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(172,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(172,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(172,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(172,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(173,0,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(173,1,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(173,2,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(173,3,1,2,'7.9900','7.9900','7.9900','7.9900',NULL),(174,0,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(174,1,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(174,2,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(174,3,1,2,'10.9900','10.9900','10.9900','10.9900',NULL),(175,0,1,2,'17.9900','17.9900','17.9900','17.9900',NULL),(175,1,1,2,'17.9900','17.9900','17.9900','17.9900',NULL),(175,2,1,2,'17.9900','17.9900','17.9900','17.9900',NULL),(175,3,1,2,'17.9900','17.9900','17.9900','17.9900',NULL),(176,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(176,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(176,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(176,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(177,0,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(177,1,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(177,2,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(177,3,1,2,'2.9900','2.9900','2.9900','2.9900',NULL),(178,0,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(178,1,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(178,2,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(178,3,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(179,0,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(179,1,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(179,2,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(179,3,1,2,'1.5000','1.5000','1.5000','1.5000',NULL),(180,0,1,2,'13.9900','13.9900','13.9900','13.9900',NULL),(180,1,1,2,'13.9900','13.9900','13.9900','13.9900',NULL),(180,2,1,2,'13.9900','13.9900','13.9900','13.9900',NULL),(180,3,1,2,'13.9900','13.9900','13.9900','13.9900',NULL),(181,0,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(181,1,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(181,2,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(181,3,1,2,'1.9900','1.9900','1.9900','1.9900',NULL),(182,0,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(182,1,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(182,2,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(182,3,1,2,'5.9900','5.9900','5.9900','5.9900',NULL),(183,0,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(183,1,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(183,2,1,2,'19.9900','19.9900','19.9900','19.9900',NULL),(183,3,1,2,'19.9900','19.9900','19.9900','19.9900',NULL);
/*!40000 ALTER TABLE `catalog_product_index_price_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_opt_agr_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_agr_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_opt_agr_idx` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option ID',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_opt_agr_idx`
--

LOCK TABLES `catalog_product_index_price_opt_agr_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_opt_agr_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_agr_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_opt_agr_tmp` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option ID',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`,`option_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_opt_agr_tmp`
--

LOCK TABLES `catalog_product_index_price_opt_agr_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_opt_idx`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_opt_idx` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_opt_idx`
--

LOCK TABLES `catalog_product_index_price_opt_idx` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_idx` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_opt_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_opt_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_opt_tmp` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_opt_tmp`
--

LOCK TABLES `catalog_product_index_price_opt_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_price_opt_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_price_tmp`
--

DROP TABLE IF EXISTS `catalog_product_index_price_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_price_tmp` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class ID',
  `price` decimal(12,4) default NULL COMMENT 'Price',
  `final_price` decimal(12,4) default NULL COMMENT 'Final Price',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  `max_price` decimal(12,4) default NULL COMMENT 'Max Price',
  `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_TMP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_TMP_WEBSITE_ID` (`website_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_TMP_MIN_PRICE` (`min_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Temp Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_price_tmp`
--

LOCK TABLES `catalog_product_index_price_tmp` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_tmp` DISABLE KEYS */;
INSERT INTO `catalog_product_index_price_tmp` VALUES (126,0,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(126,1,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(126,2,1,2,'4.9900','4.9900','4.9900','4.9900',NULL),(126,3,1,2,'4.9900','4.9900','4.9900','4.9900',NULL);
/*!40000 ALTER TABLE `catalog_product_index_price_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_tier_price`
--

DROP TABLE IF EXISTS `catalog_product_index_tier_price`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_tier_price` (
  `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `min_price` decimal(12,4) default NULL COMMENT 'Min Price',
  PRIMARY KEY  (`entity_id`,`customer_group_id`,`website_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_TIER_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_CAT_PRD_IDX_TIER_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_IDX_TIER_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_IDX_TIER_PRICE_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_tier_price`
--

LOCK TABLES `catalog_product_index_tier_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_tier_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_tier_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_website`
--

DROP TABLE IF EXISTS `catalog_product_index_website`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_index_website` (
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  `website_date` date default NULL COMMENT 'Website Date',
  `rate` float default '1' COMMENT 'Rate',
  PRIMARY KEY  (`website_id`),
  KEY `IDX_CATALOG_PRODUCT_INDEX_WEBSITE_WEBSITE_DATE` (`website_date`),
  CONSTRAINT `FK_CAT_PRD_IDX_WS_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Website Index Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_index_website`
--

LOCK TABLES `catalog_product_index_website` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_website` DISABLE KEYS */;
INSERT INTO `catalog_product_index_website` VALUES (1,'2012-04-17',1);
/*!40000 ALTER TABLE `catalog_product_index_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link`
--

DROP TABLE IF EXISTS `catalog_product_link`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_link` (
  `link_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Link ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `linked_product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Linked Product ID',
  `link_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Link Type ID',
  PRIMARY KEY  (`link_id`),
  UNIQUE KEY `UNQ_CAT_PRD_LNK_LNK_TYPE_ID_PRD_ID_LNKED_PRD_ID` (`link_type_id`,`product_id`,`linked_product_id`),
  KEY `IDX_CATALOG_PRODUCT_LINK_PRODUCT_ID` (`product_id`),
  KEY `IDX_CATALOG_PRODUCT_LINK_LINKED_PRODUCT_ID` (`linked_product_id`),
  KEY `IDX_CATALOG_PRODUCT_LINK_LINK_TYPE_ID` (`link_type_id`),
  CONSTRAINT `FK_CAT_PRD_LNK_LNKED_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`linked_product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_LNK_LNK_TYPE_ID_CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_LNK_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Product Linkage Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_link`
--

LOCK TABLES `catalog_product_link` WRITE;
/*!40000 ALTER TABLE `catalog_product_link` DISABLE KEYS */;
INSERT INTO `catalog_product_link` VALUES (2,7,8,1),(1,8,7,1);
/*!40000 ALTER TABLE `catalog_product_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link_attribute`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_link_attribute` (
  `product_link_attribute_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Product Link Attribute ID',
  `link_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Link Type ID',
  `product_link_attribute_code` varchar(32) NOT NULL COMMENT 'Product Link Attribute Code',
  `data_type` varchar(32) NOT NULL COMMENT 'Data Type',
  PRIMARY KEY  (`product_link_attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_LINK_TYPE_ID` (`link_type_id`),
  CONSTRAINT `FK_CAT_PRD_LNK_ATTR_LNK_TYPE_ID_CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Attribute Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_link_attribute`
--

LOCK TABLES `catalog_product_link_attribute` WRITE;
/*!40000 ALTER TABLE `catalog_product_link_attribute` DISABLE KEYS */;
INSERT INTO `catalog_product_link_attribute` VALUES (1,2,'qty','decimal'),(2,1,'position','int'),(3,4,'position','int'),(4,5,'position','int'),(6,1,'qty','decimal'),(7,3,'position','int'),(8,3,'qty','decimal');
/*!40000 ALTER TABLE `catalog_product_link_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link_attribute_decimal`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute_decimal`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_link_attribute_decimal` (
  `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID',
  `product_link_attribute_id` smallint(5) unsigned default NULL COMMENT 'Product Link Attribute ID',
  `link_id` int(10) unsigned NOT NULL default '0' COMMENT 'Link ID',
  `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_PRD_LNK_ATTR_DEC_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `IDX_CAT_PRD_LNK_ATTR_DEC_PRD_LNK_ATTR_ID` (`product_link_attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_DECIMAL_LINK_ID` (`link_id`),
  CONSTRAINT `FK_AB2EFA9A14F7BCF1D5400056203D14B6` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_LNK_ATTR_DEC_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Decimal Attribute Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_link_attribute_decimal`
--

LOCK TABLES `catalog_product_link_attribute_decimal` WRITE;
/*!40000 ALTER TABLE `catalog_product_link_attribute_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_link_attribute_decimal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link_attribute_int`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute_int`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_link_attribute_int` (
  `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID',
  `product_link_attribute_id` smallint(5) unsigned default NULL COMMENT 'Product Link Attribute ID',
  `link_id` int(10) unsigned NOT NULL default '0' COMMENT 'Link ID',
  `value` int(11) NOT NULL default '0' COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_PRD_LNK_ATTR_INT_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_INT_PRODUCT_LINK_ATTRIBUTE_ID` (`product_link_attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_INT_LINK_ID` (`link_id`),
  CONSTRAINT `FK_CAT_PRD_LNK_ATTR_INT_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_D6D878F8BA2A4282F8DDED7E6E3DE35C` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Integer Attribute Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_link_attribute_int`
--

LOCK TABLES `catalog_product_link_attribute_int` WRITE;
/*!40000 ALTER TABLE `catalog_product_link_attribute_int` DISABLE KEYS */;
INSERT INTO `catalog_product_link_attribute_int` VALUES (1,2,1,0),(2,2,2,0);
/*!40000 ALTER TABLE `catalog_product_link_attribute_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link_attribute_varchar`
--

DROP TABLE IF EXISTS `catalog_product_link_attribute_varchar`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_link_attribute_varchar` (
  `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID',
  `product_link_attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Product Link Attribute ID',
  `link_id` int(10) unsigned NOT NULL default '0' COMMENT 'Link ID',
  `value` varchar(255) default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_PRD_LNK_ATTR_VCHR_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `IDX_CAT_PRD_LNK_ATTR_VCHR_PRD_LNK_ATTR_ID` (`product_link_attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_VARCHAR_LINK_ID` (`link_id`),
  CONSTRAINT `FK_CAT_PRD_LNK_ATTR_VCHR_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_DEE9C4DA61CFCC01DFCF50F0D79CEA51` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Varchar Attribute Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_link_attribute_varchar`
--

LOCK TABLES `catalog_product_link_attribute_varchar` WRITE;
/*!40000 ALTER TABLE `catalog_product_link_attribute_varchar` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_link_attribute_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_link_type`
--

DROP TABLE IF EXISTS `catalog_product_link_type`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_link_type` (
  `link_type_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Link Type ID',
  `code` varchar(32) NOT NULL COMMENT 'Code',
  PRIMARY KEY  (`link_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Type Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_link_type`
--

LOCK TABLES `catalog_product_link_type` WRITE;
/*!40000 ALTER TABLE `catalog_product_link_type` DISABLE KEYS */;
INSERT INTO `catalog_product_link_type` VALUES (1,'relation'),(2,'bundle'),(3,'super'),(4,'up_sell'),(5,'cross_sell');
/*!40000 ALTER TABLE `catalog_product_link_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option`
--

DROP TABLE IF EXISTS `catalog_product_option`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_option` (
  `option_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `type` varchar(50) NOT NULL COMMENT 'Type',
  `is_require` smallint(6) NOT NULL default '1' COMMENT 'Is Required',
  `sku` varchar(64) default NULL COMMENT 'SKU',
  `max_characters` int(10) unsigned default NULL COMMENT 'Max Characters',
  `file_extension` varchar(50) default NULL COMMENT 'File Extension',
  `image_size_x` smallint(5) unsigned default NULL COMMENT 'Image Size X',
  `image_size_y` smallint(5) unsigned default NULL COMMENT 'Image Size Y',
  `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order',
  PRIMARY KEY  (`option_id`),
  KEY `IDX_CATALOG_PRODUCT_OPTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_CAT_PRD_OPT_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=129 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_option`
--

LOCK TABLES `catalog_product_option` WRITE;
/*!40000 ALTER TABLE `catalog_product_option` DISABLE KEYS */;
INSERT INTO `catalog_product_option` VALUES (2,27,'drop_down',1,'',NULL,NULL,0,0,0),(3,28,'drop_down',1,'',NULL,NULL,0,0,0),(4,10,'drop_down',1,'',NULL,NULL,0,0,0),(5,26,'drop_down',1,'',NULL,NULL,0,0,0),(6,19,'drop_down',1,'',NULL,NULL,0,0,0),(7,17,'drop_down',1,'',NULL,NULL,0,0,0),(8,15,'drop_down',1,'',NULL,NULL,0,0,0),(9,13,'drop_down',1,'',NULL,NULL,0,0,0),(10,60,'drop_down',1,'',NULL,NULL,0,0,0),(11,12,'drop_down',1,'',NULL,NULL,0,0,0),(12,31,'drop_down',1,'',NULL,NULL,0,0,0),(13,32,'drop_down',1,'',NULL,NULL,0,0,0),(14,25,'drop_down',1,'',NULL,NULL,0,0,0),(15,24,'drop_down',1,'',NULL,NULL,0,0,0),(16,23,'drop_down',1,'',NULL,NULL,0,0,0),(17,22,'drop_down',1,'',NULL,NULL,0,0,0),(18,20,'drop_down',1,'',NULL,NULL,0,0,0),(19,61,'drop_down',1,'',NULL,NULL,0,0,0),(20,62,'drop_down',1,'',0,NULL,0,0,0),(21,33,'drop_down',1,'',NULL,NULL,0,0,0),(22,38,'drop_down',1,'',NULL,NULL,0,0,0),(23,6,'drop_down',1,'',NULL,NULL,0,0,0),(24,11,'drop_down',1,'',NULL,NULL,0,0,0),(25,14,'drop_down',1,'',NULL,NULL,0,0,0),(26,29,'drop_down',1,'',NULL,NULL,0,0,0),(29,44,'drop_down',1,'',NULL,NULL,0,0,0),(30,45,'drop_down',1,'',NULL,NULL,0,0,0),(31,49,'drop_down',1,'',NULL,NULL,0,0,0),(33,59,'drop_down',1,'',NULL,NULL,0,0,0),(34,63,'drop_down',1,'',NULL,NULL,0,0,0),(35,84,'drop_down',1,'',NULL,NULL,0,0,0),(36,83,'drop_down',1,'',NULL,NULL,0,0,0),(37,82,'drop_down',1,'',NULL,NULL,0,0,0),(38,81,'drop_down',1,'',NULL,NULL,0,0,0),(39,78,'drop_down',1,'',NULL,NULL,0,0,0),(40,68,'drop_down',1,'',NULL,NULL,0,0,0),(41,67,'drop_down',1,'',NULL,NULL,0,0,0),(42,79,'drop_down',1,'',NULL,NULL,0,0,0),(44,88,'drop_down',1,'',NULL,NULL,0,0,0),(45,87,'drop_down',1,'',NULL,NULL,0,0,0),(46,90,'drop_down',1,'',NULL,NULL,0,0,0),(47,90,'drop_down',1,'',NULL,NULL,0,0,0),(48,25,'drop_down',1,'',NULL,NULL,0,0,0),(49,24,'drop_down',1,'',NULL,NULL,0,0,1),(50,37,'drop_down',1,'',NULL,NULL,0,0,0),(51,36,'drop_down',1,'',NULL,NULL,0,0,0),(52,14,'drop_down',1,'',NULL,NULL,0,0,0),(53,47,'drop_down',1,'',NULL,NULL,0,0,0),(54,46,'drop_down',1,'',NULL,NULL,0,0,0),(55,60,'drop_down',1,'',NULL,NULL,0,0,0),(56,58,'drop_down',1,'',NULL,NULL,0,0,0),(57,58,'drop_down',1,'',NULL,NULL,0,0,0),(58,92,'drop_down',1,'',NULL,NULL,0,0,0),(59,92,'drop_down',1,'',NULL,NULL,0,0,0),(60,93,'drop_down',1,'',NULL,NULL,0,0,0),(61,94,'drop_down',1,'',NULL,NULL,0,0,0),(62,94,'drop_down',1,'',NULL,NULL,0,0,0),(63,98,'drop_down',1,'',NULL,NULL,0,0,0),(64,99,'drop_down',1,'',NULL,NULL,0,0,0),(65,101,'drop_down',1,'',NULL,NULL,0,0,0),(66,103,'drop_down',1,'',NULL,NULL,0,0,0),(67,104,'drop_down',1,'',NULL,NULL,0,0,0),(68,106,'drop_down',1,'',NULL,NULL,0,0,0),(69,107,'drop_down',1,'',NULL,NULL,0,0,0),(70,107,'drop_down',1,'',NULL,NULL,0,0,0),(71,108,'drop_down',1,'',NULL,NULL,0,0,0),(72,50,'drop_down',1,'',NULL,NULL,0,0,0),(73,110,'drop_down',1,'',NULL,NULL,0,0,0),(74,111,'drop_down',1,'',NULL,NULL,0,0,0),(76,3,'drop_down',1,'',NULL,NULL,0,0,0),(77,41,'drop_down',1,'',NULL,NULL,0,0,0),(78,118,'drop_down',1,'',NULL,NULL,0,0,0),(79,77,'drop_down',1,'',NULL,NULL,0,0,1),(80,121,'drop_down',1,'',NULL,NULL,0,0,0),(81,126,'drop_down',1,'',NULL,NULL,0,0,0),(82,102,'drop_down',1,'',NULL,NULL,0,0,0),(83,127,'drop_down',1,'',NULL,NULL,0,0,1),(84,128,'drop_down',1,'',NULL,NULL,0,0,0),(85,129,'drop_down',1,'',NULL,NULL,0,0,0),(86,131,'drop_down',1,'',NULL,NULL,0,0,0),(87,132,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(88,48,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(89,133,'drop_down',1,NULL,NULL,NULL,NULL,NULL,1),(90,83,'drop_down',1,NULL,NULL,NULL,NULL,NULL,1),(91,83,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(92,134,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(93,135,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(94,136,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(95,137,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(96,138,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(97,139,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(98,140,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(99,141,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(100,143,'drop_down',1,NULL,NULL,NULL,0,0,0),(101,144,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(102,145,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(103,146,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(104,148,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(105,149,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(106,149,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(107,150,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(108,150,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(109,152,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(110,154,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(111,155,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(112,155,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(113,156,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(114,156,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(115,157,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(116,158,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(117,159,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(118,160,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(119,161,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(120,164,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(121,166,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(122,167,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(123,169,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(124,169,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(125,175,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(126,175,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(127,183,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(128,183,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `catalog_product_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option_price`
--

DROP TABLE IF EXISTS `catalog_product_option_price`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_option_price` (
  `option_price_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Price ID',
  `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Price',
  `price_type` varchar(7) NOT NULL default 'fixed' COMMENT 'Price Type',
  PRIMARY KEY  (`option_price_id`),
  UNIQUE KEY `UNQ_CATALOG_PRODUCT_OPTION_PRICE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_OPTION_PRICE_OPTION_ID` (`option_id`),
  KEY `IDX_CATALOG_PRODUCT_OPTION_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_PRICE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_OPT_PRICE_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Price Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_option_price`
--

LOCK TABLES `catalog_product_option_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_option_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_option_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option_title`
--

DROP TABLE IF EXISTS `catalog_product_option_title`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_option_title` (
  `option_title_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Title ID',
  `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  PRIMARY KEY  (`option_title_id`),
  UNIQUE KEY `UNQ_CATALOG_PRODUCT_OPTION_TITLE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_OPTION_TITLE_OPTION_ID` (`option_id`),
  KEY `IDX_CATALOG_PRODUCT_OPTION_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_TITLE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_OPT_TTL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=129 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Title Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_option_title`
--

LOCK TABLES `catalog_product_option_title` WRITE;
/*!40000 ALTER TABLE `catalog_product_option_title` DISABLE KEYS */;
INSERT INTO `catalog_product_option_title` VALUES (2,2,0,'Size'),(3,3,0,'Size'),(4,4,0,'Size'),(5,5,0,'Size'),(6,6,0,'Size'),(7,7,0,'Size'),(8,8,0,'Size'),(9,9,0,'Size'),(10,10,0,'Size'),(11,11,0,'Size'),(12,12,0,'Size'),(13,13,0,'Size'),(14,14,0,'Size'),(15,15,0,'Size'),(16,16,0,'Size'),(17,17,0,'Size'),(18,18,0,'Size'),(19,19,0,'Size'),(20,20,0,'Size'),(21,21,0,'Size'),(22,22,0,'Size'),(23,23,0,'Size'),(24,24,0,'Size'),(25,25,0,'Size'),(26,26,0,'Size'),(29,29,0,'Size'),(30,30,0,'Size'),(31,31,0,'Size'),(33,33,0,'Size'),(34,34,0,'Size'),(35,35,0,'Size'),(36,36,0,'Size'),(37,37,0,'Size'),(38,38,0,'Size'),(39,39,0,'Colour'),(40,40,0,'Colour'),(41,41,0,'Colours'),(42,42,0,'Colour'),(44,44,0,'Size'),(45,45,0,'Size'),(46,46,0,'Size'),(47,47,0,'Colour'),(48,48,0,'Colour'),(49,49,0,'Colour'),(50,50,0,'Colour'),(51,51,0,'Colour'),(52,52,0,'Colour'),(53,53,0,'Colour'),(54,54,0,'Colour'),(55,55,0,'Colour'),(56,56,0,'Size'),(57,57,0,'Colour'),(58,58,0,'Colour'),(59,59,0,'Size'),(60,60,0,'Size'),(61,61,0,'Colour'),(62,62,0,'Sizes'),(63,63,0,'Colour'),(64,64,0,'Colour'),(65,65,0,'Colour'),(66,66,0,'Colour'),(67,67,0,'Colours'),(68,68,0,'Size'),(69,69,0,'Price'),(70,70,0,'Sizes'),(71,71,0,'Size'),(72,72,0,'Colour'),(73,73,0,'Colour'),(74,74,0,'Colour'),(76,76,0,'Colour'),(77,77,0,'Colour'),(78,78,0,'Colour'),(79,79,0,'Colour'),(80,80,0,'Colour'),(81,81,0,'Colour'),(82,82,0,'Colour'),(83,83,0,'Colour'),(84,84,0,'Colour'),(85,85,0,'Colour'),(86,86,0,'Size'),(87,87,0,'Size'),(88,88,0,'Black Shooter Mitts'),(89,89,0,'Size'),(90,90,0,'Navy Blue'),(91,91,0,'Colour'),(92,92,0,'Size'),(93,93,0,'Size'),(94,94,0,'Size'),(95,95,0,'Size'),(96,96,0,'Size'),(97,97,0,'Size'),(98,98,0,'size'),(99,99,0,'Size'),(100,100,0,'Size'),(101,101,0,'Size'),(102,102,0,'Size'),(103,103,0,'Size'),(104,104,0,'Size'),(105,105,0,'Size'),(106,106,0,'Colour'),(107,107,0,'Size'),(108,108,0,'Colour'),(109,109,0,'Size'),(110,110,0,'Colour'),(111,111,0,'Size'),(112,112,0,'Colour'),(113,113,0,'Size'),(114,114,0,'Colour'),(115,115,0,'Size'),(116,116,0,'Size'),(117,117,0,'Size'),(118,118,0,'Size'),(119,119,0,'Size'),(120,120,0,'Colour'),(121,121,0,'Size'),(122,122,0,'Size'),(123,123,0,'Size'),(124,124,0,'Colour'),(125,125,0,'Size'),(126,126,0,'Colour'),(127,127,0,'Size'),(128,128,0,'Colour');
/*!40000 ALTER TABLE `catalog_product_option_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option_type_price`
--

DROP TABLE IF EXISTS `catalog_product_option_type_price`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_option_type_price` (
  `option_type_price_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Type Price ID',
  `option_type_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Type ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Price',
  `price_type` varchar(7) NOT NULL default 'fixed' COMMENT 'Price Type',
  PRIMARY KEY  (`option_type_price_id`),
  UNIQUE KEY `UNQ_CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE_ID` (`option_type_id`),
  KEY `IDX_CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_B523E3378E8602F376CC415825576B7F` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_OPT_TYPE_PRICE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=558 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Price Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_option_type_price`
--

LOCK TABLES `catalog_product_option_type_price` WRITE;
/*!40000 ALTER TABLE `catalog_product_option_type_price` DISABLE KEYS */;
INSERT INTO `catalog_product_option_type_price` VALUES (13,13,0,'0.0000','fixed'),(14,14,0,'0.0000','fixed'),(15,15,0,'0.0000','fixed'),(16,16,0,'0.0000','fixed'),(17,17,0,'0.0000','fixed'),(18,18,0,'0.0000','fixed'),(19,19,0,'0.0000','fixed'),(20,20,0,'0.0000','fixed'),(21,21,0,'0.0000','fixed'),(22,22,0,'0.0000','fixed'),(23,23,0,'0.0000','fixed'),(24,24,0,'0.0000','fixed'),(25,25,0,'0.0000','fixed'),(26,26,0,'0.0000','fixed'),(27,27,0,'0.0000','fixed'),(28,28,0,'0.0000','fixed'),(29,29,0,'0.0000','fixed'),(30,30,0,'0.0000','fixed'),(31,31,0,'0.0000','fixed'),(32,32,0,'0.0000','fixed'),(33,33,0,'0.0000','fixed'),(34,34,0,'0.0000','fixed'),(39,39,0,'0.0000','fixed'),(42,42,0,'0.0000','fixed'),(43,43,0,'0.0000','fixed'),(44,44,0,'0.0000','fixed'),(45,45,0,'0.0000','fixed'),(46,46,0,'0.0000','fixed'),(47,47,0,'0.0000','fixed'),(48,48,0,'0.0000','fixed'),(49,49,0,'0.0000','fixed'),(50,50,0,'0.0000','fixed'),(51,51,0,'0.0000','fixed'),(52,52,0,'0.0000','fixed'),(53,53,0,'0.0000','fixed'),(54,54,0,'2.5000','fixed'),(55,55,0,'0.0000','fixed'),(56,56,0,'0.0000','fixed'),(57,57,0,'0.0000','fixed'),(58,58,0,'0.0000','fixed'),(59,59,0,'0.0000','fixed'),(60,60,0,'0.0000','fixed'),(61,61,0,'0.0000','fixed'),(63,63,0,'0.0000','fixed'),(64,64,0,'0.0000','fixed'),(65,65,0,'0.0000','fixed'),(66,66,0,'0.0000','fixed'),(67,67,0,'0.0000','fixed'),(69,69,0,'0.0000','fixed'),(70,70,0,'0.0000','fixed'),(71,71,0,'0.0000','fixed'),(72,72,0,'0.0000','fixed'),(73,73,0,'0.0000','fixed'),(75,75,0,'0.0000','fixed'),(76,76,0,'0.0000','fixed'),(77,77,0,'0.0000','fixed'),(78,78,0,'0.0000','fixed'),(79,79,0,'0.0000','fixed'),(80,80,0,'0.0000','fixed'),(81,81,0,'0.0000','fixed'),(82,82,0,'0.0000','fixed'),(83,83,0,'0.0000','fixed'),(84,84,0,'0.0000','fixed'),(85,85,0,'0.0000','fixed'),(86,86,0,'0.0000','fixed'),(87,87,0,'0.0000','fixed'),(88,88,0,'0.0000','fixed'),(90,90,0,'0.0000','fixed'),(92,92,0,'0.0000','fixed'),(93,93,0,'0.0000','fixed'),(94,94,0,'0.0000','fixed'),(95,95,0,'0.0000','fixed'),(96,96,0,'0.0000','fixed'),(97,97,0,'0.0000','fixed'),(98,98,0,'0.0000','fixed'),(99,99,0,'0.0000','fixed'),(100,100,0,'0.0000','fixed'),(101,101,0,'0.0000','fixed'),(103,103,0,'0.0000','fixed'),(104,104,0,'0.0000','fixed'),(105,105,0,'0.0000','fixed'),(106,106,0,'0.0000','fixed'),(107,107,0,'0.0000','fixed'),(108,108,0,'0.0000','fixed'),(111,111,0,'0.0000','fixed'),(112,112,0,'0.0000','fixed'),(113,113,0,'0.0000','fixed'),(115,115,0,'0.0000','fixed'),(116,116,0,'0.0000','fixed'),(117,117,0,'0.0000','fixed'),(118,118,0,'0.0000','fixed'),(119,119,0,'0.0000','fixed'),(120,120,0,'0.0000','fixed'),(121,121,0,'0.0000','fixed'),(122,122,0,'0.0000','fixed'),(123,123,0,'0.0000','fixed'),(124,124,0,'0.0000','fixed'),(125,125,0,'0.0000','fixed'),(126,126,0,'0.0000','fixed'),(127,127,0,'0.0000','fixed'),(128,128,0,'0.0000','fixed'),(129,129,0,'0.0000','fixed'),(130,130,0,'0.0000','fixed'),(131,131,0,'0.0000','fixed'),(132,132,0,'0.0000','fixed'),(133,133,0,'0.0000','fixed'),(134,134,0,'0.0000','fixed'),(135,135,0,'0.0000','fixed'),(136,136,0,'0.0000','fixed'),(137,137,0,'0.0000','fixed'),(138,138,0,'0.0000','fixed'),(139,139,0,'0.0000','fixed'),(140,140,0,'0.0000','fixed'),(141,141,0,'0.0000','fixed'),(142,142,0,'0.0000','fixed'),(143,143,0,'0.0000','fixed'),(144,144,0,'0.0000','fixed'),(145,145,0,'0.0000','fixed'),(146,146,0,'0.0000','fixed'),(147,147,0,'0.0000','fixed'),(148,148,0,'0.0000','fixed'),(151,151,0,'0.0000','fixed'),(152,152,0,'0.0000','fixed'),(153,153,0,'0.0000','fixed'),(154,154,0,'0.0000','fixed'),(155,155,0,'0.0000','fixed'),(156,156,0,'0.0000','fixed'),(159,159,0,'0.0000','fixed'),(160,160,0,'0.0000','fixed'),(161,161,0,'0.0000','fixed'),(162,162,0,'0.0000','fixed'),(163,163,0,'0.0000','fixed'),(164,164,0,'0.0000','fixed'),(165,165,0,'0.0000','fixed'),(166,166,0,'0.0000','fixed'),(167,167,0,'0.0000','fixed'),(170,170,0,'0.0000','fixed'),(173,173,0,'0.0000','fixed'),(174,174,0,'0.0000','fixed'),(175,175,0,'0.0000','fixed'),(176,176,0,'0.0000','fixed'),(177,177,0,'0.0000','fixed'),(178,178,0,'0.0000','fixed'),(179,179,0,'0.0000','fixed'),(180,180,0,'0.0000','fixed'),(181,181,0,'0.0000','fixed'),(182,182,0,'0.0000','fixed'),(185,185,0,'0.0000','fixed'),(190,190,0,'0.0000','fixed'),(191,191,0,'0.0000','fixed'),(192,192,0,'0.0000','fixed'),(193,193,0,'0.0000','fixed'),(196,196,0,'0.0000','fixed'),(197,197,0,'0.0000','fixed'),(198,198,0,'0.0000','fixed'),(201,201,0,'0.0000','fixed'),(203,203,0,'0.0000','fixed'),(206,206,0,'0.0000','fixed'),(208,208,0,'0.0000','fixed'),(209,209,0,'0.0000','fixed'),(210,210,0,'0.0000','fixed'),(211,211,0,'0.0000','fixed'),(229,229,0,'0.0000','fixed'),(230,230,0,'0.0000','fixed'),(231,231,0,'0.0000','fixed'),(232,232,0,'0.0000','fixed'),(233,233,0,'0.0000','fixed'),(234,234,0,'0.0000','fixed'),(235,235,0,'0.0000','fixed'),(236,236,0,'0.0000','fixed'),(237,237,0,'0.0000','fixed'),(238,238,0,'0.0000','fixed'),(239,239,0,'0.0000','fixed'),(240,240,0,'0.0000','fixed'),(241,241,0,'0.0000','fixed'),(242,242,0,'0.0000','fixed'),(243,243,0,'0.0000','fixed'),(244,244,0,'0.0000','fixed'),(245,245,0,'0.0000','fixed'),(246,246,0,'0.0000','fixed'),(247,247,0,'0.0000','fixed'),(248,248,0,'0.0000','fixed'),(249,249,0,'0.0000','fixed'),(250,250,0,'0.0000','fixed'),(251,251,0,'0.0000','fixed'),(252,252,0,'0.0000','fixed'),(253,253,0,'0.0000','fixed'),(254,254,0,'0.0000','fixed'),(255,255,0,'0.0000','fixed'),(257,257,0,'0.0000','fixed'),(258,258,0,'0.0000','fixed'),(259,259,0,'0.0000','fixed'),(260,260,0,'0.0000','fixed'),(261,261,0,'0.0000','fixed'),(262,262,0,'0.0000','fixed'),(263,263,0,'0.0000','fixed'),(264,264,0,'0.0000','fixed'),(265,265,0,'0.0000','fixed'),(266,266,0,'0.0000','fixed'),(267,267,0,'0.0000','fixed'),(268,268,0,'0.0000','fixed'),(269,269,0,'0.0000','fixed'),(270,270,0,'0.0000','fixed'),(271,271,0,'0.0000','fixed'),(272,272,0,'0.0000','fixed'),(273,273,0,'0.0000','fixed'),(274,274,0,'0.0000','fixed'),(275,275,0,'0.4900','fixed'),(276,276,0,'0.4900','fixed'),(277,277,0,'0.4900','fixed'),(278,278,0,'0.4900','fixed'),(279,279,0,'0.4900','fixed'),(280,280,0,'0.0000','fixed'),(281,281,0,'0.0000','fixed'),(282,282,0,'0.0000','fixed'),(283,283,0,'0.0000','fixed'),(284,284,0,'0.0000','fixed'),(285,285,0,'0.0000','fixed'),(286,286,0,'0.0000','fixed'),(287,287,0,'0.0000','fixed'),(288,288,0,'0.0000','fixed'),(289,289,0,'0.0000','fixed'),(290,290,0,'0.0000','fixed'),(291,291,0,'0.0000','fixed'),(292,292,0,'0.0000','fixed'),(293,293,0,'0.0000','fixed'),(294,294,0,'0.0000','fixed'),(296,296,0,'0.0000','fixed'),(297,297,0,'0.0000','fixed'),(298,298,0,'0.0000','fixed'),(299,299,0,'0.0000','fixed'),(300,300,0,'0.0000','fixed'),(301,301,0,'0.0000','fixed'),(302,302,0,'9.0000','fixed'),(304,304,0,'0.0000','fixed'),(305,305,0,'0.0000','fixed'),(306,306,0,'0.0000','fixed'),(307,307,0,'0.0000','fixed'),(308,308,0,'0.0000','fixed'),(309,309,0,'0.0000','fixed'),(310,310,0,'0.0000','fixed'),(311,311,0,'0.0000','fixed'),(312,312,0,'0.0000','fixed'),(313,313,0,'0.0000','fixed'),(314,314,0,'0.0000','fixed'),(315,315,0,'0.0000','fixed'),(316,316,0,'0.0000','fixed'),(317,317,0,'0.0000','fixed'),(318,318,0,'0.0000','fixed'),(319,319,0,'0.0000','fixed'),(328,328,0,'0.0000','fixed'),(329,329,0,'0.0000','fixed'),(330,330,0,'0.0000','fixed'),(331,331,0,'0.0000','fixed'),(332,332,0,'0.0000','fixed'),(333,333,0,'0.0000','fixed'),(334,334,0,'0.0000','fixed'),(338,338,0,'0.0000','fixed'),(339,339,0,'0.0000','fixed'),(340,340,0,'0.0000','fixed'),(341,341,0,'0.0000','fixed'),(343,343,0,'0.0000','fixed'),(344,344,0,'0.0000','fixed'),(345,345,0,'0.0000','fixed'),(346,346,0,'0.0000','fixed'),(347,347,0,'0.0000','fixed'),(348,348,0,'0.0000','fixed'),(349,349,0,'0.0000','fixed'),(350,350,0,'0.0000','fixed'),(351,351,0,'0.0000','fixed'),(352,352,0,'0.0000','fixed'),(353,353,0,'0.0000','fixed'),(354,354,0,'0.0000','fixed'),(355,355,0,'0.0000','fixed'),(356,356,0,'0.0000','fixed'),(357,357,0,'0.0000','fixed'),(358,358,0,'0.0000','fixed'),(359,359,0,'0.0000','fixed'),(360,360,0,'0.0000','fixed'),(361,361,0,'0.0000','fixed'),(362,362,0,'0.0000','fixed'),(363,363,0,'0.0000','fixed'),(364,364,0,'0.0000','fixed'),(365,365,0,'0.0000','fixed'),(366,366,0,'0.0000','fixed'),(367,367,0,'0.0000','fixed'),(368,368,0,'0.0000','fixed'),(369,369,0,'0.0000','fixed'),(370,370,0,'0.0000','fixed'),(371,371,0,'0.0000','fixed'),(372,372,0,'0.0000','fixed'),(373,373,0,'0.0000','fixed'),(374,374,0,'0.0000','fixed'),(375,375,0,'0.0000','fixed'),(376,376,0,'0.0000','fixed'),(377,377,0,'0.0000','fixed'),(378,378,0,'0.0000','fixed'),(379,379,0,'0.0000','fixed'),(380,380,0,'0.0000','fixed'),(381,381,0,'0.0000','fixed'),(382,382,0,'0.0000','fixed'),(383,383,0,'0.0000','fixed'),(384,384,0,'0.0000','fixed'),(385,385,0,'0.0000','fixed'),(386,386,0,'0.0000','fixed'),(387,387,0,'0.0000','fixed'),(388,388,0,'0.0000','fixed'),(389,389,0,'0.0000','fixed'),(390,390,0,'0.0000','fixed'),(391,391,0,'0.0000','fixed'),(392,392,0,'0.0000','fixed'),(393,393,0,'0.0000','fixed'),(394,394,0,'0.0000','fixed'),(395,395,0,'0.0000','fixed'),(396,396,0,'0.0000','fixed'),(397,397,0,'0.0000','fixed'),(398,398,0,'0.0000','fixed'),(399,399,0,'0.0000','fixed'),(400,400,0,'0.0000','fixed'),(401,401,0,'0.0000','fixed'),(402,402,0,'0.0000','fixed'),(403,403,0,'0.0000','fixed'),(404,404,0,'0.0000','fixed'),(405,405,0,'0.0000','fixed'),(406,406,0,'0.0000','fixed'),(407,407,0,'0.0000','fixed'),(408,408,0,'0.0000','fixed'),(409,409,0,'0.0000','fixed'),(410,410,0,'0.0000','fixed'),(411,411,0,'0.0000','fixed'),(412,412,0,'0.0000','fixed'),(413,413,0,'0.0000','fixed'),(414,414,0,'0.0000','fixed'),(415,415,0,'0.0000','fixed'),(416,416,0,'0.0000','fixed'),(417,417,0,'0.0000','fixed'),(418,418,0,'0.0000','fixed'),(419,419,0,'0.0000','fixed'),(420,420,0,'0.0000','fixed'),(421,421,0,'0.0000','fixed'),(422,422,0,'0.0000','fixed'),(425,425,0,'0.0000','fixed'),(426,426,0,'0.0000','fixed'),(427,427,0,'0.0000','fixed'),(428,428,0,'0.0000','fixed'),(429,429,0,'0.0000','fixed'),(430,430,0,'0.0000','fixed'),(431,431,0,'0.0000','fixed'),(432,432,0,'0.0000','fixed'),(433,433,0,'0.0000','fixed'),(434,434,0,'0.0000','fixed'),(435,435,0,'0.0000','fixed'),(436,436,0,'0.0000','fixed'),(437,437,0,'0.0000','fixed'),(440,440,0,'0.0000','fixed'),(441,441,0,'0.0000','fixed'),(442,442,0,'0.0000','fixed'),(443,443,0,'0.0000','fixed'),(444,444,0,'0.0000','fixed'),(445,445,0,'0.0000','fixed'),(446,446,0,'0.0000','fixed'),(447,447,0,'0.0000','fixed'),(448,448,0,'0.0000','fixed'),(449,449,0,'0.0000','fixed'),(450,450,0,'0.0000','fixed'),(451,451,0,'0.0000','fixed'),(452,452,0,'0.0000','fixed'),(453,453,0,'0.0000','fixed'),(454,454,0,'0.0000','fixed'),(455,455,0,'0.0000','fixed'),(456,456,0,'0.0000','fixed'),(457,457,0,'0.0000','fixed'),(458,458,0,'0.0000','fixed'),(459,459,0,'0.0000','fixed'),(460,460,0,'0.0000','fixed'),(461,461,0,'0.0000','fixed'),(462,462,0,'0.0000','fixed'),(463,463,0,'0.0000','fixed'),(464,464,0,'0.0000','fixed'),(465,465,0,'0.0000','fixed'),(466,466,0,'0.0000','fixed'),(467,467,0,'0.0000','fixed'),(468,468,0,'0.0000','fixed'),(469,469,0,'0.0000','fixed'),(470,470,0,'0.0000','fixed'),(471,471,0,'0.0000','fixed'),(472,472,0,'0.0000','fixed'),(473,473,0,'0.0000','fixed'),(474,474,0,'0.0000','fixed'),(475,475,0,'0.0000','fixed'),(476,476,0,'0.0000','fixed'),(477,477,0,'0.0000','fixed'),(478,478,0,'0.0000','fixed'),(479,479,0,'0.0000','fixed'),(480,480,0,'0.0000','fixed'),(483,483,0,'0.0000','fixed'),(484,484,0,'0.0000','fixed'),(485,485,0,'0.0000','fixed'),(486,486,0,'0.0000','fixed'),(487,487,0,'0.0000','fixed'),(488,488,0,'0.0000','fixed'),(489,489,0,'0.0000','fixed'),(490,490,0,'0.0000','fixed'),(491,491,0,'0.0000','fixed'),(492,492,0,'0.0000','fixed'),(493,493,0,'0.0000','fixed'),(494,494,0,'0.0000','fixed'),(495,495,0,'0.0000','fixed'),(496,496,0,'0.0000','fixed'),(497,497,0,'0.0000','fixed'),(498,498,0,'0.0000','fixed'),(499,499,0,'0.0000','fixed'),(500,500,0,'0.0000','fixed'),(501,501,0,'0.0000','fixed'),(502,502,0,'0.0000','fixed'),(503,503,0,'0.0000','fixed'),(504,504,0,'0.0000','fixed'),(505,505,0,'0.0000','fixed'),(506,506,0,'0.0000','fixed'),(507,507,0,'0.0000','fixed'),(508,508,0,'0.0000','fixed'),(509,509,0,'0.0000','fixed'),(510,510,0,'0.0000','fixed'),(511,511,0,'0.0000','fixed'),(512,512,0,'0.0000','fixed'),(513,513,0,'0.0000','fixed'),(514,514,0,'0.0000','fixed'),(515,515,0,'0.0000','fixed'),(516,516,0,'0.0000','fixed'),(517,517,0,'0.0000','fixed'),(518,518,0,'0.0000','fixed'),(519,519,0,'0.0000','fixed'),(520,520,0,'0.0000','fixed'),(521,521,0,'0.0000','fixed'),(522,522,0,'0.0000','fixed'),(523,523,0,'0.0000','fixed'),(524,524,0,'0.0000','fixed'),(525,525,0,'0.0000','fixed'),(526,526,0,'0.0000','fixed'),(527,527,0,'0.0000','fixed'),(528,528,0,'0.0000','fixed'),(529,529,0,'0.0000','fixed'),(530,530,0,'0.0000','fixed'),(531,531,0,'0.0000','fixed'),(533,533,0,'0.0000','fixed'),(534,534,0,'0.0000','fixed'),(535,535,0,'0.0000','fixed'),(536,536,0,'0.0000','fixed'),(537,537,0,'0.0000','fixed'),(538,538,0,'0.0000','fixed'),(539,539,0,'0.0000','fixed'),(540,540,0,'0.0000','fixed'),(541,541,0,'0.0000','fixed'),(542,542,0,'0.0000','fixed'),(543,543,0,'0.0000','fixed'),(544,544,0,'0.0000','fixed'),(545,545,0,'0.0000','fixed'),(546,546,0,'0.0000','fixed'),(547,547,0,'0.0000','fixed'),(548,548,0,'0.0000','fixed'),(549,549,0,'0.0000','fixed'),(550,550,0,'0.0000','fixed'),(551,551,0,'0.0000','fixed'),(552,552,0,'0.0000','fixed'),(553,553,0,'0.0000','fixed'),(554,554,0,'0.0000','fixed'),(555,555,0,'0.0000','fixed'),(556,556,0,'0.0000','fixed'),(557,557,0,'0.0000','fixed');
/*!40000 ALTER TABLE `catalog_product_option_type_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option_type_title`
--

DROP TABLE IF EXISTS `catalog_product_option_type_title`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_option_type_title` (
  `option_type_title_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Type Title ID',
  `option_type_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Type ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  PRIMARY KEY  (`option_type_title_id`),
  UNIQUE KEY `UNQ_CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  KEY `IDX_CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION_TYPE_ID` (`option_type_id`),
  KEY `IDX_CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_C085B9CF2C2A302E8043FDEA1937D6A2` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_OPT_TYPE_TTL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=558 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Title Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_option_type_title`
--

LOCK TABLES `catalog_product_option_type_title` WRITE;
/*!40000 ALTER TABLE `catalog_product_option_type_title` DISABLE KEYS */;
INSERT INTO `catalog_product_option_type_title` VALUES (13,13,0,'4'),(14,14,0,'5'),(15,15,0,'6'),(16,16,0,'6.5'),(17,17,0,'7'),(18,18,0,'8'),(19,19,0,'9'),(20,20,0,'9.5'),(21,21,0,'10'),(22,22,0,'11'),(23,23,0,'12'),(24,24,0,'4'),(25,25,0,'5'),(26,26,0,'6'),(27,27,0,'6.5'),(28,28,0,'7'),(29,29,0,'8'),(30,30,0,'9'),(31,31,0,'9.5'),(32,32,0,'10'),(33,33,0,'11'),(34,34,0,'12'),(39,39,0,'8'),(42,42,0,'11'),(43,43,0,'3'),(44,44,0,'4'),(45,45,0,'5'),(46,46,0,'6'),(47,47,0,'7'),(48,48,0,'8'),(49,49,0,'9'),(50,50,0,'10'),(51,51,0,'11'),(52,52,0,'12'),(53,53,0,'13'),(54,54,0,'14'),(55,55,0,'S/M'),(56,56,0,'L/XL'),(57,57,0,'3/4'),(58,58,0,'5/6'),(59,59,0,'7/8'),(60,60,0,'9/10'),(61,61,0,'11/12'),(63,63,0,'3/4'),(64,64,0,'5/6'),(65,65,0,'7/8'),(66,66,0,'9/10'),(67,67,0,'11/12'),(69,69,0,'S'),(70,70,0,'M'),(71,71,0,'L'),(72,72,0,'XL'),(73,73,0,'XXL'),(75,75,0,'M'),(76,76,0,'L'),(77,77,0,'XL'),(78,78,0,'XXL'),(79,79,0,'S'),(80,80,0,'M'),(81,81,0,'L'),(82,82,0,'XL'),(83,83,0,'XXL'),(84,84,0,'S'),(85,85,0,'M'),(86,86,0,'L'),(87,87,0,'XL'),(88,88,0,'XXL'),(90,90,0,'S'),(92,92,0,'L'),(93,93,0,'XL'),(94,94,0,'XXL'),(95,95,0,'3XL'),(96,96,0,'S'),(97,97,0,'M'),(98,98,0,'L'),(99,99,0,'XL'),(100,100,0,'XXL'),(101,101,0,'3XL'),(103,103,0,'S'),(104,104,0,'M'),(105,105,0,'L'),(106,106,0,'XL'),(107,107,0,'XXL'),(108,108,0,'3XL'),(111,111,0,'M'),(112,112,0,'L'),(113,113,0,'XL'),(115,115,0,'XS-160/88'),(116,116,0,'S-170/96'),(117,117,0,'M-180/104'),(118,118,0,'L-180/112'),(119,119,0,'XL-190/120'),(120,120,0,'M/L'),(121,121,0,'XL/XXL'),(122,122,0,'M'),(123,123,0,'L'),(124,124,0,'XL'),(125,125,0,'3'),(126,126,0,'4'),(127,127,0,'5'),(128,128,0,'6'),(129,129,0,'7'),(130,130,0,'28\"'),(131,131,0,'30\"'),(132,132,0,'32\"'),(133,133,0,'34\"'),(134,134,0,'36\"'),(135,135,0,'38\"'),(136,136,0,'59 cms( medium)'),(137,137,0,'60 cms(Large)'),(138,138,0,'61 cms (Xlarge)'),(139,139,0,'160/88 (X Small)'),(140,140,0,'170/96  (Small)'),(141,141,0,'180/104 (Medium)'),(142,142,0,'One Size'),(143,143,0,'Small'),(144,144,0,'Medium'),(145,145,0,'Large'),(146,146,0,'X Large'),(147,147,0,'XX Large'),(148,148,0,'One Size '),(151,151,0,'Shoe Sizes 3-4.5 (Small)'),(152,152,0,'Shoe Sizes 5-6.5 (Medium)'),(153,153,0,'Shoe Sizes 7-8.5 (Large)'),(154,154,0,'Size 6 to 11Olive'),(155,155,0,'Shoe Size 6 to 8.5 (Medium)'),(156,156,0,'Shoe Size 9 to 11.5 (Large)'),(159,159,0,'Age 3/4'),(160,160,0,'Age 5/6'),(161,161,0,'Age 7/8'),(162,162,0,'Age 9/10'),(163,163,0,'Age 11/12'),(164,164,0,'Size 32\"'),(165,165,0,'Size 34\"'),(166,166,0,'XXL'),(167,167,0,'Size 3'),(170,170,0,'6'),(173,173,0,'9'),(174,174,0,'10'),(175,175,0,'11'),(176,176,0,'Age 13/14'),(177,177,0,'Medium'),(178,178,0,'Large'),(179,179,0,'XLarge'),(180,180,0,'XX Large'),(181,181,0,'XXX Large'),(182,182,0,'Medium'),(185,185,0,'Small'),(190,190,0,'Military Green'),(191,191,0,'Navy'),(192,192,0,'Olive Green'),(193,193,0,'Jade Green'),(196,196,0,'Jade Green'),(197,197,0,'Black/White'),(198,198,0,'Olive /Black'),(201,201,0,'10 Reg'),(203,203,0,'14 Reg'),(206,206,0,'12 Short'),(208,208,0,'14 Short'),(209,209,0,'14 Regular'),(210,210,0,'16 Short'),(211,211,0,'16 regular'),(229,229,0,'28'),(230,230,0,'30'),(231,231,0,'Camouflague'),(232,232,0,'Olive Green'),(233,233,0,'Black'),(234,234,0,'Navy Blue'),(235,235,0,'32'),(236,236,0,'34'),(237,237,0,'36'),(238,238,0,'38'),(239,239,0,'40'),(240,240,0,'42'),(241,241,0,'44'),(242,242,0,'Black'),(243,243,0,'Navy Blue'),(244,244,0,'Black'),(245,245,0,'Navy Blue'),(246,246,0,'Laurel Green'),(247,247,0,'Olive'),(248,248,0,'Black'),(249,249,0,'Olive'),(250,250,0,'Black'),(251,251,0,'Navy Blue'),(252,252,0,'Olive Green'),(253,253,0,'Black'),(254,254,0,'Black'),(255,255,0,'Navy'),(257,257,0,'Black'),(258,258,0,'Navy'),(259,259,0,'Grey'),(260,260,0,'Denim Blue'),(261,261,0,'White'),(262,262,0,'4-7'),(263,263,0,'7-11'),(264,264,0,'Olive Green'),(265,265,0,'Navy blue'),(266,266,0,'Jade Green'),(267,267,0,'Black'),(268,268,0,'Green'),(269,269,0,'10'),(270,270,0,'11'),(271,271,0,'12'),(272,272,0,'13'),(273,273,0,'1'),(274,274,0,'2'),(275,275,0,'3'),(276,276,0,'4'),(277,277,0,'5'),(278,278,0,'6'),(279,279,0,'7'),(280,280,0,'8-9.5'),(281,281,0,'10- 11.5'),(282,282,0,'Firewood  (soft pink&Grey)'),(283,283,0,'Olive (2 shades of green)'),(284,284,0,'3 -5.5'),(285,285,0,'6 -8'),(286,286,0,'Black'),(287,287,0,'Olive'),(288,288,0,'Red/Grey'),(289,289,0,'Black/Grey'),(290,290,0,'Light Grey/Mid Grey'),(291,291,0,'Horizon/Aqua'),(292,292,0,'Red and grey'),(293,293,0,'Blue andGrey'),(294,294,0,'Camouflague'),(296,296,0,'Royal/Black'),(297,297,0,'Grey/Black'),(298,298,0,'Small'),(299,299,0,'Medium'),(300,300,0,'Large'),(301,301,0,'XLarge'),(302,302,0,'3 x 2'),(304,304,0,'2 x 2'),(305,305,0,'3 x 2'),(306,306,0,'2 2 '),(307,307,0,'24\" (age 1/2 )'),(308,308,0,'26\" (age 3/4)'),(309,309,0,'28\" (age 5/6)'),(310,310,0,'30\" (age 7/8)'),(311,311,0,'32\" (age 9/10)'),(312,312,0,'34\" (age 11/12)'),(313,313,0,'Mens Navy Blue 6 -8.5'),(314,314,0,'Mens Navy Blue  9-11.5'),(315,315,0,'Mens Grey  6-8.5'),(316,316,0,'Mens Grey  9-11.5'),(317,317,0,'Ladies Navy Blue 3-5.5'),(318,318,0,'Ladies Navy Blue 6-8.5'),(319,319,0,'Ladies Purple 6-8.5'),(328,328,0,'Red/White'),(329,329,0,'Sand/Black'),(330,330,0,'Green/Grey'),(331,331,0,'Blue/Grey'),(332,332,0,'Aubergine/Light Grey'),(333,333,0,'Dark Grey/Light Blue'),(334,334,0,'Red/Grey/Black'),(338,338,0,'Olive Green /Green Inner'),(339,339,0,'Black /Ochre Inner'),(340,340,0,'Black/Ochre Inner'),(341,341,0,'Olive / Green Inner'),(343,343,0,'Olive/Black/Gry'),(344,344,0,'Khaki'),(345,345,0,'Black'),(346,346,0,'Raf Blue'),(347,347,0,'Olive'),(348,348,0,'Bright yellow or Red'),(349,349,0,'Green or Blue'),(350,350,0,'Green'),(351,351,0,'Blue'),(352,352,0,'Olive Green'),(353,353,0,'Camouflague'),(354,354,0,'Black/Charcoal'),(355,355,0,'Blue/Charcoal'),(356,356,0,'Black'),(357,357,0,'Red'),(358,358,0,'Grey'),(359,359,0,'Blue'),(360,360,0,'Black'),(361,361,0,'Olive Green'),(362,362,0,'Age 3/4'),(363,363,0,'Age 5/6'),(364,364,0,'Age 7/8'),(365,365,0,'Age 9/10'),(366,366,0,'Age 11/12'),(367,367,0,'Size 3 to 6'),(368,368,0,'Size 7 to 11'),(369,369,0,'Black Shooter Mitts'),(370,370,0,'28 \"'),(371,371,0,'30 \"'),(372,372,0,'32 \"'),(373,373,0,'34\"'),(374,374,0,'Olive'),(375,375,0,'Olive'),(376,376,0,'Navy Blue'),(377,377,0,'28\"'),(378,378,0,'30\"'),(379,379,0,'32\"'),(380,380,0,'34\"'),(381,381,0,'22\"'),(382,382,0,'24\"'),(383,383,0,'26\"'),(384,384,0,'28\"'),(385,385,0,'22\"'),(386,386,0,'24\"'),(387,387,0,'24\"'),(388,388,0,'26\"'),(389,389,0,'28\"'),(390,390,0,'30\"'),(391,391,0,'32\"'),(392,392,0,'34\"'),(393,393,0,'28\"'),(394,394,0,'30\"'),(395,395,0,'32\"'),(396,396,0,'34\"'),(397,397,0,'36\"'),(398,398,0,'22\"'),(399,399,0,'24\"'),(400,400,0,'26\"'),(401,401,0,'28\"'),(402,402,0,'30\"'),(403,403,0,'32\"'),(404,404,0,'24\"'),(405,405,0,'26\"'),(406,406,0,'28\"'),(407,407,0,'24\"'),(408,408,0,'26\"'),(409,409,0,'28\"'),(410,410,0,'30\"'),(411,411,0,'32\"'),(412,412,0,'34\"'),(413,413,0,'Age4'),(414,414,0,'Age5/6'),(415,415,0,'Age7/8'),(416,416,0,'Age7/8'),(417,417,0,'Age 9/10'),(418,418,0,'Age 11/12'),(419,419,0,'Age 13 '),(420,420,0,'Small'),(421,421,0,'Medium'),(422,422,0,'Large'),(425,425,0,'Large'),(426,426,0,'X-Small'),(427,427,0,'Small'),(428,428,0,'Medium'),(429,429,0,'Large'),(430,430,0,'Medium'),(431,431,0,'Large'),(432,432,0,'X-Large'),(433,433,0,'XX-Large'),(434,434,0,'White'),(435,435,0,'Blue/Grey'),(436,436,0,'32\" Short'),(437,437,0,'32\" Regular'),(440,440,0,'36\" Short'),(441,441,0,'36\" Regular'),(442,442,0,'Navy Blue'),(443,443,0,'5'),(444,444,0,'7'),(445,445,0,'8'),(446,446,0,'Size 6 to 11 Black'),(447,447,0,'Medium'),(448,448,0,'Large'),(449,449,0,'XLarge'),(450,450,0,'XXLarge'),(451,451,0,'XXXlarge'),(452,452,0,'Camouflague'),(453,453,0,'Black'),(454,454,0,'Small'),(455,455,0,'Medium'),(456,456,0,'Large'),(457,457,0,'XLarge'),(458,458,0,'XXLarge'),(459,459,0,'XXXLarge'),(460,460,0,'Navy Blue'),(461,461,0,'Black'),(462,462,0,'10'),(463,463,0,'12'),(464,464,0,'14'),(465,465,0,'16'),(466,466,0,'18'),(467,467,0,'20'),(468,468,0,'Black'),(469,469,0,'Hot Chocolate'),(470,470,0,'5'),(471,471,0,'6'),(472,472,0,'7'),(473,473,0,'8'),(474,474,0,'9'),(475,475,0,'10'),(476,476,0,'11'),(477,477,0,'Size 6 to 8.5'),(478,478,0,'Size 9 to 11.5'),(479,479,0,'Size 3 to 5.5'),(480,480,0,'Size 6 to 8.5'),(483,483,0,'Size 7'),(484,484,0,'Size 8'),(485,485,0,'Size 9'),(486,486,0,'Size 10'),(487,487,0,'Size 11'),(488,488,0,'Size 12'),(489,489,0,'Size 13'),(490,490,0,'Size 7'),(491,491,0,'Size 8'),(492,492,0,'Size 9'),(493,493,0,'Size 10'),(494,494,0,'18 Reg'),(495,495,0,'18 egular'),(496,496,0,'18 regular'),(497,497,0,'Red'),(498,498,0,'Black'),(499,499,0,'Size 5 (38)'),(500,500,0,'Size 6 (39)'),(501,501,0,'Size 6.5 (40)'),(502,502,0,'Size 7 (41)'),(503,503,0,'Size 8 (42)'),(504,504,0,'Size 9 (43)'),(505,505,0,'Size 9.5 (44)'),(506,506,0,'Size 10 (45)'),(507,507,0,'Size 11 (46)'),(508,508,0,'Size 12 (47)'),(509,509,0,'Size 5 (38)'),(510,510,0,'Size 6 (39)'),(511,511,0,'Size 6.5( 40)'),(512,512,0,'Size 7 (41) '),(513,513,0,'Size 8 (42)'),(514,514,0,'Size 9 (43)'),(515,515,0,'Size 9.5 (44)'),(516,516,0,'Size 10 (45)'),(517,517,0,'Size 11 (46)'),(518,518,0,'Size 12 (47)'),(519,519,0,'28 \"'),(520,520,0,'30\"'),(521,521,0,'32\"'),(522,522,0,'34\"'),(523,523,0,'36\"'),(524,524,0,'38\"'),(525,525,0,'40\"'),(526,526,0,'42\"'),(527,527,0,'44\"'),(528,528,0,'Camouflage'),(529,529,0,'Olive Green'),(530,530,0,'Black'),(531,531,0,'Navy blue'),(533,533,0,'Size 34\"'),(534,534,0,'Size 36\"'),(535,535,0,'Size38\"'),(536,536,0,'Size 40\"'),(537,537,0,'Size 42\"'),(538,538,0,'Size 44\"'),(539,539,0,'Size 46\"'),(540,540,0,'Size 48\"'),(541,541,0,'Size 50\"'),(542,542,0,'Size 52\"'),(543,543,0,'Size 54\"'),(544,544,0,'Size 56\"'),(545,545,0,'Size 58\"'),(546,546,0,'Size 60\"'),(547,547,0,'Navy Blue'),(548,548,0,'Royal Blue'),(549,549,0,'Slate Grey'),(550,550,0,'34\" Regular'),(551,551,0,'38\" Regular'),(552,552,0,'40\" Regular'),(553,553,0,'Size 8'),(554,554,0,'Size 10'),(555,555,0,'Size 12'),(556,556,0,'Size 4'),(557,557,0,'Black');
/*!40000 ALTER TABLE `catalog_product_option_type_title` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_option_type_value`
--

DROP TABLE IF EXISTS `catalog_product_option_type_value`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_option_type_value` (
  `option_type_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Type ID',
  `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option ID',
  `sku` varchar(64) default NULL COMMENT 'SKU',
  `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order',
  PRIMARY KEY  (`option_type_id`),
  KEY `IDX_CATALOG_PRODUCT_OPTION_TYPE_VALUE_OPTION_ID` (`option_id`),
  CONSTRAINT `FK_CAT_PRD_OPT_TYPE_VAL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=558 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Value Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_option_type_value`
--

LOCK TABLES `catalog_product_option_type_value` WRITE;
/*!40000 ALTER TABLE `catalog_product_option_type_value` DISABLE KEYS */;
INSERT INTO `catalog_product_option_type_value` VALUES (13,2,'4',1),(14,2,'5',2),(15,2,'6',3),(16,2,'6.5',4),(17,2,'7',5),(18,2,'8',6),(19,2,'9',7),(20,2,'9.5',8),(21,2,'10',9),(22,2,'11',10),(23,2,'12',11),(24,3,'4',1),(25,3,'5',2),(26,3,'6',3),(27,3,'6.5',4),(28,3,'7',5),(29,3,'8',6),(30,3,'9',7),(31,3,'9.5',8),(32,3,'10',9),(33,3,'11',10),(34,3,'12',11),(39,4,'8',5),(42,4,'11',8),(43,5,'3',1),(44,5,'4',2),(45,5,'5',3),(46,5,'6',4),(47,5,'7',5),(48,5,'8',6),(49,5,'9',7),(50,5,'10',8),(51,5,'11',9),(52,5,'12',10),(53,5,'13',11),(54,5,'14',12),(55,6,'S/M',1),(56,6,'LXL',2),(57,7,'3-4',1),(58,7,'5-6',2),(59,7,'7-8',3),(60,7,'9-10',4),(61,7,'11-12',5),(63,8,'3-4',1),(64,8,'5-6',2),(65,8,'7-8',3),(66,8,'9-10',4),(67,8,'11-12',5),(69,9,'S',1),(70,9,'M',2),(71,9,'L',3),(72,9,'XL',4),(73,9,'XXL',5),(75,10,'M',2),(76,10,'L',3),(77,10,'XL',4),(78,10,'XXL',5),(79,11,'S',1),(80,11,'M',2),(81,11,'L',3),(82,11,'XL',4),(83,11,'XXL',5),(84,12,'S',1),(85,12,'M',2),(86,12,'L',3),(87,12,'XL',4),(88,12,'XXL',5),(90,13,'S',1),(92,13,'L',3),(93,13,'XL',4),(94,13,'XXL',5),(95,13,'3XL',6),(96,14,'S',1),(97,14,'M',2),(98,14,'L',3),(99,14,'XL',4),(100,14,'XXL',5),(101,14,'3XL',6),(103,15,'S',1),(104,15,'M',2),(105,15,'L',3),(106,15,'XL',4),(107,15,'XXL',5),(108,15,'3XL',6),(111,16,'M',2),(112,16,'L',3),(113,16,'XL',4),(115,17,'160/88 (xs)',1),(116,17,'170/96 (s)',2),(117,17,'180/104 (m)',3),(118,17,'180/112 (L)',4),(119,17,'190/120 (XL)',5),(120,18,'M/L',1),(121,18,'XL/XXL',2),(122,19,'M',1),(123,19,'L',2),(124,19,'XL',3),(125,20,'3',1),(126,20,'4',2),(127,20,'5',3),(128,20,'6',4),(129,20,'7',7),(130,21,'28\"',1),(131,21,'30\"',2),(132,21,'32\"',3),(133,21,'34\"',4),(134,21,'36\"',5),(135,21,'38\"',6),(136,22,'59 cms (Medium)',1),(137,22,'60 cms (large)',2),(138,22,'61 cms (Xlarge)',3),(139,23,'160/88 ( Xsmll)',1),(140,23,'170/96 (Small)',2),(141,23,'180/104 (Medium)',3),(142,24,'One size',1),(143,25,'Small',1),(144,25,'Medium',2),(145,25,'Large',3),(146,25,'X Large',4),(147,25,'XX Large',5),(148,26,'One Size',1),(151,29,'Small',1),(152,29,'Medium',2),(153,29,'Large',3),(154,30,'Size 6 to 11 Olive',0),(155,31,'Medium',1),(156,31,'Large',2),(159,33,'Age 3/4',1),(160,33,'Age 5/6',2),(161,33,'Age 7/8',3),(162,33,'Age 9/10',4),(163,33,'Age 11/12',5),(164,33,'Size 32\"',6),(165,33,'Size 34\"',7),(166,19,'XXL',4),(167,34,'3',1),(170,34,'6',4),(173,34,'9',7),(174,34,'10',8),(175,34,'11',9),(176,35,'Age 13/14',1),(177,36,'Medium',1),(178,36,'Large',2),(179,36,'XLarge',3),(180,36,'XX Large',4),(181,36,'XXX Large',5),(182,37,'Medium',1),(185,38,'Small',1),(190,39,'Military  Green',2),(191,40,'Navy',1),(192,40,'Olive Green',2),(193,40,'Jade Green',3),(196,41,'Jade Green',3),(197,42,' Black/White',1),(198,42,'Olive/Black',2),(201,44,'10 reg',1),(203,44,'14 reg',3),(206,45,'12 Short',1),(208,45,'14 short',3),(209,45,'14 Regular',4),(210,45,'16 Short',5),(211,45,'16 Regular',6),(229,46,'28',1),(230,46,'30',2),(231,47,'Camoflague',1),(232,47,'Olive Green',2),(233,47,'Black',3),(234,47,'Navy Blue',4),(235,46,'32',3),(236,46,'34',4),(237,46,'36',5),(238,46,'38',6),(239,46,'40',7),(240,46,'42',8),(241,46,'44',9),(242,48,'Black',1),(243,48,'Navy Blue',2),(244,49,'Black',2),(245,49,'Navy Blue',3),(246,49,'Laurel Green',4),(247,50,'Olive',1),(248,50,'Black',2),(249,51,'Olive',1),(250,51,'Black',2),(251,52,'Navy Blue',1),(252,52,'Olive Green',2),(253,52,'Black',3),(254,53,'Black',1),(255,53,'Navy',2),(257,54,'Black',1),(258,54,'Navy',2),(259,54,'Grey',3),(260,55,'Denim Blue',1),(261,55,'White',2),(262,56,'4-7',1),(263,56,'7-11',2),(264,57,'Olive Green',1),(265,57,'Navy Blue',2),(266,57,'Jade Green',3),(267,58,'Black',1),(268,58,'Green',2),(269,59,'10',1),(270,59,'11',2),(271,59,'12',3),(272,59,'13',4),(273,59,'1',5),(274,59,'2',6),(275,59,'3',7),(276,59,'4',8),(277,59,'5',9),(278,59,'6',10),(279,59,'7',11),(280,60,'8- 9.5',1),(281,60,'10-11.5',2),(282,61,'Firewood',1),(283,61,'Olive',2),(284,62,'3 -5.5',1),(285,62,'6 -8',2),(286,63,'Black',1),(287,63,'Olive',2),(288,63,'Red/Grey',3),(289,64,'Black/Grey',1),(290,64,'Light Grey/Mid Grey',2),(291,64,'Horizon/Aqua',3),(292,65,'Red and grey',1),(293,65,'Blue and Grey',2),(294,66,'Camouflgue',1),(296,67,'Royal/Black',1),(297,67,'Grey/Black',2),(298,68,'Small',1),(299,68,'Medium',2),(300,68,'Large',3),(301,68,'XLarge',4),(302,69,'3 x 2',1),(304,70,'2 x2',1),(305,70,'3 x 2',2),(306,69,'2 2 ',2),(307,71,'24\"',1),(308,71,'26\"',2),(309,71,'28\"',3),(310,71,'30\"',4),(311,71,'32\"',5),(312,71,'34\"',6),(313,72,'Mens Navy Blue  6-8.5',1),(314,72,'Mens Navy Blue  9-11.5',2),(315,72,'Mens Grey 6 -8.5',3),(316,72,'Mens Grey  9-11.5',4),(317,72,'Ladies Nay Blue 3-5.5',5),(318,72,'Ladies Navy Blue 6-8.5',6),(319,72,'Ladies Purple 6-8.5',0),(328,42,'Red/White',3),(329,42,'Sand/Black',4),(330,73,'Green/Black',1),(331,73,'Blue/Grey',2),(332,74,'Aubergine/Light Grey',1),(333,74,'Dark Grey/Blue',2),(334,74,'Red/Grey/Black',3),(338,76,'Colour',2),(339,76,'Colour',1),(340,77,'Black/Ochre Inner',1),(341,77,'Olive / Green Inner',2),(343,78,'Olive/Black/Grey',2),(344,79,'Khaki',1),(345,79,'Black',2),(346,79,'Raf Blue',3),(347,79,'Olive',4),(348,80,'One Size',1),(349,80,'One Size',2),(350,81,'Green',1),(351,81,'Blue',2),(352,82,'Olive Green',1),(353,82,'Camouflague',2),(354,83,'65Litre',1),(355,83,'65Litre',2),(356,84,'Black',1),(357,84,'Red',2),(358,84,'Grey',3),(359,84,'Blue',4),(360,85,'Black',1),(361,66,'Olive Green',2),(362,86,'Age 3/4',1),(363,86,'Age 5/6',2),(364,86,'Age 7/8',3),(365,86,'Age 9/10',4),(366,86,'Age 11/12',5),(367,87,'Size 3 to 6',1),(368,87,'Size  7 to 11',2),(369,88,'Black Shooter Mitts',1),(370,89,'28 \"',2),(371,89,'30 \"',3),(372,89,'32\"',4),(373,89,'34\"',5),(374,90,NULL,0),(375,91,'Olive',1),(376,91,'Navy Blue',2),(377,92,'28\"',1),(378,92,'30\"',2),(379,92,'32\"',3),(380,92,'34\"',4),(381,93,'22\"',1),(382,93,'24\"',2),(383,93,'26\"',3),(384,93,'28\"',4),(385,94,'22\"',1),(386,94,'24\"',2),(387,95,'24\"',1),(388,95,'26\"',2),(389,95,'28\"',3),(390,95,'30\"',4),(391,95,'32\"',5),(392,95,'34\"',6),(393,96,'28\"',1),(394,96,'30\"',2),(395,96,'32\"',3),(396,96,'34\"',4),(397,96,'36\"',5),(398,97,'22\"',1),(399,97,'24\"',2),(400,97,'26\"',3),(401,97,'28\"',4),(402,97,'30\"',5),(403,97,'32\"',6),(404,98,'24\"',1),(405,98,'26\"',2),(406,98,'28\"',3),(407,99,'24\"',1),(408,99,'26\"',2),(409,99,'28\"',3),(410,99,'30\"',4),(411,99,'32\"',5),(412,99,'34\"',6),(413,100,'Age4',1),(414,100,'Age5/6',2),(415,100,'Age7/8',3),(416,101,'Age 7/8',1),(417,101,'Age 9/10',2),(418,101,'Age 11/12',3),(419,101,'Age 13',4),(420,102,'Small',1),(421,102,'Medium',2),(422,102,'Large',3),(425,103,'Large',3),(426,104,'X-Small',1),(427,104,'Small',2),(428,104,'Medium',3),(429,104,'Large',4),(430,105,'Medium',1),(431,105,'Large',2),(432,105,'X-Large',3),(433,105,'XX-Large',4),(434,106,'White',1),(435,106,'Blue/Grey',2),(436,107,'32\" Short',1),(437,107,'32\" Regular',2),(440,107,'36\" Short',5),(441,107,'36\" Regular',6),(442,108,'Navy Blue',1),(443,34,'5',3),(444,34,'7',5),(445,34,'8',6),(446,30,'Size 6 to  11 Black',1),(447,109,'0.00',1),(448,109,'0.00',2),(449,109,'0.00',3),(450,109,'0.00',4),(451,109,'0.00',5),(452,110,'Camoulague',1),(453,110,'Black',2),(454,111,'Small',1),(455,111,'Medium',2),(456,111,'Large',3),(457,111,'XLarge',4),(458,111,'XXlarge',5),(459,111,'XXXLarge',6),(460,112,'0.00',1),(461,112,'0.00',2),(462,113,'10',1),(463,113,'12',2),(464,113,'14',3),(465,113,'16',4),(466,113,'18',5),(467,113,'20',6),(468,114,'Black',1),(469,114,'Hot Chocolate',2),(470,115,'5',1),(471,115,'6',2),(472,115,'7',3),(473,115,'8',4),(474,115,'9',5),(475,115,'10',6),(476,115,'11',7),(477,116,'Size 6 to 8.5',1),(478,116,'Size 9 to11.5',2),(479,117,'Size 3 to 5.5',1),(480,117,'Size 6 to 8.5',2),(483,118,'Size 7',1),(484,118,'Size 8',2),(485,118,'Size 9',3),(486,118,'Size 10',4),(487,118,'Size 11',5),(488,118,'Size 12',6),(489,118,'Size 13',7),(490,119,'Size 7',1),(491,119,'Size 8',2),(492,119,'Size 9',3),(493,119,'Size 10',4),(494,44,'18 reg',4),(495,45,'18 regular',7),(496,45,'18 regular',7),(497,120,'Red',1),(498,120,'Black',2),(499,121,'Size 5 (38)',1),(500,121,'Size 6  (39)',2),(501,121,'Size 6.5 (40)',3),(502,121,'Size 7 (41)',4),(503,121,'Size 8 (42)',5),(504,121,'Size 9(43)',6),(505,121,'Size 9.5 (44)',7),(506,121,'Size 10 (45)',8),(507,121,'Size 11 (46)',9),(508,121,'Size 12 (47)',10),(509,122,'Size 5 (38)',1),(510,122,'Size 6 (39)',2),(511,122,'Size 6.5 (40)',3),(512,122,'Size 7 (41)',4),(513,122,'Size 8 (42)',5),(514,122,'Size 9 (43)',6),(515,122,'Size 9.5 (44)',7),(516,122,'Size 10 (45)',8),(517,122,'Size 11 (46)',9),(518,122,'Size 12 (47)',10),(519,123,'28\"',1),(520,123,'30\"',2),(521,123,'32\"',3),(522,123,'34\"',4),(523,123,'36\"',5),(524,123,'38\"',6),(525,123,'40\"',7),(526,123,'42\"',8),(527,123,'44\"',9),(528,124,'Camouflague',1),(529,124,'Olive Green',2),(530,124,'Black',3),(531,124,'Navy Blue',4),(533,125,'Size34\"',1),(534,125,'Size 36\"',2),(535,125,'Size38\"`',3),(536,125,'Size 40\"',4),(537,125,'Size 42\"',5),(538,125,'Size 44\"',6),(539,125,'Size 46\"',7),(540,125,'Size 48\"',8),(541,125,'Size 50\"',9),(542,125,'Size 52\"',10),(543,125,'Size 54\"',11),(544,125,'Size 56\"',12),(545,125,'Size 58\"',13),(546,125,'Size 60\"',14),(547,126,'Navy Blue',1),(548,126,'Royal Blue',2),(549,108,'Slate Grey',2),(550,107,'34\" regular',3),(551,107,'38\" Regular',4),(552,107,'40\"Regular',7),(553,127,'Size 8',1),(554,127,'Sze 10',2),(555,127,'Size 12',3),(556,127,'Size 14',4),(557,128,'Black',1);
/*!40000 ALTER TABLE `catalog_product_option_type_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_relation`
--

DROP TABLE IF EXISTS `catalog_product_relation`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_relation` (
  `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent ID',
  `child_id` int(10) unsigned NOT NULL default '0' COMMENT 'Child ID',
  PRIMARY KEY  (`parent_id`,`child_id`),
  KEY `IDX_CATALOG_PRODUCT_RELATION_CHILD_ID` (`child_id`),
  CONSTRAINT `FK_CAT_PRD_RELATION_CHILD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`child_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_RELATION_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Catalog Product Relation Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_relation`
--

LOCK TABLES `catalog_product_relation` WRITE;
/*!40000 ALTER TABLE `catalog_product_relation` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_relation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_super_attribute`
--

DROP TABLE IF EXISTS `catalog_product_super_attribute`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_super_attribute` (
  `product_super_attribute_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Product Super Attribute ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID',
  `position` smallint(5) unsigned NOT NULL default '0' COMMENT 'Position',
  PRIMARY KEY  (`product_super_attribute_id`),
  UNIQUE KEY `UNQ_CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRODUCT_ID_ATTRIBUTE_ID` (`product_id`,`attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_CAT_PRD_SPR_ATTR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_super_attribute`
--

LOCK TABLES `catalog_product_super_attribute` WRITE;
/*!40000 ALTER TABLE `catalog_product_super_attribute` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_super_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_super_attribute_label`
--

DROP TABLE IF EXISTS `catalog_product_super_attribute_label`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_super_attribute_label` (
  `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID',
  `product_super_attribute_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Super Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `use_default` smallint(5) unsigned default '0' COMMENT 'Use Default Value',
  `value` varchar(255) default NULL COMMENT 'Value',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_PRD_SPR_ATTR_LBL_PRD_SPR_ATTR_ID_STORE_ID` (`product_super_attribute_id`,`store_id`),
  KEY `IDX_CAT_PRD_SPR_ATTR_LBL_PRD_SPR_ATTR_ID` (`product_super_attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `FK_309442281DF7784210ED82B2CC51E5D5` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_SPR_ATTR_LBL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Catalog Product Super Attribute Label Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_super_attribute_label`
--

LOCK TABLES `catalog_product_super_attribute_label` WRITE;
/*!40000 ALTER TABLE `catalog_product_super_attribute_label` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_super_attribute_label` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_super_attribute_pricing`
--

DROP TABLE IF EXISTS `catalog_product_super_attribute_pricing`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_super_attribute_pricing` (
  `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID',
  `product_super_attribute_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Super Attribute ID',
  `value_index` varchar(255) NOT NULL COMMENT 'Value Index',
  `is_percent` smallint(5) unsigned default '0' COMMENT 'Is Percent',
  `pricing_value` decimal(12,4) default NULL COMMENT 'Pricing Value',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `UNQ_CAT_PRD_SPR_ATTR_PRICING_PRD_SPR_ATTR_ID_VAL_IDX_WS_ID` (`product_super_attribute_id`,`value_index`,`website_id`),
  KEY `IDX_CAT_PRD_SPR_ATTR_PRICING_PRD_SPR_ATTR_ID` (`product_super_attribute_id`),
  KEY `IDX_CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRICING_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_CAT_PRD_SPR_ATTR_PRICING_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CDE8813117106CFAA3AD209358F66332` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Pricing Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_super_attribute_pricing`
--

LOCK TABLES `catalog_product_super_attribute_pricing` WRITE;
/*!40000 ALTER TABLE `catalog_product_super_attribute_pricing` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_super_attribute_pricing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_super_link`
--

DROP TABLE IF EXISTS `catalog_product_super_link`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_super_link` (
  `link_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Link ID',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent ID',
  PRIMARY KEY  (`link_id`),
  UNIQUE KEY `UNQ_CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID_PARENT_ID` (`product_id`,`parent_id`),
  KEY `IDX_CATALOG_PRODUCT_SUPER_LINK_PARENT_ID` (`parent_id`),
  KEY `IDX_CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_CAT_PRD_SPR_LNK_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_SPR_LNK_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Link Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_super_link`
--

LOCK TABLES `catalog_product_super_link` WRITE;
/*!40000 ALTER TABLE `catalog_product_super_link` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_super_link` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_website`
--

DROP TABLE IF EXISTS `catalog_product_website`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalog_product_website` (
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID',
  PRIMARY KEY  (`product_id`,`website_id`),
  KEY `IDX_CATALOG_PRODUCT_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_WEBSITE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CAT_PRD_WS_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Catalog Product To Website Linkage Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalog_product_website`
--

LOCK TABLES `catalog_product_website` WRITE;
/*!40000 ALTER TABLE `catalog_product_website` DISABLE KEYS */;
INSERT INTO `catalog_product_website` VALUES (3,1),(4,1),(6,1),(7,1),(8,1),(10,1),(11,1),(12,1),(13,1),(14,1),(15,1),(16,1),(17,1),(18,1),(19,1),(20,1),(21,1),(22,1),(23,1),(24,1),(25,1),(26,1),(27,1),(28,1),(29,1),(31,1),(32,1),(33,1),(34,1),(35,1),(36,1),(37,1),(38,1),(39,1),(40,1),(41,1),(42,1),(43,1),(44,1),(45,1),(46,1),(47,1),(48,1),(49,1),(50,1),(51,1),(52,1),(53,1),(54,1),(55,1),(56,1),(57,1),(58,1),(59,1),(60,1),(61,1),(62,1),(63,1),(64,1),(65,1),(66,1),(67,1),(68,1),(70,1),(71,1),(72,1),(73,1),(74,1),(75,1),(76,1),(77,1),(78,1),(79,1),(80,1),(81,1),(82,1),(83,1),(84,1),(86,1),(87,1),(88,1),(90,1),(91,1),(92,1),(93,1),(94,1),(95,1),(96,1),(97,1),(98,1),(99,1),(100,1),(101,1),(102,1),(103,1),(104,1),(105,1),(106,1),(107,1),(108,1),(109,1),(110,1),(111,1),(113,1),(114,1),(115,1),(116,1),(118,1),(119,1),(120,1),(121,1),(122,1),(123,1),(124,1),(125,1),(126,1),(127,1),(128,1),(129,1),(130,1),(131,1),(132,1),(133,1),(134,1),(135,1),(136,1),(137,1),(138,1),(139,1),(140,1),(141,1),(142,1),(143,1),(144,1),(145,1),(146,1),(147,1),(148,1),(149,1),(150,1),(151,1),(152,1),(153,1),(154,1),(155,1),(156,1),(157,1),(158,1),(159,1),(160,1),(161,1),(162,1),(163,1),(164,1),(165,1),(166,1),(167,1),(168,1),(169,1),(170,1),(171,1),(172,1),(173,1),(174,1),(175,1),(176,1),(177,1),(178,1),(179,1),(180,1),(181,1),(182,1),(183,1);
/*!40000 ALTER TABLE `catalog_product_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogindex_aggregation`
--

DROP TABLE IF EXISTS `catalogindex_aggregation`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogindex_aggregation` (
  `aggregation_id` int(10) unsigned NOT NULL auto_increment,
  `store_id` smallint(5) unsigned default NULL,
  `created_at` datetime NOT NULL,
  `key` varchar(255) default NULL,
  `data` mediumtext,
  PRIMARY KEY  (`aggregation_id`),
  UNIQUE KEY `IDX_STORE_KEY` (`store_id`,`key`),
  CONSTRAINT `FK_CATALOGINDEX_AGGREGATION_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogindex_aggregation`
--

LOCK TABLES `catalogindex_aggregation` WRITE;
/*!40000 ALTER TABLE `catalogindex_aggregation` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogindex_aggregation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogindex_aggregation_tag`
--

DROP TABLE IF EXISTS `catalogindex_aggregation_tag`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogindex_aggregation_tag` (
  `tag_id` int(10) unsigned NOT NULL auto_increment,
  `tag_code` varchar(255) NOT NULL,
  PRIMARY KEY  (`tag_id`),
  UNIQUE KEY `IDX_CODE` (`tag_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogindex_aggregation_tag`
--

LOCK TABLES `catalogindex_aggregation_tag` WRITE;
/*!40000 ALTER TABLE `catalogindex_aggregation_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogindex_aggregation_tag` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogindex_aggregation_to_tag`
--

DROP TABLE IF EXISTS `catalogindex_aggregation_to_tag`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogindex_aggregation_to_tag` (
  `aggregation_id` int(10) unsigned NOT NULL,
  `tag_id` int(10) unsigned NOT NULL,
  UNIQUE KEY `IDX_AGGREGATION_TAG` (`aggregation_id`,`tag_id`),
  KEY `FK_CATALOGINDEX_AGGREGATION_TO_TAG_TAG` (`tag_id`),
  CONSTRAINT `FK_CATALOGINDEX_AGGREGATION_TO_TAG_AGGREGATION` FOREIGN KEY (`aggregation_id`) REFERENCES `catalogindex_aggregation` (`aggregation_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOGINDEX_AGGREGATION_TO_TAG_TAG` FOREIGN KEY (`tag_id`) REFERENCES `catalogindex_aggregation_tag` (`tag_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogindex_aggregation_to_tag`
--

LOCK TABLES `catalogindex_aggregation_to_tag` WRITE;
/*!40000 ALTER TABLE `catalogindex_aggregation_to_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogindex_aggregation_to_tag` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogindex_eav`
--

DROP TABLE IF EXISTS `catalogindex_eav`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogindex_eav` (
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL,
  `attribute_id` smallint(5) unsigned NOT NULL,
  `value` int(11) NOT NULL default '0',
  PRIMARY KEY  (`store_id`,`entity_id`,`attribute_id`,`value`),
  KEY `IDX_VALUE` (`value`),
  KEY `FK_CATALOGINDEX_EAV_ENTITY` (`entity_id`),
  KEY `FK_CATALOGINDEX_EAV_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOGINDEX_EAV_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOGINDEX_EAV_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOGINDEX_EAV_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOGINDEX_EAV_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogindex_eav`
--

LOCK TABLES `catalogindex_eav` WRITE;
/*!40000 ALTER TABLE `catalogindex_eav` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogindex_eav` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogindex_minimal_price`
--

DROP TABLE IF EXISTS `catalogindex_minimal_price`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogindex_minimal_price` (
  `index_id` int(10) unsigned NOT NULL auto_increment,
  `entity_id` int(10) unsigned NOT NULL,
  `customer_group_id` smallint(5) unsigned NOT NULL,
  `qty` decimal(12,4) unsigned NOT NULL default '0.0000',
  `value` decimal(12,4) NOT NULL default '0.0000',
  `tax_class_id` smallint(6) NOT NULL default '0',
  `website_id` smallint(5) unsigned NOT NULL,
  PRIMARY KEY  (`index_id`),
  KEY `IDX_VALUE` (`value`),
  KEY `IDX_QTY` (`qty`),
  KEY `IDX_FULL` (`entity_id`,`qty`,`customer_group_id`,`value`,`website_id`),
  KEY `FK_CI_MINIMAL_PRICE_WEBSITE_ID` (`website_id`),
  KEY `FK_CATALOGINDEX_MINIMAL_PRICE_CUSTOMER_GROUP` (`customer_group_id`),
  CONSTRAINT `FK_CATALOGINDEX_MINIMAL_PRICE_CUSTOMER_GROUP` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOGINDEX_MINIMAL_PRICE_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CI_MINIMAL_PRICE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogindex_minimal_price`
--

LOCK TABLES `catalogindex_minimal_price` WRITE;
/*!40000 ALTER TABLE `catalogindex_minimal_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogindex_minimal_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogindex_price`
--

DROP TABLE IF EXISTS `catalogindex_price`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogindex_price` (
  `entity_id` int(10) unsigned NOT NULL,
  `attribute_id` smallint(5) unsigned NOT NULL,
  `customer_group_id` smallint(3) unsigned NOT NULL default '0',
  `qty` decimal(12,4) unsigned NOT NULL default '0.0000',
  `value` decimal(12,4) NOT NULL default '0.0000',
  `tax_class_id` smallint(6) NOT NULL default '0',
  `website_id` smallint(5) unsigned NOT NULL,
  KEY `IDX_VALUE` (`value`),
  KEY `IDX_QTY` (`qty`),
  KEY `FK_CATALOGINDEX_PRICE_ENTITY` (`entity_id`),
  KEY `FK_CATALOGINDEX_PRICE_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOGINDEX_PRICE_CUSTOMER_GROUP` (`customer_group_id`),
  KEY `IDX_RANGE_VALUE` (`entity_id`,`attribute_id`,`customer_group_id`,`value`),
  KEY `IDX_FULL` (`entity_id`,`attribute_id`,`customer_group_id`,`value`,`website_id`),
  KEY `FK_CI_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_CATALOGINDEX_PRICE_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOGINDEX_PRICE_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CI_PRICE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogindex_price`
--

LOCK TABLES `catalogindex_price` WRITE;
/*!40000 ALTER TABLE `catalogindex_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogindex_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock`
--

DROP TABLE IF EXISTS `cataloginventory_stock`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cataloginventory_stock` (
  `stock_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Stock Id',
  `stock_name` varchar(255) default NULL COMMENT 'Stock Name',
  PRIMARY KEY  (`stock_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `cataloginventory_stock`
--

LOCK TABLES `cataloginventory_stock` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock` VALUES (1,'Default');
/*!40000 ALTER TABLE `cataloginventory_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock_item`
--

DROP TABLE IF EXISTS `cataloginventory_stock_item`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cataloginventory_stock_item` (
  `item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Item Id',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Id',
  `stock_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Stock Id',
  `qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty',
  `min_qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Min Qty',
  `use_config_min_qty` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Min Qty',
  `is_qty_decimal` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Qty Decimal',
  `backorders` smallint(5) unsigned NOT NULL default '0' COMMENT 'Backorders',
  `use_config_backorders` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Backorders',
  `min_sale_qty` decimal(12,4) NOT NULL default '1.0000' COMMENT 'Min Sale Qty',
  `use_config_min_sale_qty` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Min Sale Qty',
  `max_sale_qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Max Sale Qty',
  `use_config_max_sale_qty` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Max Sale Qty',
  `is_in_stock` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is In Stock',
  `low_stock_date` timestamp NULL default NULL COMMENT 'Low Stock Date',
  `notify_stock_qty` decimal(12,4) default NULL COMMENT 'Notify Stock Qty',
  `use_config_notify_stock_qty` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Notify Stock Qty',
  `manage_stock` smallint(5) unsigned NOT NULL default '0' COMMENT 'Manage Stock',
  `use_config_manage_stock` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Manage Stock',
  `stock_status_changed_auto` smallint(5) unsigned NOT NULL default '0' COMMENT 'Stock Status Changed Automatically',
  `use_config_qty_increments` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Qty Increments',
  `qty_increments` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty Increments',
  `use_config_enable_qty_inc` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Enable Qty Increments',
  `enable_qty_increments` smallint(5) unsigned NOT NULL default '0' COMMENT 'Enable Qty Increments',
  PRIMARY KEY  (`item_id`),
  UNIQUE KEY `UNQ_CATALOGINVENTORY_STOCK_ITEM_PRODUCT_ID_STOCK_ID` (`product_id`,`stock_id`),
  KEY `IDX_CATALOGINVENTORY_STOCK_ITEM_PRODUCT_ID` (`product_id`),
  KEY `IDX_CATALOGINVENTORY_STOCK_ITEM_STOCK_ID` (`stock_id`),
  CONSTRAINT `FK_CATINV_STOCK_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATINV_STOCK_ITEM_STOCK_ID_CATINV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `cataloginventory_stock` (`stock_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=184 DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Item';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `cataloginventory_stock_item`
--

LOCK TABLES `cataloginventory_stock_item` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock_item` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock_item` VALUES (3,3,1,'1000.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0),(4,4,1,'1000.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0),(6,6,1,'1000.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0),(7,7,1,'1000.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0),(8,8,1,'1000.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0),(10,10,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-01-04 13:12:15',NULL,1,0,0,1,1,'0.0000',1,0),(11,11,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-01-06 09:33:50',NULL,1,0,1,1,1,'0.0000',1,0),(12,12,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 14:56:13',NULL,1,0,1,1,1,'0.0000',1,0),(13,13,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 14:52:22',NULL,1,0,1,1,1,'0.0000',1,0),(14,14,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 14:49:26',NULL,1,0,1,1,1,'0.0000',1,0),(15,15,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:32:43',NULL,1,0,1,1,1,'0.0000',1,0),(16,16,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:31:21',NULL,1,0,1,1,1,'0.0000',1,0),(17,17,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:30:37',NULL,1,0,1,1,1,'0.0000',1,0),(18,18,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-16 12:11:56',NULL,1,0,1,1,1,'0.0000',1,0),(19,19,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-04-13 11:13:48',NULL,1,0,1,1,1,'0.0000',1,0),(20,20,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-07-13 12:29:03',NULL,1,0,1,1,1,'0.0000',1,0),(21,21,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 14:38:01',NULL,1,0,1,1,1,'0.0000',1,0),(22,22,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:29:08',NULL,1,0,1,1,1,'0.0000',1,0),(23,23,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 14:35:02',NULL,1,0,1,1,1,'0.0000',1,0),(24,24,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 14:31:54',NULL,1,0,1,1,1,'0.0000',1,0),(25,25,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 14:28:32',NULL,1,0,1,1,1,'0.0000',1,0),(26,26,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 14:24:16',NULL,1,0,0,1,1,'0.0000',1,0),(27,27,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-01-04 16:42:27',NULL,1,0,0,1,1,'0.0000',1,0),(28,28,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-21 09:48:09',NULL,1,0,0,1,1,'0.0000',1,0),(29,29,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:28:06',NULL,1,0,1,1,1,'0.0000',1,0),(31,31,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-07 09:43:07',NULL,1,0,1,1,1,'0.0000',1,0),(32,32,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-01-19 11:39:36',NULL,1,0,1,1,1,'0.0000',1,0),(33,33,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 16:41:34',NULL,1,0,1,1,1,'0.0000',1,0),(34,34,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 16:37:16',NULL,1,0,1,1,1,'0.0000',1,0),(35,35,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:25:42',NULL,1,0,1,1,1,'0.0000',1,0),(36,36,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-09 15:53:29',NULL,1,0,1,1,1,'0.0000',1,0),(37,37,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-09 15:51:18',NULL,1,0,1,1,1,'0.0000',1,0),(38,38,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:24:53',NULL,1,0,1,1,1,'0.0000',1,0),(39,39,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 16:27:40',NULL,1,0,1,1,1,'0.0000',1,0),(40,40,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 16:26:21',NULL,1,0,1,1,1,'0.0000',1,0),(41,41,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 16:02:22',NULL,1,0,1,1,1,'0.0000',1,0),(42,42,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 16:00:34',NULL,1,0,1,1,1,'0.0000',1,0),(43,43,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:23:57',NULL,1,0,1,1,1,'0.0000',1,0),(44,44,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-03-17 12:28:19',NULL,1,0,1,1,1,'0.0000',1,0),(45,45,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-06 14:54:24',NULL,1,0,1,1,1,'0.0000',1,0),(46,46,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 15:47:19',NULL,1,0,1,1,1,'0.0000',1,0),(47,47,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 15:45:28',NULL,1,0,1,1,1,'0.0000',1,0),(48,48,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 15:32:58',NULL,1,0,1,1,1,'0.0000',1,0),(49,49,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-06 14:51:56',NULL,1,0,1,1,1,'0.0000',1,0),(50,50,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-06 14:53:33',NULL,1,0,1,1,1,'0.0000',1,0),(51,51,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-20 14:55:55',NULL,1,0,1,1,1,'0.0000',1,0),(52,52,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-20 18:32:35',NULL,1,0,1,1,1,'0.0000',1,0),(53,53,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 12:12:52',NULL,1,0,1,1,1,'0.0000',1,0),(54,54,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 12:10:31',NULL,1,0,1,1,1,'0.0000',1,0),(55,55,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 12:09:11',NULL,1,0,1,1,1,'0.0000',1,0),(56,56,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 12:07:40',NULL,1,0,1,1,1,'0.0000',1,0),(57,57,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 12:06:04',NULL,1,0,1,1,1,'0.0000',1,0),(58,58,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-06 15:02:24',NULL,1,0,1,1,1,'0.0000',1,0),(59,59,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-04-13 10:42:28',NULL,1,0,1,1,1,'0.0000',1,0),(60,60,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 12:04:02',NULL,1,0,1,1,1,'0.0000',1,0),(61,61,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 12:02:50',NULL,1,0,1,1,1,'0.0000',1,0),(62,62,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 12:00:18',NULL,1,0,1,1,1,'0.0000',1,0),(63,63,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 11:59:01',NULL,1,0,1,1,1,'0.0000',1,0),(64,64,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-06 15:00:15',NULL,1,0,1,1,1,'0.0000',1,0),(65,65,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-11-17 16:34:40',NULL,1,0,1,1,1,'0.0000',1,0),(66,66,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-13 10:16:41',NULL,1,0,1,1,1,'0.0000',1,0),(67,67,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-03-17 12:29:50',NULL,1,0,1,1,1,'0.0000',1,0),(68,68,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-01-04 14:13:37',NULL,1,0,1,1,1,'0.0000',1,0),(70,70,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 11:39:34',NULL,1,0,1,1,1,'0.0000',1,0),(71,71,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 11:38:34',NULL,1,0,1,1,1,'0.0000',1,0),(72,72,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 11:36:54',NULL,1,0,1,1,1,'0.0000',1,0),(73,73,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-06-23 13:06:41',NULL,1,0,1,1,1,'0.0000',1,0),(74,74,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-03-24 10:22:29',NULL,1,0,1,1,1,'0.0000',1,0),(75,75,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-03-24 10:25:01',NULL,1,0,1,1,1,'0.0000',1,0),(76,76,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 11:31:33',NULL,1,0,1,1,1,'0.0000',1,0),(77,77,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-05-20 10:10:38',NULL,1,0,1,1,1,'0.0000',1,0),(78,78,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-09-02 13:08:21',NULL,1,0,1,1,1,'0.0000',1,0),(79,79,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-10-25 13:51:33',NULL,1,0,1,1,1,'0.0000',1,0),(80,80,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-20 14:34:29',NULL,1,0,1,1,1,'0.0000',1,0),(81,81,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:20:10',NULL,1,0,1,1,1,'0.0000',1,0),(82,82,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-11-19 09:46:03',NULL,1,0,1,1,1,'0.0000',1,0),(83,83,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 10:59:12',NULL,1,0,1,1,1,'0.0000',1,0),(84,84,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:17:19',NULL,1,0,1,1,1,'0.0000',1,0),(86,86,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-01-19 15:28:58',NULL,1,0,1,1,1,'0.0000',1,0),(87,87,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-19 12:05:23',NULL,1,0,1,1,1,'0.0000',1,0),(88,88,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-14 13:11:16',NULL,1,0,1,1,1,'0.0000',1,0),(90,90,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-07 12:00:40',NULL,1,0,1,1,1,'0.0000',1,0),(91,91,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:15:18',NULL,1,0,1,1,1,'0.0000',1,0),(92,92,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 10:49:53',NULL,1,0,1,1,1,'0.0000',1,0),(93,93,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 11:37:13',NULL,1,0,1,1,1,'0.0000',1,0),(94,94,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 11:36:25',NULL,1,0,1,1,1,'0.0000',1,0),(95,95,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 11:33:11',NULL,1,0,1,1,1,'0.0000',1,0),(96,96,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-22 11:36:52',NULL,1,0,1,1,1,'0.0000',1,0),(97,97,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-01-04 16:57:05',NULL,1,0,1,1,1,'0.0000',1,0),(98,98,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 10:45:53',NULL,1,0,1,1,1,'0.0000',1,0),(99,99,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-08-13 10:47:51',NULL,1,0,1,1,1,'0.0000',1,0),(100,100,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 10:38:32',NULL,1,0,1,1,1,'0.0000',1,0),(101,101,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 10:21:28',NULL,1,0,1,1,1,'0.0000',1,0),(102,102,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:14:19',NULL,1,0,1,1,1,'0.0000',1,0),(103,103,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:13:30',NULL,1,0,1,1,1,'0.0000',1,0),(104,104,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-04-13 10:33:08',NULL,1,0,1,1,1,'0.0000',1,0),(105,105,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-06-23 12:39:24',NULL,1,0,1,1,1,'0.0000',1,0),(106,106,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 09:28:06',NULL,1,0,1,1,1,'0.0000',1,0),(107,107,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-06-23 12:38:42',NULL,1,0,1,1,1,'0.0000',1,0),(108,108,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-16 12:11:56',NULL,1,0,1,1,1,'0.0000',1,0),(109,109,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-07 09:24:35',NULL,1,0,1,1,1,'0.0000',1,0),(110,110,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-02-12 11:17:37',NULL,1,0,1,1,1,'0.0000',1,0),(111,111,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-20 14:36:27',NULL,1,0,1,1,1,'0.0000',1,0),(113,113,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-08-13 10:46:03',NULL,1,0,1,1,1,'0.0000',1,0),(114,114,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:52:34',NULL,1,0,1,1,1,'0.0000',1,0),(115,115,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:11:51',NULL,1,0,1,1,1,'0.0000',1,0),(116,116,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-08-13 10:46:56',NULL,1,0,1,1,1,'0.0000',1,0),(118,118,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:51:14',NULL,1,0,1,1,1,'0.0000',1,0),(119,119,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:49:54',NULL,1,0,1,1,1,'0.0000',1,0),(120,120,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:47:37',NULL,1,0,1,1,1,'0.0000',1,0),(121,121,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-01 12:08:49',NULL,1,0,1,1,1,'0.0000',1,0),(122,122,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-06-08 14:15:57',NULL,1,0,1,1,1,'0.0000',1,0),(123,123,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-03-17 12:22:33',NULL,1,0,1,1,1,'0.0000',1,0),(124,124,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-07-29 08:35:17',NULL,1,0,1,1,1,'0.0000',1,0),(125,125,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-20 14:44:49',NULL,1,0,1,1,1,'0.0000',1,0),(126,126,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-04-07 10:44:17',NULL,1,0,1,1,1,'0.0000',1,0),(127,127,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 09:47:20',NULL,1,0,1,1,1,'0.0000',1,0),(128,128,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 09:45:49',NULL,1,0,1,1,1,'0.0000',1,0),(129,129,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-11-15 09:32:40',NULL,1,0,1,1,1,'0.0000',1,0),(130,130,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 09:44:31',NULL,1,0,1,1,1,'0.0000',1,0),(131,131,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:10:34',NULL,1,0,1,1,1,'0.0000',1,0),(132,132,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 09:39:57',NULL,1,0,1,1,1,'0.0000',1,0),(133,133,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:46:13',NULL,1,0,1,1,1,'0.0000',1,0),(134,134,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:45:06',NULL,1,0,1,1,1,'0.0000',1,0),(135,135,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:43:59',NULL,1,0,1,1,1,'0.0000',1,0),(136,136,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:43:01',NULL,1,0,1,1,1,'0.0000',1,0),(137,137,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:42:05',NULL,1,0,1,1,1,'0.0000',1,0),(138,138,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:40:41',NULL,1,0,1,1,1,'0.0000',1,0),(139,139,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:39:08',NULL,1,0,1,1,1,'0.0000',1,0),(140,140,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-03 14:38:11',NULL,1,0,1,1,1,'0.0000',1,0),(141,141,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-10-26 10:38:41',NULL,1,0,1,1,1,'0.0000',1,0),(142,142,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-11-14 16:30:37',NULL,1,0,1,1,1,'0.0000',1,0),(143,143,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-10-31 14:07:26',NULL,1,0,1,1,1,'0.0000',1,0),(144,144,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-10-31 14:16:25',NULL,1,0,1,1,1,'0.0000',1,0),(145,145,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-10-31 14:32:12',NULL,1,0,1,1,1,'0.0000',1,0),(146,146,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-11-22 11:23:34',NULL,1,0,1,1,1,'0.0000',1,0),(147,147,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-02 11:18:18',NULL,1,0,1,1,1,'0.0000',1,0),(148,148,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-02 11:16:44',NULL,1,0,1,1,1,'0.0000',1,0),(149,149,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-02 11:15:26',NULL,1,0,1,1,1,'0.0000',1,0),(150,150,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-03-10 13:01:34',NULL,1,0,1,1,1,'0.0000',1,0),(151,151,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:09:18',NULL,1,0,1,1,1,'0.0000',1,0),(152,152,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-02 11:04:30',NULL,1,0,1,1,1,'0.0000',1,0),(153,153,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-20 16:53:45',NULL,1,0,1,1,1,'0.0000',1,0),(154,154,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:08:31',NULL,1,0,1,1,1,'0.0000',1,0),(155,155,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-22 15:11:27',NULL,1,0,1,1,1,'0.0000',1,0),(156,156,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-22 15:10:42',NULL,1,0,1,1,1,'0.0000',1,0),(157,157,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-01-04 16:04:05',NULL,1,0,1,1,1,'0.0000',1,0),(158,158,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-06 14:46:10',NULL,1,0,1,1,1,'0.0000',1,0),(159,159,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-06 14:46:44',NULL,1,0,1,1,1,'0.0000',1,0),(160,160,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-13 12:12:49',NULL,1,0,1,1,1,'0.0000',1,0),(161,161,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-01-04 16:05:22',NULL,1,0,1,1,1,'0.0000',1,0),(162,162,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-21 16:46:59',NULL,1,0,1,1,1,'0.0000',1,0),(163,163,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-21 16:57:47',NULL,1,0,1,1,1,'0.0000',1,0),(164,164,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-21 17:06:24',NULL,1,0,1,1,1,'0.0000',1,0),(165,165,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2011-12-29 14:04:08',NULL,1,0,1,1,1,'0.0000',1,0),(166,166,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-21 09:41:02',NULL,1,0,1,1,1,'0.0000',1,0),(167,167,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-01-07 13:50:25',NULL,1,0,1,1,1,'0.0000',1,0),(168,168,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-01-19 11:09:38',NULL,1,0,1,1,1,'0.0000',1,0),(169,169,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-07 11:56:50',NULL,1,0,1,1,1,'0.0000',1,0),(170,170,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-17 10:07:00',NULL,1,0,1,1,1,'0.0000',1,0),(171,171,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 11:34:40',NULL,1,0,1,1,1,'0.0000',1,0),(172,172,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 11:34:02',NULL,1,0,1,1,1,'0.0000',1,0),(173,173,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 11:33:18',NULL,1,0,1,1,1,'0.0000',1,0),(174,174,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 11:32:44',NULL,1,0,1,1,1,'0.0000',1,0),(175,175,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 10:35:31',NULL,1,0,1,1,1,'0.0000',1,0),(176,176,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 10:44:14',NULL,1,0,1,1,1,'0.0000',1,0),(177,177,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 10:56:45',NULL,1,0,1,1,1,'0.0000',1,0),(178,178,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 11:17:19',NULL,1,0,1,1,1,'0.0000',1,0),(179,179,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 11:46:44',NULL,1,0,1,1,1,'0.0000',1,0),(180,180,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 12:01:03',NULL,1,0,1,1,1,'0.0000',1,0),(181,181,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 12:15:52',NULL,1,0,1,1,1,'0.0000',1,0),(182,182,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-02-22 12:32:49',NULL,1,0,1,1,1,'0.0000',1,0),(183,183,1,'0.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,0,'2012-03-10 13:16:44',NULL,1,0,1,1,1,'0.0000',1,0);
/*!40000 ALTER TABLE `cataloginventory_stock_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock_status`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cataloginventory_stock_status` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id',
  `qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY  (`product_id`,`website_id`,`stock_id`),
  KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_CATINV_STOCK_STS_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATINV_STOCK_STS_STOCK_ID_CATINV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `cataloginventory_stock` (`stock_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATINV_STOCK_STS_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `cataloginventory_stock_status`
--

LOCK TABLES `cataloginventory_stock_status` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock_status` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock_status` VALUES (3,1,1,'1000.0000',1),(4,1,1,'1000.0000',1),(7,1,1,'1000.0000',1),(8,1,1,'1000.0000',1),(10,1,1,'0.0000',1),(11,1,1,'0.0000',1),(12,1,1,'0.0000',1),(13,1,1,'0.0000',1),(14,1,1,'0.0000',1),(15,1,1,'0.0000',1),(16,1,1,'0.0000',1),(17,1,1,'0.0000',1),(18,1,1,'0.0000',1),(21,1,1,'0.0000',1),(22,1,1,'0.0000',1),(23,1,1,'0.0000',1),(24,1,1,'0.0000',1),(25,1,1,'0.0000',1),(26,1,1,'0.0000',1),(27,1,1,'0.0000',1),(28,1,1,'0.0000',1),(29,1,1,'0.0000',1),(31,1,1,'0.0000',1),(32,1,1,'0.0000',1),(33,1,1,'0.0000',1),(34,1,1,'0.0000',1),(35,1,1,'0.0000',1),(36,1,1,'0.0000',1),(37,1,1,'0.0000',1),(38,1,1,'0.0000',1),(39,1,1,'0.0000',1),(40,1,1,'0.0000',1),(41,1,1,'0.0000',1),(42,1,1,'0.0000',1),(43,1,1,'0.0000',1),(44,1,1,'0.0000',1),(45,1,1,'0.0000',1),(46,1,1,'0.0000',1),(47,1,1,'0.0000',1),(48,1,1,'0.0000',1),(49,1,1,'0.0000',1),(50,1,1,'0.0000',1),(51,1,1,'0.0000',1),(52,1,1,'0.0000',1),(53,1,1,'0.0000',1),(54,1,1,'0.0000',1),(55,1,1,'0.0000',1),(56,1,1,'0.0000',1),(57,1,1,'0.0000',1),(58,1,1,'0.0000',1),(60,1,1,'0.0000',1),(61,1,1,'0.0000',1),(62,1,1,'0.0000',1),(63,1,1,'0.0000',1),(64,1,1,'0.0000',1),(65,1,1,'0.0000',1),(66,1,1,'0.0000',1),(67,1,1,'0.0000',1),(68,1,1,'0.0000',1),(70,1,1,'0.0000',1),(71,1,1,'0.0000',1),(72,1,1,'0.0000',1),(74,1,1,'0.0000',1),(75,1,1,'0.0000',1),(76,1,1,'0.0000',1),(77,1,1,'0.0000',1),(78,1,1,'0.0000',1),(79,1,1,'0.0000',1),(80,1,1,'0.0000',1),(81,1,1,'0.0000',1),(82,1,1,'0.0000',1),(83,1,1,'0.0000',1),(84,1,1,'0.0000',1),(87,1,1,'0.0000',1),(88,1,1,'0.0000',1),(91,1,1,'0.0000',1),(92,1,1,'0.0000',1),(93,1,1,'0.0000',1),(95,1,1,'0.0000',1),(97,1,1,'0.0000',1),(98,1,1,'0.0000',1),(100,1,1,'0.0000',1),(101,1,1,'0.0000',1),(102,1,1,'0.0000',1),(103,1,1,'0.0000',1),(106,1,1,'0.0000',1),(108,1,1,'0.0000',1),(109,1,1,'0.0000',1),(110,1,1,'0.0000',1),(114,1,1,'0.0000',1),(118,1,1,'0.0000',1),(119,1,1,'0.0000',1),(120,1,1,'0.0000',1),(121,1,1,'0.0000',1),(122,1,1,'0.0000',1),(123,1,1,'0.0000',1),(125,1,1,'0.0000',1),(126,1,1,'0.0000',1),(127,1,1,'0.0000',1),(128,1,1,'0.0000',1),(130,1,1,'0.0000',1),(131,1,1,'0.0000',1),(132,1,1,'0.0000',1),(133,1,1,'0.0000',1),(134,1,1,'0.0000',1),(135,1,1,'0.0000',1),(136,1,1,'0.0000',1),(137,1,1,'0.0000',1),(138,1,1,'0.0000',1),(139,1,1,'0.0000',1),(140,1,1,'0.0000',1),(141,1,1,'0.0000',1),(143,1,1,'0.0000',1),(144,1,1,'0.0000',1),(145,1,1,'0.0000',1),(146,1,1,'0.0000',1),(147,1,1,'0.0000',1),(148,1,1,'0.0000',1),(149,1,1,'0.0000',1),(150,1,1,'0.0000',1),(151,1,1,'0.0000',1),(152,1,1,'0.0000',1),(154,1,1,'0.0000',1),(155,1,1,'0.0000',1),(156,1,1,'0.0000',1),(157,1,1,'0.0000',1),(158,1,1,'0.0000',1),(159,1,1,'0.0000',1),(160,1,1,'0.0000',1),(161,1,1,'0.0000',1),(162,1,1,'0.0000',1),(163,1,1,'0.0000',1),(164,1,1,'0.0000',1),(165,1,1,'0.0000',1),(166,1,1,'0.0000',1),(167,1,1,'0.0000',1),(168,1,1,'0.0000',1),(169,1,1,'0.0000',1),(170,1,1,'0.0000',1),(171,1,1,'0.0000',1),(172,1,1,'0.0000',1),(173,1,1,'0.0000',1),(174,1,1,'0.0000',1),(175,1,1,'0.0000',1),(176,1,1,'0.0000',1),(177,1,1,'0.0000',1),(178,1,1,'0.0000',1),(179,1,1,'0.0000',1),(180,1,1,'0.0000',1),(181,1,1,'0.0000',1),(182,1,1,'0.0000',1),(183,1,1,'0.0000',1);
/*!40000 ALTER TABLE `cataloginventory_stock_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock_status_idx`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status_idx`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cataloginventory_stock_status_idx` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id',
  `qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY  (`product_id`,`website_id`,`stock_id`),
  KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_IDX_STOCK_ID` (`stock_id`),
  KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_IDX_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Idx';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `cataloginventory_stock_status_idx`
--

LOCK TABLES `cataloginventory_stock_status_idx` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock_status_idx` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock_status_idx` VALUES (3,1,1,'1000.0000',1),(4,1,1,'1000.0000',1),(7,1,1,'1000.0000',1),(8,1,1,'1000.0000',1),(10,1,1,'0.0000',1),(11,1,1,'0.0000',1),(12,1,1,'0.0000',1),(13,1,1,'0.0000',1),(14,1,1,'0.0000',1),(15,1,1,'0.0000',1),(16,1,1,'0.0000',1),(17,1,1,'0.0000',1),(18,1,1,'0.0000',1),(21,1,1,'0.0000',1),(22,1,1,'0.0000',1),(23,1,1,'0.0000',1),(24,1,1,'0.0000',1),(25,1,1,'0.0000',1),(26,1,1,'0.0000',1),(27,1,1,'0.0000',1),(28,1,1,'0.0000',1),(29,1,1,'0.0000',1),(31,1,1,'0.0000',1),(32,1,1,'0.0000',1),(33,1,1,'0.0000',1),(34,1,1,'0.0000',1),(35,1,1,'0.0000',1),(36,1,1,'0.0000',1),(37,1,1,'0.0000',1),(38,1,1,'0.0000',1),(39,1,1,'0.0000',1),(40,1,1,'0.0000',1),(41,1,1,'0.0000',1),(42,1,1,'0.0000',1),(43,1,1,'0.0000',1),(44,1,1,'0.0000',1),(45,1,1,'0.0000',1),(46,1,1,'0.0000',1),(47,1,1,'0.0000',1),(48,1,1,'0.0000',1),(49,1,1,'0.0000',1),(50,1,1,'0.0000',1),(51,1,1,'0.0000',1),(52,1,1,'0.0000',1),(53,1,1,'0.0000',1),(54,1,1,'0.0000',1),(55,1,1,'0.0000',1),(56,1,1,'0.0000',1),(57,1,1,'0.0000',1),(58,1,1,'0.0000',1),(60,1,1,'0.0000',1),(61,1,1,'0.0000',1),(62,1,1,'0.0000',1),(63,1,1,'0.0000',1),(64,1,1,'0.0000',1),(65,1,1,'0.0000',1),(66,1,1,'0.0000',1),(67,1,1,'0.0000',1),(68,1,1,'0.0000',1),(70,1,1,'0.0000',1),(71,1,1,'0.0000',1),(72,1,1,'0.0000',1),(74,1,1,'0.0000',1),(75,1,1,'0.0000',1),(76,1,1,'0.0000',1),(77,1,1,'0.0000',1),(78,1,1,'0.0000',1),(79,1,1,'0.0000',1),(80,1,1,'0.0000',1),(81,1,1,'0.0000',1),(82,1,1,'0.0000',1),(83,1,1,'0.0000',1),(84,1,1,'0.0000',1),(87,1,1,'0.0000',1),(88,1,1,'0.0000',1),(91,1,1,'0.0000',1),(92,1,1,'0.0000',1),(93,1,1,'0.0000',1),(95,1,1,'0.0000',1),(97,1,1,'0.0000',1),(98,1,1,'0.0000',1),(100,1,1,'0.0000',1),(101,1,1,'0.0000',1),(102,1,1,'0.0000',1),(103,1,1,'0.0000',1),(106,1,1,'0.0000',1),(108,1,1,'0.0000',1),(109,1,1,'0.0000',1),(110,1,1,'0.0000',1),(114,1,1,'0.0000',1),(118,1,1,'0.0000',1),(119,1,1,'0.0000',1),(120,1,1,'0.0000',1),(121,1,1,'0.0000',1),(122,1,1,'0.0000',1),(123,1,1,'0.0000',1),(125,1,1,'0.0000',1),(126,1,1,'0.0000',1),(127,1,1,'0.0000',1),(128,1,1,'0.0000',1),(130,1,1,'0.0000',1),(131,1,1,'0.0000',1),(132,1,1,'0.0000',1),(133,1,1,'0.0000',1),(134,1,1,'0.0000',1),(135,1,1,'0.0000',1),(136,1,1,'0.0000',1),(137,1,1,'0.0000',1),(138,1,1,'0.0000',1),(139,1,1,'0.0000',1),(140,1,1,'0.0000',1),(141,1,1,'0.0000',1),(143,1,1,'0.0000',1),(144,1,1,'0.0000',1),(145,1,1,'0.0000',1),(146,1,1,'0.0000',1),(147,1,1,'0.0000',1),(148,1,1,'0.0000',1),(149,1,1,'0.0000',1),(150,1,1,'0.0000',1),(151,1,1,'0.0000',1),(152,1,1,'0.0000',1),(154,1,1,'0.0000',1),(155,1,1,'0.0000',1),(156,1,1,'0.0000',1),(157,1,1,'0.0000',1),(158,1,1,'0.0000',1),(159,1,1,'0.0000',1),(160,1,1,'0.0000',1),(161,1,1,'0.0000',1),(162,1,1,'0.0000',1),(163,1,1,'0.0000',1),(164,1,1,'0.0000',1),(165,1,1,'0.0000',1),(166,1,1,'0.0000',1),(167,1,1,'0.0000',1),(168,1,1,'0.0000',1),(169,1,1,'0.0000',1),(170,1,1,'0.0000',1),(171,1,1,'0.0000',1),(172,1,1,'0.0000',1),(173,1,1,'0.0000',1),(174,1,1,'0.0000',1),(175,1,1,'0.0000',1),(176,1,1,'0.0000',1),(177,1,1,'0.0000',1),(178,1,1,'0.0000',1),(179,1,1,'0.0000',1),(180,1,1,'0.0000',1),(181,1,1,'0.0000',1),(182,1,1,'0.0000',1),(183,1,1,'0.0000',1);
/*!40000 ALTER TABLE `cataloginventory_stock_status_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock_status_tmp`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status_tmp`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cataloginventory_stock_status_tmp` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id',
  `qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty',
  `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status',
  PRIMARY KEY  (`product_id`,`website_id`,`stock_id`),
  KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_TMP_STOCK_ID` (`stock_id`),
  KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_TMP_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Tmp';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `cataloginventory_stock_status_tmp`
--

LOCK TABLES `cataloginventory_stock_status_tmp` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock_status_tmp` DISABLE KEYS */;
/*!40000 ALTER TABLE `cataloginventory_stock_status_tmp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule`
--

DROP TABLE IF EXISTS `catalogrule`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogrule` (
  `rule_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rule Id',
  `name` varchar(255) default NULL COMMENT 'Name',
  `description` text COMMENT 'Description',
  `from_date` date default NULL COMMENT 'From Date',
  `to_date` date default NULL COMMENT 'To Date',
  `customer_group_ids` text COMMENT 'Customer Group Ids',
  `is_active` smallint(6) NOT NULL default '0' COMMENT 'Is Active',
  `conditions_serialized` mediumtext COMMENT 'Conditions Serialized',
  `actions_serialized` mediumtext COMMENT 'Actions Serialized',
  `stop_rules_processing` smallint(6) NOT NULL default '1' COMMENT 'Stop Rules Processing',
  `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order',
  `simple_action` varchar(32) default NULL COMMENT 'Simple Action',
  `discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount',
  `website_ids` text COMMENT 'Website Ids',
  `sub_is_enable` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Rule Enable For Subitems',
  `sub_simple_action` varchar(32) default NULL COMMENT 'Simple Action For Subitems',
  `sub_discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount For Subitems',
  PRIMARY KEY  (`rule_id`),
  KEY `IDX_CATALOGRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogrule`
--

LOCK TABLES `catalogrule` WRITE;
/*!40000 ALTER TABLE `catalogrule` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_affected_product`
--

DROP TABLE IF EXISTS `catalogrule_affected_product`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogrule_affected_product` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  PRIMARY KEY  (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Affected Product';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogrule_affected_product`
--

LOCK TABLES `catalogrule_affected_product` WRITE;
/*!40000 ALTER TABLE `catalogrule_affected_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_affected_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_group_website`
--

DROP TABLE IF EXISTS `catalogrule_group_website`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogrule_group_website` (
  `rule_id` int(10) unsigned NOT NULL default '0' COMMENT 'Rule Id',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group Id',
  `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website Id',
  PRIMARY KEY  (`rule_id`,`customer_group_id`,`website_id`),
  KEY `IDX_CATALOGRULE_GROUP_WEBSITE_RULE_ID` (`rule_id`),
  KEY `IDX_CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `IDX_CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `FK_CATALOGRULE_GROUP_WEBSITE_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATRULE_GROUP_WS_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='CatalogRule Group Website';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogrule_group_website`
--

LOCK TABLES `catalogrule_group_website` WRITE;
/*!40000 ALTER TABLE `catalogrule_group_website` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_group_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_product`
--

DROP TABLE IF EXISTS `catalogrule_product`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogrule_product` (
  `rule_product_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rule Product Id',
  `rule_id` int(10) unsigned NOT NULL default '0' COMMENT 'Rule Id',
  `from_time` int(10) unsigned NOT NULL default '0' COMMENT 'From Time',
  `to_time` int(10) unsigned NOT NULL default '0' COMMENT 'To time',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group Id',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Id',
  `action_operator` varchar(10) default 'to_fixed' COMMENT 'Action Operator',
  `action_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Action Amount',
  `action_stop` smallint(6) NOT NULL default '0' COMMENT 'Action Stop',
  `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  PRIMARY KEY  (`rule_product_id`),
  UNIQUE KEY `EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  KEY `IDX_CATALOGRULE_PRODUCT_RULE_ID` (`rule_id`),
  KEY `IDX_CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `IDX_CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  KEY `IDX_CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  KEY `IDX_CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  KEY `IDX_CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_CATALOGRULE_PRODUCT_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOGRULE_PRODUCT_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATRULE_PRD_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATRULE_PRD_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogrule_product`
--

LOCK TABLES `catalogrule_product` WRITE;
/*!40000 ALTER TABLE `catalogrule_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogrule_product_price`
--

DROP TABLE IF EXISTS `catalogrule_product_price`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogrule_product_price` (
  `rule_product_price_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rule Product PriceId',
  `rule_date` date NOT NULL default '0000-00-00' COMMENT 'Rule Date',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group Id',
  `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Id',
  `rule_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Rule Price',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `latest_start_date` date default NULL COMMENT 'Latest StartDate',
  `earliest_end_date` date default NULL COMMENT 'Earliest EndDate',
  PRIMARY KEY  (`rule_product_price_id`),
  UNIQUE KEY `UNQ_CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  KEY `IDX_CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `IDX_CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `IDX_CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATRULE_PRD_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATRULE_PRD_PRICE_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product Price';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogrule_product_price`
--

LOCK TABLES `catalogrule_product_price` WRITE;
/*!40000 ALTER TABLE `catalogrule_product_price` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_product_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogsearch_fulltext`
--

DROP TABLE IF EXISTS `catalogsearch_fulltext`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogsearch_fulltext` (
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `data_index` longtext COMMENT 'Data index',
  `fulltext_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity ID',
  PRIMARY KEY  (`fulltext_id`),
  UNIQUE KEY `UNQ_CATALOGSEARCH_FULLTEXT_PRODUCT_ID_STORE_ID` (`product_id`,`store_id`),
  FULLTEXT KEY `FTI_CATALOGSEARCH_FULLTEXT_DATA_INDEX` (`data_index`)
) ENGINE=MyISAM AUTO_INCREMENT=5532 DEFAULT CHARSET=utf8 COMMENT='Catalog search result table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogsearch_fulltext`
--

LOCK TABLES `catalogsearch_fulltext` WRITE;
/*!40000 ALTER TABLE `catalogsearch_fulltext` DISABLE KEYS */;
INSERT INTO `catalogsearch_fulltext` VALUES (14,1,'Commando Sweaters|Enabled|Taxable Goods|Military Style Army Commando Pullover|Military Style Commando Sweater 100 % Acrylic Reinforced elbows & shoulders Shoulder epaulettes Size XXL in NAVY BLUE temporarily out of stock until 3rd December 2011.|Military Style Army Commando Sweater|14.99|1',5389),(15,1,'kids Camo Jacket|Enabled|None|Kids Camoflage Jacket|Childrens Camouflage Combat Jacket Polyester filled Padded for warmth|Kids Camoflage Jackets|14.99|1',5390),(16,1,'kids Camo Jackets age13/14 Years|Enabled|Taxable Goods|Kids Camouflague Army DPM Combat Jacket Age 13/14 Years|Kids Camouflague Combat Jackets Age 13/14 Years Padded for warmth|Kids Camouflague Combat Army DPM Jacket Age 13/14 Years|17.5|1',5391),(17,1,'Kids Camo trousers|Enabled|None|Kids Camouflague Combat camo Army Trousers|Kids Camouflague Combat Trousers Polyester/Cotton British DPM Ankle Adjusters Side Pockets Sizes available 3/4, 5/6,7/8 9/10,11/12 Age 13/14 also available|Kids Camouflague Combat Army Trousers|12.99|1',5392),(18,1,'Pistol Belts|Enabled|Taxable Goods|Cotton army military uniform Pistol Belts|Heavy duty canvas webbing belts Size adjusts to fit up to 40 inch waist Easy fasten metal buckle 56mm width|Cotton Army Pistol Belts|5.99|1',5393),(21,1,'Messtins|Enabled|Taxable Goods|Army style mess Tins|Army style Mess Tins Tough aluminum construction 1.5litre and a 1.3 litre capacity|Army Style Mess tins suitable for cadets and camping|5.99|1',5394),(22,1,'95 shirts grade 1|Enabled|Taxable Goods|Soldier 95 Shirts Grade 1 Issue|Soldier 95 Shirts Grade 1 Issue Kindly contact for sizes available|Soldier 95 Shirts Grade 1 Issue|11.99|1',5395),(23,1,'Softi Elite|Enabled|Taxable Goods|Snugpak Elite Softie Jacket|Snugpak Elite Softi Jacket Sleeka Elite Description Elite Jackets have been equipped with reinforced patches covering all stress points; shoulder, elbow and cuff and now supplied with a compression stuff sack so you can really get the benefit out of our highly compressible Softie insulation Available in medium, large, xlarge|SnugpakElite Softie Jacket packable the original brand|69.99|1',5396),(24,1,'Pakaway jkt|Enabled|Taxable Goods|Regatta Pakaway Waterproof & Breathable Jacket|PACKAWAY II JACKET Packaway II Jacket * Waterproof and breathable Isolite 5000 lightweight polyamide fabric * Windproof fabric * Taped seams * Integral hood * Studded stormflap with hook and loop * 2 lower pockets * Mesh stuff sack Sizes: XS-XXXL RRP £27.00 Isolite5000Packaway Customer Reviews (2)|regatta Pakaway jacket lighweight waterproof & breathable, packs into a bag.|19.99|1',5397),(25,1,'Pakaway Trs|Enabled|Taxable Goods|Regatta Pakaway Waterproof & Breathable Overtrousers Lighweight|Colourway: Navy < Black Packaway II Overtrousers * Waterproof and breathable Isolite 5000 lightweight polyamide fabric * Windproof fabric * Taped seams * Elasticated waist * Press studs at hem * 2 side pocket openings * Mesh stuff sack Sizes: S-XXXL RRP £15.00 Isolite5000Packaway Customer Reviews (3)|Regatta Breathable waterproof overtrousers lightweight|11.99|1',5398),(26,1,'Combat Boot|Enabled|Taxable Goods|Cadet Army Combat Assault Boot|Full Leather Upper Thinsulate Lining Rubber Sole unit Steel shank Suede Collar Available in sizes 3 to 13|Cadet combat Boot assault boots|45|1',5399),(27,1,'Ascent|Enabled|Taxable Goods|Grisport Ascent Lightweight and Breathable Walking Trekking Hiking Boots|ASCENT Ascent is our entry level, lower cut waterproof trekking boot featuring our patented waterproof & breathable ‘spotex’ membrane. Unisex trekking boot Sizes 36 x 47 Weight: 1000g Colours - Grey Spotex lined - Waterproof & breathable Price Guide: £60.00|Grisport Ascent Lightweight and Breathable Walking Trekking Hiking Boots|55|1',5400),(28,1,'Wolf|Enabled|Taxable Goods|Wolf By Grisport Lightweight Waterproof And breathable Walking, hiking trekking Boots|Grisport Wolf Lightweight Waterproof Walking Boot The outstanding Wolf walking boot from Grisport is one of our most popular styles. The Grisport Wolf is a suede & Cordura lightweight designed boot, with a waterproof and breathable lining. The Wolf sells really well in our shop, for its pure simplicity Lightweight, great value for money and as soon as you put you\'re foot in the wolf it just feels comfortable. Grisport Wolf Lightweight Walking Boot Features: >Tough cordura and suede leather construction > Heel Support System, to ensure grip though movement > Padded, fairly low, ankle cuffs and padded tongue. > Italian-made boot in unisex sizing for men and ladies > Available in Navy >Great value for money walking boot >Support System: The extremely effective heel-locking system is designed to provide perfect control of the foot by ensuring an excellent grip is maintained on the ground through all phases of movement. >Waterproof and Breathable Membrane Lining: > The Grisport Wolf Walking boot benefits from the branded \'Spotex\' waterproof and breathable membrane with taped seams, this ensures your feet stay dry, whilst still allowing them and the leather to breath. > Happy comfortable feet. >Cordura Durability: Cordura is a performance fabric and a key element in all high quality hiking boots, it is renowned for its durability and resistance to tear and puncture >. Footwear manufactured in this super fabric will guarantee you many years of walking comfort and enjoyment.|Grisport Lightweight Waterproof And breathable Walking, hiking trekking Boots|55|1',5401),(182,1,'firestarters|Enabled|Taxable Goods|Firestarter|>Magnesium Firestarters >Lasts Approx 400 Strikes >Lights a fire quickly|Firestarters|5.99|1',5530),(183,1,'craghoppers-basecamp-winterlined-kiwis-ladies|Enabled|Taxable Goods|Craghoppers Basecamp Ladies Lined Winter Trousers|Keep warm on cold and chilly days in the womens Basecamp lined trousers. Features include a warm scrim lining, water repellent fabric treatment and a part elasticated waist to ensure a comfortable fit > SolarDry UPF40+ sun-protective fabric >4 pockets including 1 zip fastening >Cargo pocket that will hold O/S map > Warm and comfortable scrim lining > Part elasticated waistband at sides ensures a comfortable fit > SmartDry Nano water repellent and stain resistant fabric > Wash and wear > Heel tape > Zip fly with button fastening waistband > Feminine fit > 400gam fabric weight >Fabric: >Outer: 65% Polyester, 35% Cotton >Lining: Warm polyester scrim lined|Craghoppers Basecamp Ladies Lined Winter Trousers|19.99|1',5531),(181,1,'survivalblanket-emergencyblanket-survivalblanket-|Enabled|Taxable Goods|Emergency Blankets Silver reflective insulating|>Emergency Blanket >Insulating Reflective Coating >Provides Insulation >Retains bodyheat >Potential life saver >Size 140x210 cms. >All weathe protection|Emergency blanket|1.99|1',5529),(180,1,'hydration- camelbak-waterbags-watercarriers-|Enabled|Taxable Goods|Highlander Hydration Systems 2 Litre|Highlander SL Hydration System Features The Highlander SL Hydration System is a PEVA/TPU construction bladder for use with your hydration pouch or backpack. PEVA/TPU Construction Hose with inner TPU material and outer PVC Wide lock opening with slide lock closure - easy to fill and clean Microban® antimicrobial protection, fights bacteria that causes stains, odors and product deterioration OMC high flow bite valve with anti dirt cover Attachment points for hydration sleeve in rucksacks Capacity of 2 litres|Microban hydration|13.99|1',5528),(179,1,'survival-whistle-emergencywhistle-whistle-perrywhistle-|Enabled|Taxable Goods|Emergency Survival Whistles|Classic bright orange plastic pealess whistle for emergency use. This strong plastic whistle weighs only 15g and its one piece construction means there is nothing to go wrong. Floating design for marine use. Hole for attaching lanyard. You should always carry an emergency whistle for attracting attention whenever you venture into the fells or mountains. Simple and cheap but potentially life saving. Perry Whistle Plastic too, so no risk of freeze injury to lips in sub-zero temperatures|Perry Whistle|1.5|1',5527),(178,1,'rucksackliner-sacliner-liner|Enabled|Taxable Goods|Rucksack liner|Highlander Waterproof Rucksack Liner - Orange Waterproof rucksack liner. Fits up to a 85 LitreRucksack Enhances Protection for your gear against the elements|Rucksacl liner|1.99|1',5526),(177,1,'bivvbag-survivalbag-bag-survival-emergencybag-|Enabled|Taxable Goods|Highlander Survival Bag|Lightweight 90cm X 180cm approx emergency survival bivvi bag. Fits in pocket Survival instructions and and tips printed on the bag Bright orange for high visibility, even in bad weather. Ideal for emergency circumstances and can be improvised to form a short-term waterproof shelter. Use whilst Hiking, mountaineering and general outdoor activities. An essential piece of outdoor kit which takes up hardly any space in your Rucksack|survival bag|2.99|1',5525),(170,1,'folding shovel|Enabled|Taxable Goods|Mini pick folding shovel|>Mini Pick/Shovel >Strong folding 3 way shovel with in-built pick. > Compact and lightweight. With black Cordura pouch.|Folding shovel|7|1',5518),(171,1,'highlander-compass-map-mapcompass|Enabled|Taxable Goods|Highlander Map Compass|Description > Magnifying glass > Luminous needle tip & direction markers >Neck cord >Specifications Fabric/Materials: plastic >Item Dimension: 10x6.5x1cm Pack Size: 20x10x1cm Weight: 0.03 kg|Highlander Map Compass|2.99|1',5519),(172,1,'highlander-deluxecompass-compass-orienterring-|Enabled|Taxable Goods|Highlander Deluxe Map Compass|Item Description Highlander Deluxe Map Compass Material: Plastic Size: 13 x 6cm Weight: 60g Millimetre, Centimetre, Inch Romer scales, magnifying glass Luminous needle tip & direction markers Neck cord 120mm/2 scale ruler|Highlander deluxe compass|4.99|1',5520),(173,1,'mapcase-roamer-map-case-|Enabled|Taxable Goods|Highlander Roamer Mapcase|Highlander Roamer Map Case Product Description The Highlander Roamer Map Case is a water resistant TPU map case that is designed to allow you to use your map regardless of the weather, and should it be raining it prevents your map from getting wet. The map case has an adjustable neck strap so that you can carry it around with you at all times, without the risk of losing it. Features and Benefits of the Highlander Roamer Map Case Water resistant TPU map case Adjustable strap Roll top with Velcro closure|Roamer Map Case|7.99|1',5521),(174,1,'trekmates-map-mapcase-compassholder-mapbag-|Enabled|Taxable Goods|Trekmates Soft Feel Mapcase|The Trekmates® Soft Feel Map Case Is lightweight and water resistant. It\'s strong and durable whilst still being compact and has a roll down closure system so it\'s easy to access what\'s inside.|Trekmate mapcase|10.99|1',5522),(175,1,'overalls-boilersuits-workwear-castle-|Enabled|Taxable Goods|Castle Zip Front Overalls-boilersuits-coveralls|Blue Casle Zip Front Boiler Suit / Overalls 366 Castle overalls has been used by workers in most environments with its nylon zip it ideal for working on cars , washable and used daily in industrail workwear. >>>>>>>>>>>>>>>PLEASE NOTE NAVY ONLY IN SIZES 52\" to 60\"|Castle coverall|17.99|1',5523),(176,1,'lockknife-knives-knife-lock-|Enabled|Taxable Goods|Highlander Kingfisher Lock Knife|Highlander Classic 6.5cm Folding Lock Knife Kingfisher knife Locking blade Classic looking Comes with nylon belt pouch 6.5cm blade approx Picture shows open and closed - only one knife supplied Shade of wood colour on knife may vary slightly from photo|6. 5lock knife|5.99|1',5524),(169,1,'camouflague-combat-pants-armypants-cammygear-|Enabled|Taxable Goods|Camoflague Army Combat DPM Trousers|>Camouflague Combat Pants >6 Pockets >Draw tapes on hem >Available in. >Navy >Black >Olive Green >Camouflague|Castle Combat|12.99|1',5517),(168,1,'nikwax-fabric&leather-proofing|Enabled|Taxable Goods|Nikwax Fabric&Leather Proofing|>Fabric and leather proofing >Spray on proofing >Waterproofs, maintains cosmetic apparance &breathability. > Easy to use water based waterproofing|Fabric and leather proofing|4.5|1',5516),(167,1,'grisport-walkingshoe-shoe- foot-waterprrofshoe-footwear-|Enabled|Taxable Goods|Grisport Leather waterproof Walking shoe with Vibram Sole|Unisex trekking Shoe Sizes 36 x 47 Weight: 1040g Colours - Brown leather. Spo-tex lined - Waterproof & Breathable Vibram outsole|dartmoor|69.99|1',5515),(160,1,'doc marten shoe|Enabled|Taxable Goods|Doc marten shoes classic 1461|Classic shoe Leather upper Doc Martens Airwear Sole|Doc Shoe|69.99|1',5508),(161,1,'doc marten classic boots|Enabled|Taxable Goods|Doc Marten Classic 1460 Boot|Doc Marten Classic Boots Leather Uppers Doc Marten Airwear Soles|Doc Boots|79.99|1',5509),(162,1,'victorinox-swissarmyknives-DOE-armyknives-knives|Enabled|Taxable Goods|Victorinox swiss army knives Duke of Edinburgh Approved|* Duke of Edinburgh Award Approved * Safety Blade * Scissors * Can Opener * Bottle Opener * Wire Cutter * Wire Stripper * Screwdriver * Phillips Screwdriver * Multi Purpose Hook * Keyring * Tweezers * Toothpick|DOE swiss|28.99|1',5510),(163,1,'swissarmy-knives-genuinearmyknives-victorinox-|Enabled|Taxable Goods|Victorinox Swiss Army Knives Spartan|* Genuine Swiss Army Knife * Large Blade * Small Blade * Corkscrew * Can Opener with Small Screwdriver * Bottle Opener with Screwdriver * Wire Stripper * Reamer * Punch * Keyring * Tweezers * Toothpick|Swiss spartan|22|1',5511),(164,1,'victorinox-swissarmyknives-armyknife-knives-swiss-|Enabled|Taxable Goods|Victorinox Swiss army knives -climber|* Genuine Victorinox Swiss Army Knives * Large Blade * Small Blade * Corkscrew * Can Opener with Small Screwdriver *Bottle Opener with Screwdriver * Wire Stripper * Reamer * Punch * Keyring * Tweezers * Toothpick * Multi Purpose Hook * Scissors * Available in RED or BLACK|Swiss Climber|27.5|1',5512),(165,1,'cub-beaver-blanket-reversible|Enabled|Taxable Goods|cub/beaver reversible camp blanket|cub & beaver reversible camp blanket|Reversible blanket|13.5|1',5513),(166,1,'peaklander|Enabled|Taxable Goods|Grisport Peaklander Waterproof Leather Walking Boot|Unisex leather trekking boot Sizes 36 x 47 Weight: 1120g Colours - Brown Spotex lined - Waterproof & breathable >Rubber mac, durble sole unit RRP £79.99 The Grisport Peaklander Leather Walking Boot is our best selling leather hiking & walking boot. The Peaklander is a classic leather Italian-made boot, with a waterproof and breathable lining membrane. It\'s lightweight, comfortable and the leather is pre-waxed for extra protection. A fantastic boot for an amazing price. Grisport Peaklander Leather Walking Boot Features: Lightweight & Supportive Walking Boot Comfy with pre-softened padded ankle cuffs and padded tongue. Quality \'Spotex\' Waterproof & Breathable lining Italian-made boot. Great value for money and a tried and tested classic Leather Boots: Grisport use the finest selection of leathers and the Peaklander boot is no exception, its leather upper comes pre-waxed for added protection. Waterproof and Breathable Membrane Lining: The Peaklander boots benefit from GriSports branded \'Spotex\' waterproof and breathable membrane with taped seams, this lines the boot ensuring your feet stay dry, whilst still allowing them and the leather to breath. Thus ensuring your feet stay comfortable and dry.|Peaklander Boots|69.99|1',5514),(143,1,'beaver uniform trousers|Enabled|None|Beaver uniform trousers|Beaver uniform Navy Blue Trousers|Beaver Trousers|17.5|1',5492),(144,1,'cub trousers|Enabled|None|Cub Uniform trousers/pants|Cub uniform trousers|Cub trousers|17.5|1',5493),(145,1,'rainbow hoodie|Enabled|None|rainbow uniform hooded sweat top|rainbow hoodie|rainbow hoodie|16.99|1',5494),(146,1,'rainbow polo shirt|Enabled|None|Rainbow tee shirt polo shirt|rainbow polo tee shirt Only Large size available until 01 December.|rainbow tee polo shirt|9.5|1',5495),(147,1,'rainbow pants|Enabled|None|rainbow jog pants rainbow trousers|rainbow pants|rainbow pants|11.5|1',5496),(148,1,'scout shirt|Enabled|None|scout uniform shirt scout shirt|scout shirt|scout shirt|17.5|1',5497),(149,1,'long sleeve thermal tee shirts|Enabled|Taxable Goods|Long sleeve thermal tee shirts|long sleeve thermal tshirts avaiable in blue/grey and white|long sleeve thermal t shirt|6.5|1',5498),(150,1,'craghoppers winter lined kiwi walking trousers|Enabled|Taxable Goods|Craghoppers Winter Lined Kiwi Walking Trousers|Make room for Winter-Lined Kiwis this season. Our winter walking trousers have all the durability and comfort of our best-selling classic Kiwi Trousers, but with a snug fleecy lining for added warmth. Featuring a reliably weather-resistant finish and with eight useful pockets, they\'re great winter hiking trousers. SolarDry polyester cotton with brushed polyester lining Weight: 600g Fit: Original Classic walking trousers with brushed lining 8 pockets including 4 zipped security pockets and map-sized cargo pocket Double seat and knee Part-elasticated waist with belt Mobile phone holder Lifetime guarantee|Craghoppers Lined Trousers|27.5|1',5499),(151,1,'13/14 army pants|Enabled|Taxable Goods|Boys/Girls camouflague DPM army style trousers ages 13/14|Remain unseen by your enemies with these great kids woodland camouflage trousers. And with 6 pockets, there’s plenty of room to carry your essential kit. Available in age 13/14|13/14 Army pants|14.99|1',5500),(152,1,'Castle hoodie|Enabled|Taxable Goods|Fleece lined hooded shirt by castle|100 percent acrylic fabric Polyester Fleece Lining Zip Front Closure Two Breast pockets Angled Pockets Drawstring Hood Available in Medium, Large, Xlarge, XXlarge,XXXlarge Choice of three colours Blue, red, green. PLEASE ADVISE 1st and 2nd Colour Choice, in your PAYPAL Notes Section|Castle Hooded Penarth|21.99|1',5501),(154,1,'army wallet|Enabled|Taxable Goods|Army camouflague military wallet DPM|DPM Wallet Complete with chain for security Heavy duty Nylon Zip compartment Pockets for cards Choice of Camo or Black|Camo wallet|5|1',5502),(155,1,'regatta waterproof fleece|Enabled|Taxable Goods|Regatta Waterproof Tectonic Fleece Jacket|When the hard chill sets in don the comfortable, waterproof and breathable Tectonic II, the ideal choice for practical adventure wear. 250 series anti-pill Symmetry fleece Durable water repellent finish Waterproof and breathable Isotex 5000 membrane drop liner Taped seams Adjustable neck cinch 2 zipped lower pockets and inner map pocket Adjustable shockcord hem Sizes: S-XXXL Available in BLACK or Navy Blue|Tectonic mens fleece|34.95|1',5503),(156,1,'Ladies Waterproof Fleece|Enabled|Taxable Goods|Ladies Regatta Waterproof Fleece Tectonic|Capture the look with this waterproof and breathable symmetry fleece, creating a fashion statement for any adventure. 250 series anti-pill Symmetry fleece Durable water repellent finish Waterproof and breathable Isotex 5000 membrane drop liner Taped seams Adjustable neck cinch 2 zipped lower pockets and inner map pocket Adjustable shockcord hem Available in Black Or Hot Choclate|Ladies Tectonic Fleece|34.95|1',5504),(157,1,'steelchukka|Enabled|None|Leather Safety Boots with Steel Midsole|Black Grain Leather Safety Toe Cap Steel midsole Antistatic sole|Steel chukka|17.5|1',5505),(158,1,'1000 mile fusion walking socks|Enabled|Taxable Goods|1000 Mile fusion walking sock|New from 1000 Mile the Fusion walking sock is a revoloution in sock design. Achilles Tendon protection: full length padded protection for the Achilles Tendon - the first sock to offer you this. Arch bracing: for additional support. Padded comfort zones: padding on the toe, heel and ball area of the foot for extra comfort and protection. Double layer construction: eliminates friction between foot and shoe, reducing wear and preventing blisters. Tactel® inner layer: wicks away perspiration o keep feet dry and cool. CONTENT: Outer layer: 40% Merino Wool, 29% Nylon, 23% Polyester, 6% Cotton and 2% Lycra. Inner Layer: 100% Tactel®|1000 mile fusion|14.5|1',5506),(137,1,'brownie short sleeve t shirt|Enabled|None|brownie short sleeve t shirt|Brownie t shirt short sleeve|Brownie t shirt|7|1',5487),(138,1,'brownie hoodied top|Enabled|None|Brownie hoodie sweatshirt zip front|Brownie hoodied sweatshirt Warm fleecy lining|Brownie hoodie|18.99|1',5488),(126,1,'Sleeping Mat karrimatt bedroll rollmat|Enabled|Taxable Goods|Sleeping Mat karrimatt bedroll rollmat|Ideal for Spring, Summer and Autumn camping. Good functional performance from selected grades of polyolefin foam sourced only from quality manufacturers. Individually tested & fully guaranteed. Available In Green Or Blue|Sleeping Mat Made in wales Good performer|4.99|1',5477),(127,1,'Gelert Wilderness 65 Litre rucksack for DOE awards|Enabled|Taxable Goods|Gelert Wilderness 65 Litre rucksack for DOE awards|Cool Air Design for cool back comfort Padded adjustable waist belt with additional lumbar support Zipped hood pocket Front map pocket with waterproof zip Pull forward hip belt adjustment Adjustable chest strap 2 expandable bellows side pockets Walking pole holders Hydration compatible Built in high visibility rain cover for increased visibility Internal bivy divider Adjustable VTS back system|Gelert Wilderness 65 Litre rucksack for DOE awards|39.99|1',5478),(114,1,'Nikwax Footwear Cleaning Gel|Enabled|Taxable Goods|Nikwax Footwear Cleaning Gel|Cleans all types of leisure, lifestyle and sports shoes and boots. Revitalising cleaner for all footwear Benefits of using this product * Removes dirt and helps to release stains * Improves the appearance of dirty footwear * Prepares the footwear for proofing with an appropriate footwear product * Prolongs the life and performance of all types of footwear * Maintains breathability * Ideal for footwear with breathable linings e.g. Gore-Tex * Easy to apply * WaterBased - environmentally friendly, biodegradable, non flammable, non hazardous * Does not contain fluorocarbons|Cleans all types of leisure, lifestyle and sports shoes and boots. Revitalising cleaner for all footwear Benefits of using this product * Removes dirt and helps to release stains * Improves the appearance of dirty footwear * Prepares the footwear for proofing with an appropriate footwear product * Prolongs the life and performance of all types of footwear * Maintains breathability * Ideal for footwear with breathable linings e.g. Gore-Tex * Easy to apply * WaterBased - environmentally friendly, biodegradable, non flammable, non hazardous * Does not contain fluorocarbons|3.99|1',5469),(159,1,'1000 mile socks|Enabled|Taxable Goods|1000 mile ladies fusion walking socks|New from 1000 Mile the Fusion walking sock is a revoloution in sock design. Achilles Tendon protection: full length padded protection for the Achilles Tendon - the first sock to offer you this. Arch bracing: for additional support. Padded comfort zones: padding on the toe, heel and ball area of the foot for extra comfort and protection. Double layer construction: eliminates friction between foot and shoe, reducing wear and preventing blisters. Tactel® inner layer: wicks away perspiration o keep feet dry and cool. CONTENT: Outer layer: 40% Merino Wool, 29% Nylon, 23% Polyester, 6% Cotton and 2% Lycra. Inner Layer: 100% Tactel®|1000 mile ladies fusion|14.5|1',5507),(139,1,'brownie trousers|Enabled|None|brownie trousers|brownie trousers adjustable waist|brownie trousers|12.5|1',5489),(140,1,'brownie leggings|Enabled|None|brownie leggings|brownie leggings|brownie leggings|9|1',5490),(141,1,'brownie long sleeve tee shirt|Enabled|None|brownie long sleeve tee shirt top|brownie long sleeve tee shirt to|brownie long sleeve tee|10.5|1',5491),(136,1,'Beaver purple trim polo shirt|Enabled|None|Beaver Purple trimmed polo shirt|Beaver Polo Shirt Purple trim|Beaver purple trim polo shirt|10|1',5486),(131,1,'kids-army-kit-camouflague-tshirt-soldier95-trousers-armyhat|Enabled|None|Kids Army Outfit, camosuit ,Tee Shirt -trousers and cap.|Kids Army Style Outfit Camouflague T Shirt Ripstop Baseball Hat (one size adjustale) Soldier \"95\" style Trousers PLEASE NOTE !! THE TEE SHIRTS ARE SMALL TO SIZE, WE SUGGEST PURCHASING ONE SIZE BIGGER.|Kids camo outfit|21.48|1',5481),(132,1,'ice and snow grippers|Enabled|Taxable Goods|ice and snow grippers|Product Features Made from thermoplastic rubber Stays flexible to -40° Tough & Durable Non-slip metal studs offer excellent traction Size fits shoes/boots from UK 3-6 or 7 to 11|Ice grippers|8.99|1',5482),(133,1,'cub-scout-uniform-sweatshirt|Enabled|None|cub scout sweatshirt dark green|Official Scout Association Sweatshirt Available from size 28 to 34 inch|Cub Sweatshirt|13.99|1',5483),(134,1,'cub-polo-shirt|Enabled|None|Cub Scout polo shirt|Cub Polo Shirt|Cub polo shirt|11|1',5484),(135,1,'beaver sweatshirt|Enabled|None|Beaver Sweatshirt with purple trim|Beaver Scout Sweatshirt Purple trim|Beaver Sweatshirt|11.99|1',5485),(130,1,'Commando lightweight army style stove|Enabled|Taxable Goods|Commando Compact Stove fits in webbing|...the premier bushcraft & sustainable living internet retailer... * Home * Places * Friends * Shop For Items * Search * Shopping basket * Contact form Detailed item view Products » Cooking & Eating » Commando Compact Stove Commando Compact Stove Strong high quality aluminium alloy and stainless steel Lightweight and compact High level weight bearing Ultra compact folding cooker Adjustable gas flow High efficiency flame (3000W) Compatible with many gas bottles - ISO Screw Thread (EN417) Comes with plastic storage / carry box Size: 11 x 5 x 5 cm (boxed) Weight: 90 grams|Commando lightweight army style stove|10.99|1',5480),(128,1,'Highlander Zing 20 Litre Rucksacksdaysacks|Enabled|Taxable Goods|Highlander Zing 20 Litre Rucksacksdaysacks|Highlander Daysack 20L 20L Rucksack Large Main Compartment Zipped Front Pocket Tough and Durable XTP 600 polyester fabric Adjustable and Padded Straps Grab Handle Available in many colours Ideal basic daysack for days out and college. Adjustable shoulder straps for a great fit. Large main compartent and a handy zipped pocket in the front. Great daysack for great price.|Highlander Zing 20 Litre Rucksacksdaysacks|5.99|1',5479),(122,1,'Festival Army Style Hexy Stove Lightweight.|Enabled|Taxable Goods|Festival Army Style Hexy Stove Lightweight.|Lightweight, strong and compact cooker supplied with Hexamine Tablets. .Perfect for festivals, backpacking and wild camping. Hexi solid fuel tablets burn without odour and ignite easily with a match - 4 fuel tablets will bring to the boil 2.5 cups of water in approximately 5 minutes. Features: Strong durable plated steel construction Lightweight and compact Includes fuel tablets Specification: Size: 12cm x 10cm x 3cm Weight: 320g Great Festival Kit Lightweight Ideal for emergencies As Supplied to British Army Compact to stow away in any small pouch|Festival Army Style Hexy Stove Lightweight.|3.99|1',5474),(123,1,'Hexi Stove Refills for camping&festivals|Enabled|Taxable Goods|Hexi Stove Refills for camping&festivals|Hexi Stove Refills for camping&festivals Contains 8 Tablets|Hexi Stove Refills for camping&festivals|2.25|1',5475),(125,1,'Craghoppers Lightweight robust walking pole with anti shock abso|Enabled|Taxable Goods|Craghoppers Lightweight robust walking pole with anti shock absorber|Craghoppers Lightweight robust walking pole with anti shock absorber Fully adjustable. Spring into action on the rockiest roads with this high-performance anti-shock walking pole. Amazingly light, yet superbly strong, it takes the strain out of any hilly trek. The fabulous cork grip handle means it won’t chafe your palm and the padded, adjustable strap enables you to comfortably secure it when scrambling up the fells. Perfect for walking in mountain terrain,or low level walking too.|Craghoppers Lightweight robust walking pole with anti shock absorber|12.5|1',5476),(118,1,'Horizon 65 Litre|Enabled|Taxable Goods|Gelert Horizon 65L Rucksac ideal for the Duke of Edinburgh Awards|Horizon 65L Rucksac Performance bags which are loaded with technical features, perfectly suited for the first time backpacker. Their adjustable back systems make them exceptionally versatile. Horizon 65L Rucksac Adjustable padded cool air design for cool back comfort 2 zippered side pockets Padded adjustable waist belt with additional lumbar support Adjustable chest strap Zippered pocket on hood Walking pole holders Hydration compatible Volume: 65 litre Material: P600D Polyester/P600D honeycomb Polyester Ripstop Size: W 31 x D 22 x H 87cm Weight: 2.35Kg Colours: Olive/Black/Grey - Deep Blue/Black/Grey|Horizon 65L Rucksac|45|1',5470),(121,1,'Emergency Ponchos|Enabled|Taxable Goods|Festival Emergency Waterproof Ponchos|Lightweight Emergency Ponchos Compact Waterproof Lightweight Basic reusable Bright or Dark Colours.|Festival Emergency Waterproof Ponchos|2.5|1',5473),(120,1,'Pack of 12 Steel Tent Pegs|Enabled|Taxable Goods|Pack of 12 Tent Pegs for Camping and Festivals|Pack of 12 Steel Tent Pegs Ideal for spares when you loose them.|Pack of 12 Steel Tent pegs|1.5|1',5472),(119,1,'Gelert Folding Compact Double Burner and Grill|Enabled|None|Gelert Compact Double Burner and Grill includes regulator and Hose.|2 x 15KW high performance stainless Steel burners 1 x 1.5KW centre grill Piezo quick ignition function Large surface cooking area Portable folding design for easy transportation Grill pan tray included Includes Regulator And Hose. Detailed instruction & maintenance manual included Weight: 4.7Kg Pack Size: 56 x 29 x 7cm Colour: Black|Gelert Folding Compact Double Burner and Grill|34.99|1',5471),(110,1,'Aversa 20 litre Rucsacks|Enabled|Taxable Goods|Highlander Aversa20 Litre Daypack Rucksack|Aversa 20 litre day bag ideal for walking, rambling , or days out ! Colour: Blue/Grey, Green/Grey, Description * 2 front pockets, 2 side pockets * Internal organiser * Padded mesh backsystem Specifications Fabric/Materials: XTP600 weather resistant material Capacity: 20 Litre|Aversa 20 Litre Rucksacks Mesh padded back Lightweight|12.99|1',5468),(109,1,'Knitted Thinsulate Lined Peaked Hat|Enabled|Taxable Goods|Knitted Thinsulate Warm Lined Peaked Hat|Knitted Thinsulate Warm Lined Peaked Hat Thinsulate Lined One size|Knitted Thinsulate Warm Lined Peaked Hat|3.99|1',5467),(106,1,'Military Style Black Beret|Enabled|Taxable Goods|Military Style Army Black Beret|Military Style Black Beret|Military Style Army Black Beret|4.99|1',5465),(108,1,'Kids Camouflage DPM Army T-Shirt|Enabled|None|Kids Camouflage DPM Army T-Shirt|Kids Camouflage T-Shirt Britsh DPM 100% Cotton Brushed Cotton Sizes 24 to 34 PLEASE NOTE WE SUGGEST THAT YOU BUY A SIZE BIGGER THAN NORMAL < AS THEY ARE SMALL TO SIZE .|Kids Camouflage DPM Army T-Shirt|6.5|1',5466),(102,1,'Proforce \"Forces\" daylite 10 litre Rucksack|Enabled|Taxable Goods|Proforce \"Forces\" daylite 10 litre Rucksack|Proforce \"Forces\" daylite 10 litre Rucksack 10 litre capacity Durable XTP900 PU fabric Zipped front pocket 10 guage self repair zips Drawstring opening Duraflex Plastic Accesories|Proforce \"Forces\" daylite military army 10 litre Rucksack|10.99|1',5463),(103,1,'Proforce 44 Litre Forces Rucksack|Enabled|Taxable Goods|Proforce 44 Litre Forces Rucksack In Camouflage or Olive Green|* Duraflex branded buckles and clips * 10 Gauge self repair zips * Shock cord top system * Draw cord snow closure, Chest and waist strap * Waterproof transit case, Lid Compartment * Accessory D-rings, Utility chain * Airmesh funnel back system, Padded waist system Specifications Fabric/Materials: XTP900 Capacity: 44 litre Side Pockets: 2x2 litre Weight: 1.45 kg|Proforce 44 Litre Army Military Forces camouflage DPM or olive Rucksack|39.99|1',5464),(100,1,'Silver dogtags|Enabled|Taxable Goods|Dog Tags|Silver Dog Tags|Silver army military style Dog Tags|1.5|1',5461),(101,1,'Highlander 20 Litre Dublin Daysack|Enabled|Taxable Goods|Highlander 20 Litre Dublin Daysack|Highlander 20 Litre Dublin Daysack 20 litre capacity XTP 600 D fabric Tough and durable waterproof coating. Wide mouth zip pocket Two side mesh pockets (Ideal for carrying a drink) Padeed back system Available in Blue or Red|Highlander 20 Litre Dublin rambling -hiking-Daysack|7.99|1',5462),(91,1,'5 Colour Camo Cream|Enabled|Taxable Goods|5 Colour Army military Camo Cream|5 Colour Camo Cream|5 Colour Army Military Camo Cream|3.5|1',5455),(92,1,'Kids Dunlop Wellingtons|Enabled|None|Childrens & Ladies Dunlop Wellingtons|Childrens Dunlop Wellingtons Waterproof Available in Black or Green Sizes 10 to 7|Kids and Ladies Waterproof Dunlop Wellingtons|9.5|1',5456),(93,1,'Mens Seaboot Socks for wellingtons|Enabled|Taxable Goods|MensWarm Seaboot Socks for wellingtons|Mens Seaboot Socks for wellingtons Perfect for warming up your wellingtons 40% wool 27%Viscose 27% polypropylene6 % Mixed fibres Colours are assorted Will send them randomly. Available in 8-9.5&10 -11.5.|MensWarm wool mix Seaboot Socks for wellingtons|6.99|1',5457),(95,1,'Sunncamp Heritage Super king size Sleeping Bag|Enabled|Taxable Goods|Sunncamp Heritage Family Caravan Super king size Sleeping Bag|Super king size Sleeping bag Approx. 203x 92 cms. Poly/cotton inner and outer 2.7kgs Extreme temperature - 7 degrees Zip 2 together to form double bag.|Sunncamp Heritage Family Caravan Super king size Sleeping Bag|29.99|1',5458),(97,1,'Voyager Lite 3 Season Sleeping Bag|Enabled|Taxable Goods|Voyager Lite 3 Season Sleeping Bag|Voyager Lite 3 Season Sleeping Bag Only available in Black And Mocha Weight 1500 grams * Our warmest Voyager bag * Mummy style hood for greater heat retention * Good warmth to weight ratio at an affordable price * Zip baffles to protect from wind and drafts * Hexagonal rip stop outer stops snags spreading Specifications Item Dimension: 225x70x50cm Pack Size: 33x21x21cm Extreme Temp: -5°c Fabric/Materials: 250gsm 7 hole siliconised hollow fibre fill Inner: Breathable polyester Outer: Rip-stop polyester Comfort Range (Season): 10°c to -2°c (3) Weight: 1.5 kg|Voyager Lite 3 Season Lightweight Sleeping Bag|34.99|1',5459),(98,1,'Snugpak 3 Season Sleeperlite Sleeping Bag|Enabled|Taxable Goods|Snugpak 3 Season Sleeperlite Sleeping Bag|Description Robust sleeping bag, an ideal introduction to Snugpaks performance range. Provides plenty of warmth in a realistic pack size. Highly siliconised synthetic fibres give a soft touch and prolonged lifespan compared to a traditional hollowfibre filled product. Used extensively by static troop divisions deep in hostile territory Features Colours available: Black Military Green Civilian Red and Grey Technical Information Zip Style: Left or Right Handed Shape: Mummy Temp Rating: Comfort: 0°c Temp Rating: Extreme: -7°c Weight: 1600g (inc. compression stuff sack) Packsize (Fully Compressed): 23x23cm (\'How to\' Guide) Packsize (Uncompressed) Length: 220cm Width (Chest): 150cm Width (Foot):|Snugpak 3 Season Sleeperlite Army Military Sleeping Bag.|35.99|1',5460),(88,1,'Ladies Craghoppers Warm lined Kiwi Walking Trousers|Enabled|Taxable Goods|Ladies Craghoppers Warm Lined Kiwi Walking Trousers|Give your hard-working legs a treat on cold winter days, in these luxuriously-lined Kiwi Trousers. The warm, fleecy inner isn\'t heavy or bulky, and because it\'s quick-drying you\'ll never feel soggy. The fit is still fantastic and the fabric still shrugs off showers and stains. Classic warm lined kiwi walking trousers Dry very quickly Available in colour Cocoa|Ladies Craghoppers Warm lined Kiwi Walking Trousers|27.5|1',5454),(87,1,'Craghoppers Ladies Warmlined Kiwi Stretch Trousers|Enabled|Taxable Goods|Craghoppers Ladies Warmlined Kiwi Stretch Trousers|Ladies warm lined stretch Kiwi walking trousers Your favourite outdoor trousers with stretch! These streamlined Kiwis move with you, for unrestricted movement and a flattering, lasting fit. The quick-drying fabric makes light work of muddy trails, and washes without a fuss at the end of the day. Oh, and they wouldn\'t make the Kiwi range without complete sun-protection. Colour available Black|Craghoppers Ladies Warmlined Kiwi Stretch Trousers|27.5|1',5453),(84,1,'Kids Camouflage Trousers Age 13/14|Enabled|Taxable Goods|Kids Camouflage Combat Army Military Trousers Age 13/14|Kids Camouflage Combat Trousers British DPM Ankle adjusters 2 Side pockets Poly/Cotton. Age 13/ 14 Years|Kids Camouflage Army Military Combat Trousers Age 13/14|14.99|1',5452),(83,1,'WROXHAM MENS WARM BODYWARMERS OLIVE|Enabled|Taxable Goods|WROXHAM MENS WARM BODYWARMERS|WROXHAM MENS WARM BODYWARMERS Wroxham Bodywarmer Olive * Poly/cotton * Nylon lined * Zip front with studded stormflap * Multi pocketed * Elasticated waist * Inside pocket * Mobile phone pocket|WROXHAM MENS Insulated WARM BODYWARMERS|15.99|1',5451),(81,1,'DPM COMBAT CAMOUFLAGE JACKET|Enabled|Taxable Goods|DPM Combat Military Army-style Camoflage Jacket|DPM COMBAT CAMOUFLAGUE JACKET WOODLAND CAMOUFLAGUE POLYESTER/COTTON PRE WASHED MULTIPOCKETED VELCRO ADJUSTABLE CUFFS DRAWCORD BOTTOM|DPM Combat Military Army-style Camoflage Jacket|24.99|1',5449),(82,1,'JACK PYKE HUNTERS WATERPROOF JACKET|Enabled|Taxable Goods|Jack Pyke Hunters Waterproof & Breathable Shooting and Hunting Camoflage Jacket|The Jack Pyke Hunter Jacket Waterproof - Breathable - Noiseless. We like this one, it offers great value and is an all round good product. These jackets relly do sell like hot cakes and are a great alternative to the Deerhunter range. Outer shell: 100% Polyester brushed tricot with laminated membrane. Lining: 100% Polyester brushed mesh & taffeta. Product Details: * Full length double opening zip * Concealed hood in pocket * 2 lower front bellow pockets with cartridge holders * 2 hand-warmer pockets * 1 internal chest pocket * Fold-down waterproof seat flap * Elasticated weather shrouds on wrist Available in plain Olive green and English Oak Pattern.|Jack Pyke Hunters Waterproof & Breathable Shooting and Hunting Camoflage Jacket|65.99|1',5450),(80,1,'SPARE WALKING POLE FEET|Enabled|Taxable Goods|RUBBER ENDS WALKING POLE FEET or ferrules for walking hiking rambling poles or sticks|SPARE WALKING POLE FEET REPLACEMENT RUBBER FEET FOR USE ON ROCKYGROUND PACK OF TWO|SPARE WALKING POLE FEET or ferrules for walking, rambling,hiking poles or sticks|1.5|1',5448),(78,1,'MILITARY HEADOVERS|Enabled|Taxable Goods|Military Army Warm Headover|Military Army Warm Headover 95% Cotton 5% Spandex Available in British DPM Camoflage and Army Olive Green Can be used as a neck-warmer, balaclava, etc.|Military Army Warm Headover|4.99|1',5446),(79,1,'SHEMAGH SCARF|Enabled|Taxable Goods|SHEMAGH Military Army SCARF|SHEMAGH SCARF 100 % COTTON Choose from Black/White or Red and White,Sand and Black or Olive and Black|SHEMAGH Military Army SCARF|7.5|1',5447),(77,1,'LARGE WEBBING BACKPACK|Enabled|Taxable Goods|LARGE WEBBINGMilitary Army style BACKPACK|LARGE WEBBING BACKPACK ADJUSTABLE STRAPS COTTON CANVAS AVAILABLE IN BLACK, KHAKI , OLIVE GREEN RAF BLUE|LARGE WEBBING Military Army Style BACKPACK|4.99|1',5445),(76,1,'ARMY KIT BGS|Enabled|Taxable Goods|ARMY Military Style KIT BAGS|ARMY KIT BAGS HEAVY DUTY COTTON CANVAS 12 \" DIAMETER EYELET AND CLIP CLOSURE|ARMY Military Style KIT BAGS|9.99|1',5444),(75,1,'M1 PLASTIC HELMET WITH RIPSTOP DPM COVER|Enabled|Taxable Goods|M1 Plastic Army Helmet with Rip-stop DPM Cover (Adult/Child)|M1 Plastic Army Helmet Rip-stop DPM Cover Fully Adjustable Suitable for Children and Adults Please Note: This is not a safety helmet.|M1 Plastic Army Helmet with Rip-stop DPM Cover|11.99|1',5443),(72,1,'6MM CARABINAS|Enabled|Taxable Goods|CARABINAS 6mm|CARINBINAS 6MM NOT SUITABLE FOR CLIMBING|6MM CARABINAS|1.99|1',5441),(74,1,'KIDS ASSAULT VEST|Enabled|None|Kids Army Military Style DPM Camouflage Assault Vest|KIDS ASSAULT VEST LIGHTWEIGHT MESH WITH ADJUSTABLE STRAPS ON SHOULDERS,FRONT & SIDES 9 POCKETS DPM 1000 DENIER WATERPROOF CODURA ONE SIZE FITS ALL. BRITSH DPM|Kids Army Military Style DPM Camouflage Assault vest|17.5|1',5442),(71,1,'HottiesINSTANT HANDWARMERS|Enabled|Taxable Goods|Hotties INSTANT HANDWARMERS 2 pairs|Hotties INSTANT HANDWARMERS A pair (one for each hand) SINGLE USE MINIMUM TEMPERATURE 40 DEGREES|Hotties INSTANT HANDWARMERS|1.5|1',5440),(63,1,'MENS & BOYS PARADE SHOES WITH TOE CAP|Enabled|Taxable Goods|Mens & Boys Parade Shoes|Mens & Boys Parade Shoes with Toe Cap Black Leather Uppers PVC Sole Leather lined ATC Parade Shoes Available in sizes 3 to 12|Mens & Boys Parade Shoes with Toe Cap|24.99|1',5434),(65,1,'LADIES 3 PACK WOOL THERMAL BOOT SOCKS|Enabled|Taxable Goods|LADIES 3 PACK WOOL THERMAL BOOT SOCKS|LADIES 3 PACK WOOL THERMAL BOOT SOCKS 48% WOOL WARMTH WITHOUT WEIGHT FIT SIZES 4 TO 7 ASSSORTED COLOURS|LADIES 3 PACK WOOL THERMAL BOOT SOCKS|4.99|1',5435),(66,1,'MENS 3 PACK WOOL THERMAL BOOT SOCKS|Enabled|Taxable Goods|MENS 3 PACK WOOL THERMAL BOOT SOCKS|MENS 3 PACK WOOL THERMAL BOOT SOCKS WARMTH WITHOUT WEIGHT 60% WOOL FIT SIZES 6 TO 11|MENS 3 PACK WOOL THERMAL BOOT SOCKS|4.99|1',5436),(67,1,'Mens wool knee length thermal walking socks|Enabled|Taxable Goods|Mens wool knee length thermal walking socks|MENS KNEE LENGTH WOOL BOOT SOCKS FULLY CUSHIONED LOOP PILE FOR MAXIMUM COMFORT AND WARMTH EXTRA DENSITY PROTECTION PADS SOFT GRIP TOES DESIGNED TO KEEP THE HEAT IN AND THE MOISTURE OUT 75% WOOL 25% NYLON FOR DURABILITY CHOICE OF 3COLOURS PLEASE STATE 2ND COLOUR CHOICE FITS SIZES 7 TO 11|Mens wool knee length thermal walking socks|6.99|1',5437),(68,1,'LADIES KNEE LENGTH WOOL SOCKS|Enabled|Taxable Goods|LADIES KNEE LENGTH Warm WOOL Rambling Hiking Walking SOCKS|LADIES KNEE LENGTH WOOL BOOT SOCKS FULLY CUSHIONED LOOP PILE FOR MAXIMUM COMFORT AND WARMTH EXTRA DENSITY PROTECTION PADS SOFT GRIP TOES DESIGNED TO KEEP THE HEAT IN AND THE MOISTURE OUT 75% WOOL 25% NYLON FOR DURABILITY CHOICE OF 3COLOURS PLEASE STATE 2ND COLOUR CHOICE FITS SIZES 4 TO 7|LADIES KNEE LENGTH Warm Rambling hiking walking WOOL SOCKS|6.99|1',5438),(70,1,'RECHARGEABLE HAND WARMERS|Enabled|Taxable Goods|RECHARGEABLE HAND WARMERS|RECHARGEABLE HAND WARMERS 2 REUSEABLE HANDWARMER GEL PDS DOES NOT NEED ELECTRICAL OR PRE HEATING GENERATES HEAT TO APPROXIMATELY 50 DEGREESFOR UP TO AN HOUR IDEAL FOR WALKS TREKS, CAMPING ETC. EASILY RECHARGED SIMPLY BOLI IN WATER UNTIL SOLID CRYSTALS TURN CLEAR.|RECHARGEABLE HAND WARMERS|5.99|1',5439),(43,1,'Bootcare kit|Enabled|Taxable Goods|Combat Military Army TA Cadet Boot Care Kit|Combat army cadet boot care kit Includes stash bag , made froim 1000 denier cordura includes spare laces, brushes, polish , polishing cloths.|Combat Military Army TA Cadet Boot Care Kit|7.99|1',5415),(44,1,'Ladies trekker|Enabled|Taxable Goods|Bridgedale Ladies Comfort Trekker Walking Socks|Womens fit ,all day comfort Merino wool/coolmax mixture low tension cuff designed for any season trekking, walking, and backpacking. designed for all day protection and superior next to skin comfort this style ensures a dry enviorment for comfort and healthy feet. fibre content 50 % coolmax 27 % merino wool 22 % nylon 1 % lycra Available in szes 3 to 4.5,5 to 6.5,7 to 8.5.|Ladies Comfort Trekker Bridgedale Walking Hiking Rambling Socks|12.99|1',5416),(62,1,'LADIES PARADE SHOE|Enabled|Taxable Goods|Ladies Parade Shoes|Ladies Parade Shoes Black Hi-shine Leather Uppers Leather 1/4 Lining and Sock PVC Sole Available in sizes 3, 4, 5, 6, 7.|Ladies Parade Shoes|29.99|1',5433),(61,1,'LONGJOHNS|Enabled|Taxable Goods|THERMAL LONGJOHNS|THERMAL LONGJOHNS 50% COTTN/50% POLYESTER BRUSHED LINING FOR WARMTH AVAILABLE IN WHITE OR DENIM BLUE SIZES MEDIUM, LARGE, X LARGE.|THERMAL LONGJOHNS|5.5|1',5432),(60,1,'THERMAL T SHIRT|Enabled|Taxable Goods|Thermal Short Sleeve T-Shirt|THERMAL SHORT SLEEVE T SHIRT BRUSHED FABRIC 50% POLYESTER/ 50 % COTTON LIGHTWEIGHT AND WARM AVAILABLE IN WHITE OR DENIM BLUE SIZES MEDIUM, LARGE, XLARGE, AND XX LARGE.|THERMAL T SHIRT|5.5|1',5431),(57,1,'NIKWAX LEATHER|Enabled|Taxable Goods|NIKWAX WATERPROOFING WAX FOR LEATHER|NIKWAX WATERPROOFING WAX FOR LEATHER IDEAL FOR ALL LEATHER FOOTWEAR|NIKWAX WATERPROOFING WAX FOR LEATHER|3.99|1',5429),(58,1,'PENNINE SHORT|Enabled|Taxable Goods|PENNINE LOOP PILE LINED WALKING SOCKS|PENNINE LOOP PILE LINED WALKING SOCKS FULL CUSHIONED LOOP PILE LINED HIGH WARMTH AND COMFORT EXTRA DENSITY PROTECTION PADS SOFT GRIP TOE 75% WOOL ,25% NYLON REINFORCED AVAILABLE IN 3 COLOURS SIZS 4 TO 7 AND 7 TO 11.|PENNINE LOOP PILE LINED WALKING SOCKS|5.99|1',5430),(55,1,'NIKWAX FABRIC125|Enabled|Taxable Goods|NIKWAX FABRIC&LEATHER WATERPROOFING SPRAY|NIKWAX FABRIC&LEATHER WATERPROOFING SPRAY SPRAY ON WATERPROOFING FOR ALL FABRIC AND LEATHER COMBINATION FOOTWEAR|NIKWAX FABRIC&LEATHER WATERPROOFING SPRAY|4.5|1',5427),(56,1,'NUBUCK SPRAY|Enabled|Taxable Goods|NIKWAX NUBUCK&SUEDE PROOFING SPRAY|NIKWAX NUBUCK&SUEDE PROOFING SPRAY SPRAY ON WATERPROOFING FOR SUEDE AND NUBUCK FOOTWEAR.|NIKWAX NUBUCK&SUEDE PROOFING SPRAY|4.5|1',5428),(54,1,'TECH WASH 300|Enabled|Taxable Goods|NIKWAX TECH-WASH|WASH-IN CLEANER FOR WATERPROOF CLOTHING AND EQUIPMENT|NIKWAX TECH-WASH WASH - IN CLEANER|4.5|1',5426),(52,1,'Arran Pole|Enabled|Taxable Goods|Highlander Arran walking Poles|ARRAN WALKING POLE Description * Silver/green * Weight 370g *Maximum length 137cms * Minimum 68cms *Tip tungsten alloy *Pole Aluminimum 6061 * Handle T shape walking grip. * Features . Webbing hand loop with Duraflex buckle * Rubber foot * Grass basket|Arran walking pole|12.99|1',5424),(53,1,'TX Direct300|Enabled|Taxable Goods|NIKWAX WASH-IN TX DIRECT|Nikwax Wash -in waterproofing for wet weather clothing Put new life into that old waterproof!!|Nikwax TX Direct Wash -in Waterproofing|7.99|1',5425),(40,1,'Bungees|Enabled|Taxable Goods|Military Army Style Bungees|Military Style Army Bungees Olive Green|Military Bungees suitable for use with a basha|1|1',5412),(41,1,'tryfan|Enabled|Taxable Goods|Gelert Tryfan 3 Season Classic Sleeping Bag|3 season sleeping bag compression bag included Filling 300 gram double layer mono fibre/ polyester mix black/ochre weight 1.7 kgs size 230 x 80 x 50 (length, width on chest, width at feet) sleeps to minus 7 degrees centrigrade.|3 season gelert tryfan sleeping bag|19.99|1',5413),(51,1,'Islay poles|Enabled|Taxable Goods|Highlander Islay Walking Poles|ISLAY WALKING POLE SINGLE Description * Four section pole with anti-shock system * Ergonomic handle * Webbing wrist strap * Rubber Foot * Large and small basket Specifications Minimum Length: 55cm Maximum Length: 125cm Tip: Tungsten Alloy Fabric/Materials: Aluminium Weight: 0.36 kg|Islay walking poles|12.99|1',5423),(50,1,'1000 Mile All terrain|Enabled|Taxable Goods|1000 Mile All Terrain walking Socks|45% merino wool, 42% cotton, 12% nylon, 1% lycra. The 100% Tactel® inner layer stays with the foot, wicking away moisture, whilst the soft wool-cotton mix outer moves with the shoe. The unique combination of fibres maintains a comfortable temperature for the foot. * Arch bracing for additional support. * Flat toe seam for extra comfort. Sizes available Ladies Sizes 3 -5.5 and 6-8.5 (in Navy blue or purple) Gents Sizes 6to 8.5and 9to 11.5.(in navy blue or grey)|1000 Mile All terrain Walking socks|11.5|1',5422),(48,1,'Hooded mitts|Enabled|Taxable Goods|Thinsulate Shooter Mitts|Thinsulate Lined Shooter Hooded Mitts Fingerles mitts with the option to pull the hood over your fingers! Only avalable in BLACK, at the moment|Hooded Mitts|4.99|1',5420),(49,1,'Mens Comfort trekker|Enabled|Taxable Goods|Bridgedale Comfort Trekker Walking Socks|Comfort trekker Walking Socks Comfort: WoolFusion® of Merino/Coolmax®. Low tension cuff. Trekker: Designed for any-season, Hiking, Trekking and Backpacking. Designed for day-long protection and superior next-to-skin comfort, this style ensures a dry environment for comfortable and healthy feet. Fibre Content: 50% Coolmax®/polyester 27% Merino Wool 22% Nylon/polyamide 1% Lycra®/elastane Available in sizes 6 to 8.5, 9 to 11.5 Also in Navy blue|Bridgedale Comfort Trekker mens walking socks|12.99|1',5421),(45,1,'Commando socks|Enabled|Taxable Goods|Commando Army Cadet TA Military Socks|Army Cadet Socks Olive Green 65% Wool, 35 % Nylon Size 6- 11|Commando Army Cadet TA Military Work Socks|5.99|1',5417),(46,1,'Thinsulate Hat|Enabled|Taxable Goods|Thinsulate Beanie Watch Hat|100 % acyrlic Thinsulate lined Available in Black Navy Grey One Size|Thinsulate Beanie Watch hat|2.99|1',5418),(47,1,'Chunky Thin Hat|Enabled|Taxable Goods|Chunky Thinsulate Ski/Beanie Warm Knitted Hats|100 % Acrylic Thinsulate lined Ideal For those cold winter days Available in Navy Black|Chunky Thinsulate Knitted Warm Ski/Beanie Hats|4.99|1',5419),(42,1,'ranger s/bag|Enabled|Taxable Goods|Proforce 3 Season Ranger Cadet TA Fishing Military Sleeping Bags|The warmest Ranger 3 season sleeping bag mummy style hood for greater protection zip baffles to protect from wind and drafts hexagonal rip stop outer stops snags spreading low of - 5 degrees. olive green|Proforce 3 Season Ranger Cadet TA Fishing Military Sleeping Bags|35.99|1',5414),(33,1,'Castle 95 trs|Enabled|Taxable Goods|Soldier 95 Army Combat Trousers|DPM Soldier 95 Combat Trousers Poly /Cotton 5 pockets zip fly belt loops internal draw-string waist tie bottoms leg 32.5 ins|DPM Soldier 95 Combat Trousers|12.99|1',5405),(34,1,'kfs|Enabled|Taxable Goods|Cadet KFS|Combat cadet knife, for &spoon set (KFS)|KFS|1.99|1',5406),(35,1,'Camo bottle kombat|Enabled|Taxable Goods|DPM (Camouflague) Water Bottle & Cup|100 % Cotton ripstop. 1000 denier cordura cover. waterpurification tablet pocket US military issue.|Camouflague Water Bottle|7.5|1',5407),(36,1,'Open face balacavas|Enabled|Taxable Goods|Open face balaclavas|100 % Acrlyic Double layers|Open face balacavas|3|1',5408),(37,1,'SAS Bala|Enabled|Taxable Goods|3 hole warm miitary army SAS style balaclavas|100 % Acrylic double layer construction Black or Olive Green|3 hole warm miitary army SAS style balaclavas|3|1',5409),(38,1,'SAS bush|Enabled|Taxable Goods|Britsh Special Forces Army Hat DPM Bush Hat.|Britsh Special Forces Hats Britsh DPM small tailored brim adjustable retaining chin strap easily folded into a pocket sizes 57,58,59,60,61.|Special Forces Army DPM Hat|5.99|1',5410),(39,1,'paracord|Enabled|Taxable Goods|Para Cord suitable for use with a basha|Para Cord 3mm x 15 metres. olive green|Para Cord for use with cadets and TA and a Bashas|2.5|1',5411),(32,1,'Camo W/proof overtrs.|Enabled|Taxable Goods|Camoufllague DPM Waterproof Flexible &Breathable Overtrousers|>Camouflague Waterproof & Breathable Overtrousers >Fortex 5000 breathable fabric >3 layer construction >Zipped Hand Pockets > Ankle Adjusters. SIZE MEDIUM TEMPORARILY OUT OF STOCK|Camoufllague DPM Waterproof Flexible &Breathable Overtrousers|22.5|1',5404),(31,1,'Camo waterproof Jkt|Enabled|Taxable Goods|Camouflague DPM Flexible Waterproof & Breathable Jackets|Camouflague Waterproof & Breathable Jacket Fortex Breathable Fabric Three layer construction Velcro twin storm flap covered zip Cuff & waist adjusters Trousers to match KINDLY NOTE SIZE 3XL DUE IN EARLY MARCH !!!|Camouflague DPM Flexible Waterproof & Breathable Jackets|37.5|1',5403),(29,1,'PLCE|Enabled|Taxable Goods|Full PLCE Army cadet TA military Webbing System|Full PLCE Webbing System Britsh DPM 2 x double ammo pouches 2 x utility pouches 1 x standard yoke 1 x PLCE belt.|Full PLCE Army cadet TA military Webbing System|59.99|1',5402),(12,1,'Camo T-Shirt|Enabled|Taxable Goods|Camouflage DPM Military Army T-Shirt|Camouflage British DPM T-Shirt 100% Cotton|Camoulage T-Shirt Military Style British DPM|6.99|1',5387),(13,1,'Olive T-Shirt|Enabled|Taxable Goods|Olive Green Army Cadet T-Shirt|Olive T-Shirt 100& Cotton Ideal to wear under 95 Pattern Shirts TA and cadet suitable|Olive Green Army Cadet T-Shirt|4.99|1',5388),(11,1,'Army ponchos|Enabled|Taxable Goods|Army Style Hooded Military Army waterproof Ponchos.|US Style Waterproof ponchos . Waterproof ripstop Nylon 6 Brass eyelets and pressstuds down both sides. Drawcord hood Weighs only 350 grams|Army Style Military Waterproof Hooded Ponchos|18.99|1',5386),(10,1,'Cadet Assault Boot|Enabled|Taxable Goods|Cadet Army Assault Miltiary TA Security Boots|Modelled after the British Forces issue assault boot and ever popular with the cadets and the TA.|Assault, TA,Cadet Security Boots Modelled after the British Forces issue assault boot, and ever popular with the cadets and the TA.|49.99|1',5385),(8,1,'forces25camo|Olive|Enabled|Taxable Goods|Proforce 25 Litre Military Lightweight Rucksack for Cadets/TA-|Proforce 25 litre Rucksacks Airmesh funnel back Lid compartment 2 side pockets Waist strap Duraflex buckles and clips 10 guage self repair zips Shock cord topsystem XTP900 fabric for greater durablity|Proforce 25 litre Military Army Cadet Rucksack, suitable daybag for the TA|34.99|1',5384),(3,1,'Tryfan300DLBlack|Enabled|Taxable Goods|3 Season Gelert Tryfan Classic Sleeping Bag|Gelert Tryfan Classic Sleeping The ever popular Gelert classic range offers outstanding value, comfort & durability. * Ridge hood * Zip baffle * Shoulder baffle * Internal security pocket * Compression sac SPECIFICATIONS * Size: 230 x 80 x 50 cm * Size: Packed: 23 x 35 cm * Shell: 190T/70D Polyester * Lining: Poly-Cotton * Filling: 300g/m² Double Layer Polyester/Mono Fibre Mix Colour - Olive Green or Black. Weight - 1.7kg Comfort 0.3oC Extreme -16oC|3 Season Warm and Cosy Gelert Tryfan Classic Sleeping Bag|19.99|1',5381),(7,1,'Forces 25 litre camo|Enabled|Taxable Goods|Camo|Proforce 25 Litre Rucksack - Camo|Proforce 25 Litre rucksack in camouflague Airmesh tunnel back system Lid compartment 2 side pockets waist strap|Proforce 25 litreDPM camouflague Rucksack suitable for Cadeta and the TA|34.99|1',5383),(4,1,'35LCamo|Enabled|Taxable Goods|Proforce 33 litre Camoflage Rucksack suitable for cadets|Item Description * Capacity: 33L * Colour: DPM * Material: XTP900 * Size: Length: 45cm * Weight: 1.3 kg * Duraflex branded buckles and clips * 10 Gauge self repair zips * Shock cord top system * Draw cord snow closure, Chest and waist strap * Waterproof transit case, Lid Compartment * Accessory D-rings, Utility chain * Airmesh funnel back system * Side Pockets: 2x1.5 litre XTP is a specialist woven fabric that has been designed for rugged outdoor use, making it the ideal choice for rucksacks and day sacks. It is woven from polyester yarns and is specially textured to maximise strength and to prevent abrasion, tears and scuffs. XTP has a durable waterproof coating to maximise water repellency. Airmesh is a fabric specially developed for rucksacks and daysacks. It is padded with open cell foam to ensure maximum comfort in body contact areas. Airmesh is specially woven from high wicking fibres to ensure maximum air circulation and breathability. It is soft to the touch but highly durable. proforce 33 litre rucksacks tunnel mesh back systems lid pocket waist strap 2 side pockets duraflex buckles and clips shock cord system top XTP9oo fabric|Forces 33 proforce Rucksack suitable for cadets|39.99|1',5382);
/*!40000 ALTER TABLE `catalogsearch_fulltext` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogsearch_query`
--

DROP TABLE IF EXISTS `catalogsearch_query`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogsearch_query` (
  `query_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Query ID',
  `query_text` varchar(255) default NULL COMMENT 'Query text',
  `num_results` int(10) unsigned NOT NULL default '0' COMMENT 'Num results',
  `popularity` int(10) unsigned NOT NULL default '0' COMMENT 'Popularity',
  `redirect` varchar(255) default NULL COMMENT 'Redirect',
  `synonym_for` varchar(255) default NULL COMMENT 'Synonym for',
  `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID',
  `display_in_terms` smallint(6) NOT NULL default '1' COMMENT 'Display in terms',
  `is_active` smallint(6) default '1' COMMENT 'Active status',
  `is_processed` smallint(6) default '0' COMMENT 'Processed status',
  `updated_at` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP COMMENT 'Updated at',
  PRIMARY KEY  (`query_id`),
  KEY `IDX_CATALOGSEARCH_QUERY_QUERY_TEXT_STORE_ID_POPULARITY` (`query_text`,`store_id`,`popularity`),
  KEY `IDX_CATALOGSEARCH_QUERY_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CATALOGSEARCH_QUERY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=831 DEFAULT CHARSET=utf8 COMMENT='Catalog search query table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogsearch_query`
--

LOCK TABLES `catalogsearch_query` WRITE;
/*!40000 ALTER TABLE `catalogsearch_query` DISABLE KEYS */;
INSERT INTO `catalogsearch_query` VALUES (1,'boots',3,1710,NULL,NULL,1,1,1,1,'2012-04-25 10:14:42'),(2,'rucksacks',1,1011,NULL,NULL,1,1,1,1,'2012-04-23 09:15:10'),(3,'walking socks',11,5411,NULL,NULL,1,1,1,1,'2012-04-25 12:20:44'),(4,'camouflague',4,3820,NULL,NULL,1,1,1,1,'2012-04-25 10:33:18'),(5,'boots for kids',0,2,'','',1,1,1,0,'2010-12-01 03:32:31'),(6,'jackets',5,2142,NULL,NULL,1,1,1,1,'2012-04-25 13:38:46'),(7,'pea jackets',0,1,'','',1,1,1,0,'2010-12-01 11:31:14'),(8,'Shovel',0,4,'','',1,1,1,0,'2010-12-17 17:25:20'),(9,'foldind shovels',0,1,'','',1,1,1,0,'2010-12-02 11:12:08'),(10,'folding shovels',2,745,NULL,NULL,1,1,1,1,'2012-04-25 07:50:43'),(11,'shovels',0,4,NULL,NULL,1,1,1,0,'2012-02-13 14:28:54'),(12,'coat',3,680,NULL,NULL,1,1,1,1,'2012-04-24 23:39:38'),(13,'mens thermal',1,3717,NULL,NULL,1,1,1,1,'2012-04-25 12:56:30'),(14,'hard hats',0,1,'','',1,1,1,0,'2010-12-03 18:39:14'),(15,'socks',7,4510,NULL,NULL,1,1,1,1,'2012-04-25 04:45:18'),(16,'Pavement crampons',0,1,'','',1,1,1,0,'2010-12-05 13:43:21'),(17,'Crampons',0,1,'','',1,1,1,0,'2010-12-05 13:43:44'),(18,'german parka',0,2,'','',1,1,1,0,'2010-12-05 16:16:40'),(19,'parka',0,17,NULL,NULL,1,1,1,1,'2012-04-18 12:35:46'),(20,'gas mask',1,552,NULL,NULL,1,1,1,1,'2012-04-18 10:23:35'),(21,'M65',0,14,NULL,NULL,1,1,1,1,'2012-04-24 12:53:06'),(22,'balacalarva',0,1,'','',1,1,1,0,'2010-12-07 19:19:35'),(23,'hats',1,1336,NULL,NULL,1,1,1,1,'2012-04-25 19:00:48'),(24,'great coat',0,1,'','',1,1,1,0,'2010-12-09 16:41:27'),(25,'greatcoat',0,1,'','',1,1,1,0,'2010-12-09 16:41:32'),(26,'ushanka',0,1,'','',1,1,1,0,'2010-12-11 22:58:08'),(27,'raf jacket',0,1,'','',1,1,1,0,'2010-12-12 14:21:51'),(28,'jacket',8,1462,NULL,NULL,1,1,1,1,'2012-04-25 00:07:09'),(29,'parkas',0,5,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(30,'velcro tag',0,1,'','',1,1,1,0,'2010-12-13 16:39:23'),(31,'id tags',0,1,'','',1,1,1,0,'2010-12-13 16:39:38'),(32,'tags',1,491,NULL,NULL,1,1,1,1,'2012-04-22 15:23:43'),(33,'insignA',0,2,'','',1,1,1,0,'2010-12-13 16:42:49'),(34,'Hunting knives',0,1,'','',1,1,1,0,'2010-12-14 23:26:03'),(35,'grisport',4,770,NULL,NULL,1,1,1,1,'2012-04-25 09:06:11'),(36,'doctor martens',0,1,'','',1,1,1,0,'2010-12-15 15:53:59'),(37,'folding shovel',0,4,'','',1,1,1,0,'2011-07-14 15:17:19'),(38,'folding spade',0,1,'','',1,1,1,0,'2010-12-16 19:24:27'),(39,'camo hoodies',0,1,'','',1,1,1,0,'2010-12-17 07:12:25'),(40,'hoodies',0,1,'','',1,1,1,0,'2010-12-17 07:12:34'),(41,'sfu combat',0,1,'','',1,1,1,0,'2010-12-19 20:28:40'),(42,'sfu',0,1,'','',1,1,1,0,'2010-12-19 20:28:48'),(43,'ice grips',0,1,'','',1,1,1,0,'2010-12-20 16:38:12'),(44,'hat',12,397,NULL,NULL,1,1,0,1,'2012-04-24 08:23:43'),(45,'cossack',0,1,'','',1,1,1,0,'2010-12-20 16:52:33'),(46,'russian',0,1,'','',1,1,1,0,'2010-12-20 16:52:42'),(47,'no2 dress',0,1,'','',1,1,1,0,'2010-12-21 10:51:16'),(48,'no2 dressservice dress',0,1,'','',1,1,1,0,'2010-12-21 10:51:25'),(49,'service dress',0,1,'','',1,1,1,0,'2010-12-21 10:51:37'),(50,'waterproof jacket',31,5,NULL,NULL,1,1,0,0,'2012-04-07 11:44:24'),(51,'belt',2,2217,NULL,NULL,1,1,0,1,'2012-04-23 05:04:39'),(52,'canvas belt',0,1,'','',1,1,0,0,'2010-12-21 23:59:03'),(53,'highlander',0,1,'','',1,1,0,0,'2010-12-23 10:19:51'),(54,'walets',0,1,'','',1,1,1,0,'2010-12-23 15:17:16'),(55,'maglite torches',0,2,'','',1,1,1,0,'2010-12-23 17:52:17'),(56,'dog tags',0,1,'','',1,1,0,0,'2010-12-23 17:51:12'),(57,'beret',0,7,NULL,NULL,1,1,0,0,'2012-03-16 12:26:18'),(58,'webbing',2,1707,NULL,NULL,1,1,0,1,'2012-04-24 23:15:26'),(59,'shoes',5,122,NULL,NULL,1,1,0,1,'2012-04-20 18:30:43'),(60,'defence spray',0,2,'','',1,1,1,0,'2010-12-30 00:04:37'),(61,'spray',0,1,'','',1,1,0,0,'2010-12-30 00:03:57'),(62,'nbc',0,8,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(63,'gaiters',0,6,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(64,'night vision',0,1,'','',1,1,1,0,'2011-01-05 20:47:09'),(65,'gorilla box',0,1,'','',1,1,1,0,'2011-01-05 21:37:08'),(66,'box',0,1,'','',1,1,1,0,'2011-01-05 21:37:17'),(67,'air pistol',0,1,'','',1,1,1,0,'2011-01-07 17:44:28'),(68,'nbc suit',0,1,'','',1,1,1,0,'2011-01-13 17:17:00'),(69,'fishtail parkas',0,1,'','',1,1,1,0,'2011-01-13 17:57:16'),(70,'gas masks',0,3,NULL,NULL,1,1,1,0,'2011-10-28 10:13:26'),(71,'watch',0,1,'','',1,1,0,0,'2011-01-15 20:45:54'),(72,'alpha',0,2,NULL,NULL,1,1,1,1,'2012-04-25 10:01:52'),(73,'safety shoes',0,1,'','',1,1,1,0,'2011-01-17 12:58:05'),(74,'ladies',0,1,'','',1,1,0,0,'2011-01-17 12:58:54'),(75,'jacket liners',0,1,'','',1,1,1,0,'2011-01-18 22:11:07'),(76,'overalls',1,10,NULL,NULL,1,1,1,1,'2012-04-25 11:37:01'),(77,'tri fold shovel',0,1,'','',1,1,1,0,'2011-01-26 16:03:26'),(78,'scouts pants',0,1,'','',1,1,1,0,'2011-01-26 16:31:47'),(79,'scouts',0,4,'','',1,1,1,0,'2011-08-24 10:32:49'),(80,'smock',0,1,'','',1,1,1,0,'2011-01-26 20:09:17'),(81,'combat smock',0,1,'','',1,1,1,0,'2011-01-26 20:14:15'),(82,'mess tin',0,1,'','',1,1,0,0,'2011-01-26 20:17:21'),(83,'norweigan army shirt',0,1,'','',1,1,1,0,'2011-01-26 20:18:36'),(84,'army shirts',0,1,'','',1,1,0,0,'2011-01-26 20:20:22'),(85,'coats',0,7,NULL,NULL,1,1,1,1,'2012-04-24 07:38:10'),(86,'knife',0,5,NULL,NULL,1,1,0,0,'2012-03-16 12:26:18'),(87,'pilot shirts',0,1,'','',1,1,1,0,'2011-01-30 14:40:12'),(88,'white short sleeve shirts',0,1,'','',1,1,1,0,'2011-01-30 14:41:10'),(89,'naval uniform white short sleeve shirts',0,1,'','',1,1,1,0,'2011-01-30 14:41:34'),(90,'aviation',0,3,'','',1,1,1,0,'2011-01-30 21:11:27'),(91,'aviator',0,2,'','',1,1,1,0,'2011-01-30 21:10:54'),(92,'air force',0,1,'','',1,1,0,0,'2011-01-30 21:10:38'),(93,'trousers',0,2,NULL,NULL,1,1,0,0,'2011-12-01 12:11:21'),(94,'ammo',0,1,'','',1,1,0,0,'2011-01-31 14:35:46'),(95,'machete',0,1,'','',1,1,1,0,'2011-02-01 14:52:27'),(96,'shirt',17,7,NULL,NULL,1,1,0,0,'2012-04-07 11:44:24'),(97,'bungees',0,3,NULL,NULL,1,1,0,0,'2012-03-17 12:22:38'),(98,'matches',0,2,'','',1,1,1,0,'2011-02-01 22:34:24'),(99,'waterproof',27,534,NULL,NULL,1,1,0,1,'2012-04-21 07:08:50'),(100,'dr martens',0,1,'','',1,1,1,0,'2011-02-02 12:26:04'),(101,'haversack',0,1,'','',1,1,1,0,'2011-02-02 12:28:29'),(102,'vango',0,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(103,'lowa',0,2,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(104,'brownie uniform',0,2,'','',1,1,1,0,'2011-04-02 11:01:17'),(105,'trench coat',3,570,NULL,NULL,1,1,1,1,'2012-04-25 09:57:38'),(106,'kettle',0,5,'','',1,1,1,0,'2011-09-17 07:15:44'),(107,'tent',0,2,NULL,NULL,1,1,0,0,'2011-12-01 12:11:21'),(108,'compass',0,3,'','',1,1,1,0,'2011-09-21 15:16:26'),(109,'jerry',0,1,'','',1,1,1,0,'2011-02-10 13:59:17'),(110,'jerry can',10,2,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(111,'fuel',0,1,'','',1,1,1,0,'2011-02-10 13:59:28'),(112,'aversa colours',0,1,'','',1,1,1,0,'2011-02-12 11:50:15'),(113,'johnscliffe walking boots',0,1,'','',1,1,1,0,'2011-02-14 13:03:44'),(114,'beavers',0,5,NULL,NULL,1,1,1,0,'2012-01-25 11:57:16'),(115,'uniform',0,1,'','',1,1,1,0,'2011-02-14 15:42:37'),(116,'BEDS',0,2,'','',1,1,1,0,'2011-07-26 13:05:15'),(117,'CAMP BEDS',0,1,'','',1,1,1,0,'2011-02-14 17:05:25'),(118,'goggles',0,2,'','',1,1,1,0,'2011-03-04 22:27:47'),(119,'leeping bags',0,1,'','',1,1,0,0,'2011-02-16 12:47:38'),(120,'sleeping bags',10,1042,NULL,NULL,1,1,0,1,'2012-04-25 07:48:42'),(121,'paracord',1,323,NULL,NULL,1,1,0,1,'2012-04-22 13:44:33'),(122,'cubs',0,4,'','',1,1,1,0,'2011-05-25 12:18:22'),(123,'scrim net',0,2,'','',1,1,1,0,'2011-02-22 16:22:37'),(124,'scrim',0,4,NULL,NULL,1,1,1,0,'2011-10-05 08:54:40'),(125,'bivi',0,4,'','',1,1,1,0,'2011-09-06 13:11:31'),(126,'bivvi',0,3,'','',1,1,1,0,'2011-08-10 18:57:08'),(127,'desert boots',9,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(128,'bergen',0,4,NULL,NULL,1,1,1,0,'2011-12-01 12:07:37'),(129,'backpack',0,1,'','',1,1,0,0,'2011-02-25 09:26:20'),(130,'daysack',0,1,'','',1,1,0,0,'2011-02-25 09:26:27'),(131,'waistcoast',0,2,'','',1,1,1,0,'2011-02-26 13:51:41'),(132,'waistcoat',0,2,'','',1,1,1,0,'2011-02-26 13:51:37'),(133,'bulletproove',0,2,'','',1,1,1,0,'2011-02-26 13:51:36'),(134,'bulletproof',0,1,'','',1,1,1,0,'2011-02-26 13:50:23'),(135,'PLCE',0,1,'','',1,1,0,0,'2011-02-28 00:57:07'),(136,'thermal wellie socks',0,1,'','',1,1,1,0,'2011-02-28 19:12:57'),(137,'wellington boot socks',0,1,'','',1,1,0,0,'2011-02-28 19:16:23'),(138,'body warmers',0,1,'','',1,1,0,0,'2011-02-28 19:17:11'),(139,'thermal t shirts',0,1,'','',1,1,1,0,'2011-02-28 19:19:46'),(140,'uniforms',0,1,'','',1,1,1,0,'2011-02-28 21:43:04'),(141,'army issue 30 litre day pack',0,1,'','',1,1,1,0,'2011-03-03 21:43:20'),(142,'navy blue shirts',0,1,'','',1,1,1,0,'2011-03-04 08:56:39'),(143,'shirts',0,1,'','',1,1,0,0,'2011-03-04 08:59:57'),(144,'navy tunic',0,2,'','',1,1,1,0,'2011-03-04 15:47:51'),(145,'royal navy',0,2,'','',1,1,1,0,'2011-07-08 07:08:33'),(146,'Kids shirts',0,2,'','',1,1,1,0,'2011-03-05 14:10:01'),(147,'bivy bag',0,2,'','',1,1,1,0,'2011-03-06 15:51:18'),(148,'camping stove',0,2,'','',1,1,1,0,'2011-05-23 10:14:20'),(149,'stove',0,2,'','',1,1,1,0,'2011-05-23 10:14:41'),(150,'shorts',0,5,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(151,'girl guides',0,1,'','',1,1,1,0,'2011-03-07 21:33:15'),(152,'girl guides uniform',0,1,'','',1,1,1,0,'2011-03-07 21:33:28'),(153,'badge glue',0,1,'','',1,1,1,0,'2011-03-08 09:49:50'),(154,'head torch',0,1,'','',1,1,1,0,'2011-03-10 15:15:51'),(155,'torch',0,8,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(156,'torches',0,5,NULL,NULL,1,1,1,1,'2012-04-21 10:26:53'),(157,'raf',0,1,'','',1,1,0,0,'2011-03-11 11:13:58'),(158,'norwegian',0,1,'','',1,1,1,0,'2011-03-11 19:44:57'),(159,'fatigues',0,1,'','',1,1,1,0,'2011-03-11 21:48:13'),(160,'Guide Uniform',0,1,'','',1,1,1,0,'2011-03-12 12:45:36'),(161,'bags',2,170,NULL,NULL,1,1,0,1,'2012-04-25 08:00:33'),(162,'gtuns',0,1,'','',1,1,1,0,'2011-03-12 20:12:48'),(163,'guns',0,1,'','',1,1,1,0,'2011-03-12 20:13:02'),(164,'camping kitchen',0,1,'','',1,1,1,0,'2011-03-16 16:13:41'),(165,'sling',0,4,NULL,NULL,1,1,1,0,'2011-10-04 14:59:04'),(166,'holster',0,1,'','',1,1,1,0,'2011-03-16 20:17:08'),(167,'cups',0,3,'','',1,1,1,0,'2011-03-17 16:11:53'),(168,'mugs',0,1,'','',1,1,1,0,'2011-03-17 16:11:42'),(169,'pilot jacket',0,1,'','',1,1,1,0,'2011-03-18 17:05:49'),(170,'diffuse',0,1,'','',1,1,1,0,'2011-03-19 22:23:48'),(171,'bottle',0,1,'','',1,1,0,0,'2011-03-21 11:39:33'),(172,'vest',0,6,NULL,NULL,1,1,1,0,'2012-03-17 12:22:38'),(173,'tactical',0,1,'','',1,1,1,0,'2011-03-22 23:58:13'),(174,'gasmask',0,3,NULL,NULL,1,1,1,0,'2011-10-24 14:12:15'),(175,'bowl',0,1,'','',1,1,1,0,'2011-03-25 13:28:43'),(176,'tufflask',0,2,'','',1,1,1,0,'2011-03-26 16:27:47'),(177,'belts',1,631,NULL,NULL,1,1,0,1,'2012-04-25 06:17:57'),(178,'union jack flags',0,1,'','',1,1,1,0,'2011-03-28 07:20:28'),(179,'thermal shirt',0,1,'','',1,1,0,0,'2011-03-28 13:30:29'),(180,'food',0,3,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(181,'ration',1,1803,NULL,NULL,1,1,0,1,'2012-04-23 18:48:08'),(182,'pistol belt',0,2,NULL,NULL,1,1,0,0,'2011-12-01 12:07:37'),(183,'j',0,1,'','',1,1,0,0,'2011-04-01 08:53:44'),(184,'t',0,1,'','',1,1,0,0,'2011-04-01 08:54:06'),(185,'camping cookings',0,1,'','',1,1,1,0,'2011-04-01 09:14:49'),(186,'cookings',0,1,'','',1,1,1,0,'2011-04-01 09:15:02'),(187,'camping stoves',0,1,'','',1,1,1,0,'2011-04-01 09:16:03'),(188,'nirex',0,1,'','',1,1,1,0,'2011-04-02 09:01:17'),(189,'camo rucksacks',0,1,'','',1,1,0,0,'2011-04-02 11:21:00'),(190,'Kids t shirts',0,1,'','',1,1,1,0,'2011-04-03 15:16:54'),(191,'m65 jacket',0,4,'','',1,1,1,0,'2011-08-12 18:37:17'),(192,'boiler',0,2,'','',1,1,1,0,'2011-04-05 12:41:36'),(193,'black combat',0,1,'','',1,1,0,0,'2011-04-05 09:57:16'),(194,'security',0,1,'','',1,1,0,0,'2011-04-05 09:58:52'),(195,'parade shoes',0,4,NULL,NULL,1,1,0,0,'2011-12-01 12:07:37'),(196,'ponchos',2,572,NULL,NULL,1,1,0,1,'2012-04-23 13:11:39'),(197,'survial bag',0,1,'','',1,1,1,0,'2011-04-09 20:44:19'),(198,'no 2',0,1,'','',1,1,0,0,'2011-04-10 14:20:03'),(199,'army no 2 dress',0,2,'','',1,1,1,0,'2011-04-10 14:21:10'),(200,'top',0,1,'','',1,1,0,0,'2011-04-11 10:12:26'),(201,'stores',0,1,'','',1,1,1,0,'2011-04-13 09:53:45'),(202,'shop',0,1,'','',1,1,1,0,'2011-04-13 09:53:53'),(203,'home',0,1,'','',1,1,1,0,'2011-04-13 09:54:05'),(204,'grasshopper',0,1,'','',1,1,1,0,'2011-04-13 12:04:53'),(205,'pop out tent',0,1,'','',1,1,1,0,'2011-04-13 20:03:06'),(206,'sleeping chair',0,1,'','',1,1,1,0,'2011-04-13 20:03:24'),(207,'sleeping mat',0,1,'','',1,1,0,0,'2011-04-14 13:16:05'),(208,'dpm',2,2305,NULL,NULL,1,1,0,1,'2012-04-25 08:42:14'),(209,'bomber jacket',2,1315,NULL,NULL,1,1,1,1,'2012-04-25 09:12:04'),(210,'bomber',0,1,'','',1,1,1,0,'2011-04-14 16:40:07'),(211,'craghoppers',3,195,NULL,NULL,1,1,0,1,'2012-04-24 07:24:05'),(212,'maglite torch',0,1,'','',1,1,1,0,'2011-04-14 21:19:23'),(213,'mens socks',0,1,'','',1,1,0,0,'2011-04-16 18:09:45'),(214,'soldier 95',7,2,NULL,NULL,1,1,0,0,'2012-04-07 11:44:24'),(215,'craghopper',0,1,'','',1,1,0,0,'2011-04-17 05:56:49'),(216,'gas cartridges',0,1,'','',1,1,1,0,'2011-04-18 09:11:04'),(217,'tents',0,9,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(218,'kiwi stretch',4,3,NULL,NULL,1,1,0,1,'2012-04-19 15:22:39'),(219,'blanket',1,197,NULL,NULL,1,1,1,1,'2012-04-25 10:55:02'),(220,'picnic',0,2,'','',1,1,1,0,'2011-04-21 22:00:19'),(221,'rug',0,1,'','',1,1,0,0,'2011-04-21 21:59:56'),(222,'army commando',0,1,'','',1,1,0,0,'2011-04-22 05:25:28'),(223,'jerry cans',0,2,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(224,'craghoppers men',0,1,'','',1,1,0,0,'2011-04-24 03:56:24'),(225,'cookers',0,1,'','',1,1,1,0,'2011-04-26 14:00:54'),(226,'cooker',0,1,'','',1,1,1,0,'2011-04-26 14:01:06'),(227,'opening times',0,1,'','',1,1,1,0,'2011-04-26 17:45:31'),(228,'POSTAGE',0,1,'','',1,1,1,0,'2011-04-28 06:26:39'),(229,'jack pyke',8,1289,NULL,NULL,1,1,0,1,'2012-04-24 21:53:03'),(230,'buffalo shirts',0,1,'','',1,1,1,0,'2011-05-03 06:57:27'),(231,'camo 95',0,1,'','',1,1,0,0,'2011-05-03 17:43:15'),(232,'combat jacket',0,1,'','',1,1,0,0,'2011-05-03 17:43:42'),(233,'95 jacket',0,2,'','',1,1,1,0,'2011-05-03 17:47:25'),(234,'white colarless shirts',0,2,'','',1,1,1,0,'2011-05-04 16:21:31'),(235,'white shirts',0,1,'','',1,1,1,0,'2011-05-04 16:21:18'),(236,'navy jacket wool',0,1,'','',1,1,1,0,'2011-05-05 06:41:28'),(237,'water proof matches',0,2,'','',1,1,1,0,'2011-05-05 16:37:49'),(238,'rashon packs',0,1,'','',1,1,1,0,'2011-05-05 16:37:12'),(239,'wallet',0,1,'','',1,1,1,0,'2011-05-07 20:34:17'),(240,'GAZEBO',0,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(241,'stab vest',0,1,'','',1,1,0,0,'2011-05-09 15:59:56'),(242,'chairs',0,2,'','',1,1,1,0,'2011-07-21 13:24:42'),(243,'wool',0,1,'','',1,1,0,0,'2011-05-11 08:55:04'),(244,'map',9,2,NULL,NULL,1,1,0,0,'2012-04-07 11:44:24'),(245,'map holder',11,5,NULL,NULL,1,1,0,1,'2012-04-25 09:37:21'),(246,'camouflage',1,1232,NULL,NULL,1,1,0,1,'2012-04-24 21:58:58'),(247,'inner bag',0,1,'','',1,1,0,0,'2011-05-14 15:21:50'),(248,'gortex trousers',0,1,'','',1,1,1,0,'2011-05-14 17:12:57'),(249,'pullover',1,306,NULL,NULL,1,1,1,1,'2012-04-23 11:25:16'),(250,'Walking Boots',0,1,'','',1,1,0,0,'2011-05-15 12:42:47'),(251,'black army trousers',0,1,'','',1,1,0,0,'2011-05-15 21:19:14'),(252,'opening hours',0,1,'','',1,1,1,0,'2011-05-16 15:59:46'),(253,'wayfarer foods',0,2,'','',1,1,1,0,'2011-05-22 17:38:40'),(254,'camping foods',0,1,'','',1,1,1,0,'2011-05-22 17:38:16'),(255,'gritex',0,1,'','',1,1,1,0,'2011-05-25 00:31:47'),(256,'pop up tent',0,1,'','',1,1,1,0,'2011-05-25 13:07:48'),(257,'%%%%%%%',0,1,'','',1,1,0,0,'2011-05-25 18:38:27'),(258,'ration packs',7,2,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(259,'guides',0,4,NULL,NULL,1,1,1,0,'2012-02-07 09:42:05'),(260,'guide',0,1,'','',1,1,0,0,'2011-05-28 07:37:00'),(261,'ladies t shirts',0,2,'','',1,1,1,0,'2011-05-30 13:34:30'),(262,'slingshot',0,1,'','',1,1,1,0,'2011-06-01 11:14:30'),(263,'sling shot',0,1,'','',1,1,1,0,'2011-06-01 11:14:37'),(264,'coveralls',0,6,NULL,NULL,1,1,1,0,'2012-03-17 12:22:38'),(265,'tent poles',0,1,'','',1,1,1,0,'2011-06-01 19:14:21'),(266,'nap sack',0,1,'','',1,1,1,0,'2011-06-02 10:01:16'),(267,'65l rucksack',0,1,'','',1,1,0,0,'2011-06-02 14:29:07'),(268,'dry bag',0,1,'','',1,1,1,0,'2011-06-03 09:57:30'),(269,'P jackets',0,1,'','',1,1,0,0,'2011-06-05 09:37:53'),(270,'vapalux',0,1,'','',1,1,1,0,'2011-06-06 07:46:49'),(271,'scout',0,1,'','',1,1,1,0,'2011-06-06 08:42:54'),(272,'beaver uniform',0,1,'','',1,1,1,0,'2011-06-06 08:43:06'),(273,'handcuff',0,2,'','',1,1,1,0,'2011-06-07 10:12:34'),(274,'Jumpers',0,1,'','',1,1,1,0,'2011-06-08 10:16:51'),(275,'Mens Sweaters',0,1,'','',1,1,1,0,'2011-06-08 10:17:17'),(276,'suit',12,1990,NULL,NULL,1,1,0,1,'2012-04-25 07:43:49'),(277,'flight suit',0,1,'','',1,1,1,0,'2011-06-10 12:06:03'),(278,'jungle boots',0,2,'','',1,1,1,0,'2011-06-10 12:28:29'),(279,'surplus',0,1,'','',1,1,1,0,'2011-06-10 12:48:20'),(280,'cadets webbing',0,2,'','',1,1,1,0,'2011-06-11 19:15:23'),(281,'desrt',0,2,'','',1,1,1,0,'2011-06-13 06:20:48'),(282,'boiler suit',0,4,'','',1,1,1,0,'2011-09-06 09:01:33'),(283,'all in one',0,1,'','',1,1,0,0,'2011-06-13 12:36:41'),(284,'jumpsuit',0,2,'','',1,1,1,0,'2011-06-13 12:38:06'),(285,'Poncho',1,769,NULL,NULL,1,1,0,1,'2012-04-25 10:41:51'),(286,'sunncamp sleeping bags',0,1,'','',1,1,0,0,'2011-06-15 08:49:39'),(287,'waterproofs',0,2,'','',1,1,1,0,'2011-06-15 11:59:38'),(288,'airsoft guns',0,1,'','',1,1,1,0,'2011-06-15 14:14:01'),(289,'opening times]',0,2,'','',1,1,1,0,'2011-06-16 10:16:16'),(290,'Solar charger',0,1,'','',1,1,1,0,'2011-06-16 14:32:25'),(291,'work pants',0,2,'','',1,1,1,0,'2011-06-17 12:48:01'),(292,'boots 4',0,1,'','',1,1,0,0,'2011-06-17 20:03:05'),(293,'drinks bottle',0,1,'','',1,1,1,0,'2011-06-18 05:06:34'),(294,'plastic army helmet',0,1,'','',1,1,0,0,'2011-06-18 12:09:41'),(295,'wellingtons',2,471,NULL,NULL,1,1,0,1,'2012-04-25 00:05:43'),(296,'snugpak',0,1,'','',1,1,0,0,'2011-06-18 12:58:50'),(297,'norgie shirt',0,1,'','',1,1,1,0,'2011-06-18 16:49:53'),(298,'helmet',1,301,NULL,NULL,1,1,0,1,'2012-04-24 07:18:16'),(299,'gore-tex',0,1,'','',1,1,0,0,'2011-06-20 23:55:01'),(300,'saftey boots',0,1,'','',1,1,1,0,'2011-06-21 20:02:41'),(301,'dry bags',2,4,NULL,NULL,1,1,1,0,'2012-03-17 12:22:38'),(302,'bag',3,1712,NULL,NULL,1,1,0,1,'2012-04-25 08:07:27'),(303,'bashas',0,1,'','',1,1,0,0,'2011-06-22 20:04:38'),(304,'BUFFALO',0,4,NULL,NULL,1,1,1,0,'2011-12-29 13:59:03'),(305,'navy',1,1895,NULL,NULL,1,1,0,1,'2012-04-25 15:33:01'),(306,'TROUSER ELASTICS',0,2,'','',1,1,1,0,'2011-06-24 07:54:57'),(307,'aRMY TROUSER ELASTICS',0,1,'','',1,1,1,0,'2011-06-24 07:52:29'),(308,'basha',2,501,NULL,NULL,1,1,0,1,'2012-04-18 06:26:45'),(309,'bungee',0,1,'','',1,1,0,0,'2011-06-24 11:23:02'),(310,'bungee cord',0,1,'','',1,1,1,0,'2011-06-24 11:23:12'),(311,'100 lt rucksack',0,1,'','',1,1,1,0,'2011-06-27 11:38:21'),(312,'100 lt ruck',0,1,'','',1,1,1,0,'2011-06-27 11:38:31'),(313,'rucksack',0,1,'','',1,1,0,0,'2011-06-27 11:38:42'),(314,'flares',0,16,'','',1,1,1,0,'2011-06-28 14:06:18'),(315,'distress',0,1,'','',1,1,1,0,'2011-06-28 14:06:27'),(316,'gelert wilderness',0,1,'','',1,1,1,0,'2011-06-29 00:33:28'),(317,'daysacks',0,1,'','',1,1,1,0,'2011-06-29 20:04:25'),(318,'survival',0,1,'','',1,1,1,0,'2011-06-29 23:23:47'),(319,'hammock',0,5,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(320,'hammocks',0,3,'','',1,1,1,0,'2011-08-09 17:31:22'),(321,'kids sleeping bags',19,1933,NULL,NULL,1,1,1,1,'2012-04-25 08:58:23'),(322,'monkey boots',0,3,'','',1,1,1,0,'2011-07-02 12:12:28'),(323,'over alls',0,1,'','',1,1,1,0,'2011-07-02 15:52:41'),(324,'flight suits',0,1,'','',1,1,1,0,'2011-07-02 15:53:11'),(325,'jump suit',0,1,'','',1,1,1,0,'2011-07-02 15:53:17'),(326,'lamp',0,1,'','',1,1,1,0,'2011-07-02 20:47:53'),(327,'water carriers',0,1,'','',1,1,1,0,'2011-07-05 13:45:47'),(328,'gore tex',0,1,'','',1,1,0,0,'2011-07-06 10:33:10'),(329,'gore tex trousers',0,1,'','',1,1,1,0,'2011-07-06 10:33:30'),(330,'mens wellies',0,1,'','',1,1,1,0,'2011-07-06 11:01:15'),(331,'wellington boots',11,6,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(332,'tarp',0,1,'','',1,1,1,0,'2011-07-06 19:20:07'),(333,'net',1,761,NULL,NULL,1,1,0,1,'2012-04-18 16:49:34'),(334,'over trousers',0,1,'','',1,1,0,0,'2011-07-08 07:26:57'),(335,'snake belt',0,3,'','',1,1,1,0,'2011-07-08 15:15:28'),(336,'snake belts',0,2,'','',1,1,1,0,'2011-07-08 15:15:31'),(337,'pti belts',0,1,'','',1,1,1,0,'2011-07-08 15:15:23'),(338,'combat boots',4,2310,NULL,NULL,1,1,0,1,'2012-04-25 12:16:49'),(339,'m1 helmet',0,1,'','',1,1,0,0,'2011-07-14 07:57:44'),(340,'twisties',0,1,'','',1,1,1,0,'2011-07-14 08:44:11'),(341,'twists',0,3,NULL,NULL,1,1,1,1,'2012-04-20 09:37:21'),(342,'Green t shirts',0,1,'','',1,1,0,0,'2011-07-15 07:29:26'),(343,'Trouser twists',0,1,'','',1,1,1,0,'2011-07-15 07:30:54'),(344,'polo shirts',0,1,'','',1,1,1,0,'2011-07-16 11:21:22'),(345,'flask',0,2,NULL,NULL,1,1,1,0,'2011-12-17 13:50:14'),(346,'Knifes',0,2,NULL,NULL,1,1,1,0,'2011-12-19 12:05:15'),(347,'us parkas',0,1,'','',1,1,1,0,'2011-07-19 22:53:41'),(348,'netting',0,5,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(349,'shnogen',0,1,'','',1,1,1,0,'2011-07-20 13:57:30'),(350,'shoghen',0,1,'','',1,1,1,0,'2011-07-20 13:57:40'),(351,'shonegh',0,1,'','',1,1,1,0,'2011-07-20 13:57:48'),(352,'sho',0,1,'','',1,1,0,0,'2011-07-20 13:57:53'),(353,'shoe',0,2,NULL,NULL,1,1,0,0,'2011-12-01 12:07:37'),(354,'she',0,1,'','',1,1,0,0,'2011-07-20 13:58:02'),(355,'assault boot',0,1,'','',1,1,0,0,'2011-07-23 12:23:58'),(356,'nets',0,1,'','',1,1,1,0,'2011-07-24 15:23:59'),(357,'wash bag',0,1,'','',1,1,1,0,'2011-07-25 08:23:33'),(358,'100% waterproof folding bag',0,1,'','',1,1,1,0,'2011-07-25 08:24:02'),(359,'boiler suits',0,2,'','',1,1,1,0,'2011-07-25 17:14:40'),(360,'camelpack',0,1,'','',1,1,1,0,'2011-07-25 18:48:51'),(361,'sea cadets',0,1,'','',1,1,1,0,'2011-07-26 06:24:05'),(362,'travel kettles',0,1,'','',1,1,1,0,'2011-07-26 07:31:28'),(363,'Multi tool',0,1,'','',1,1,1,0,'2011-07-26 23:51:08'),(364,'bottle cooler',0,1,'','',1,1,1,0,'2011-07-27 11:06:58'),(365,'tent repair',0,1,'','',1,1,1,0,'2011-07-28 15:43:39'),(366,'tent repair kit',0,1,'','',1,1,1,0,'2011-07-28 15:43:46'),(367,'Commando Pullover',0,1,'','',1,1,0,0,'2011-07-28 18:16:02'),(368,'Military Style Army Commando Pullover',0,1,'','',1,1,0,0,'2011-07-28 18:19:46'),(369,'holdalls',0,4,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(370,'polo style shirts',0,1,'','',1,1,1,0,'2011-07-30 15:49:28'),(371,'Tear Aid Tape Type “A',0,1,'','',1,1,1,0,'2011-08-01 10:27:18'),(372,'magnum panthers',0,3,'','',1,1,1,0,'2011-08-01 15:24:07'),(373,'magnum',0,5,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(374,'combaty',0,1,'','',1,1,1,0,'2011-08-01 15:36:11'),(375,'combat',0,1,'','',1,1,0,0,'2011-08-01 15:36:15'),(376,'Military shirt',0,1,'','',1,1,0,0,'2011-08-01 22:31:26'),(377,'electrical cable',0,1,'','',1,1,1,0,'2011-08-02 08:24:53'),(378,'breathable groundsheet',0,1,'','',1,1,1,0,'2011-08-02 08:25:11'),(379,'Utiliy pouch',0,1,'','',1,1,1,0,'2011-08-02 22:41:31'),(380,'camping gas',0,1,'','',1,1,1,0,'2011-08-03 18:22:39'),(381,'camping gaz',6,2,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(382,'army webbing',4,6006,NULL,NULL,1,1,1,1,'2012-04-25 17:46:57'),(383,'milcom patrol boots',0,1,'','',1,1,1,0,'2011-08-04 09:28:33'),(384,'mil com patrol boots',0,1,'','',1,1,1,0,'2011-08-04 09:28:44'),(385,'smocks',0,2,NULL,NULL,1,1,1,0,'2011-10-22 14:12:36'),(386,'mosquito midge head protectors',0,1,'','',1,1,1,0,'2011-08-07 13:55:33'),(387,'mosquito hoods',0,1,'','',1,1,1,0,'2011-08-07 13:56:03'),(388,'101 airbourne',0,1,'','',1,1,1,0,'2011-08-07 22:17:59'),(389,'gas',1,5,NULL,NULL,1,1,1,1,'2012-04-24 17:08:52'),(390,'bivvy',0,2,NULL,NULL,1,1,1,1,'2012-04-20 16:29:28'),(391,'bivouck',0,1,'','',1,1,1,0,'2011-08-10 18:56:53'),(392,'ground sheets',0,1,'','',1,1,1,0,'2011-08-12 10:29:13'),(393,'bryive vests',0,1,'','',1,1,1,0,'2011-08-12 14:10:52'),(394,'kids foot waere',0,1,'','',1,1,1,0,'2011-08-13 06:59:42'),(395,'compact stove',0,1,'','',1,1,0,0,'2011-08-13 11:01:22'),(396,'raincoat',0,1,'','',1,1,1,0,'2011-08-14 08:18:30'),(397,'japara',0,1,'','',1,1,1,0,'2011-08-14 08:18:37'),(398,'waterproofing',0,1,'','',1,1,0,0,'2011-08-15 16:35:30'),(399,'nikwax',0,2,NULL,NULL,1,1,0,0,'2012-03-10 12:59:01'),(400,'coleman',0,2,NULL,NULL,1,1,1,1,'2012-04-20 15:47:31'),(401,'Dms shoes',0,1,'','',1,1,1,0,'2011-08-17 11:05:40'),(402,'stoves',0,2,NULL,NULL,1,1,1,0,'2012-02-07 09:42:05'),(403,'gas cylinder',0,2,'','',1,1,1,0,'2011-08-19 07:19:11'),(404,'regatta',0,1,'','',1,1,0,0,'2011-08-22 16:18:49'),(405,'gorilla',0,2,'','',1,1,1,0,'2011-09-12 18:37:59'),(406,'camping',0,1,'','',1,1,0,0,'2011-08-24 08:12:38'),(407,'folding beds',0,1,'','',1,1,1,0,'2011-08-24 11:53:28'),(408,'hi vis jacket',0,1,'','',1,1,1,0,'2011-08-24 12:02:27'),(409,'camp bed',0,1,'','',1,1,0,0,'2011-08-25 15:53:47'),(410,'airbed',0,2,NULL,NULL,1,1,1,0,'2011-11-26 09:32:20'),(411,'pen kniffe',0,1,'','',1,1,1,0,'2011-08-25 21:43:43'),(412,'pen knife',0,1,'','',1,1,1,0,'2011-08-25 21:43:51'),(413,'campingaz stove',0,1,'','',1,1,1,0,'2011-08-26 06:34:07'),(414,'webbing puches',0,1,'','',1,1,1,0,'2011-08-27 06:51:44'),(415,'crook kinfe',0,1,'','',1,1,1,0,'2011-08-28 14:37:12'),(416,'pole feet',0,1,'','',1,1,1,0,'2011-08-28 14:49:54'),(417,'ferrule',0,1,'','',1,1,1,0,'2011-08-28 14:50:05'),(418,'feet',5,1688,NULL,NULL,1,1,1,1,'2012-04-25 13:06:26'),(419,'foot',12,2087,NULL,NULL,1,1,1,1,'2012-04-25 17:24:51'),(420,'camping gaz r904',0,1,'','',1,1,1,0,'2011-08-31 09:07:32'),(421,'army trench coat ww2',0,1,'','',1,1,1,0,'2011-08-31 16:17:52'),(422,'ww2 trench coat',0,1,'','',1,1,1,0,'2011-08-31 18:32:18'),(423,'wellington',2,478,NULL,NULL,1,1,0,1,'2012-04-24 23:42:17'),(424,'scabbard',0,1,'','',1,1,1,0,'2011-09-01 16:17:27'),(425,'waterproof bags',0,2,'','',1,1,1,0,'2011-09-01 17:12:27'),(426,'waterproof kit bags',0,1,'','',1,1,1,0,'2011-09-01 17:12:05'),(427,'bungee clipps',0,3,'','',1,1,1,0,'2011-09-01 22:24:30'),(428,'bungee clips',0,1,'','',1,1,1,0,'2011-09-01 22:24:24'),(429,'bivvy bags',0,2,'','',1,1,1,0,'2011-09-02 11:39:02'),(430,'bivy bags',0,2,'','',1,1,1,0,'2011-09-02 11:38:57'),(431,'thinsulate',0,1,'','',1,1,0,0,'2011-09-02 17:02:28'),(432,'steal cap',0,1,'','',1,1,1,0,'2011-09-04 19:56:45'),(433,'ladies stretch kiwi pants',0,1,'','',1,1,1,0,'2011-09-06 16:51:12'),(434,'headovers',1,871,NULL,NULL,1,1,0,1,'2012-04-25 11:53:13'),(435,'canoe bags',0,1,'','',1,1,1,0,'2011-09-07 18:22:29'),(436,'dogtags',0,1,'','',1,1,0,0,'2011-09-08 18:40:16'),(437,'mtp',0,2,NULL,NULL,1,1,1,0,'2011-12-22 10:42:40'),(438,'insect',0,1,'','',1,1,1,0,'2011-09-10 11:11:10'),(439,'repellent',0,1,'','',1,1,1,0,'2011-09-10 11:11:23'),(440,'deet',0,1,'','',1,1,1,0,'2011-09-10 11:11:28'),(441,'cutlery',0,3,'','',1,1,1,0,'2011-09-10 11:14:38'),(442,'k f s',0,1,'','',1,1,0,0,'2011-09-10 11:13:35'),(443,'knife fork and spoon',0,2,'','',1,1,1,0,'2011-09-10 11:14:37'),(444,'starter kit',0,1,'','',1,1,1,0,'2011-09-11 17:59:08'),(445,'cadet',0,1,'','',1,1,0,0,'2011-09-11 17:59:31'),(446,'cadet kit',0,1,'','',1,1,0,0,'2011-09-11 17:59:58'),(447,'check shirts',0,1,'','',1,1,1,0,'2011-09-13 07:01:44'),(448,'brownie',5,408,NULL,NULL,1,1,1,1,'2012-04-23 10:34:02'),(449,'water',0,1,'','',1,1,0,0,'2011-09-15 13:46:21'),(450,'tablet',0,1,'','',1,1,0,0,'2011-09-15 13:46:28'),(451,'kiwi trousers',0,1,'','',1,1,0,0,'2011-09-15 18:48:25'),(452,'doc martens',0,2,'','',1,1,1,0,'2011-09-16 14:19:48'),(453,'air cadets drb',0,2,'','',1,1,1,0,'2011-09-21 15:16:26'),(454,'air cadets',0,1,'','',1,1,0,0,'2011-09-17 14:17:12'),(455,'ammo box',2,666,NULL,NULL,1,1,1,1,'2012-04-21 19:33:25'),(456,'cadet dpms',0,2,'','',1,1,1,0,'2011-09-21 15:16:26'),(457,'cadet dpm',0,1,'','',1,1,0,0,'2011-09-18 15:14:47'),(458,'gas mask bag',0,1,NULL,NULL,1,1,0,0,'2011-09-21 07:26:52'),(459,'kit bag',18,273,NULL,NULL,1,1,0,1,'2012-04-25 13:11:23'),(460,'balaclava',1,1240,NULL,NULL,1,1,0,1,'2012-04-24 08:50:21'),(461,'winter coats',0,1,NULL,NULL,1,1,0,0,'2011-09-24 10:26:48'),(462,'65 litre regatta rucksack',0,1,NULL,NULL,1,1,0,0,'2011-09-25 15:10:17'),(463,'Regatta landtrek',0,1,NULL,NULL,1,1,0,0,'2011-09-25 15:11:18'),(464,'Regatta landtrek 65 litre rucksack',0,1,NULL,NULL,1,1,0,0,'2011-09-25 15:11:49'),(465,'satellite dish',0,1,NULL,NULL,1,1,1,0,'2011-09-25 20:40:05'),(466,'DT MARTENS',0,1,NULL,NULL,1,1,0,0,'2011-09-25 20:02:30'),(467,'viper assult vest',0,1,NULL,NULL,1,1,0,0,'2011-09-26 17:23:40'),(468,'harness',0,1,NULL,NULL,1,1,1,0,'2011-09-28 14:32:49'),(469,'army helmets',0,1,NULL,NULL,1,1,0,0,'2011-09-28 21:21:44'),(470,'victronix',0,1,NULL,NULL,1,1,1,0,'2011-10-04 14:59:04'),(471,'camoflage',1,2089,NULL,NULL,1,1,0,1,'2012-04-24 08:14:51'),(472,'RAF hat',0,1,NULL,NULL,1,1,0,0,'2011-09-30 11:38:22'),(473,'jetboil flash',0,1,NULL,NULL,1,1,1,0,'2011-10-04 14:59:04'),(474,'wool socks',5,2303,NULL,NULL,1,1,0,1,'2012-04-25 15:27:08'),(475,'rainbow uniform',0,2,NULL,NULL,1,1,1,0,'2011-10-04 14:59:04'),(476,'rifle sling',0,2,NULL,NULL,1,1,1,0,'2011-10-04 14:59:04'),(477,'scarf',0,2,NULL,NULL,1,1,0,0,'2012-03-16 12:26:18'),(478,'seyntex',0,2,NULL,NULL,1,1,1,0,'2011-10-07 09:38:16'),(479,'Bivvy bag',2,1931,NULL,NULL,1,1,0,1,'2012-04-25 09:34:09'),(480,'fabsil',0,1,NULL,NULL,1,1,1,0,'2011-10-07 09:38:16'),(481,'artillery bag',0,1,NULL,NULL,1,1,0,0,'2011-10-08 13:56:02'),(482,'side bag',0,1,NULL,NULL,1,1,0,0,'2011-10-08 13:56:22'),(483,'mens anorak',0,1,NULL,NULL,1,1,0,0,'2011-10-10 17:26:01'),(484,'Kiwi Stretch Trousers',0,1,NULL,NULL,1,1,0,0,'2011-10-11 19:35:02'),(485,'craghoppers Kiwi Stretch Trousers',0,1,NULL,NULL,1,1,0,0,'2011-10-11 19:35:29'),(486,'ghillie suit',0,1,NULL,NULL,1,1,0,0,'2011-10-13 08:12:18'),(487,'costumes',0,1,NULL,NULL,1,1,1,0,'2011-10-22 14:12:36'),(488,'lab coat',0,1,NULL,NULL,1,1,0,0,'2011-10-15 07:56:20'),(489,'camping tables',1,190,NULL,NULL,1,1,0,1,'2012-04-25 08:51:21'),(490,'toilet tent',0,1,NULL,NULL,1,1,0,0,'2011-10-15 10:48:12'),(491,'utility tent',0,1,NULL,NULL,1,1,0,0,'2011-10-15 10:48:38'),(492,'scout uniform',0,1,NULL,NULL,1,1,1,0,'2011-10-22 14:12:36'),(493,'smokes',0,1,NULL,NULL,1,1,1,0,'2011-10-22 14:12:36'),(494,'Thermal',0,3,NULL,NULL,1,1,0,0,'2011-10-31 13:59:31'),(495,'walking coats',0,1,NULL,NULL,1,1,0,0,'2011-10-21 10:46:35'),(496,'twister',0,1,NULL,NULL,1,1,1,0,'2011-10-22 14:12:36'),(497,'twisters',0,1,NULL,NULL,1,1,1,0,'2011-10-22 14:12:36'),(498,'locks',0,1,NULL,NULL,1,1,1,0,'2011-10-22 14:12:36'),(499,'padlock',0,1,NULL,NULL,1,1,1,0,'2011-10-22 14:12:36'),(500,'padlocks',0,1,NULL,NULL,1,1,1,0,'2011-10-22 14:12:36'),(501,'Ladies stretch walking trousers',0,1,NULL,NULL,1,1,0,0,'2011-10-23 12:35:31'),(502,'trench coats',0,1,NULL,NULL,1,1,1,0,'2011-10-24 14:12:15'),(503,'waterproof dpm jacket',0,1,NULL,NULL,1,1,0,0,'2011-10-23 17:50:58'),(504,'waterproof  jacket',0,1,NULL,NULL,1,1,0,0,'2011-10-23 17:51:29'),(505,'goretex jacket',0,1,NULL,NULL,1,1,0,0,'2011-10-23 17:55:30'),(506,'dpm waterproof jacket',0,1,NULL,NULL,1,1,0,0,'2011-10-23 17:56:03'),(507,'combat pants',0,1,NULL,NULL,1,1,0,0,'2011-10-24 13:22:30'),(508,'kids ghillie suits',0,1,NULL,NULL,1,1,0,0,'2011-10-26 09:45:34'),(509,'lab coats',0,1,NULL,NULL,1,1,0,0,'2011-10-27 13:23:01'),(510,'blankets',0,2,NULL,NULL,1,1,1,0,'2011-11-26 09:32:20'),(511,'Boot cleaning kit',20,6,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(512,'Boot polish',0,1,NULL,NULL,1,1,1,0,'2011-10-28 10:13:26'),(513,'Boot',0,1,NULL,NULL,1,1,1,0,'2011-10-28 10:13:26'),(514,'Cleaning',0,2,NULL,NULL,1,1,1,0,'2011-10-28 10:13:26'),(515,'helly hansen',0,1,NULL,NULL,1,1,1,0,'2011-10-28 10:13:26'),(516,'donkey',0,1,NULL,NULL,1,1,1,0,'2011-10-31 13:59:31'),(517,'camouflage trousers',0,1,NULL,NULL,1,1,0,0,'2011-10-31 11:58:50'),(518,'Black ops belt',0,1,NULL,NULL,1,1,1,0,'2011-11-01 18:27:26'),(519,'hunting vest',0,1,NULL,NULL,1,1,0,0,'2011-11-02 20:58:39'),(520,'dutch oven',0,1,NULL,NULL,1,1,0,0,'2011-11-03 15:04:58'),(521,'shooter mitts',0,1,NULL,NULL,1,1,0,0,'2011-11-04 13:10:35'),(522,'camo',21,2,NULL,NULL,1,1,0,0,'2012-03-24 10:22:36'),(523,'cragghoppers kiwi walking trousers',0,1,NULL,NULL,1,1,0,0,'2011-11-06 10:17:57'),(524,'lined walking trousers',0,1,NULL,NULL,1,1,0,0,'2011-11-06 10:18:15'),(525,'kiwi ladies lined walking trousers',0,1,NULL,NULL,1,1,0,0,'2011-11-06 10:18:35'),(526,'craghoppers walking trousers',0,1,NULL,NULL,1,1,0,0,'2011-11-06 10:19:33'),(527,'craghoppers kiwi',5,2,NULL,NULL,1,1,0,0,'2012-04-07 11:44:24'),(528,'Loop Pile Socks',0,1,NULL,NULL,1,1,0,0,'2011-11-06 11:38:04'),(529,'wirral',0,1,NULL,NULL,1,1,1,0,'2011-11-07 12:24:40'),(530,'liverpool',0,2,NULL,NULL,1,1,1,0,'2011-12-29 13:59:03'),(531,'kids',0,1,NULL,NULL,1,1,0,0,'2011-11-08 14:41:27'),(532,'compuss',0,1,NULL,NULL,1,1,1,0,'2011-11-08 15:11:41'),(533,'ice and snow shoe grippers',0,1,NULL,NULL,1,1,0,0,'2011-11-08 15:00:44'),(534,'tent pegs',0,1,NULL,NULL,1,1,0,0,'2011-11-08 22:50:06'),(535,'guards tie',0,1,NULL,NULL,1,1,0,0,'2011-11-09 10:07:46'),(536,'head',0,1,NULL,NULL,1,1,0,0,'2011-11-09 21:12:25'),(537,'wax jacket',0,1,NULL,NULL,1,1,0,0,'2011-11-09 22:38:16'),(538,'parade boots',0,1,NULL,NULL,1,1,0,0,'2011-11-10 06:04:20'),(539,'wolf',1,381,NULL,NULL,1,1,0,1,'2012-04-23 20:45:33'),(540,'military coat',0,1,NULL,NULL,1,1,0,0,'2011-11-10 16:10:22'),(541,'parka jackets',0,1,NULL,NULL,1,1,0,0,'2011-11-10 17:18:17'),(542,'jumper',0,4,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(543,'sweater',0,1,NULL,NULL,1,1,0,0,'2011-11-10 21:52:13'),(544,'Mens Safety Boots',0,1,NULL,NULL,1,1,0,0,'2011-11-10 22:50:18'),(545,'tactical gas masks',0,1,NULL,NULL,1,1,0,0,'2011-11-12 22:44:04'),(546,'scarves',0,1,NULL,NULL,1,1,1,0,'2011-11-14 16:30:44'),(547,'seamless  socks',0,1,NULL,NULL,1,1,0,0,'2011-11-14 08:05:38'),(548,'COMBAT TROUSERS',23,2,NULL,NULL,1,1,0,0,'2012-04-17 15:34:51'),(549,'proforce',0,1,NULL,NULL,1,1,0,0,'2011-11-14 20:56:57'),(550,'delivery charges',0,1,NULL,NULL,1,1,1,0,'2011-11-16 17:16:03'),(551,'duffle coats',0,5,NULL,NULL,1,1,1,0,'2012-01-04 13:12:20'),(552,'car coats',0,1,NULL,NULL,1,1,0,0,'2011-11-16 07:54:17'),(553,'army waistcoat',0,1,NULL,NULL,1,1,0,0,'2011-11-16 12:46:51'),(554,'rubber tips',0,1,NULL,NULL,1,1,0,0,'2011-11-16 14:26:20'),(555,'walking pole tips',23,2786,NULL,NULL,1,1,0,1,'2012-04-25 15:36:56'),(556,'mens kiwi stretch',0,1,NULL,NULL,1,1,0,0,'2011-11-17 05:33:56'),(557,'kiwi stretch mens',0,1,NULL,NULL,1,1,0,0,'2011-11-17 05:34:23'),(558,'magnum boots',0,1,NULL,NULL,1,1,0,0,'2011-11-20 22:43:51'),(559,'boot bags',0,1,NULL,NULL,1,1,0,0,'2011-11-21 11:07:22'),(560,'heswall',0,1,NULL,NULL,1,1,1,0,'2011-11-22 11:23:40'),(561,'mens check shirts',0,1,NULL,NULL,1,1,0,0,'2011-11-21 12:26:08'),(562,'fishtail parker coats',0,1,NULL,NULL,1,1,1,0,'2011-11-22 11:23:40'),(563,'sunglasses',0,2,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(564,'regatta waterproof fleece',28,3616,NULL,NULL,1,1,0,1,'2012-04-25 18:40:29'),(565,'regatta waterproof fleece ladies',1,2425,NULL,NULL,1,1,1,1,'2012-04-25 13:04:55'),(566,'mens craighopper lined trousers',0,1,NULL,NULL,1,1,0,0,'2011-11-22 15:26:37'),(567,'first aid kits',0,1,NULL,NULL,1,1,0,0,'2011-11-22 19:16:13'),(568,'M40 1JR',0,2,NULL,NULL,1,1,1,0,'2011-11-24 10:38:48'),(569,'STORE LOCATOR',0,1,NULL,NULL,1,1,1,0,'2011-11-24 10:38:48'),(570,'army socks',0,1,NULL,NULL,1,1,0,0,'2011-11-23 12:29:50'),(571,'arctic socks',0,1,NULL,NULL,1,1,0,0,'2011-11-23 12:32:53'),(572,'RAF trousers',0,1,NULL,NULL,1,1,0,0,'2011-11-23 18:28:50'),(573,'holsters',0,1,NULL,NULL,1,1,1,0,'2011-11-28 09:26:15'),(574,'Rlc cufflinks',0,1,NULL,NULL,1,1,1,0,'2011-11-28 09:26:15'),(575,'walking poles',22,2517,NULL,NULL,1,1,0,1,'2012-04-25 06:18:55'),(576,'handwarmers',0,1,NULL,NULL,1,1,0,0,'2011-11-28 14:35:58'),(577,'hard hat',0,1,NULL,NULL,1,1,0,0,'2011-11-28 15:08:28'),(578,'parade',0,1,NULL,NULL,1,1,1,0,'2011-12-01 12:07:37'),(579,'seal skinz products',0,2,NULL,NULL,1,1,1,0,'2011-12-01 12:07:37'),(580,'canvas',0,1,NULL,NULL,1,1,1,0,'2011-12-01 12:07:37'),(581,'navy peacoat',0,3,NULL,NULL,1,1,1,0,'2011-12-01 12:07:37'),(582,'peacoat',0,3,NULL,NULL,1,1,1,0,'2011-12-01 12:07:37'),(583,'naval coat',0,1,NULL,NULL,1,1,1,0,'2011-12-01 12:07:37'),(584,'county shirt',0,1,NULL,NULL,1,1,1,0,'2011-12-01 12:07:37'),(585,'ponchi',0,1,NULL,NULL,1,1,1,0,'2011-12-01 12:47:51'),(586,'sleeping bag',16,1791,NULL,NULL,1,1,1,1,'2012-04-25 06:24:50'),(587,'safety boots',11,1814,NULL,NULL,1,1,1,1,'2012-04-24 23:10:31'),(588,'suits',0,1,NULL,NULL,1,1,1,0,'2011-12-01 20:44:22'),(589,'fleece',1,582,NULL,NULL,1,1,1,1,'2012-04-25 08:45:20'),(590,'armysuits',0,1,NULL,NULL,1,1,1,0,'2011-12-01 20:44:22'),(591,'ladies brown gloves',1,3113,NULL,NULL,1,1,1,1,'2012-04-25 10:45:08'),(592,'camoflague',0,1,NULL,NULL,1,1,1,0,'2011-12-02 10:56:30'),(593,'paper',0,1,NULL,NULL,1,1,1,0,'2011-12-02 10:56:30'),(594,'dog',1,451,NULL,NULL,1,1,1,1,'2012-04-24 23:07:26'),(595,'fleecy blanket/poncho',2,1053,NULL,NULL,1,1,1,1,'2012-04-25 15:18:13'),(596,'ferrules',1,626,NULL,NULL,1,1,1,1,'2012-04-23 17:02:54'),(597,'m45',0,1,NULL,NULL,1,1,1,0,'2011-12-03 14:09:07'),(598,'safetyboots',0,2,NULL,NULL,1,1,1,0,'2011-12-03 14:34:42'),(599,'thermal underwear',3,1765,NULL,NULL,1,1,1,1,'2012-04-25 18:41:46'),(600,'brownies',0,4,NULL,NULL,1,1,1,0,'2012-02-21 09:34:31'),(601,'safery boots',9,1368,NULL,NULL,1,1,1,1,'2012-04-23 04:56:17'),(602,'saferty boots',6,1407,NULL,NULL,1,1,1,1,'2012-04-25 18:25:01'),(603,'camo t shirt',31,11815,NULL,NULL,1,1,1,1,'2012-04-25 18:54:49'),(604,'gloves',0,1,NULL,NULL,1,1,1,0,'2011-12-06 11:44:14'),(605,'tin hat',6,3974,NULL,NULL,1,1,1,1,'2012-04-25 10:59:57'),(606,'sand',1,426,NULL,NULL,1,1,1,1,'2012-04-19 17:30:29'),(607,'proofing',4,1274,NULL,NULL,1,1,1,1,'2012-04-25 01:02:25'),(608,'size chart',7,6164,NULL,NULL,1,1,1,1,'2012-04-25 18:35:52'),(609,'greens belt',2,1703,NULL,NULL,1,1,1,1,'2012-04-25 08:30:15'),(610,'kiwi',4,753,NULL,NULL,1,1,1,1,'2012-04-23 10:27:34'),(611,'hand warmers',1,2084,NULL,NULL,1,1,1,1,'2012-04-25 12:30:38'),(612,'SEAL',0,4,NULL,NULL,1,1,1,0,'2011-12-13 10:16:48'),(613,'tips',0,2,NULL,NULL,1,1,1,0,'2011-12-20 14:34:38'),(614,'ends',1,1110,NULL,NULL,1,1,1,1,'2012-04-24 23:16:25'),(615,'boys camo socks',35,4383,NULL,NULL,1,1,1,1,'2012-04-25 15:40:54'),(616,'Doc Martin',0,2,NULL,NULL,1,1,1,0,'2011-12-13 11:16:14'),(617,'mens zip off trousers',4,4983,NULL,NULL,1,1,1,1,'2012-04-25 17:54:08'),(618,'Footwear',3,900,NULL,NULL,1,1,1,1,'2012-04-25 05:37:38'),(619,'silver shadow trainers black',6,3619,NULL,NULL,1,1,1,1,'2012-04-25 12:31:40'),(620,'plastic army men',15,6338,NULL,NULL,1,1,1,1,'2012-04-25 18:10:00'),(621,'ice shoes',3,2988,NULL,NULL,1,1,1,1,'2012-04-25 18:04:01'),(622,'calor',0,1,NULL,NULL,1,1,1,0,'2011-12-17 13:50:14'),(623,'Swiss army knives',15,4417,NULL,NULL,1,1,1,1,'2012-04-25 12:37:31'),(624,'NEW - Templar Coyote Tan Operators Patrol Pack Mk2 Daysack',80,2313,NULL,NULL,1,1,1,1,'2012-04-24 19:12:17'),(625,'caps',0,1,NULL,NULL,1,1,1,0,'2011-12-19 12:05:15'),(626,'wool headover',5,2275,NULL,NULL,1,1,1,1,'2012-04-25 15:21:13'),(627,'table',7,3323,NULL,NULL,1,1,1,1,'2012-04-25 18:59:47'),(628,'folding table',7,3164,NULL,NULL,1,1,1,1,'2012-04-25 16:06:15'),(629,'lockable box',1,641,NULL,NULL,1,1,1,1,'2012-04-24 07:08:27'),(630,'rope knife stainless steel',10,1091,NULL,NULL,1,1,1,1,'2012-04-25 13:12:22'),(631,'boat knifes',0,1,NULL,NULL,1,1,1,0,'2011-12-19 12:05:15'),(632,'boat knves',0,1,NULL,NULL,1,1,1,0,'2011-12-19 12:05:15'),(633,'knives',0,1,NULL,NULL,1,1,1,0,'2011-12-19 12:05:15'),(634,'rope knives',0,1,NULL,NULL,1,1,1,0,'2011-12-19 12:05:15'),(635,'carhart',0,1,NULL,NULL,1,1,1,0,'2011-12-19 12:05:15'),(636,'black NATO issue jacket',8,3565,NULL,NULL,1,1,1,1,'2012-04-25 17:13:47'),(637,'Flight Pilot Bomber Jacket',8,1203,NULL,NULL,1,1,1,1,'2012-04-25 05:57:03'),(638,'Flight Jacket',2,1204,NULL,NULL,1,1,1,1,'2012-04-25 18:11:00'),(639,'wellies',0,1,NULL,NULL,1,1,1,0,'2011-12-20 14:34:38'),(640,'Khaki beret',1,752,NULL,NULL,1,1,1,1,'2012-04-25 18:58:48'),(641,'tin hats',3,3410,NULL,NULL,1,1,1,1,'2012-04-25 18:02:03'),(642,'walking pole',22,2502,NULL,NULL,1,1,1,1,'2012-04-25 13:13:21'),(643,'berghaus',0,1,NULL,NULL,1,1,1,0,'2011-12-21 16:36:58'),(644,'webing',0,1,NULL,NULL,1,1,1,0,'2011-12-22 10:42:40'),(645,'molle vest',1,268,NULL,NULL,1,1,1,1,'2012-04-25 00:41:51'),(646,'flight suite',1,500,NULL,NULL,1,1,1,1,'2012-04-25 11:08:21'),(647,'para kit',10,1697,NULL,NULL,1,1,1,1,'2012-04-25 07:14:08'),(648,'parachute reg',1,733,NULL,NULL,1,1,1,1,'2012-04-25 10:54:01'),(649,'parachute regiment',0,1,NULL,NULL,1,1,1,0,'2011-12-24 10:29:19'),(650,'doc marten',1,661,NULL,NULL,1,1,1,1,'2012-04-21 11:11:22'),(651,'camo jakets',4,2760,NULL,NULL,1,1,1,1,'2012-04-25 18:48:55'),(652,'hippie suit',12,1402,NULL,NULL,1,1,1,1,'2012-04-25 05:49:10'),(653,'duffel coats',0,3,NULL,NULL,1,1,1,0,'2012-01-04 13:12:20'),(654,'Heat Holders Womens Thermal Socks',22,1053,NULL,NULL,1,1,1,1,'2012-04-21 21:28:37'),(655,'Womens Thermal Socks',11,2299,NULL,NULL,1,1,1,1,'2012-04-25 17:15:46'),(656,'Pith',0,2,NULL,NULL,1,1,1,0,'2012-01-04 13:12:20'),(657,'Safari',0,1,NULL,NULL,1,1,1,0,'2012-01-04 13:12:20'),(658,'1000 mile',1,1199,NULL,NULL,1,1,1,1,'2012-04-25 05:39:41'),(659,'hexi',2,426,NULL,NULL,1,1,1,1,'2012-04-24 23:32:08'),(660,'duffle',0,1,NULL,NULL,1,1,1,0,'2012-01-06 09:33:53'),(661,'duffel',0,1,NULL,NULL,1,1,1,0,'2012-01-06 09:33:53'),(662,'bungee cords',0,1,NULL,NULL,1,1,1,0,'2012-01-07 12:46:30'),(663,'selvyt',0,1,NULL,NULL,1,1,1,0,'2012-01-07 12:46:30'),(664,'grisport shoes',6,1547,NULL,NULL,1,1,1,1,'2012-04-25 12:18:49'),(665,'jobs',0,1,NULL,NULL,1,1,1,0,'2012-01-07 12:46:30'),(666,'helmets',0,1,NULL,NULL,1,1,1,0,'2012-01-07 12:46:30'),(667,'brownie uniforms',5,302,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(668,'royal navy sweater',11,205,NULL,NULL,1,1,1,1,'2012-04-19 12:21:52'),(669,'com',4,1452,NULL,NULL,1,1,1,1,'2012-04-25 17:58:05'),(670,'gillet coat',3,68,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(671,'fleecy+blanket/poncho',0,1,NULL,NULL,1,1,1,0,'2012-01-19 10:59:47'),(672,'wool headover hats',5,223,NULL,NULL,1,1,1,1,'2012-04-24 02:45:11'),(673,'TT161',0,1,NULL,NULL,1,1,1,0,'2012-01-19 10:59:47'),(674,'ear defenders',23,425,NULL,NULL,1,1,1,1,'2012-04-24 23:50:28'),(675,'Duffle coat',1,149,NULL,NULL,1,1,1,1,'2012-04-25 17:25:50'),(676,'Duffle coat  with toggles',43,488,NULL,NULL,1,1,1,1,'2012-04-25 18:16:57'),(677,'beaver',0,5,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(678,'canvas bag',17,320,NULL,NULL,1,1,1,1,'2012-04-24 21:56:59'),(679,'union jack flag',0,5,NULL,NULL,1,1,1,0,'2012-03-17 12:22:38'),(680,'flag',20,245,NULL,NULL,1,1,1,1,'2012-04-25 02:38:10'),(681,'overtrousers',0,5,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(682,'outdoor jackets',8,166,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(683,'dog tag',0,5,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(684,'wax',8,87,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(685,'Templar Coyote Tan Operators Patrol Pack Mk2 Daysack',31,6,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(686,'t-shirts',0,1,NULL,NULL,1,1,1,0,'2012-01-25 11:57:16'),(687,'1000 MILE TRADITIONAL COMBAT SOCKS',26,281,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(688,'wooden clothes hangers',0,1,NULL,NULL,1,1,1,0,'2012-01-27 14:13:54'),(689,'cadet boots',20,8,NULL,NULL,1,1,1,1,'2012-04-17 17:58:18'),(690,'Badges',0,1,NULL,NULL,1,1,1,0,'2012-02-07 09:42:05'),(691,'brassard',0,1,NULL,NULL,1,1,1,0,'2012-02-07 09:42:05'),(692,'95 SHITS',0,4,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(693,'95 SHIRTS',8,5,NULL,NULL,1,1,1,1,'2012-04-25 07:32:43'),(694,'BROWN TOP',1,314,NULL,NULL,1,1,1,1,'2012-04-23 12:22:20'),(695,'PLAIN BROWN TOP',1,626,NULL,NULL,1,1,1,1,'2012-04-25 10:46:08'),(696,'BERAIS',0,1,NULL,NULL,1,1,1,0,'2012-02-07 09:42:05'),(697,'BERRIES',0,1,NULL,NULL,1,1,1,0,'2012-02-07 09:42:05'),(698,'rugsack',0,1,NULL,NULL,1,1,1,0,'2012-02-07 09:42:05'),(699,'Leatherman',0,2,NULL,NULL,1,1,1,0,'2012-02-07 09:42:05'),(700,'braces',0,1,NULL,NULL,1,1,1,0,'2012-02-07 09:42:05'),(701,'waterproof socks',12,1218,NULL,NULL,1,1,1,1,'2012-04-25 13:01:29'),(702,'flint',0,1,NULL,NULL,1,1,1,0,'2012-02-07 09:42:05'),(703,'sewing kit',2,188,NULL,NULL,1,1,1,1,'2012-04-25 09:41:03'),(704,'maroon beret',1,65,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(705,'NEW - Templar Coyote',3,2017,NULL,NULL,1,1,1,1,'2012-04-25 04:22:03'),(706,'Pilot gloves',0,1,NULL,NULL,1,1,1,0,'2012-02-13 11:07:50'),(707,'pullovers',0,2,NULL,NULL,1,1,1,0,'2012-02-13 11:07:50'),(708,'jerseys',0,1,NULL,NULL,1,1,1,0,'2012-02-13 11:07:50'),(709,'Balaclavas',0,4,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(710,'pistol holsters',1,61,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(711,'army trousers',11,1580,NULL,NULL,1,1,1,1,'2012-04-25 12:08:41'),(712,'soft',2,155,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(713,'silver shadow trainers',3,94,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(714,'BIB AND BRACE',18,1928,NULL,NULL,1,1,1,1,'2012-04-25 13:05:28'),(715,'picnic stools',0,1,NULL,NULL,1,1,1,0,'2012-02-17 15:12:14'),(716,'camping stools',6,201,NULL,NULL,1,1,1,1,'2012-04-25 13:32:10'),(717,'hikers walking sticks',0,6,NULL,NULL,1,1,1,0,'2012-03-17 12:22:38'),(718,'parade shoe',1,145,NULL,NULL,1,1,1,1,'2012-04-21 11:34:44'),(719,'Viper tactical',0,1,NULL,NULL,1,1,1,0,'2012-02-18 13:46:04'),(720,'Northwich Cheshire',0,1,NULL,NULL,1,1,1,0,'2012-02-21 09:34:31'),(721,'Cheshire',0,1,NULL,NULL,1,1,1,0,'2012-02-21 09:34:31'),(722,'peaklander',0,6,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(723,'telescopic',0,3,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(724,'pole',0,3,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(725,'rainbows uniform',0,1,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(726,'Tectonic Waterproof and Breathable Fleece Jacket',9,1,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(727,'stab proof vests',2,375,NULL,NULL,1,1,1,1,'2012-04-23 20:40:01'),(728,'jet boil',0,1,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(729,'cokking',0,1,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(730,'cooking',2,2,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(731,'brownies uniform',0,1,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(732,'scorpion desert boots',0,1,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(733,'foot wear',0,1,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(734,'Waterproof trousers',41,378,NULL,NULL,1,1,1,1,'2012-04-23 16:38:59'),(735,'german',0,1,NULL,NULL,1,1,1,0,'2012-03-10 12:59:01'),(736,'delivery',0,2,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(737,'inner soles',10,327,NULL,NULL,1,1,1,1,'2012-04-20 19:51:42'),(738,'leather tunic',0,2,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(739,'leather waistcoat',0,2,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(740,'Karrimat',1,61,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(741,'FOOTWARE',0,1,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(742,'2 man tent',77,2077,NULL,NULL,1,1,1,1,'2012-04-25 07:46:46'),(743,'extendable',0,1,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(744,'dms high leg',6,1,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(745,'solid fuel',0,2,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(746,'sleeping bag liner',5,1,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(747,'Water bottle',39,11,NULL,NULL,1,1,1,1,'2012-04-25 09:39:10'),(748,'Bush hat',4,2,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(749,'Roll mat',6,1,NULL,NULL,1,1,1,0,'2012-03-16 12:26:18'),(750,'Highlander Kingfisher Lock Knife',6,1,NULL,NULL,1,1,1,0,'2012-03-17 12:22:38'),(751,'sock',0,2,NULL,NULL,1,1,1,0,'2012-03-17 12:47:26'),(752,'laser pointer',0,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(753,'officer uniform',6,2,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(754,'reefer jackets',5,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(755,'Highlander 25 Litre  Daysack',28,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(756,'Loughborough',0,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(757,'webbing belt',4,4,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(758,'bungee ropes',1,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(759,'plain green hoodie',21,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(760,'survival bag',17,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(761,'sam brown belt',14,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(762,'wigan',0,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(763,'navy combat age 13',37,4,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(764,'navy trousers age 12',51,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(765,'t shirt',148,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(766,'womens waterproof jackets',31,16,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(767,'camaflouge',0,1,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(768,'cama',0,2,NULL,NULL,1,1,1,0,'2012-03-24 10:22:36'),(769,'sprayway',0,2,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(770,'brownie sash',5,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(771,'basha poles',5,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(772,'fuel can',11,2,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(773,'tilley hats',2,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(774,'llowa',0,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(775,'bivvybag',0,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(776,'camouflage jacket',14,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(777,'bivi bag',15,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(778,'eyelets',1,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(779,'army netting',42,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(780,'water container',35,4,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(781,'Webbing pouches',6,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(782,'storage',1,2,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(783,'chester',0,1,NULL,NULL,1,1,1,0,'2012-04-07 11:44:24'),(784,'red star badge',14,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(785,'youths dartmoor walking shoe',27,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(786,'Lock Knife',6,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(787,'headwear',0,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(788,'pans',0,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(789,'camoflage suit',16,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(790,'camoflage trousers and jackets',94,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(791,'camoflage all in one',122,8,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(792,'craghoppers mens',15,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(793,'rations',0,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(794,'liners',0,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(795,'alpha industries m a 1 flying jacket',151,9,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(796,'camo tape',29,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(797,'fishtail parka',0,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(798,'M65 parka',0,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(799,'Lunar wellingtons',2,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(800,'smag',0,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(801,'air bed pump',3,4,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(802,'airbed pump',0,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(803,'folding chair',4,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(804,'nordic',0,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(805,'blade',4,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(806,'desert trousers',17,3,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(807,'black beret',25,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(808,'smoke',0,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(809,'smoke bomb',0,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(810,'smoke grenade',0,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(811,'smoke flare',0,2,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(812,'flare',0,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(813,'Templar coyote',0,1,NULL,NULL,1,1,1,0,'2012-04-17 15:34:51'),(814,'white trousers',21,4,NULL,NULL,1,1,1,1,'2012-04-18 19:02:06'),(815,'trangia bags',4,1,NULL,NULL,1,1,1,1,'2012-04-20 10:49:22'),(816,'trangia',0,1,NULL,NULL,1,1,1,1,'2012-04-20 10:49:53'),(817,'kayak',0,1,NULL,NULL,1,1,1,1,'2012-04-20 12:43:28'),(818,'boot laces',16,1,NULL,NULL,1,1,1,1,'2012-04-21 09:16:40'),(819,'laces',2,1,NULL,NULL,1,1,1,1,'2012-04-21 09:17:26'),(820,'chef',0,3,NULL,NULL,1,1,1,1,'2012-04-21 12:25:23'),(821,'cook',3,1,NULL,NULL,1,1,1,1,'2012-04-21 12:25:10'),(822,'bb guns',10,1,NULL,NULL,1,1,1,1,'2012-04-21 16:28:04'),(823,'bedding',0,1,NULL,NULL,1,1,1,1,'2012-04-22 10:42:59'),(824,'3 in 1 jackets',151,2,NULL,NULL,1,1,1,1,'2012-04-22 21:07:17'),(825,'womens  jackets',7,1,NULL,NULL,1,1,1,1,'2012-04-22 21:06:44'),(826,'cap badges',11,1,NULL,NULL,1,1,1,1,'2012-04-24 09:26:29'),(827,'policemans cape',0,1,NULL,NULL,1,1,1,1,'2012-04-24 18:26:52'),(828,'adult army clothing',15,4,NULL,NULL,1,1,1,1,'2012-04-25 06:26:20'),(829,'edinburgh',2,2,NULL,NULL,1,1,1,1,'2012-04-25 11:39:56'),(830,'beaver camp blanket',13,1,NULL,NULL,1,1,1,1,'2012-04-25 16:24:51');
/*!40000 ALTER TABLE `catalogsearch_query` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalogsearch_result`
--

DROP TABLE IF EXISTS `catalogsearch_result`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `catalogsearch_result` (
  `query_id` int(10) unsigned NOT NULL COMMENT 'Query ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `relevance` decimal(20,4) NOT NULL default '0.0000' COMMENT 'Relevance',
  PRIMARY KEY  (`query_id`,`product_id`),
  KEY `IDX_CATALOGSEARCH_RESULT_QUERY_ID` (`query_id`),
  KEY `IDX_CATALOGSEARCH_RESULT_PRODUCT_ID` (`product_id`),
  CONSTRAINT `FK_CATALOGSEARCH_RESULT_QUERY_ID_CATALOGSEARCH_QUERY_QUERY_ID` FOREIGN KEY (`query_id`) REFERENCES `catalogsearch_query` (`query_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATSRCH_RESULT_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog search result table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `catalogsearch_result`
--

LOCK TABLES `catalogsearch_result` WRITE;
/*!40000 ALTER TABLE `catalogsearch_result` DISABLE KEYS */;
INSERT INTO `catalogsearch_result` VALUES (1,10,'0.0000'),(1,26,'0.0000'),(1,27,'0.0000'),(1,28,'0.0000'),(1,114,'0.0000'),(1,132,'0.0000'),(1,157,'0.0000'),(1,161,'0.0000'),(1,166,'0.0000'),(2,4,'0.0000'),(2,8,'0.0000'),(2,110,'0.0000'),(2,128,'0.0000'),(2,180,'0.0000'),(3,27,'0.0000'),(3,28,'0.0000'),(3,44,'0.0000'),(3,45,'0.0000'),(3,49,'0.0000'),(3,50,'0.0000'),(3,51,'0.0000'),(3,52,'0.0000'),(3,58,'0.0000'),(3,65,'0.0000'),(3,66,'0.0000'),(3,67,'0.0000'),(3,68,'0.0000'),(3,80,'0.0000'),(3,87,'0.0000'),(3,88,'0.0000'),(3,93,'0.0000'),(3,110,'0.0000'),(3,118,'0.0000'),(3,125,'0.0000'),(3,127,'0.0000'),(3,150,'0.0000'),(3,158,'0.0000'),(3,159,'0.0000'),(3,166,'0.0000'),(3,167,'0.0000'),(4,7,'0.0000'),(4,16,'0.0000'),(4,17,'0.0000'),(4,31,'0.0000'),(4,32,'0.0000'),(4,35,'0.0000'),(4,81,'0.0000'),(4,131,'0.0000'),(4,151,'0.0000'),(4,154,'0.0000'),(4,169,'0.0000'),(6,15,'0.0000'),(6,16,'0.0000'),(6,23,'0.0000'),(6,31,'0.0000'),(6,82,'0.0000'),(10,119,'0.0000'),(10,130,'0.0000'),(10,170,'0.0000'),(10,176,'0.0000'),(12,4,'0.0000'),(12,101,'0.0000'),(12,181,'0.0000'),(13,44,'0.0000'),(13,49,'0.0000'),(13,60,'0.0000'),(13,61,'0.0000'),(13,63,'0.0000'),(13,65,'0.0000'),(13,66,'0.0000'),(13,67,'0.0000'),(13,83,'0.0000'),(13,93,'0.0000'),(13,97,'0.0000'),(13,149,'0.0000'),(13,155,'0.0000'),(13,171,'0.0000'),(13,183,'0.0000'),(15,44,'0.0000'),(15,45,'0.0000'),(15,49,'0.0000'),(15,50,'0.0000'),(15,58,'0.0000'),(15,65,'0.0000'),(15,66,'0.0000'),(15,67,'0.0000'),(15,68,'0.0000'),(15,93,'0.0000'),(15,158,'0.0000'),(15,159,'0.0000'),(20,130,'0.0000'),(23,38,'0.0000'),(23,47,'0.0000'),(28,15,'0.0000'),(28,16,'0.0000'),(28,23,'0.0000'),(28,24,'0.0000'),(28,31,'0.0000'),(28,81,'0.0000'),(28,82,'0.0000'),(28,155,'0.0000'),(32,100,'0.0000'),(35,27,'0.0000'),(35,28,'0.0000'),(35,166,'0.0000'),(35,167,'0.0000'),(44,4,'0.0000'),(44,38,'0.0000'),(44,46,'0.0000'),(44,47,'0.0000'),(44,53,'0.0000'),(44,108,'0.0000'),(44,109,'0.0000'),(44,131,'0.0000'),(44,173,'0.0000'),(44,174,'0.0000'),(44,180,'0.0000'),(44,183,'0.0000'),(51,18,'0.0000'),(51,29,'0.0000'),(51,33,'0.0000'),(51,118,'0.0000'),(51,127,'0.0000'),(51,150,'0.0000'),(51,176,'0.0000'),(58,18,'0.0000'),(58,29,'0.0000'),(58,51,'0.0000'),(58,52,'0.0000'),(58,77,'0.0000'),(58,130,'0.0000'),(59,62,'0.0000'),(59,63,'0.0000'),(59,114,'0.0000'),(59,132,'0.0000'),(59,160,'0.0000'),(76,175,'0.0000'),(99,4,'0.0000'),(99,11,'0.0000'),(99,24,'0.0000'),(99,25,'0.0000'),(99,27,'0.0000'),(99,28,'0.0000'),(99,31,'0.0000'),(99,32,'0.0000'),(99,53,'0.0000'),(99,54,'0.0000'),(99,55,'0.0000'),(99,56,'0.0000'),(99,57,'0.0000'),(99,74,'0.0000'),(99,82,'0.0000'),(99,92,'0.0000'),(99,101,'0.0000'),(99,103,'0.0000'),(99,121,'0.0000'),(99,127,'0.0000'),(99,155,'0.0000'),(99,156,'0.0000'),(99,166,'0.0000'),(99,167,'0.0000'),(99,168,'0.0000'),(99,177,'0.0000'),(99,178,'0.0000'),(105,4,'0.0000'),(105,101,'0.0000'),(105,181,'0.0000'),(120,3,'0.0000'),(120,41,'0.0000'),(120,42,'0.0000'),(120,76,'0.0000'),(120,95,'0.0000'),(120,97,'0.0000'),(120,98,'0.0000'),(120,118,'0.0000'),(120,126,'0.0000'),(120,180,'0.0000'),(121,39,'0.0000'),(161,42,'0.0000'),(161,76,'0.0000'),(161,118,'0.0000'),(161,180,'0.0000'),(177,18,'0.0000'),(181,118,'0.0000'),(181,127,'0.0000'),(181,158,'0.0000'),(181,159,'0.0000'),(181,180,'0.0000'),(196,11,'0.0000'),(196,121,'0.0000'),(208,4,'0.0000'),(208,7,'0.0000'),(208,12,'0.0000'),(208,16,'0.0000'),(208,17,'0.0000'),(208,29,'0.0000'),(208,31,'0.0000'),(208,32,'0.0000'),(208,33,'0.0000'),(208,35,'0.0000'),(208,38,'0.0000'),(208,74,'0.0000'),(208,75,'0.0000'),(208,78,'0.0000'),(208,81,'0.0000'),(208,84,'0.0000'),(208,103,'0.0000'),(208,108,'0.0000'),(208,151,'0.0000'),(208,154,'0.0000'),(208,169,'0.0000'),(209,15,'0.0000'),(209,16,'0.0000'),(209,23,'0.0000'),(209,24,'0.0000'),(209,31,'0.0000'),(209,81,'0.0000'),(209,82,'0.0000'),(209,155,'0.0000'),(211,87,'0.0000'),(211,88,'0.0000'),(211,125,'0.0000'),(211,150,'0.0000'),(211,183,'0.0000'),(218,87,'0.0000'),(218,88,'0.0000'),(218,150,'0.0000'),(218,183,'0.0000'),(219,165,'0.0000'),(219,181,'0.0000'),(229,15,'0.0000'),(229,16,'0.0000'),(229,23,'0.0000'),(229,24,'0.0000'),(229,31,'0.0000'),(229,81,'0.0000'),(229,82,'0.0000'),(229,155,'0.0000'),(245,82,'0.0000'),(245,118,'0.0000'),(245,127,'0.0000'),(245,150,'0.0000'),(245,155,'0.0000'),(245,156,'0.0000'),(245,171,'0.0000'),(245,172,'0.0000'),(245,173,'0.0000'),(245,174,'0.0000'),(245,183,'0.0000'),(246,12,'0.0000'),(246,15,'0.0000'),(246,74,'0.0000'),(246,81,'0.0000'),(246,84,'0.0000'),(246,103,'0.0000'),(246,108,'0.0000'),(246,151,'0.0000'),(249,14,'0.0000'),(276,4,'0.0000'),(276,7,'0.0000'),(276,8,'0.0000'),(276,13,'0.0000'),(276,21,'0.0000'),(276,39,'0.0000'),(276,40,'0.0000'),(276,72,'0.0000'),(276,75,'0.0000'),(276,118,'0.0000'),(276,131,'0.0000'),(276,175,'0.0000'),(285,11,'0.0000'),(285,121,'0.0000'),(295,92,'0.0000'),(295,93,'0.0000'),(298,75,'0.0000'),(302,3,'0.0000'),(302,8,'0.0000'),(302,24,'0.0000'),(302,41,'0.0000'),(302,42,'0.0000'),(302,43,'0.0000'),(302,76,'0.0000'),(302,95,'0.0000'),(302,97,'0.0000'),(302,98,'0.0000'),(302,110,'0.0000'),(302,118,'0.0000'),(302,174,'0.0000'),(302,177,'0.0000'),(302,180,'0.0000'),(305,14,'0.0000'),(305,25,'0.0000'),(305,28,'0.0000'),(305,46,'0.0000'),(305,47,'0.0000'),(305,49,'0.0000'),(305,50,'0.0000'),(305,143,'0.0000'),(305,155,'0.0000'),(305,169,'0.0000'),(305,175,'0.0000'),(308,39,'0.0000'),(308,40,'0.0000'),(321,3,'0.0000'),(321,15,'0.0000'),(321,16,'0.0000'),(321,17,'0.0000'),(321,41,'0.0000'),(321,42,'0.0000'),(321,74,'0.0000'),(321,76,'0.0000'),(321,84,'0.0000'),(321,92,'0.0000'),(321,95,'0.0000'),(321,97,'0.0000'),(321,98,'0.0000'),(321,108,'0.0000'),(321,118,'0.0000'),(321,126,'0.0000'),(321,131,'0.0000'),(321,151,'0.0000'),(321,180,'0.0000'),(333,130,'0.0000'),(338,10,'0.0000'),(338,15,'0.0000'),(338,16,'0.0000'),(338,17,'0.0000'),(338,26,'0.0000'),(338,27,'0.0000'),(338,28,'0.0000'),(338,33,'0.0000'),(338,34,'0.0000'),(338,43,'0.0000'),(338,81,'0.0000'),(338,84,'0.0000'),(338,114,'0.0000'),(338,132,'0.0000'),(338,157,'0.0000'),(338,161,'0.0000'),(338,166,'0.0000'),(338,169,'0.0000'),(382,8,'0.0000'),(382,10,'0.0000'),(382,11,'0.0000'),(382,12,'0.0000'),(382,13,'0.0000'),(382,14,'0.0000'),(382,16,'0.0000'),(382,17,'0.0000'),(382,18,'0.0000'),(382,21,'0.0000'),(382,26,'0.0000'),(382,29,'0.0000'),(382,33,'0.0000'),(382,37,'0.0000'),(382,38,'0.0000'),(382,40,'0.0000'),(382,43,'0.0000'),(382,45,'0.0000'),(382,51,'0.0000'),(382,52,'0.0000'),(382,74,'0.0000'),(382,75,'0.0000'),(382,76,'0.0000'),(382,77,'0.0000'),(382,78,'0.0000'),(382,79,'0.0000'),(382,81,'0.0000'),(382,84,'0.0000'),(382,91,'0.0000'),(382,98,'0.0000'),(382,100,'0.0000'),(382,102,'0.0000'),(382,103,'0.0000'),(382,106,'0.0000'),(382,108,'0.0000'),(382,122,'0.0000'),(382,130,'0.0000'),(382,131,'0.0000'),(382,151,'0.0000'),(382,154,'0.0000'),(382,162,'0.0000'),(382,163,'0.0000'),(382,164,'0.0000'),(382,169,'0.0000'),(389,130,'0.0000'),(418,28,'0.0000'),(418,41,'0.0000'),(418,44,'0.0000'),(418,49,'0.0000'),(418,80,'0.0000'),(418,158,'0.0000'),(418,159,'0.0000'),(418,166,'0.0000'),(419,28,'0.0000'),(419,50,'0.0000'),(419,51,'0.0000'),(419,52,'0.0000'),(419,55,'0.0000'),(419,56,'0.0000'),(419,57,'0.0000'),(419,98,'0.0000'),(419,114,'0.0000'),(419,158,'0.0000'),(419,159,'0.0000'),(419,167,'0.0000'),(423,92,'0.0000'),(423,93,'0.0000'),(434,78,'0.0000'),(448,137,'0.0000'),(448,138,'0.0000'),(448,139,'0.0000'),(448,140,'0.0000'),(448,141,'0.0000'),(455,29,'0.0000'),(455,130,'0.0000'),(459,3,'0.0000'),(459,8,'0.0000'),(459,24,'0.0000'),(459,41,'0.0000'),(459,42,'0.0000'),(459,43,'0.0000'),(459,76,'0.0000'),(459,95,'0.0000'),(459,97,'0.0000'),(459,98,'0.0000'),(459,110,'0.0000'),(459,118,'0.0000'),(459,122,'0.0000'),(459,131,'0.0000'),(459,151,'0.0000'),(459,174,'0.0000'),(459,177,'0.0000'),(459,180,'0.0000'),(460,36,'0.0000'),(460,37,'0.0000'),(460,78,'0.0000'),(471,4,'0.0000'),(471,15,'0.0000'),(471,78,'0.0000'),(471,81,'0.0000'),(471,82,'0.0000'),(474,44,'0.0000'),(474,45,'0.0000'),(474,49,'0.0000'),(474,50,'0.0000'),(474,58,'0.0000'),(474,65,'0.0000'),(474,66,'0.0000'),(474,67,'0.0000'),(474,68,'0.0000'),(474,93,'0.0000'),(474,158,'0.0000'),(474,159,'0.0000'),(479,3,'0.0000'),(479,8,'0.0000'),(479,24,'0.0000'),(479,41,'0.0000'),(479,42,'0.0000'),(479,43,'0.0000'),(479,76,'0.0000'),(479,95,'0.0000'),(479,97,'0.0000'),(479,98,'0.0000'),(479,110,'0.0000'),(479,118,'0.0000'),(479,174,'0.0000'),(479,177,'0.0000'),(479,180,'0.0000'),(489,21,'0.0000'),(489,70,'0.0000'),(489,120,'0.0000'),(489,122,'0.0000'),(489,123,'0.0000'),(489,126,'0.0000'),(539,28,'0.0000'),(555,27,'0.0000'),(555,28,'0.0000'),(555,44,'0.0000'),(555,49,'0.0000'),(555,50,'0.0000'),(555,51,'0.0000'),(555,52,'0.0000'),(555,58,'0.0000'),(555,67,'0.0000'),(555,68,'0.0000'),(555,80,'0.0000'),(555,87,'0.0000'),(555,88,'0.0000'),(555,110,'0.0000'),(555,118,'0.0000'),(555,125,'0.0000'),(555,127,'0.0000'),(555,150,'0.0000'),(555,158,'0.0000'),(555,159,'0.0000'),(555,166,'0.0000'),(555,167,'0.0000'),(555,177,'0.0000'),(564,4,'0.0000'),(564,11,'0.0000'),(564,24,'0.0000'),(564,25,'0.0000'),(564,27,'0.0000'),(564,28,'0.0000'),(564,31,'0.0000'),(564,32,'0.0000'),(564,53,'0.0000'),(564,54,'0.0000'),(564,55,'0.0000'),(564,56,'0.0000'),(564,57,'0.0000'),(564,74,'0.0000'),(564,82,'0.0000'),(564,92,'0.0000'),(564,101,'0.0000'),(564,103,'0.0000'),(564,121,'0.0000'),(564,127,'0.0000'),(564,152,'0.0000'),(564,155,'0.0000'),(564,156,'0.0000'),(564,166,'0.0000'),(564,167,'0.0000'),(564,168,'0.0000'),(564,177,'0.0000'),(564,178,'0.0000'),(565,4,'0.0000'),(565,11,'0.0000'),(565,24,'0.0000'),(565,25,'0.0000'),(565,27,'0.0000'),(565,28,'0.0000'),(565,31,'0.0000'),(565,32,'0.0000'),(565,44,'0.0000'),(565,50,'0.0000'),(565,53,'0.0000'),(565,54,'0.0000'),(565,55,'0.0000'),(565,56,'0.0000'),(565,57,'0.0000'),(565,62,'0.0000'),(565,65,'0.0000'),(565,68,'0.0000'),(565,74,'0.0000'),(565,82,'0.0000'),(565,87,'0.0000'),(565,88,'0.0000'),(565,92,'0.0000'),(565,101,'0.0000'),(565,103,'0.0000'),(565,121,'0.0000'),(565,127,'0.0000'),(565,152,'0.0000'),(565,155,'0.0000'),(565,156,'0.0000'),(565,159,'0.0000'),(565,166,'0.0000'),(565,167,'0.0000'),(565,168,'0.0000'),(565,177,'0.0000'),(565,178,'0.0000'),(565,183,'0.0000'),(575,27,'0.0000'),(575,28,'0.0000'),(575,44,'0.0000'),(575,49,'0.0000'),(575,50,'0.0000'),(575,51,'0.0000'),(575,52,'0.0000'),(575,58,'0.0000'),(575,67,'0.0000'),(575,68,'0.0000'),(575,80,'0.0000'),(575,87,'0.0000'),(575,88,'0.0000'),(575,110,'0.0000'),(575,118,'0.0000'),(575,125,'0.0000'),(575,127,'0.0000'),(575,150,'0.0000'),(575,158,'0.0000'),(575,159,'0.0000'),(575,166,'0.0000'),(575,167,'0.0000'),(586,3,'0.0000'),(586,8,'0.0000'),(586,24,'0.0000'),(586,41,'0.0000'),(586,42,'0.0000'),(586,43,'0.0000'),(586,76,'0.0000'),(586,95,'0.0000'),(586,97,'0.0000'),(586,98,'0.0000'),(586,110,'0.0000'),(586,118,'0.0000'),(586,126,'0.0000'),(586,174,'0.0000'),(586,177,'0.0000'),(586,180,'0.0000'),(587,10,'0.0000'),(587,26,'0.0000'),(587,27,'0.0000'),(587,28,'0.0000'),(587,75,'0.0000'),(587,114,'0.0000'),(587,132,'0.0000'),(587,157,'0.0000'),(587,161,'0.0000'),(587,162,'0.0000'),(587,166,'0.0000'),(589,152,'0.0000'),(589,155,'0.0000'),(589,156,'0.0000'),(591,28,'0.0000'),(591,44,'0.0000'),(591,50,'0.0000'),(591,62,'0.0000'),(591,65,'0.0000'),(591,68,'0.0000'),(591,87,'0.0000'),(591,88,'0.0000'),(591,92,'0.0000'),(591,137,'0.0000'),(591,138,'0.0000'),(591,139,'0.0000'),(591,140,'0.0000'),(591,141,'0.0000'),(591,156,'0.0000'),(591,159,'0.0000'),(591,166,'0.0000'),(591,167,'0.0000'),(591,183,'0.0000'),(594,100,'0.0000'),(595,88,'0.0000'),(595,138,'0.0000'),(595,150,'0.0000'),(596,80,'0.0000'),(599,60,'0.0000'),(599,61,'0.0000'),(599,65,'0.0000'),(599,66,'0.0000'),(599,67,'0.0000'),(599,149,'0.0000'),(601,10,'0.0000'),(601,26,'0.0000'),(601,27,'0.0000'),(601,28,'0.0000'),(601,114,'0.0000'),(601,132,'0.0000'),(601,157,'0.0000'),(601,161,'0.0000'),(601,166,'0.0000'),(602,10,'0.0000'),(602,26,'0.0000'),(602,27,'0.0000'),(602,28,'0.0000'),(602,114,'0.0000'),(602,132,'0.0000'),(602,157,'0.0000'),(602,161,'0.0000'),(602,166,'0.0000'),(603,3,'0.0000'),(603,4,'0.0000'),(603,7,'0.0000'),(603,8,'0.0000'),(603,10,'0.0000'),(603,11,'0.0000'),(603,12,'0.0000'),(603,13,'0.0000'),(603,14,'0.0000'),(603,15,'0.0000'),(603,16,'0.0000'),(603,17,'0.0000'),(603,18,'0.0000'),(603,21,'0.0000'),(603,22,'0.0000'),(603,23,'0.0000'),(603,24,'0.0000'),(603,25,'0.0000'),(603,26,'0.0000'),(603,27,'0.0000'),(603,28,'0.0000'),(603,29,'0.0000'),(603,31,'0.0000'),(603,32,'0.0000'),(603,33,'0.0000'),(603,34,'0.0000'),(603,35,'0.0000'),(603,36,'0.0000'),(603,37,'0.0000'),(603,38,'0.0000'),(603,39,'0.0000'),(603,40,'0.0000'),(603,41,'0.0000'),(603,42,'0.0000'),(603,43,'0.0000'),(603,44,'0.0000'),(603,45,'0.0000'),(603,46,'0.0000'),(603,47,'0.0000'),(603,48,'0.0000'),(603,49,'0.0000'),(603,50,'0.0000'),(603,51,'0.0000'),(603,52,'0.0000'),(603,53,'0.0000'),(603,54,'0.0000'),(603,55,'0.0000'),(603,56,'0.0000'),(603,57,'0.0000'),(603,58,'0.0000'),(603,60,'0.0000'),(603,61,'0.0000'),(603,62,'0.0000'),(603,63,'0.0000'),(603,65,'0.0000'),(603,66,'0.0000'),(603,67,'0.0000'),(603,68,'0.0000'),(603,70,'0.0000'),(603,71,'0.0000'),(603,72,'0.0000'),(603,74,'0.0000'),(603,75,'0.0000'),(603,76,'0.0000'),(603,77,'0.0000'),(603,78,'0.0000'),(603,79,'0.0000'),(603,80,'0.0000'),(603,81,'0.0000'),(603,82,'0.0000'),(603,83,'0.0000'),(603,84,'0.0000'),(603,87,'0.0000'),(603,88,'0.0000'),(603,91,'0.0000'),(603,92,'0.0000'),(603,93,'0.0000'),(603,95,'0.0000'),(603,97,'0.0000'),(603,98,'0.0000'),(603,100,'0.0000'),(603,101,'0.0000'),(603,102,'0.0000'),(603,103,'0.0000'),(603,106,'0.0000'),(603,108,'0.0000'),(603,109,'0.0000'),(603,110,'0.0000'),(603,114,'0.0000'),(603,118,'0.0000'),(603,119,'0.0000'),(603,120,'0.0000'),(603,121,'0.0000'),(603,122,'0.0000'),(603,123,'0.0000'),(603,125,'0.0000'),(603,126,'0.0000'),(603,127,'0.0000'),(603,128,'0.0000'),(603,130,'0.0000'),(603,131,'0.0000'),(603,132,'0.0000'),(603,133,'0.0000'),(603,134,'0.0000'),(603,135,'0.0000'),(603,136,'0.0000'),(603,137,'0.0000'),(603,138,'0.0000'),(603,139,'0.0000'),(603,141,'0.0000'),(603,143,'0.0000'),(603,144,'0.0000'),(603,145,'0.0000'),(603,146,'0.0000'),(603,147,'0.0000'),(603,148,'0.0000'),(603,149,'0.0000'),(603,150,'0.0000'),(603,151,'0.0000'),(603,152,'0.0000'),(603,154,'0.0000'),(603,155,'0.0000'),(603,156,'0.0000'),(603,157,'0.0000'),(603,158,'0.0000'),(603,159,'0.0000'),(603,160,'0.0000'),(603,161,'0.0000'),(603,162,'0.0000'),(603,163,'0.0000'),(603,164,'0.0000'),(603,165,'0.0000'),(603,166,'0.0000'),(603,167,'0.0000'),(603,168,'0.0000'),(603,169,'0.0000'),(603,170,'0.0000'),(603,171,'0.0000'),(603,172,'0.0000'),(603,173,'0.0000'),(603,174,'0.0000'),(603,175,'0.0000'),(603,176,'0.0000'),(603,177,'0.0000'),(603,178,'0.0000'),(603,179,'0.0000'),(603,180,'0.0000'),(603,181,'0.0000'),(603,182,'0.0000'),(603,183,'0.0000'),(605,4,'0.0000'),(605,21,'0.0000'),(605,38,'0.0000'),(605,46,'0.0000'),(605,47,'0.0000'),(605,53,'0.0000'),(605,70,'0.0000'),(605,82,'0.0000'),(605,87,'0.0000'),(605,98,'0.0000'),(605,101,'0.0000'),(605,108,'0.0000'),(605,109,'0.0000'),(605,130,'0.0000'),(605,131,'0.0000'),(605,156,'0.0000'),(605,158,'0.0000'),(605,159,'0.0000'),(605,173,'0.0000'),(605,174,'0.0000'),(605,179,'0.0000'),(605,180,'0.0000'),(605,181,'0.0000'),(605,183,'0.0000'),(606,79,'0.0000'),(607,53,'0.0000'),(607,55,'0.0000'),(607,56,'0.0000'),(607,57,'0.0000'),(607,114,'0.0000'),(607,168,'0.0000'),(608,3,'0.0000'),(608,4,'0.0000'),(608,14,'0.0000'),(608,17,'0.0000'),(608,18,'0.0000'),(608,22,'0.0000'),(608,24,'0.0000'),(608,25,'0.0000'),(608,26,'0.0000'),(608,27,'0.0000'),(608,31,'0.0000'),(608,32,'0.0000'),(608,38,'0.0000'),(608,41,'0.0000'),(608,45,'0.0000'),(608,46,'0.0000'),(608,49,'0.0000'),(608,50,'0.0000'),(608,60,'0.0000'),(608,61,'0.0000'),(608,62,'0.0000'),(608,63,'0.0000'),(608,65,'0.0000'),(608,66,'0.0000'),(608,67,'0.0000'),(608,68,'0.0000'),(608,74,'0.0000'),(608,92,'0.0000'),(608,95,'0.0000'),(608,97,'0.0000'),(608,98,'0.0000'),(608,108,'0.0000'),(608,109,'0.0000'),(608,118,'0.0000'),(608,119,'0.0000'),(608,122,'0.0000'),(608,130,'0.0000'),(608,131,'0.0000'),(608,132,'0.0000'),(608,133,'0.0000'),(608,146,'0.0000'),(608,150,'0.0000'),(608,155,'0.0000'),(608,166,'0.0000'),(608,167,'0.0000'),(608,171,'0.0000'),(608,172,'0.0000'),(608,175,'0.0000'),(608,181,'0.0000'),(609,18,'0.0000'),(609,29,'0.0000'),(609,33,'0.0000'),(609,118,'0.0000'),(609,127,'0.0000'),(609,150,'0.0000'),(609,176,'0.0000'),(610,87,'0.0000'),(610,88,'0.0000'),(610,150,'0.0000'),(610,183,'0.0000'),(611,32,'0.0000'),(611,51,'0.0000'),(611,52,'0.0000'),(611,70,'0.0000'),(611,71,'0.0000'),(611,82,'0.0000'),(611,83,'0.0000'),(611,98,'0.0000'),(611,125,'0.0000'),(611,128,'0.0000'),(614,80,'0.0000'),(614,130,'0.0000'),(615,4,'0.0000'),(615,7,'0.0000'),(615,8,'0.0000'),(615,12,'0.0000'),(615,15,'0.0000'),(615,16,'0.0000'),(615,17,'0.0000'),(615,31,'0.0000'),(615,32,'0.0000'),(615,35,'0.0000'),(615,44,'0.0000'),(615,45,'0.0000'),(615,49,'0.0000'),(615,50,'0.0000'),(615,58,'0.0000'),(615,63,'0.0000'),(615,65,'0.0000'),(615,66,'0.0000'),(615,67,'0.0000'),(615,68,'0.0000'),(615,74,'0.0000'),(615,78,'0.0000'),(615,81,'0.0000'),(615,82,'0.0000'),(615,84,'0.0000'),(615,91,'0.0000'),(615,93,'0.0000'),(615,103,'0.0000'),(615,108,'0.0000'),(615,131,'0.0000'),(615,151,'0.0000'),(615,154,'0.0000'),(615,158,'0.0000'),(615,159,'0.0000'),(615,169,'0.0000'),(617,3,'0.0000'),(617,4,'0.0000'),(617,8,'0.0000'),(617,17,'0.0000'),(617,25,'0.0000'),(617,31,'0.0000'),(617,32,'0.0000'),(617,33,'0.0000'),(617,42,'0.0000'),(617,44,'0.0000'),(617,49,'0.0000'),(617,63,'0.0000'),(617,66,'0.0000'),(617,67,'0.0000'),(617,82,'0.0000'),(617,83,'0.0000'),(617,84,'0.0000'),(617,87,'0.0000'),(617,88,'0.0000'),(617,93,'0.0000'),(617,95,'0.0000'),(617,97,'0.0000'),(617,98,'0.0000'),(617,101,'0.0000'),(617,102,'0.0000'),(617,103,'0.0000'),(617,118,'0.0000'),(617,127,'0.0000'),(617,128,'0.0000'),(617,131,'0.0000'),(617,132,'0.0000'),(617,133,'0.0000'),(617,138,'0.0000'),(617,139,'0.0000'),(617,143,'0.0000'),(617,144,'0.0000'),(617,147,'0.0000'),(617,150,'0.0000'),(617,151,'0.0000'),(617,152,'0.0000'),(617,154,'0.0000'),(617,155,'0.0000'),(617,156,'0.0000'),(617,158,'0.0000'),(617,159,'0.0000'),(617,169,'0.0000'),(617,171,'0.0000'),(617,175,'0.0000'),(617,183,'0.0000'),(618,28,'0.0000'),(618,55,'0.0000'),(618,56,'0.0000'),(618,57,'0.0000'),(618,114,'0.0000'),(618,167,'0.0000'),(619,3,'0.0000'),(619,25,'0.0000'),(619,37,'0.0000'),(619,41,'0.0000'),(619,46,'0.0000'),(619,47,'0.0000'),(619,48,'0.0000'),(619,52,'0.0000'),(619,62,'0.0000'),(619,63,'0.0000'),(619,77,'0.0000'),(619,79,'0.0000'),(619,87,'0.0000'),(619,92,'0.0000'),(619,97,'0.0000'),(619,98,'0.0000'),(619,100,'0.0000'),(619,106,'0.0000'),(619,118,'0.0000'),(619,119,'0.0000'),(619,154,'0.0000'),(619,155,'0.0000'),(619,156,'0.0000'),(619,157,'0.0000'),(619,164,'0.0000'),(619,169,'0.0000'),(619,170,'0.0000'),(619,181,'0.0000'),(620,4,'0.0000'),(620,7,'0.0000'),(620,8,'0.0000'),(620,10,'0.0000'),(620,11,'0.0000'),(620,12,'0.0000'),(620,13,'0.0000'),(620,14,'0.0000'),(620,16,'0.0000'),(620,17,'0.0000'),(620,18,'0.0000'),(620,21,'0.0000'),(620,26,'0.0000'),(620,28,'0.0000'),(620,29,'0.0000'),(620,33,'0.0000'),(620,37,'0.0000'),(620,38,'0.0000'),(620,40,'0.0000'),(620,43,'0.0000'),(620,44,'0.0000'),(620,45,'0.0000'),(620,48,'0.0000'),(620,49,'0.0000'),(620,54,'0.0000'),(620,63,'0.0000'),(620,66,'0.0000'),(620,67,'0.0000'),(620,74,'0.0000'),(620,75,'0.0000'),(620,76,'0.0000'),(620,77,'0.0000'),(620,78,'0.0000'),(620,79,'0.0000'),(620,80,'0.0000'),(620,81,'0.0000'),(620,83,'0.0000'),(620,84,'0.0000'),(620,87,'0.0000'),(620,91,'0.0000'),(620,93,'0.0000'),(620,97,'0.0000'),(620,98,'0.0000'),(620,100,'0.0000'),(620,102,'0.0000'),(620,103,'0.0000'),(620,106,'0.0000'),(620,108,'0.0000'),(620,114,'0.0000'),(620,122,'0.0000'),(620,127,'0.0000'),(620,128,'0.0000'),(620,130,'0.0000'),(620,131,'0.0000'),(620,132,'0.0000'),(620,151,'0.0000'),(620,154,'0.0000'),(620,155,'0.0000'),(620,156,'0.0000'),(620,162,'0.0000'),(620,163,'0.0000'),(620,164,'0.0000'),(620,169,'0.0000'),(620,171,'0.0000'),(620,172,'0.0000'),(620,175,'0.0000'),(620,178,'0.0000'),(620,179,'0.0000'),(620,180,'0.0000'),(620,183,'0.0000'),(621,4,'0.0000'),(621,27,'0.0000'),(621,62,'0.0000'),(621,63,'0.0000'),(621,67,'0.0000'),(621,68,'0.0000'),(621,97,'0.0000'),(621,114,'0.0000'),(621,128,'0.0000'),(621,132,'0.0000'),(621,152,'0.0000'),(621,154,'0.0000'),(621,155,'0.0000'),(621,160,'0.0000'),(621,166,'0.0000'),(623,8,'0.0000'),(623,10,'0.0000'),(623,11,'0.0000'),(623,12,'0.0000'),(623,13,'0.0000'),(623,14,'0.0000'),(623,16,'0.0000'),(623,17,'0.0000'),(623,18,'0.0000'),(623,21,'0.0000'),(623,26,'0.0000'),(623,29,'0.0000'),(623,33,'0.0000'),(623,37,'0.0000'),(623,38,'0.0000'),(623,40,'0.0000'),(623,43,'0.0000'),(623,45,'0.0000'),(623,74,'0.0000'),(623,75,'0.0000'),(623,76,'0.0000'),(623,77,'0.0000'),(623,78,'0.0000'),(623,79,'0.0000'),(623,81,'0.0000'),(623,84,'0.0000'),(623,91,'0.0000'),(623,98,'0.0000'),(623,100,'0.0000'),(623,102,'0.0000'),(623,103,'0.0000'),(623,106,'0.0000'),(623,108,'0.0000'),(623,122,'0.0000'),(623,130,'0.0000'),(623,131,'0.0000'),(623,151,'0.0000'),(623,154,'0.0000'),(623,162,'0.0000'),(623,163,'0.0000'),(623,164,'0.0000'),(623,169,'0.0000'),(623,176,'0.0000'),(624,3,'0.0000'),(624,4,'0.0000'),(624,7,'0.0000'),(624,8,'0.0000'),(624,12,'0.0000'),(624,13,'0.0000'),(624,23,'0.0000'),(624,24,'0.0000'),(624,25,'0.0000'),(624,27,'0.0000'),(624,28,'0.0000'),(624,29,'0.0000'),(624,33,'0.0000'),(624,42,'0.0000'),(624,44,'0.0000'),(624,45,'0.0000'),(624,49,'0.0000'),(624,50,'0.0000'),(624,51,'0.0000'),(624,53,'0.0000'),(624,54,'0.0000'),(624,60,'0.0000'),(624,62,'0.0000'),(624,65,'0.0000'),(624,66,'0.0000'),(624,71,'0.0000'),(624,75,'0.0000'),(624,77,'0.0000'),(624,78,'0.0000'),(624,80,'0.0000'),(624,81,'0.0000'),(624,82,'0.0000'),(624,87,'0.0000'),(624,88,'0.0000'),(624,93,'0.0000'),(624,95,'0.0000'),(624,97,'0.0000'),(624,98,'0.0000'),(624,101,'0.0000'),(624,103,'0.0000'),(624,108,'0.0000'),(624,110,'0.0000'),(624,114,'0.0000'),(624,118,'0.0000'),(624,119,'0.0000'),(624,120,'0.0000'),(624,122,'0.0000'),(624,125,'0.0000'),(624,128,'0.0000'),(624,130,'0.0000'),(624,131,'0.0000'),(624,132,'0.0000'),(624,133,'0.0000'),(624,134,'0.0000'),(624,150,'0.0000'),(624,155,'0.0000'),(624,156,'0.0000'),(624,158,'0.0000'),(624,159,'0.0000'),(624,162,'0.0000'),(624,163,'0.0000'),(624,164,'0.0000'),(624,165,'0.0000'),(624,166,'0.0000'),(624,167,'0.0000'),(624,168,'0.0000'),(624,169,'0.0000'),(624,170,'0.0000'),(624,171,'0.0000'),(624,172,'0.0000'),(624,173,'0.0000'),(624,174,'0.0000'),(624,175,'0.0000'),(624,176,'0.0000'),(624,177,'0.0000'),(624,178,'0.0000'),(624,179,'0.0000'),(624,180,'0.0000'),(624,181,'0.0000'),(624,183,'0.0000'),(626,44,'0.0000'),(626,45,'0.0000'),(626,49,'0.0000'),(626,50,'0.0000'),(626,58,'0.0000'),(626,65,'0.0000'),(626,66,'0.0000'),(626,67,'0.0000'),(626,68,'0.0000'),(626,78,'0.0000'),(626,93,'0.0000'),(626,158,'0.0000'),(626,159,'0.0000'),(627,4,'0.0000'),(627,7,'0.0000'),(627,8,'0.0000'),(627,13,'0.0000'),(627,21,'0.0000'),(627,28,'0.0000'),(627,35,'0.0000'),(627,38,'0.0000'),(627,39,'0.0000'),(627,40,'0.0000'),(627,49,'0.0000'),(627,50,'0.0000'),(627,72,'0.0000'),(627,74,'0.0000'),(627,75,'0.0000'),(627,77,'0.0000'),(627,81,'0.0000'),(627,118,'0.0000'),(627,119,'0.0000'),(627,122,'0.0000'),(627,123,'0.0000'),(627,125,'0.0000'),(627,127,'0.0000'),(627,128,'0.0000'),(627,130,'0.0000'),(627,139,'0.0000'),(627,155,'0.0000'),(627,156,'0.0000'),(627,166,'0.0000'),(627,173,'0.0000'),(627,183,'0.0000'),(628,4,'0.0000'),(628,7,'0.0000'),(628,8,'0.0000'),(628,13,'0.0000'),(628,21,'0.0000'),(628,28,'0.0000'),(628,35,'0.0000'),(628,38,'0.0000'),(628,39,'0.0000'),(628,40,'0.0000'),(628,49,'0.0000'),(628,50,'0.0000'),(628,72,'0.0000'),(628,74,'0.0000'),(628,75,'0.0000'),(628,77,'0.0000'),(628,81,'0.0000'),(628,118,'0.0000'),(628,119,'0.0000'),(628,122,'0.0000'),(628,123,'0.0000'),(628,125,'0.0000'),(628,127,'0.0000'),(628,128,'0.0000'),(628,130,'0.0000'),(628,139,'0.0000'),(628,155,'0.0000'),(628,156,'0.0000'),(628,166,'0.0000'),(628,170,'0.0000'),(628,173,'0.0000'),(628,176,'0.0000'),(628,183,'0.0000'),(629,130,'0.0000'),(630,26,'0.0000'),(630,34,'0.0000'),(630,119,'0.0000'),(630,120,'0.0000'),(630,122,'0.0000'),(630,130,'0.0000'),(630,157,'0.0000'),(630,163,'0.0000'),(630,164,'0.0000'),(630,176,'0.0000'),(636,3,'0.0000'),(636,10,'0.0000'),(636,15,'0.0000'),(636,16,'0.0000'),(636,22,'0.0000'),(636,23,'0.0000'),(636,24,'0.0000'),(636,25,'0.0000'),(636,31,'0.0000'),(636,35,'0.0000'),(636,37,'0.0000'),(636,41,'0.0000'),(636,46,'0.0000'),(636,47,'0.0000'),(636,48,'0.0000'),(636,62,'0.0000'),(636,63,'0.0000'),(636,77,'0.0000'),(636,79,'0.0000'),(636,81,'0.0000'),(636,82,'0.0000'),(636,87,'0.0000'),(636,92,'0.0000'),(636,97,'0.0000'),(636,98,'0.0000'),(636,106,'0.0000'),(636,118,'0.0000'),(636,119,'0.0000'),(636,154,'0.0000'),(636,155,'0.0000'),(636,156,'0.0000'),(636,157,'0.0000'),(636,164,'0.0000'),(636,169,'0.0000'),(636,170,'0.0000'),(637,15,'0.0000'),(637,16,'0.0000'),(637,23,'0.0000'),(637,24,'0.0000'),(637,31,'0.0000'),(637,81,'0.0000'),(637,82,'0.0000'),(637,155,'0.0000'),(638,15,'0.0000'),(638,16,'0.0000'),(638,23,'0.0000'),(638,24,'0.0000'),(638,31,'0.0000'),(638,81,'0.0000'),(638,82,'0.0000'),(638,155,'0.0000'),(640,77,'0.0000'),(640,106,'0.0000'),(641,4,'0.0000'),(641,21,'0.0000'),(641,38,'0.0000'),(641,47,'0.0000'),(641,70,'0.0000'),(641,82,'0.0000'),(641,87,'0.0000'),(641,98,'0.0000'),(641,101,'0.0000'),(641,130,'0.0000'),(641,156,'0.0000'),(641,158,'0.0000'),(641,159,'0.0000'),(641,173,'0.0000'),(641,179,'0.0000'),(641,181,'0.0000'),(642,27,'0.0000'),(642,28,'0.0000'),(642,44,'0.0000'),(642,49,'0.0000'),(642,50,'0.0000'),(642,51,'0.0000'),(642,52,'0.0000'),(642,58,'0.0000'),(642,67,'0.0000'),(642,68,'0.0000'),(642,80,'0.0000'),(642,87,'0.0000'),(642,88,'0.0000'),(642,110,'0.0000'),(642,118,'0.0000'),(642,125,'0.0000'),(642,127,'0.0000'),(642,150,'0.0000'),(642,158,'0.0000'),(642,159,'0.0000'),(642,166,'0.0000'),(642,167,'0.0000'),(645,74,'0.0000'),(646,118,'0.0000'),(647,39,'0.0000'),(647,43,'0.0000'),(647,62,'0.0000'),(647,63,'0.0000'),(647,76,'0.0000'),(647,122,'0.0000'),(647,131,'0.0000'),(647,151,'0.0000'),(647,168,'0.0000'),(647,177,'0.0000'),(648,24,'0.0000'),(648,25,'0.0000'),(648,119,'0.0000'),(648,155,'0.0000'),(648,156,'0.0000'),(648,173,'0.0000'),(650,160,'0.0000'),(650,161,'0.0000'),(651,4,'0.0000'),(651,7,'0.0000'),(651,8,'0.0000'),(651,12,'0.0000'),(651,15,'0.0000'),(651,16,'0.0000'),(651,17,'0.0000'),(651,31,'0.0000'),(651,32,'0.0000'),(651,35,'0.0000'),(651,74,'0.0000'),(651,78,'0.0000'),(651,81,'0.0000'),(651,82,'0.0000'),(651,84,'0.0000'),(651,91,'0.0000'),(651,103,'0.0000'),(651,108,'0.0000'),(651,131,'0.0000'),(651,151,'0.0000'),(651,154,'0.0000'),(651,169,'0.0000'),(652,4,'0.0000'),(652,7,'0.0000'),(652,8,'0.0000'),(652,13,'0.0000'),(652,21,'0.0000'),(652,39,'0.0000'),(652,40,'0.0000'),(652,72,'0.0000'),(652,75,'0.0000'),(652,118,'0.0000'),(652,131,'0.0000'),(652,175,'0.0000'),(654,44,'0.0000'),(654,45,'0.0000'),(654,49,'0.0000'),(654,50,'0.0000'),(654,58,'0.0000'),(654,60,'0.0000'),(654,61,'0.0000'),(654,65,'0.0000'),(654,66,'0.0000'),(654,67,'0.0000'),(654,68,'0.0000'),(654,70,'0.0000'),(654,82,'0.0000'),(654,93,'0.0000'),(654,97,'0.0000'),(654,118,'0.0000'),(654,127,'0.0000'),(654,149,'0.0000'),(654,158,'0.0000'),(654,159,'0.0000'),(654,181,'0.0000'),(654,183,'0.0000'),(655,44,'0.0000'),(655,45,'0.0000'),(655,49,'0.0000'),(655,50,'0.0000'),(655,58,'0.0000'),(655,60,'0.0000'),(655,61,'0.0000'),(655,65,'0.0000'),(655,66,'0.0000'),(655,67,'0.0000'),(655,68,'0.0000'),(655,93,'0.0000'),(655,149,'0.0000'),(655,158,'0.0000'),(655,159,'0.0000'),(655,183,'0.0000'),(658,27,'0.0000'),(658,35,'0.0000'),(658,43,'0.0000'),(658,50,'0.0000'),(658,74,'0.0000'),(658,158,'0.0000'),(658,159,'0.0000'),(659,122,'0.0000'),(659,123,'0.0000'),(664,27,'0.0000'),(664,28,'0.0000'),(664,62,'0.0000'),(664,63,'0.0000'),(664,114,'0.0000'),(664,132,'0.0000'),(664,160,'0.0000'),(664,166,'0.0000'),(664,167,'0.0000'),(668,14,'0.0000'),(668,25,'0.0000'),(668,28,'0.0000'),(668,46,'0.0000'),(668,47,'0.0000'),(668,49,'0.0000'),(668,50,'0.0000'),(668,143,'0.0000'),(668,155,'0.0000'),(668,169,'0.0000'),(668,175,'0.0000'),(669,3,'0.0000'),(669,4,'0.0000'),(669,7,'0.0000'),(669,8,'0.0000'),(669,14,'0.0000'),(669,15,'0.0000'),(669,16,'0.0000'),(669,17,'0.0000'),(669,23,'0.0000'),(669,26,'0.0000'),(669,28,'0.0000'),(669,33,'0.0000'),(669,34,'0.0000'),(669,41,'0.0000'),(669,43,'0.0000'),(669,44,'0.0000'),(669,45,'0.0000'),(669,49,'0.0000'),(669,50,'0.0000'),(669,55,'0.0000'),(669,58,'0.0000'),(669,67,'0.0000'),(669,68,'0.0000'),(669,81,'0.0000'),(669,84,'0.0000'),(669,87,'0.0000'),(669,97,'0.0000'),(669,98,'0.0000'),(669,103,'0.0000'),(669,118,'0.0000'),(669,119,'0.0000'),(669,121,'0.0000'),(669,122,'0.0000'),(669,125,'0.0000'),(669,127,'0.0000'),(669,128,'0.0000'),(669,130,'0.0000'),(669,150,'0.0000'),(669,154,'0.0000'),(669,155,'0.0000'),(669,158,'0.0000'),(669,159,'0.0000'),(669,166,'0.0000'),(669,169,'0.0000'),(669,170,'0.0000'),(669,171,'0.0000'),(669,172,'0.0000'),(669,174,'0.0000'),(669,176,'0.0000'),(669,183,'0.0000'),(672,38,'0.0000'),(672,44,'0.0000'),(672,45,'0.0000'),(672,47,'0.0000'),(672,49,'0.0000'),(672,50,'0.0000'),(672,58,'0.0000'),(672,65,'0.0000'),(672,66,'0.0000'),(672,67,'0.0000'),(672,68,'0.0000'),(672,78,'0.0000'),(672,93,'0.0000'),(672,158,'0.0000'),(672,159,'0.0000'),(674,4,'0.0000'),(674,13,'0.0000'),(674,16,'0.0000'),(674,28,'0.0000'),(674,31,'0.0000'),(674,55,'0.0000'),(674,56,'0.0000'),(674,57,'0.0000'),(674,70,'0.0000'),(674,84,'0.0000'),(674,114,'0.0000'),(674,130,'0.0000'),(674,155,'0.0000'),(674,158,'0.0000'),(674,159,'0.0000'),(674,160,'0.0000'),(674,161,'0.0000'),(674,163,'0.0000'),(674,167,'0.0000'),(674,169,'0.0000'),(674,175,'0.0000'),(674,178,'0.0000'),(674,183,'0.0000'),(675,4,'0.0000'),(675,101,'0.0000'),(675,181,'0.0000'),(676,4,'0.0000'),(676,10,'0.0000'),(676,23,'0.0000'),(676,24,'0.0000'),(676,28,'0.0000'),(676,39,'0.0000'),(676,40,'0.0000'),(676,48,'0.0000'),(676,50,'0.0000'),(676,51,'0.0000'),(676,52,'0.0000'),(676,63,'0.0000'),(676,65,'0.0000'),(676,66,'0.0000'),(676,74,'0.0000'),(676,75,'0.0000'),(676,82,'0.0000'),(676,83,'0.0000'),(676,87,'0.0000'),(676,101,'0.0000'),(676,114,'0.0000'),(676,118,'0.0000'),(676,122,'0.0000'),(676,125,'0.0000'),(676,127,'0.0000'),(676,130,'0.0000'),(676,135,'0.0000'),(676,150,'0.0000'),(676,151,'0.0000'),(676,154,'0.0000'),(676,156,'0.0000'),(676,157,'0.0000'),(676,163,'0.0000'),(676,164,'0.0000'),(676,166,'0.0000'),(676,167,'0.0000'),(676,170,'0.0000'),(676,173,'0.0000'),(676,175,'0.0000'),(676,176,'0.0000'),(676,180,'0.0000'),(676,181,'0.0000'),(676,183,'0.0000'),(678,3,'0.0000'),(678,8,'0.0000'),(678,18,'0.0000'),(678,24,'0.0000'),(678,41,'0.0000'),(678,42,'0.0000'),(678,43,'0.0000'),(678,76,'0.0000'),(678,77,'0.0000'),(678,95,'0.0000'),(678,97,'0.0000'),(678,98,'0.0000'),(678,110,'0.0000'),(678,118,'0.0000'),(678,174,'0.0000'),(678,177,'0.0000'),(678,180,'0.0000'),(680,4,'0.0000'),(680,7,'0.0000'),(680,12,'0.0000'),(680,15,'0.0000'),(680,16,'0.0000'),(680,17,'0.0000'),(680,31,'0.0000'),(680,32,'0.0000'),(680,35,'0.0000'),(680,74,'0.0000'),(680,78,'0.0000'),(680,81,'0.0000'),(680,82,'0.0000'),(680,84,'0.0000'),(680,103,'0.0000'),(680,108,'0.0000'),(680,131,'0.0000'),(680,151,'0.0000'),(680,154,'0.0000'),(680,169,'0.0000'),(689,4,'0.0000'),(689,7,'0.0000'),(689,8,'0.0000'),(689,10,'0.0000'),(689,13,'0.0000'),(689,21,'0.0000'),(689,26,'0.0000'),(689,27,'0.0000'),(689,28,'0.0000'),(689,29,'0.0000'),(689,34,'0.0000'),(689,39,'0.0000'),(689,42,'0.0000'),(689,43,'0.0000'),(689,45,'0.0000'),(689,114,'0.0000'),(689,132,'0.0000'),(689,157,'0.0000'),(689,161,'0.0000'),(689,166,'0.0000'),(693,13,'0.0000'),(693,22,'0.0000'),(693,33,'0.0000'),(693,78,'0.0000'),(693,131,'0.0000'),(693,149,'0.0000'),(693,155,'0.0000'),(693,156,'0.0000'),(694,4,'0.0000'),(694,8,'0.0000'),(694,11,'0.0000'),(694,35,'0.0000'),(694,42,'0.0000'),(694,75,'0.0000'),(694,97,'0.0000'),(694,103,'0.0000'),(694,118,'0.0000'),(694,131,'0.0000'),(694,137,'0.0000'),(694,138,'0.0000'),(694,139,'0.0000'),(694,140,'0.0000'),(694,141,'0.0000'),(694,145,'0.0000'),(694,166,'0.0000'),(694,167,'0.0000'),(694,173,'0.0000'),(695,4,'0.0000'),(695,8,'0.0000'),(695,11,'0.0000'),(695,35,'0.0000'),(695,42,'0.0000'),(695,75,'0.0000'),(695,82,'0.0000'),(695,97,'0.0000'),(695,103,'0.0000'),(695,118,'0.0000'),(695,131,'0.0000'),(695,137,'0.0000'),(695,138,'0.0000'),(695,139,'0.0000'),(695,140,'0.0000'),(695,141,'0.0000'),(695,145,'0.0000'),(695,166,'0.0000'),(695,167,'0.0000'),(695,173,'0.0000'),(701,4,'0.0000'),(701,11,'0.0000'),(701,24,'0.0000'),(701,25,'0.0000'),(701,27,'0.0000'),(701,28,'0.0000'),(701,31,'0.0000'),(701,32,'0.0000'),(701,44,'0.0000'),(701,45,'0.0000'),(701,49,'0.0000'),(701,50,'0.0000'),(701,53,'0.0000'),(701,54,'0.0000'),(701,55,'0.0000'),(701,56,'0.0000'),(701,57,'0.0000'),(701,58,'0.0000'),(701,65,'0.0000'),(701,66,'0.0000'),(701,67,'0.0000'),(701,68,'0.0000'),(701,74,'0.0000'),(701,82,'0.0000'),(701,92,'0.0000'),(701,93,'0.0000'),(701,101,'0.0000'),(701,103,'0.0000'),(701,121,'0.0000'),(701,127,'0.0000'),(701,155,'0.0000'),(701,156,'0.0000'),(701,158,'0.0000'),(701,159,'0.0000'),(701,166,'0.0000'),(701,167,'0.0000'),(701,168,'0.0000'),(701,177,'0.0000'),(701,178,'0.0000'),(703,43,'0.0000'),(703,76,'0.0000'),(703,122,'0.0000'),(703,131,'0.0000'),(703,151,'0.0000'),(703,177,'0.0000'),(705,3,'0.0000'),(705,4,'0.0000'),(705,7,'0.0000'),(705,8,'0.0000'),(705,12,'0.0000'),(705,13,'0.0000'),(705,24,'0.0000'),(705,25,'0.0000'),(705,27,'0.0000'),(705,28,'0.0000'),(705,33,'0.0000'),(705,42,'0.0000'),(705,45,'0.0000'),(705,49,'0.0000'),(705,50,'0.0000'),(705,51,'0.0000'),(705,53,'0.0000'),(705,54,'0.0000'),(705,60,'0.0000'),(705,62,'0.0000'),(705,75,'0.0000'),(705,78,'0.0000'),(705,81,'0.0000'),(705,82,'0.0000'),(705,87,'0.0000'),(705,88,'0.0000'),(705,93,'0.0000'),(705,95,'0.0000'),(705,97,'0.0000'),(705,98,'0.0000'),(705,101,'0.0000'),(705,103,'0.0000'),(705,108,'0.0000'),(705,114,'0.0000'),(705,118,'0.0000'),(705,122,'0.0000'),(705,125,'0.0000'),(705,130,'0.0000'),(705,131,'0.0000'),(705,132,'0.0000'),(705,133,'0.0000'),(705,134,'0.0000'),(705,150,'0.0000'),(705,155,'0.0000'),(705,156,'0.0000'),(705,158,'0.0000'),(705,159,'0.0000'),(705,162,'0.0000'),(705,163,'0.0000'),(705,164,'0.0000'),(705,165,'0.0000'),(705,166,'0.0000'),(705,167,'0.0000'),(705,168,'0.0000'),(705,169,'0.0000'),(705,170,'0.0000'),(705,171,'0.0000'),(705,172,'0.0000'),(705,173,'0.0000'),(705,174,'0.0000'),(705,175,'0.0000'),(705,176,'0.0000'),(705,177,'0.0000'),(705,178,'0.0000'),(705,179,'0.0000'),(705,180,'0.0000'),(705,181,'0.0000'),(705,183,'0.0000'),(711,8,'0.0000'),(711,10,'0.0000'),(711,11,'0.0000'),(711,12,'0.0000'),(711,13,'0.0000'),(711,14,'0.0000'),(711,16,'0.0000'),(711,17,'0.0000'),(711,18,'0.0000'),(711,21,'0.0000'),(711,25,'0.0000'),(711,26,'0.0000'),(711,29,'0.0000'),(711,31,'0.0000'),(711,32,'0.0000'),(711,33,'0.0000'),(711,37,'0.0000'),(711,38,'0.0000'),(711,40,'0.0000'),(711,43,'0.0000'),(711,45,'0.0000'),(711,74,'0.0000'),(711,75,'0.0000'),(711,76,'0.0000'),(711,77,'0.0000'),(711,78,'0.0000'),(711,79,'0.0000'),(711,81,'0.0000'),(711,84,'0.0000'),(711,87,'0.0000'),(711,88,'0.0000'),(711,91,'0.0000'),(711,98,'0.0000'),(711,100,'0.0000'),(711,102,'0.0000'),(711,103,'0.0000'),(711,106,'0.0000'),(711,108,'0.0000'),(711,122,'0.0000'),(711,130,'0.0000'),(711,131,'0.0000'),(711,139,'0.0000'),(711,143,'0.0000'),(711,144,'0.0000'),(711,147,'0.0000'),(711,150,'0.0000'),(711,151,'0.0000'),(711,154,'0.0000'),(711,162,'0.0000'),(711,163,'0.0000'),(711,164,'0.0000'),(711,169,'0.0000'),(711,183,'0.0000'),(714,3,'0.0000'),(714,4,'0.0000'),(714,7,'0.0000'),(714,8,'0.0000'),(714,10,'0.0000'),(714,11,'0.0000'),(714,13,'0.0000'),(714,14,'0.0000'),(714,21,'0.0000'),(714,23,'0.0000'),(714,24,'0.0000'),(714,25,'0.0000'),(714,27,'0.0000'),(714,28,'0.0000'),(714,29,'0.0000'),(714,32,'0.0000'),(714,39,'0.0000'),(714,42,'0.0000'),(714,44,'0.0000'),(714,45,'0.0000'),(714,49,'0.0000'),(714,50,'0.0000'),(714,51,'0.0000'),(714,52,'0.0000'),(714,54,'0.0000'),(714,55,'0.0000'),(714,56,'0.0000'),(714,58,'0.0000'),(714,60,'0.0000'),(714,62,'0.0000'),(714,67,'0.0000'),(714,68,'0.0000'),(714,70,'0.0000'),(714,71,'0.0000'),(714,75,'0.0000'),(714,76,'0.0000'),(714,78,'0.0000'),(714,79,'0.0000'),(714,81,'0.0000'),(714,82,'0.0000'),(714,87,'0.0000'),(714,88,'0.0000'),(714,92,'0.0000'),(714,93,'0.0000'),(714,95,'0.0000'),(714,97,'0.0000'),(714,98,'0.0000'),(714,101,'0.0000'),(714,103,'0.0000'),(714,110,'0.0000'),(714,114,'0.0000'),(714,119,'0.0000'),(714,120,'0.0000'),(714,122,'0.0000'),(714,125,'0.0000'),(714,126,'0.0000'),(714,127,'0.0000'),(714,128,'0.0000'),(714,130,'0.0000'),(714,131,'0.0000'),(714,132,'0.0000'),(714,149,'0.0000'),(714,150,'0.0000'),(714,151,'0.0000'),(714,152,'0.0000'),(714,155,'0.0000'),(714,156,'0.0000'),(714,158,'0.0000'),(714,159,'0.0000'),(714,166,'0.0000'),(714,168,'0.0000'),(714,170,'0.0000'),(714,171,'0.0000'),(714,172,'0.0000'),(714,173,'0.0000'),(714,174,'0.0000'),(714,175,'0.0000'),(714,176,'0.0000'),(714,177,'0.0000'),(714,178,'0.0000'),(714,179,'0.0000'),(714,180,'0.0000'),(714,183,'0.0000'),(716,21,'0.0000'),(716,70,'0.0000'),(716,120,'0.0000'),(716,122,'0.0000'),(716,123,'0.0000'),(716,126,'0.0000'),(718,50,'0.0000'),(718,62,'0.0000'),(718,63,'0.0000'),(718,114,'0.0000'),(718,132,'0.0000'),(718,158,'0.0000'),(718,159,'0.0000'),(718,160,'0.0000'),(718,167,'0.0000'),(727,4,'0.0000'),(727,11,'0.0000'),(727,24,'0.0000'),(727,25,'0.0000'),(727,27,'0.0000'),(727,28,'0.0000'),(727,31,'0.0000'),(727,32,'0.0000'),(727,38,'0.0000'),(727,53,'0.0000'),(727,54,'0.0000'),(727,55,'0.0000'),(727,56,'0.0000'),(727,57,'0.0000'),(727,74,'0.0000'),(727,75,'0.0000'),(727,77,'0.0000'),(727,81,'0.0000'),(727,82,'0.0000'),(727,92,'0.0000'),(727,101,'0.0000'),(727,103,'0.0000'),(727,114,'0.0000'),(727,118,'0.0000'),(727,121,'0.0000'),(727,125,'0.0000'),(727,127,'0.0000'),(727,128,'0.0000'),(727,130,'0.0000'),(727,139,'0.0000'),(727,155,'0.0000'),(727,156,'0.0000'),(727,166,'0.0000'),(727,167,'0.0000'),(727,168,'0.0000'),(727,173,'0.0000'),(727,177,'0.0000'),(727,178,'0.0000'),(734,4,'0.0000'),(734,11,'0.0000'),(734,17,'0.0000'),(734,24,'0.0000'),(734,25,'0.0000'),(734,27,'0.0000'),(734,28,'0.0000'),(734,31,'0.0000'),(734,32,'0.0000'),(734,33,'0.0000'),(734,53,'0.0000'),(734,54,'0.0000'),(734,55,'0.0000'),(734,56,'0.0000'),(734,57,'0.0000'),(734,74,'0.0000'),(734,82,'0.0000'),(734,84,'0.0000'),(734,87,'0.0000'),(734,88,'0.0000'),(734,92,'0.0000'),(734,101,'0.0000'),(734,103,'0.0000'),(734,121,'0.0000'),(734,127,'0.0000'),(734,131,'0.0000'),(734,139,'0.0000'),(734,143,'0.0000'),(734,144,'0.0000'),(734,147,'0.0000'),(734,150,'0.0000'),(734,151,'0.0000'),(734,155,'0.0000'),(734,156,'0.0000'),(734,166,'0.0000'),(734,167,'0.0000'),(734,168,'0.0000'),(734,169,'0.0000'),(734,177,'0.0000'),(734,178,'0.0000'),(734,183,'0.0000'),(737,50,'0.0000'),(737,88,'0.0000'),(737,95,'0.0000'),(737,97,'0.0000'),(737,155,'0.0000'),(737,156,'0.0000'),(737,158,'0.0000'),(737,159,'0.0000'),(737,161,'0.0000'),(737,180,'0.0000'),(742,3,'0.0000'),(742,4,'0.0000'),(742,7,'0.0000'),(742,8,'0.0000'),(742,14,'0.0000'),(742,17,'0.0000'),(742,24,'0.0000'),(742,25,'0.0000'),(742,27,'0.0000'),(742,28,'0.0000'),(742,29,'0.0000'),(742,32,'0.0000'),(742,33,'0.0000'),(742,39,'0.0000'),(742,41,'0.0000'),(742,44,'0.0000'),(742,45,'0.0000'),(742,46,'0.0000'),(742,49,'0.0000'),(742,50,'0.0000'),(742,51,'0.0000'),(742,52,'0.0000'),(742,55,'0.0000'),(742,58,'0.0000'),(742,62,'0.0000'),(742,63,'0.0000'),(742,67,'0.0000'),(742,68,'0.0000'),(742,70,'0.0000'),(742,71,'0.0000'),(742,76,'0.0000'),(742,81,'0.0000'),(742,82,'0.0000'),(742,84,'0.0000'),(742,87,'0.0000'),(742,88,'0.0000'),(742,93,'0.0000'),(742,95,'0.0000'),(742,97,'0.0000'),(742,98,'0.0000'),(742,101,'0.0000'),(742,103,'0.0000'),(742,108,'0.0000'),(742,110,'0.0000'),(742,114,'0.0000'),(742,118,'0.0000'),(742,119,'0.0000'),(742,120,'0.0000'),(742,121,'0.0000'),(742,122,'0.0000'),(742,123,'0.0000'),(742,125,'0.0000'),(742,126,'0.0000'),(742,127,'0.0000'),(742,128,'0.0000'),(742,130,'0.0000'),(742,131,'0.0000'),(742,133,'0.0000'),(742,139,'0.0000'),(742,150,'0.0000'),(742,152,'0.0000'),(742,155,'0.0000'),(742,156,'0.0000'),(742,158,'0.0000'),(742,159,'0.0000'),(742,162,'0.0000'),(742,163,'0.0000'),(742,164,'0.0000'),(742,166,'0.0000'),(742,169,'0.0000'),(742,171,'0.0000'),(742,172,'0.0000'),(742,175,'0.0000'),(742,177,'0.0000'),(742,179,'0.0000'),(742,180,'0.0000'),(742,181,'0.0000'),(747,4,'0.0000'),(747,11,'0.0000'),(747,24,'0.0000'),(747,25,'0.0000'),(747,27,'0.0000'),(747,28,'0.0000'),(747,31,'0.0000'),(747,32,'0.0000'),(747,35,'0.0000'),(747,53,'0.0000'),(747,54,'0.0000'),(747,55,'0.0000'),(747,56,'0.0000'),(747,57,'0.0000'),(747,70,'0.0000'),(747,74,'0.0000'),(747,82,'0.0000'),(747,92,'0.0000'),(747,101,'0.0000'),(747,103,'0.0000'),(747,114,'0.0000'),(747,121,'0.0000'),(747,122,'0.0000'),(747,127,'0.0000'),(747,130,'0.0000'),(747,155,'0.0000'),(747,156,'0.0000'),(747,162,'0.0000'),(747,163,'0.0000'),(747,164,'0.0000'),(747,166,'0.0000'),(747,167,'0.0000'),(747,168,'0.0000'),(747,173,'0.0000'),(747,174,'0.0000'),(747,177,'0.0000'),(747,178,'0.0000'),(747,180,'0.0000'),(747,183,'0.0000'),(814,17,'0.0000'),(814,25,'0.0000'),(814,31,'0.0000'),(814,32,'0.0000'),(814,33,'0.0000'),(814,60,'0.0000'),(814,61,'0.0000'),(814,79,'0.0000'),(814,84,'0.0000'),(814,87,'0.0000'),(814,88,'0.0000'),(814,131,'0.0000'),(814,139,'0.0000'),(814,143,'0.0000'),(814,144,'0.0000'),(814,147,'0.0000'),(814,149,'0.0000'),(814,150,'0.0000'),(814,151,'0.0000'),(814,169,'0.0000'),(814,183,'0.0000'),(815,42,'0.0000'),(815,76,'0.0000'),(815,118,'0.0000'),(815,180,'0.0000'),(818,10,'0.0000'),(818,26,'0.0000'),(818,27,'0.0000'),(818,28,'0.0000'),(818,43,'0.0000'),(818,65,'0.0000'),(818,66,'0.0000'),(818,67,'0.0000'),(818,68,'0.0000'),(818,93,'0.0000'),(818,114,'0.0000'),(818,130,'0.0000'),(818,132,'0.0000'),(818,157,'0.0000'),(818,161,'0.0000'),(818,166,'0.0000'),(819,43,'0.0000'),(819,130,'0.0000'),(821,119,'0.0000'),(821,122,'0.0000'),(821,130,'0.0000'),(822,18,'0.0000'),(822,26,'0.0000'),(822,29,'0.0000'),(822,51,'0.0000'),(822,52,'0.0000'),(822,77,'0.0000'),(822,80,'0.0000'),(822,130,'0.0000'),(822,132,'0.0000'),(822,166,'0.0000'),(824,3,'0.0000'),(824,4,'0.0000'),(824,7,'0.0000'),(824,8,'0.0000'),(824,10,'0.0000'),(824,11,'0.0000'),(824,12,'0.0000'),(824,13,'0.0000'),(824,14,'0.0000'),(824,15,'0.0000'),(824,16,'0.0000'),(824,17,'0.0000'),(824,18,'0.0000'),(824,21,'0.0000'),(824,22,'0.0000'),(824,23,'0.0000'),(824,24,'0.0000'),(824,25,'0.0000'),(824,26,'0.0000'),(824,27,'0.0000'),(824,28,'0.0000'),(824,29,'0.0000'),(824,31,'0.0000'),(824,32,'0.0000'),(824,33,'0.0000'),(824,34,'0.0000'),(824,35,'0.0000'),(824,36,'0.0000'),(824,37,'0.0000'),(824,38,'0.0000'),(824,39,'0.0000'),(824,40,'0.0000'),(824,41,'0.0000'),(824,42,'0.0000'),(824,43,'0.0000'),(824,44,'0.0000'),(824,45,'0.0000'),(824,46,'0.0000'),(824,47,'0.0000'),(824,48,'0.0000'),(824,49,'0.0000'),(824,50,'0.0000'),(824,51,'0.0000'),(824,52,'0.0000'),(824,53,'0.0000'),(824,54,'0.0000'),(824,55,'0.0000'),(824,56,'0.0000'),(824,57,'0.0000'),(824,58,'0.0000'),(824,60,'0.0000'),(824,61,'0.0000'),(824,62,'0.0000'),(824,63,'0.0000'),(824,65,'0.0000'),(824,66,'0.0000'),(824,67,'0.0000'),(824,68,'0.0000'),(824,70,'0.0000'),(824,71,'0.0000'),(824,72,'0.0000'),(824,74,'0.0000'),(824,75,'0.0000'),(824,76,'0.0000'),(824,77,'0.0000'),(824,78,'0.0000'),(824,79,'0.0000'),(824,80,'0.0000'),(824,81,'0.0000'),(824,82,'0.0000'),(824,83,'0.0000'),(824,84,'0.0000'),(824,87,'0.0000'),(824,88,'0.0000'),(824,91,'0.0000'),(824,92,'0.0000'),(824,93,'0.0000'),(824,95,'0.0000'),(824,97,'0.0000'),(824,98,'0.0000'),(824,100,'0.0000'),(824,101,'0.0000'),(824,102,'0.0000'),(824,103,'0.0000'),(824,106,'0.0000'),(824,108,'0.0000'),(824,109,'0.0000'),(824,110,'0.0000'),(824,114,'0.0000'),(824,118,'0.0000'),(824,119,'0.0000'),(824,120,'0.0000'),(824,121,'0.0000'),(824,122,'0.0000'),(824,123,'0.0000'),(824,125,'0.0000'),(824,126,'0.0000'),(824,127,'0.0000'),(824,128,'0.0000'),(824,130,'0.0000'),(824,131,'0.0000'),(824,132,'0.0000'),(824,133,'0.0000'),(824,134,'0.0000'),(824,135,'0.0000'),(824,136,'0.0000'),(824,137,'0.0000'),(824,138,'0.0000'),(824,139,'0.0000'),(824,140,'0.0000'),(824,141,'0.0000'),(824,143,'0.0000'),(824,144,'0.0000'),(824,145,'0.0000'),(824,146,'0.0000'),(824,147,'0.0000'),(824,148,'0.0000'),(824,149,'0.0000'),(824,150,'0.0000'),(824,151,'0.0000'),(824,152,'0.0000'),(824,154,'0.0000'),(824,155,'0.0000'),(824,156,'0.0000'),(824,157,'0.0000'),(824,158,'0.0000'),(824,159,'0.0000'),(824,160,'0.0000'),(824,161,'0.0000'),(824,162,'0.0000'),(824,163,'0.0000'),(824,164,'0.0000'),(824,165,'0.0000'),(824,166,'0.0000'),(824,167,'0.0000'),(824,168,'0.0000'),(824,169,'0.0000'),(824,170,'0.0000'),(824,171,'0.0000'),(824,172,'0.0000'),(824,173,'0.0000'),(824,174,'0.0000'),(824,175,'0.0000'),(824,176,'0.0000'),(824,177,'0.0000'),(824,178,'0.0000'),(824,179,'0.0000'),(824,180,'0.0000'),(824,181,'0.0000'),(824,182,'0.0000'),(824,183,'0.0000'),(825,15,'0.0000'),(825,16,'0.0000'),(825,23,'0.0000'),(825,31,'0.0000'),(825,44,'0.0000'),(825,82,'0.0000'),(825,183,'0.0000'),(826,4,'0.0000'),(826,21,'0.0000'),(826,63,'0.0000'),(826,101,'0.0000'),(826,102,'0.0000'),(826,103,'0.0000'),(826,110,'0.0000'),(826,131,'0.0000'),(826,156,'0.0000'),(826,157,'0.0000'),(826,180,'0.0000'),(828,8,'0.0000'),(828,10,'0.0000'),(828,11,'0.0000'),(828,12,'0.0000'),(828,13,'0.0000'),(828,14,'0.0000'),(828,16,'0.0000'),(828,17,'0.0000'),(828,18,'0.0000'),(828,21,'0.0000'),(828,26,'0.0000'),(828,29,'0.0000'),(828,33,'0.0000'),(828,37,'0.0000'),(828,38,'0.0000'),(828,40,'0.0000'),(828,43,'0.0000'),(828,45,'0.0000'),(828,53,'0.0000'),(828,54,'0.0000'),(828,74,'0.0000'),(828,75,'0.0000'),(828,76,'0.0000'),(828,77,'0.0000'),(828,78,'0.0000'),(828,79,'0.0000'),(828,81,'0.0000'),(828,84,'0.0000'),(828,91,'0.0000'),(828,98,'0.0000'),(828,100,'0.0000'),(828,102,'0.0000'),(828,103,'0.0000'),(828,106,'0.0000'),(828,108,'0.0000'),(828,122,'0.0000'),(828,130,'0.0000'),(828,131,'0.0000'),(828,151,'0.0000'),(828,154,'0.0000'),(828,162,'0.0000'),(828,163,'0.0000'),(828,164,'0.0000'),(828,169,'0.0000'),(829,118,'0.0000'),(829,162,'0.0000'),(830,21,'0.0000'),(830,70,'0.0000'),(830,95,'0.0000'),(830,120,'0.0000'),(830,122,'0.0000'),(830,123,'0.0000'),(830,126,'0.0000'),(830,135,'0.0000'),(830,136,'0.0000'),(830,143,'0.0000'),(830,165,'0.0000'),(830,181,'0.0000'),(830,183,'0.0000');
/*!40000 ALTER TABLE `catalogsearch_result` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `checkout_agreement`
--

DROP TABLE IF EXISTS `checkout_agreement`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `checkout_agreement` (
  `agreement_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Agreement Id',
  `name` varchar(255) default NULL COMMENT 'Name',
  `content` text COMMENT 'Content',
  `content_height` varchar(25) default NULL COMMENT 'Content Height',
  `checkbox_text` text COMMENT 'Checkbox Text',
  `is_active` smallint(6) NOT NULL default '0' COMMENT 'Is Active',
  `is_html` smallint(6) NOT NULL default '0' COMMENT 'Is Html',
  PRIMARY KEY  (`agreement_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `checkout_agreement`
--

LOCK TABLES `checkout_agreement` WRITE;
/*!40000 ALTER TABLE `checkout_agreement` DISABLE KEYS */;
/*!40000 ALTER TABLE `checkout_agreement` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `checkout_agreement_store`
--

DROP TABLE IF EXISTS `checkout_agreement_store`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `checkout_agreement_store` (
  `agreement_id` int(10) unsigned NOT NULL COMMENT 'Agreement Id',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id',
  PRIMARY KEY  (`agreement_id`,`store_id`),
  KEY `FK_CHECKOUT_AGREEMENT_STORE_STORE_ID_CORE_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CHECKOUT_AGREEMENT_STORE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CHKT_AGRT_STORE_AGRT_ID_CHKT_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `checkout_agreement` (`agreement_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement Store';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `checkout_agreement_store`
--

LOCK TABLES `checkout_agreement_store` WRITE;
/*!40000 ALTER TABLE `checkout_agreement_store` DISABLE KEYS */;
/*!40000 ALTER TABLE `checkout_agreement_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_block`
--

DROP TABLE IF EXISTS `cms_block`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cms_block` (
  `block_id` smallint(6) NOT NULL auto_increment COMMENT 'Block ID',
  `title` varchar(255) NOT NULL COMMENT 'Block Title',
  `identifier` varchar(255) NOT NULL COMMENT 'Block String Identifier',
  `content` mediumtext COMMENT 'Block Content',
  `creation_time` timestamp NULL default NULL COMMENT 'Block Creation Time',
  `update_time` timestamp NULL default NULL COMMENT 'Block Modification Time',
  `is_active` smallint(6) NOT NULL default '1' COMMENT 'Is Block Active',
  PRIMARY KEY  (`block_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='CMS Block Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `cms_block`
--

LOCK TABLES `cms_block` WRITE;
/*!40000 ALTER TABLE `cms_block` DISABLE KEYS */;
INSERT INTO `cms_block` VALUES (5,'Footer Links','footer_links','<ul>\r\n<li><a href=\"{{store direct_url=\"about-magento-demo-store\"}}\">About Us</a></li>\r\n<li class=\"last\"><a href=\"{{store direct_url=\"customer-service\"}}\">Customer Service</a></li>\r\n</ul>','2010-10-08 13:54:04','2010-10-17 13:50:53',1),(6,'Facebook Page','facebook_page','<iframe src=\"http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FArmy-Navy-Stores-Heswall%2F150819194971130&amp;width=220&amp;colorscheme=light&amp;show_faces=false&amp;stream=true&amp;header=true&amp;height=427\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:220px; height:427px;\" allowTransparency=\"true\"></iframe>','2011-01-31 14:28:18','2011-01-31 15:00:50',1);
/*!40000 ALTER TABLE `cms_block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_block_store`
--

DROP TABLE IF EXISTS `cms_block_store`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cms_block_store` (
  `block_id` smallint(6) NOT NULL COMMENT 'Block ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY  (`block_id`,`store_id`),
  KEY `IDX_CMS_BLOCK_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_CMS_BLOCK_STORE_BLOCK_ID_CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `cms_block` (`block_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CMS_BLOCK_STORE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Block To Store Linkage Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `cms_block_store`
--

LOCK TABLES `cms_block_store` WRITE;
/*!40000 ALTER TABLE `cms_block_store` DISABLE KEYS */;
INSERT INTO `cms_block_store` VALUES (5,1),(6,1);
/*!40000 ALTER TABLE `cms_block_store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_page`
--

DROP TABLE IF EXISTS `cms_page`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `cms_page` (
  `page_id` smallint(6) NOT NULL auto_increment COMMENT 'Page ID',
  `title` varchar(255) default NULL COMMENT 'Page Title',
  `root_template` varchar(255) default NULL COMMENT 'Page Template',
  `meta_keywords` text COMMENT 'Page Meta Keywords',
  `meta_description` text COMMENT 'Page Meta Description',
  `identifier` varchar(100) NOT NULL COMMENT 'Page String Identifier',
  `content_heading` varchar(255) default NULL COMMENT 'Page Content Heading',
  `content` mediumtext COMMENT 'Page Content',
  `creation_time` timestamp NULL default NULL COMMENT 'Page Creation Time',
  `update_time` timestamp NULL default NULL COMMENT 'Page Modification Time',
  `is_active` smallint(6) NOT NULL default '1' COMMENT 'Is Page Active',
  `sort_order` smallint(6) NOT NULL default '0' COMMENT 'Page Sort Order',
  `layout_update_xml` text COMMENT 'Page Layout Update Content',
  `custom_theme` varchar(100) default NULL COMMENT 'Page Custom Theme',
  `custom_root_template` varchar(255) default NULL COMMENT 'Page Custom Template',
  `custom_layout_update_xml` text COMMENT 'Page Custom Layout Update Content',
  `custom_theme_from` date default NULL COMMENT 'Page Custom Theme Active From Date',
  `custom_theme_to` date default NULL COMMENT 'Page Custom Theme Active To Date',
  PRIMARY KEY  (`page_id`),
  KEY `IDX_CMS_PAGE_IDENTIFIER` (`identifier`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='CMS Page Table';
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `cms_page`
--

LOCK TABLES `cms_page` WRITE;
/*!40000 ALTER TABLE `cms_page` DISABLE KEYS */;
INSERT INTO `cms_page` VALUES (1,'404 Not Found 1','two_columns_right','Page keywords','Page description','no-route','','<div class=\"page-title\"><h1>Whoops, our bad...</h1></div>\r\n<dl>\r\n<dt>The page you requested was not found, and we have a fine guess why.</dt>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li>If you typed the URL directly, please make sure the spelling is correct.</li>\r\n<li>If you clicked on a link to get here, the link is outdated.</li>\r\n</ul></dd>\r\n</dl>\r\n<dl>\r\n<dt>What can you do?</dt>\r\n<dd>Have no fear, help is near! There are many ways you can get back on track with Magento Store.</dd>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li><a href=\"#\" onclick=\"history.go(-1); return false;\">Go back</a> to the previous page.</li>\r\n<li>Use the search bar at the top of the page to search for your products.</li>\r\n<li>Follow these links to get you back on track!<br /><a href=\"{{store url=\"\"}}\">Store Home</a> <span class=\"separator\">|</span> <a href=\"{{store url=\"customer/account\"}}\">My Account</a></li></ul></dd></dl>\r\n','2007-06-20 17:38:32','2007-08-26 18:11:13',1,0,NULL,NULL,'',NULL,NULL,NULL),(2,'Army Clothing - Military Accessories - Boots, Bags & Dog Tags','two_columns_left','army,military,cadets,navy,clothing,boots,shop,shops,supplies,gear,accessories,camping,adventure gear,outdoor gear','We stock a large selection of military clothing, accessories, footwear, workwear, camping and walking equipment.  We hold a wide range of new products straight from the manufacturers and distribution centres as well as in stock at our Heswall store.  If you are in the Wirral or Merseyside area, pop into the shop and meet our staff, who are always on-hand to give you help and advice.','home',NULL,'<div><span style=\"font-size: medium; color: #008000;\"><strong><span style=\"color: #000000;\">Store open --&nbsp; Monday to Saturday 9am - 5:30pm</span></strong></span></div>\r\n<div id=\"slideshow\" class=\"slideshow_wrapper\">\r\n<div id=\"slideshow1\" class=\"slide\">\r\n<div><a href=\"duke-of-edinburgh-kit.html\"><img src=\"/skin/frontend/armynavy/an_theme/images/duke-of-edinburgh.png\" alt=\"Get everything you need for the Duke of Edinburgh Award\" width=\"686\" height=\"365\" /></a></div>\r\n</div>\r\n<div id=\"slideshow2\" class=\"slide\" style=\"display: none;\">\r\n<div><a href=\"socks-walking-socks.html\"><img src=\"/skin/frontend/armynavy/an_theme/images/socks.png\" alt=\"Having the right walking socks makes all the difference\" width=\"686\" height=\"365\" /></a></div>\r\n</div>\r\n<div id=\"slideshow3\" class=\"slide\" style=\"display: none;\">\r\n<div><a href=\"cadet-kit.html\"><img src=\"/skin/frontend/armynavy/an_theme/images/cadet-ad.gif\" alt=\"Full Cadet Kit from only &pound;89.95\" width=\"686\" height=\"365\" /></a></div>\r\n</div>\r\n<div id=\"slideshow4\" class=\"slide\" style=\"display: none;\">\r\n<div><a href=\"nikwax-products.html\"><img src=\"/skin/frontend/armynavy/an_theme/images/nikwax-ad.jpg\" alt=\"Easier Safer Drier\" width=\"686\" height=\"365\" /></a></div>\r\n</div>\r\n&nbsp;</div>\r\n<script type=\"text/javascript\">// <![CDATA[\r\n    \r\n    start_slideshow(1, 3, 5000);\r\n    \r\n    function start_slideshow(start_frame, end_frame, delay) {\r\n        setTimeout(switch_slides(start_frame,start_frame,end_frame, delay), delay);\r\n    }\r\n                            \r\n    function switch_slides(frame, start_frame, end_frame, delay) {\r\n        return (function() {\r\n            var cFrame = \'slideshow\' + frame;\r\n            Effect.Fade(cFrame, { from: 1, to: 0 });\r\n            if (frame == end_frame) { frame = start_frame; } else { frame = frame + 1; }\r\n            setTimeout(\"Effect.Appear(\'slideshow\" + frame + \"\') ;\", 850);\r\n            setTimeout(switch_slides(frame, start_frame, end_frame, delay), delay + 850);\r\n        })\r\n    }\r\n// ]]></script>','2007-08-23 09:03:25','2012-03-29 08:06:44',1,0,'<reference name=\"content\">\r\n<block type=\"catalog/product_list_random\" name=\"product_random\" template=\"catalog/product/list_r.phtml\"/>\r\n<block type=\"catalog/product_new\" name=\"home.catalog.product.new\" alias=\"product_new\" template=\"catalog/product/new.phtml\" after=\"cms_page\"><action method=\"addPriceBlockType\"><type>bundle</type><block>bundle/catalog_product_price</block><template>bundle/catalog/product/price.phtml</template></action></block>\r\n<block type=\"reports/product_viewed\" name=\"home.reports.product.viewed\" alias=\"product_viewed\" template=\"reports/home_product_viewed.phtml\" after=\"product_new\"><action method=\"addPriceBlockType\"><type>bundle</type><block>bundle/catalog_product_price</block><template>bundle/catalog/product/price.phtml</template></action></block>\r\n<block type=\"reports/product_compared\" name=\"home.reports.product.compared\" template=\"reports/home_product_compared.phtml\" after=\"product_viewed\"><action method=\"addPriceBlockType\"><type>bundle</type><block>bundle/catalog_product_price</block><template>bundle/catalog/product/price.phtml</template></action></block>\r\n</reference>\r\n',NULL,NULL,NULL,NULL,NULL),(3,'About  Us','one_column','','','about-magento-demo-store','','<div class=\"page-title\">\r\n<h1>About The Army Navy Stores</h1>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: small;\">We are a family run business established in 1961, based in Heswall, Wirral, Merseyside.&nbsp; </span></p>\r\n<p><span style=\"font-size: small;\">We stock a large selection of military clothing, accessories, footwear, workwear, camping and walking equipment.&nbsp; We hold a wide range of new products straight from the manufacturers and  distribution centres as well as in stock at our Heswall store.&nbsp; If you are in the Wirral or Merseyside area, pop into the shop and meet our staff, who are always on-hand to give you help and advice.<br /></span></p>\r\n<p><span style=\"font-size: small;\">We are always on the lookout for new products with lots of new and exciting products  coming in all the time. If there is a specific product you would like then  please let us know and we will do our best to track it down for you.</span></p>\r\n<p><span style=\"font-size: small;\">Our customer service is second to none and we work hard to make sure you get the best service </span><span style=\"font-size: small;\">possible</span><span style=\"font-size: small;\">.</span></p>\r\n<p>&nbsp;</p>\r\n<p><span style=\"font-size: small; color: #008000;\"><strong>We at The Army Navy Stores are  committed to proving top quality products at affordable prices whilst  maintaining the best possible service to our customers.</strong></span></p>\r\n<p><span style=\"font-size: small; color: #008000;\"><strong><span style=\"color: #000000;\">Opening Times:<br />Monday to Saturday 9am - 5:30pm</span></strong></span></p>\r\n<p><span style=\"font-size: small; color: #008000;\"><strong><br /></strong></span></p>\r\n</div>','2007-08-30 13:01:18','2011-06-17 10:24:11',1,0,'','','','',NULL,NULL),(4,'Customer Service','three_columns','','','customer-service','','<div class=\"page-title\">\r\n<h1>Customer Service</h1>\r\n</div>\r\n<ul class=\"disc\">\r\n<li><a href=\"#answer1\">Shipping &amp; Delivery</a></li>\r\n<li><a href=\"#answer2\">Privacy &amp; Security</a></li>\r\n<li><a href=\"#answer3\">Returns &amp; Replacements</a></li>\r\n<li><a href=\"#answer5\">Payment, Pricing &amp; Promotions</a></li>\r\n</ul>\r\n<dl> <dt id=\"answer1\"><strong>Shipping &amp; Delivery</strong></dt><dd>Items will be dispatched within 48 hours using Royal Mail First Class and will require a signature.&nbsp; <br />Larger items will be dispatched using Parcel Force 48 hours.</dd><dd><br /></dd> <dt id=\"answer2\"><strong>Privacy &amp; Security</strong></dt><dd>At The Army Navy Stores, we respect the privacy of every  individual who visits our website, communicates with us or purchases products online. The information you give to us is used to process  your orders and to provide you with an efficient and personal shopping  experience.</dd><dd>This statement outlines the information The Army Navy Stores will collect from the  website and how we will use that information. This statement also lets  you know what to do if you want us to remove personal information about  you collected or stored during previous visits to the website.<em><strong></strong></em></dd><dd><em><strong>How we collect and use personal information</strong></em></dd> <dd>We follow strict security procedures in the collection, storage and  disclosure of the information you have given us to prevent unauthorised  access and misuse, as required by the UK Data Protection Acts of 1984  and 1998.</dd><dd>We do not collect any personally identifying information from you  unless you expressly consent to the terms and conditions of this  statement when you register on the website or purchase our products from  the website. Upon receiving your express consent, we only collect such  personally identifying information that we specifically need - for  example, to send you a brochure, to put you in contact with a local  independent sales representative, to fulfil an order or to provide  account details.If you do not want us to collect any personally identifiable  information from you, please do not provide us with any such  information. We gather non-specific information on the numbers of  visitors to certain areas of our website without asking for your consent  to do so. We monitor website usage in this manner to help us  continually improve the design and layout of our website.</dd><dd>If you do provide us with personal information, we may retain and use that information for the following purposes:<br />- We may store and process the information to better understand your needs and how we can improve our products and services.<br />- We may retain information for invoicing and delivery purposes after you make a purchase of our products.</dd><dd>- We may retain information about your previous purchases in  order to customise our website services for your future visits to the  website.</dd><dd>In addition, we may use your e-mail address to send you information  about new products or special offers which we think may be of interest  to you, to advise you of important changes to the website or for other  marketing purposes. You will be asked if you wish to be take part in  this by clicking on the \'opt in\' box provided.</dd><dd>We may also disclose any information, including personally  identifiable information, we deem necessary, in our sole discretion, to  comply with any applicable law, regulation, legal process or  governmental request.</dd><dd>All of your personal information will be stored securely for the  duration of your relationship with us and for 2 years thereafter.</dd> <dd>Personal information provided to us on our website may be  transmitted over the Internet. Transfers of personal information may  therefore take place, potentially, to any country in the world.</dd><dd><em><strong>Sharing of information with other third parties</strong></em></dd> <dd>To fulfil your requirements, we may also need to give essential  personal details to third parties other than our affiliates, such as our  delivery agents. We only share such essential personal information with  third parties located in the EEA and subject to its stringent data  privacy laws. The Army Navy Stores assumes no responsibility or liability whatsoever for  the practices, actions or policies of these third parties.<em><strong></strong></em></dd><dd><em><strong>How we protect your information</strong></em></dd> <dd>We are aware that you may be concerned about the privacy and  confidentiality of your personal information, including credit card and  delivery address information. Therefore, we have taken precautions to  ensure that this information is safe and secure. If you are registered  with us, your online account information is protected by a password  chosen by you. Access to your online account requires your username and  password and we recommend that you do not disclose this information to  any other person.</dd><dd>Additionally, we protect your personal data using a technology  called Secure Sockets Layer (SSL). Your personal information is then  automatically encrypted before being sent over the Internet. (You should  note that the device you use to connect to the internet must be  equipped with Microsoft Internet Explorer 4 (or later) or Netscape  Navigator 4 (or later) in order to use this technology.).</dd><dd>All your data will then be stored securely for the duration of your relationship with us and for 2 years thereafter.</dd></dl><dl><dt id=\"answer3\"><br /></dt><dt><strong>Returns &amp; Replacements</strong></dt><dd>Returns and exchanges are accepted if a product remains in its original packaging, un-used and with its labels still intact.&nbsp; Return carriage is the responsibility of the customer.</dd><dd><span style=\"color: #ff0000;\"><strong>Please contact us before returning any items.</strong></s