
/*!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`;
CREATE TABLE `admin_assert` (
  `assert_id` int(10) unsigned NOT NULL auto_increment,
  `assert_type` varchar(20) NOT NULL default '',
  `assert_data` text,
  PRIMARY KEY  (`assert_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ACL Asserts';
--
-- 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`;
CREATE TABLE `admin_role` (
  `role_id` int(10) unsigned NOT NULL auto_increment,
  `parent_id` int(10) unsigned NOT NULL default '0',
  `tree_level` tinyint(3) unsigned NOT NULL default '0',
  `sort_order` tinyint(3) unsigned NOT NULL default '0',
  `role_type` char(1) NOT NULL default '0',
  `user_id` int(11) unsigned NOT NULL default '0',
  `role_name` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`role_id`),
  KEY `parent_id` (`parent_id`,`sort_order`),
  KEY `tree_level` (`tree_level`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='ACL Roles';
--
-- 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,1,0,'U',1,'Store');
/*!40000 ALTER TABLE `admin_role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_rule`
--
DROP TABLE IF EXISTS `admin_rule`;
CREATE TABLE `admin_rule` (
  `rule_id` int(10) unsigned NOT NULL auto_increment,
  `role_id` int(10) unsigned NOT NULL default '0',
  `resource_id` varchar(255) NOT NULL default '',
  `privileges` varchar(20) NOT NULL default '',
  `assert_id` int(10) unsigned NOT NULL default '0',
  `role_type` char(1) default NULL,
  `permission` varchar(10) default NULL,
  PRIMARY KEY  (`rule_id`),
  KEY `resource` (`resource_id`,`role_id`),
  KEY `role_id` (`role_id`,`resource_id`),
  CONSTRAINT `FK_admin_rule` FOREIGN KEY (`role_id`) REFERENCES `admin_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='ACL Rules';
--
-- 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');
/*!40000 ALTER TABLE `admin_rule` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_user`
--
DROP TABLE IF EXISTS `admin_user`;
CREATE TABLE `admin_user` (
  `user_id` mediumint(9) unsigned NOT NULL auto_increment,
  `firstname` varchar(32) NOT NULL default '',
  `lastname` varchar(32) NOT NULL default '',
  `email` varchar(128) NOT NULL default '',
  `username` varchar(40) NOT NULL default '',
  `password` varchar(40) NOT NULL default '',
  `created` datetime NOT NULL default '0000-00-00 00:00:00',
  `modified` datetime default NULL,
  `logdate` datetime default NULL,
  `lognum` smallint(5) unsigned NOT NULL default '0',
  `reload_acl_flag` tinyint(1) NOT NULL default '0',
  `is_active` tinyint(1) NOT NULL default '1',
  `extra` text,
  PRIMARY KEY  (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Users';
--
-- Dumping data for table `admin_user`
--
LOCK TABLES `admin_user` WRITE;
/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
INSERT INTO `admin_user` VALUES (1,'Store','Owner','owner@example.com','admin','60c320903e22e3cdd29b614b126941d1:yC','2008-08-07 14:39:09','2008-12-27 20:51:54','2008-12-27 21:05:00',2,0,1,'N;');
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `adminnotification_inbox`
--
DROP TABLE IF EXISTS `adminnotification_inbox`;
CREATE TABLE `adminnotification_inbox` (
  `notification_id` int(10) unsigned NOT NULL auto_increment,
  `severity` tinyint(3) unsigned NOT NULL default '0',
  `date_added` datetime NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` text,
  `url` varchar(255) NOT NULL,
  `is_read` tinyint(1) unsigned NOT NULL default '0',
  `is_remove` tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`notification_id`),
  KEY `IDX_SEVERITY` (`severity`),
  KEY `IDX_IS_READ` (`is_read`),
  KEY `IDX_IS_REMOVE` (`is_remove`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `adminnotification_inbox`
--
LOCK TABLES `adminnotification_inbox` WRITE;
/*!40000 ALTER TABLE `adminnotification_inbox` DISABLE KEYS */;
/*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `api_assert`
--
DROP TABLE IF EXISTS `api_assert`;
CREATE TABLE `api_assert` (
  `assert_id` int(10) unsigned NOT NULL auto_increment,
  `assert_type` varchar(20) NOT NULL default '',
  `assert_data` text,
  PRIMARY KEY  (`assert_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Asserts';
--
-- 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`;
CREATE TABLE `api_role` (
  `role_id` int(10) unsigned NOT NULL auto_increment,
  `parent_id` int(10) unsigned NOT NULL default '0',
  `tree_level` tinyint(3) unsigned NOT NULL default '0',
  `sort_order` tinyint(3) unsigned NOT NULL default '0',
  `role_type` char(1) NOT NULL default '0',
  `user_id` int(11) unsigned NOT NULL default '0',
  `role_name` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`role_id`),
  KEY `parent_id` (`parent_id`,`sort_order`),
  KEY `tree_level` (`tree_level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Roles';
--
-- 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`;
CREATE TABLE `api_rule` (
  `rule_id` int(10) unsigned NOT NULL auto_increment,
  `role_id` int(10) unsigned NOT NULL default '0',
  `resource_id` varchar(255) NOT NULL default '',
  `privileges` varchar(20) NOT NULL default '',
  `assert_id` int(10) unsigned NOT NULL default '0',
  `role_type` char(1) default NULL,
  `permission` varchar(10) default NULL,
  PRIMARY KEY  (`rule_id`),
  KEY `resource` (`resource_id`,`role_id`),
  KEY `role_id` (`role_id`,`resource_id`),
  CONSTRAINT `FK_api_rule` FOREIGN KEY (`role_id`) REFERENCES `api_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Rules';
--
-- 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_user`
--
DROP TABLE IF EXISTS `api_user`;
CREATE TABLE `api_user` (
  `user_id` mediumint(9) unsigned NOT NULL auto_increment,
  `firstname` varchar(32) NOT NULL default '',
  `lastname` varchar(32) NOT NULL default '',
  `email` varchar(128) NOT NULL default '',
  `username` varchar(40) NOT NULL default '',
  `api_key` varchar(40) NOT NULL default '',
  `created` datetime NOT NULL default '0000-00-00 00:00:00',
  `modified` datetime default NULL,
  `logdate` datetime default NULL,
  `lognum` smallint(5) unsigned NOT NULL default '0',
  `sessid` varchar(40) NOT NULL,
  `reload_acl_flag` tinyint(1) NOT NULL default '0',
  `is_active` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api Users';
--
-- 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 `catalog_category_entity`
--
DROP TABLE IF EXISTS `catalog_category_entity`;
CREATE TABLE `catalog_category_entity` (
  `entity_id` int(10) unsigned NOT NULL auto_increment,
  `entity_type_id` smallint(8) unsigned NOT NULL default '0',
  `attribute_set_id` smallint(5) unsigned NOT NULL default '0',
  `parent_id` int(10) unsigned NOT NULL default '0',
  `created_at` datetime NOT NULL default '0000-00-00 00:00:00',
  `updated_at` datetime NOT NULL default '0000-00-00 00:00:00',
  `path` varchar(255) NOT NULL,
  `position` int(11) NOT NULL,
  `level` int(11) NOT NULL,
  `children_count` int(11) NOT NULL,
  PRIMARY KEY  (`entity_id`),
  KEY `IDX_LEVEL` (`level`)
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8 COMMENT='Category Entityies';
--
-- 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,9,12,0,'2007-07-20 18:46:08','2007-08-07 09:50:15','1',1,0,26),(3,9,12,1,'2007-08-22 15:54:41','2007-12-05 04:38:59','1/3',3,1,25),(4,9,12,18,'2007-08-22 15:55:34','2008-08-08 00:56:48','1/3/18/4',4,3,0),(5,9,12,18,'2007-08-22 16:21:29','2008-08-07 23:55:38','1/3/18/5',5,3,2),(8,9,12,13,'2007-08-22 18:10:30','2008-08-07 23:51:26','1/3/13/8',8,3,0),(10,9,12,3,'2007-08-23 11:45:22','2008-08-08 00:01:18','1/3/10',10,2,2),(12,9,12,13,'2007-08-24 12:34:30','2008-08-07 23:54:48','1/3/13/12',12,3,2),(13,9,12,3,'2007-08-24 13:31:01','2008-08-08 00:02:23','1/3/13',13,2,13),(15,9,12,13,'2007-08-24 13:33:17','2008-07-25 01:53:39','1/3/13/15',15,3,8),(16,9,12,5,'2007-08-24 15:41:52','2008-08-07 23:56:01','1/3/18/5/16',16,4,0),(17,9,12,5,'2007-08-24 15:43:07','2008-08-07 23:56:28','1/3/18/5/17',17,4,0),(18,9,12,3,'2007-08-24 15:44:31','2008-08-07 23:54:16','1/3/18',18,2,6),(19,9,12,18,'2007-08-24 20:05:28','2008-08-07 23:57:03','1/3/18/19',19,3,0),(20,9,12,3,'2007-08-25 13:14:09','2008-08-07 23:58:57','1/3/20',20,2,0),(22,9,12,10,'2007-08-26 14:49:39','2008-08-08 00:01:45','1/3/10/22',22,3,0),(23,9,12,10,'2007-08-27 10:35:27','2008-08-07 23:49:18','1/3/10/23',23,3,0),(24,9,12,18,'2007-08-28 18:32:41','2007-08-29 23:20:36','1/3/18/24',24,3,0),(25,9,12,12,'2007-08-29 19:49:52','2008-08-07 23:46:35','1/3/13/12/25',25,4,0),(26,9,12,12,'2007-08-29 20:37:22','2008-08-07 23:47:02','1/3/13/12/26',26,4,0),(27,9,12,15,'2008-07-25 00:36:22','2008-08-07 23:48:15','1/3/13/15/27',1,4,0),(28,9,12,15,'2008-07-25 00:39:10','2008-08-08 13:02:59','1/3/13/15/28',2,4,0),(29,9,12,13,'2008-07-25 00:39:54','2008-07-25 00:39:54','1/3/13/15/29',3,4,0),(30,9,12,13,'2008-07-25 00:41:11','2008-07-25 00:41:11','1/3/13/15/30',4,4,0),(31,9,12,13,'2008-07-25 00:41:56','2008-07-25 00:41:56','1/3/13/15/31',5,4,0),(32,9,12,13,'2008-07-25 00:42:57','2008-07-25 00:42:57','1/3/13/15/32',6,4,0),(33,9,12,13,'2008-07-25 00:43:25','2008-07-25 00:43:25','1/3/13/15/33',7,4,0),(34,9,12,13,'2008-07-25 00:44:17','2008-07-25 00:44:17','1/3/13/15/34',8,4,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`;
CREATE TABLE `catalog_category_entity_datetime` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_DATETIME_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_DATETIME_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalog_category_entity_datetime`
--
LOCK TABLES `catalog_category_entity_datetime` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_datetime` DISABLE KEYS */;
/*!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`;
CREATE TABLE `catalog_category_entity_decimal` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` decimal(12,4) NOT NULL default '0.0000',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_DECIMAL_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- 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`;
CREATE TABLE `catalog_category_entity_int` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` int(11) NOT NULL default '0',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_INT_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_EMTITY_INT_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_EMTITY_INT_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8;
--
-- 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,9,120,0,13,1),(2,9,120,0,5,1),(3,9,120,0,18,1),(4,9,120,0,16,1),(5,9,120,0,17,1),(6,9,120,0,4,1),(7,9,120,0,19,0),(8,9,120,0,22,0),(9,9,120,0,10,1),(10,9,120,0,15,1),(11,9,119,0,1,1),(12,9,119,0,4,1),(13,9,119,0,8,1),(14,9,119,0,12,1),(15,9,119,0,15,1),(16,9,119,0,17,1),(17,9,120,0,23,0),(18,9,117,0,13,3),(19,9,119,0,23,1),(20,9,120,0,12,1),(21,9,117,0,8,4),(22,9,120,0,8,1),(23,9,120,0,26,1),(24,9,564,0,17,1),(25,9,119,0,3,1),(26,9,120,0,20,0),(27,9,119,0,5,1),(28,9,119,0,10,1),(29,9,119,0,13,1),(30,9,119,0,16,1),(31,9,119,0,18,1),(32,9,119,0,19,1),(33,9,119,0,20,0),(34,9,119,0,22,1),(35,9,119,0,24,0),(36,9,119,0,25,1),(37,9,119,0,26,1),(38,9,564,0,15,1),(39,9,119,0,27,1),(40,9,120,0,27,0),(41,9,564,0,27,1),(42,9,119,0,28,1),(43,9,120,0,28,1),(44,9,564,0,28,1),(45,9,119,0,29,1),(46,9,120,0,29,1),(47,9,564,0,29,1),(48,9,119,0,30,1),(49,9,120,0,30,1),(50,9,564,0,30,1),(51,9,119,0,31,1),(52,9,120,0,31,1),(53,9,564,0,31,1),(54,9,119,0,32,1),(55,9,120,0,32,1),(56,9,564,0,32,1),(57,9,119,0,33,1),(58,9,120,0,33,1),(59,9,564,0,33,1),(60,9,119,0,34,1),(61,9,120,0,34,1),(62,9,564,0,34,1),(63,9,564,0,22,1),(64,9,564,0,23,1),(65,9,564,0,10,1),(66,9,564,0,12,1),(67,9,120,0,25,0),(68,9,564,0,25,1),(69,9,564,0,26,1),(70,9,564,0,8,1),(71,9,564,0,18,1),(72,9,564,0,4,1),(73,9,564,0,5,1),(74,9,564,0,16,1),(75,9,564,0,19,1),(76,9,564,0,20,1);
/*!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`;
CREATE TABLE `catalog_category_entity_text` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` text NOT NULL,
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_TEXT_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_TEXT_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=147 DEFAULT CHARSET=utf8;
--
-- 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,9,121,0,3,'3,18,4,5,16,17,19,24,10,22,23,13,8,12,26,25,15,20'),(2,9,121,0,4,'4'),(3,9,122,0,4,'4,18'),(4,9,123,0,3,'18,10,13,20'),(5,9,121,0,5,'5,16,17'),(6,9,122,0,5,'5,18'),(7,9,121,0,8,'8'),(8,9,122,0,8,'8,13'),(9,9,121,0,10,'10,22,23'),(10,9,122,0,10,'10'),(11,9,121,0,12,'12,26,25'),(12,9,122,0,12,'12,13'),(13,9,121,0,13,'13,8,12,26,25,15'),(14,9,122,0,13,'13'),(15,9,123,0,13,'8,12,15'),(16,9,121,0,15,'15'),(17,9,122,0,15,'15,13'),(18,9,123,0,5,'16,17'),(19,9,122,0,18,'18'),(20,9,123,0,18,'4,5,19,24'),(21,9,122,0,19,'19,18'),(22,9,122,0,20,'20'),(23,9,121,0,22,'22'),(24,9,122,0,22,'22,10'),(25,9,123,0,10,'22,23'),(26,9,121,0,23,'23'),(27,9,122,0,23,'23,10'),(28,9,123,0,22,''),(29,9,123,0,16,''),(30,9,123,0,4,''),(31,9,123,0,23,''),(32,9,123,0,19,''),(33,9,123,0,15,''),(34,9,121,0,24,'24'),(35,9,122,0,24,'24,18'),(36,9,123,0,24,''),(37,9,123,0,8,''),(38,9,112,0,25,'Random accessories for different electronic items'),(39,9,115,0,25,'electric, accesories, gadgets'),(40,9,122,0,25,'25,12,13'),(41,9,123,0,25,''),(42,9,121,0,26,'26'),(43,9,122,0,26,'26,12,13'),(44,9,123,0,26,''),(45,9,123,0,17,''),(46,9,122,0,3,''),(47,9,112,0,15,''),(48,9,115,0,15,''),(49,9,116,0,15,''),(50,9,530,0,15,''),(51,9,112,0,27,''),(52,9,115,0,27,''),(53,9,116,0,27,''),(54,9,530,0,27,''),(55,9,112,0,28,''),(56,9,115,0,28,''),(57,9,116,0,28,''),(58,9,530,0,28,''),(59,9,112,0,29,''),(60,9,115,0,29,''),(61,9,116,0,29,''),(62,9,530,0,29,''),(63,9,112,0,30,''),(64,9,115,0,30,''),(65,9,116,0,30,''),(66,9,112,0,31,''),(67,9,116,0,31,''),(68,9,530,0,31,''),(69,9,112,0,32,''),(70,9,115,0,32,''),(71,9,116,0,32,''),(72,9,530,0,32,''),(73,9,112,0,33,''),(74,9,115,0,33,''),(75,9,116,0,33,''),(76,9,530,0,33,''),(77,9,112,0,34,''),(78,9,115,0,34,''),(79,9,116,0,34,''),(80,9,112,0,22,''),(81,9,116,0,22,''),(82,9,530,0,22,''),(83,9,112,0,23,''),(84,9,115,0,23,''),(85,9,116,0,23,''),(86,9,530,0,23,''),(87,9,112,0,10,''),(88,9,115,0,10,''),(89,9,116,0,10,''),(90,9,530,0,10,''),(91,9,112,0,12,''),(92,9,115,0,12,''),(93,9,116,0,12,''),(94,9,530,0,12,''),(95,9,116,0,25,''),(96,9,112,0,26,''),(97,9,116,0,26,''),(98,9,112,0,8,''),(99,9,115,0,8,''),(100,9,116,0,8,''),(101,9,530,0,8,''),(102,9,112,0,18,''),(103,9,115,0,18,''),(104,9,116,0,18,''),(105,9,530,0,18,''),(106,9,112,0,4,''),(107,9,115,0,4,''),(108,9,116,0,4,''),(109,9,530,0,4,''),(110,9,112,0,5,''),(111,9,115,0,5,''),(112,9,116,0,5,''),(113,9,530,0,5,''),(114,9,112,0,16,''),(115,9,115,0,16,''),(116,9,116,0,16,''),(117,9,530,0,16,''),(118,9,112,0,17,''),(119,9,115,0,17,''),(120,9,116,0,17,''),(121,9,530,0,17,''),(122,9,112,0,19,''),(123,9,115,0,19,''),(124,9,530,0,19,''),(125,9,115,0,20,''),(126,9,530,0,20,''),(127,9,121,0,16,'16'),(128,9,122,0,16,'16,5,18'),(129,9,121,0,17,'17'),(130,9,122,0,17,'17,5,18'),(131,9,121,0,18,'18,4,5,16,17,19,24'),(132,9,121,0,19,'19'),(133,9,121,0,20,'20'),(134,9,123,0,20,''),(135,9,121,0,25,'25'),(136,9,123,0,12,'26,25'),(137,9,530,0,30,''),(138,9,115,0,31,''),(139,9,530,0,34,''),(140,9,115,0,22,''),(141,9,530,0,25,''),(142,9,115,0,26,''),(143,9,530,0,26,''),(144,9,116,0,19,''),(145,9,112,0,20,''),(146,9,116,0,20,'');
/*!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`;
CREATE TABLE `catalog_category_entity_varchar` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`value_id`),
  UNIQUE KEY `IDX_BASE` USING BTREE (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_VARCHAR_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=180 DEFAULT CHARSET=utf8;
--
-- 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,9,111,0,3,'Root Catalog'),(2,9,118,0,3,'PRODUCTS'),(3,9,479,0,3,'root-catalog'),(4,9,111,0,4,'Shirts'),(5,9,118,0,4,'PRODUCTS'),(6,9,479,0,4,'shirts'),(7,9,111,0,5,'Shoes'),(8,9,118,0,5,'PRODUCTS'),(9,9,479,0,5,'shoes'),(10,9,111,0,8,'Cell Phones'),(11,9,118,0,8,'PRODUCTS_AND_PAGE'),(12,9,479,0,8,'cell-phones'),(13,9,111,0,10,'Furniture'),(14,9,118,0,10,'PRODUCTS'),(15,9,479,0,10,'furniture'),(16,9,111,0,12,'Cameras'),(17,9,118,0,12,'PRODUCTS'),(18,9,479,0,12,'cameras'),(19,9,111,0,13,'Electronics'),(20,9,118,0,13,'PAGE'),(21,9,479,0,13,'electronics'),(22,9,111,0,15,'Computers'),(23,9,118,0,15,'PRODUCTS'),(24,9,479,0,15,'computers'),(25,9,111,0,16,'Mens'),(26,9,118,0,16,'PRODUCTS'),(27,9,479,0,16,'mens'),(28,9,111,0,17,'Womens'),(29,9,118,0,17,'PRODUCTS'),(30,9,479,0,17,'womens'),(31,9,111,0,18,'Apparel'),(32,9,118,0,18,'PRODUCTS'),(33,9,479,0,18,'apparel'),(34,9,111,0,19,'Hoodies'),(35,9,118,0,19,'PRODUCTS'),(36,9,479,0,19,'hoodies'),(37,9,113,0,4,'shirts.jpg'),(38,9,113,0,12,'camera.jpg'),(39,9,111,0,20,'Household Items'),(40,9,118,0,20,'PRODUCTS'),(41,9,479,0,20,'household-items'),(42,9,111,0,22,'Living Room'),(43,9,118,0,22,'PRODUCTS_AND_PAGE'),(44,9,118,0,23,'PRODUCTS'),(45,9,111,0,23,'Bedroom'),(46,9,113,0,5,'shoes.jpg'),(47,9,113,0,23,'bedroom.jpg'),(48,9,113,0,18,'apparel.jpg'),(49,9,113,0,10,'furniture.jpg'),(50,9,514,0,13,'one_column'),(51,9,514,0,8,''),(52,9,111,0,24,'Pants'),(53,9,118,0,24,'PRODUCTS'),(54,9,111,0,25,'Accessories'),(55,9,118,0,25,'PRODUCTS'),(56,9,111,0,26,'Digital Cameras'),(57,9,118,0,26,'PRODUCTS'),(58,9,533,0,18,'apparel'),(59,9,533,0,4,'apparel/shirts'),(60,9,533,0,5,'apparel/shoes'),(61,9,533,0,16,'apparel/shoes/mens'),(62,9,533,0,17,'apparel/shoes/womens'),(63,9,533,0,19,'apparel/hoodies'),(64,9,533,0,10,'furniture'),(65,9,533,0,13,'electronics'),(66,9,533,0,8,'electronics/cell-phones'),(67,9,533,0,12,'electronics/cameras'),(68,9,533,0,15,'electronics/computers'),(69,9,533,0,20,'household-items'),(70,9,479,0,22,'living-room'),(71,9,533,0,22,'furniture/living-room'),(72,9,479,0,23,'bedroom'),(73,9,533,0,23,'furniture/bedroom'),(74,9,479,0,25,'accessories'),(75,9,533,0,25,'electronics/cameras/accessories'),(76,9,479,0,26,'digital-cameras'),(77,9,533,0,26,'electronics/cameras/digital-cameras'),(78,9,479,0,24,'pants'),(79,9,533,0,24,'apparel/pants'),(80,9,114,0,15,''),(81,9,563,0,15,''),(82,9,514,0,15,''),(83,9,111,0,27,'Build Your Own'),(84,9,114,0,27,''),(85,9,118,0,27,'PRODUCTS'),(86,9,479,0,27,'build-your-own'),(87,9,563,0,27,''),(88,9,514,0,27,''),(89,9,533,0,27,'electronics/computers/build-your-own'),(90,9,111,0,28,'Laptops'),(91,9,114,0,28,''),(92,9,118,0,28,'PRODUCTS'),(93,9,479,0,28,'laptops'),(94,9,563,0,28,''),(95,9,514,0,28,''),(96,9,533,0,28,'electronics/computers/laptops'),(97,9,111,0,29,'Hard Drives'),(98,9,114,0,29,''),(99,9,118,0,29,'PRODUCTS'),(100,9,479,0,29,'hard-drives'),(101,9,563,0,29,''),(102,9,514,0,29,''),(103,9,533,0,29,'electronics/computers/hard-drives'),(104,9,111,0,30,'Monitors'),(105,9,114,0,30,''),(106,9,118,0,30,'PRODUCTS'),(107,9,479,0,30,'monitors'),(108,9,563,0,30,''),(109,9,514,0,30,''),(110,9,533,0,30,'electronics/computers/monitors'),(111,9,111,0,31,'RAM / Memory'),(112,9,114,0,31,''),(113,9,118,0,31,'PRODUCTS'),(114,9,479,0,31,'ram-memory'),(115,9,563,0,31,''),(116,9,514,0,31,''),(117,9,533,0,31,'electronics/computers/ram-memory'),(118,9,111,0,32,'Cases'),(119,9,114,0,32,''),(120,9,118,0,32,'PRODUCTS'),(121,9,479,0,32,'cases'),(122,9,563,0,32,''),(123,9,514,0,32,''),(124,9,533,0,32,'electronics/computers/cases'),(125,9,111,0,33,'Processors'),(126,9,114,0,33,''),(127,9,118,0,33,'PRODUCTS'),(128,9,479,0,33,'processors'),(129,9,563,0,33,''),(130,9,514,0,33,''),(131,9,533,0,33,'electronics/computers/processors'),(132,9,111,0,34,'Peripherals'),(133,9,114,0,34,''),(134,9,118,0,34,'PRODUCTS'),(135,9,479,0,34,'peripherals'),(136,9,563,0,34,''),(137,9,514,0,34,''),(138,9,533,0,34,'electronics/computers/peripherals'),(139,9,114,0,22,''),(140,9,563,0,22,''),(141,9,514,0,22,''),(142,9,114,0,23,''),(143,9,563,0,23,''),(144,9,514,0,23,''),(145,9,114,0,10,''),(146,9,563,0,10,''),(147,9,514,0,10,''),(148,9,114,0,12,''),(149,9,563,0,12,''),(150,9,514,0,12,''),(151,9,114,0,25,''),(152,9,563,0,25,''),(153,9,514,0,25,''),(154,9,114,0,26,''),(155,9,563,0,26,''),(156,9,514,0,26,''),(157,9,114,0,8,''),(158,9,563,0,8,''),(159,9,114,0,18,''),(160,9,563,0,18,''),(161,9,514,0,18,''),(162,9,114,0,4,''),(163,9,563,0,4,''),(164,9,514,0,4,''),(165,9,114,0,5,''),(166,9,563,0,5,''),(167,9,514,0,5,''),(168,9,114,0,16,''),(169,9,563,0,16,''),(170,9,514,0,16,''),(171,9,114,0,17,''),(172,9,563,0,17,''),(173,9,514,0,17,''),(174,9,114,0,19,''),(175,9,563,0,19,''),(176,9,514,0,19,''),(177,9,114,0,20,''),(178,9,563,0,20,''),(179,9,514,0,20,'');
/*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_product`
--
DROP TABLE IF EXISTS `catalog_category_product`;
CREATE TABLE `catalog_category_product` (
  `category_id` int(10) unsigned NOT NULL default '0',
  `product_id` int(10) unsigned NOT NULL default '0',
  `position` int(10) unsigned NOT NULL default '0',
  UNIQUE KEY `UNQ_CATEGORY_PRODUCT` (`category_id`,`product_id`),
  KEY `CATALOG_CATEGORY_PRODUCT_CATEGORY` (`category_id`),
  KEY `CATALOG_CATEGORY_PRODUCT_PRODUCT` (`product_id`),
  CONSTRAINT `CATALOG_CATEGORY_PRODUCT_CATEGORY` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `CATALOG_CATEGORY_PRODUCT_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- 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 (4,35,0),(4,36,0),(4,37,0),(4,38,0),(4,117,0),(4,118,0),(4,119,0),(4,120,0),(4,121,0),(4,122,0),(4,123,0),(4,124,0),(4,125,0),(4,126,0),(4,127,0),(4,128,0),(4,129,0),(4,130,0),(4,131,0),(8,16,0),(8,17,0),(8,18,0),(8,19,0),(8,20,0),(8,166,0),(12,46,0),(15,25,0),(15,26,0),(15,28,3),(15,140,0),(15,141,0),(15,143,0),(15,163,0),(16,30,0),(16,34,0),(16,83,0),(16,84,0),(16,85,0),(16,86,0),(16,87,0),(16,88,0),(16,89,0),(16,90,0),(16,91,0),(16,92,0),(16,93,0),(16,94,0),(16,95,0),(16,96,0),(16,97,0),(16,98,0),(16,99,0),(16,100,0),(16,101,0),(16,102,0),(17,31,2),(17,32,2),(17,33,2),(17,49,2),(17,74,2),(17,75,2),(17,79,2),(17,80,2),(17,81,2),(17,82,2),(17,83,2),(17,84,2),(17,85,2),(17,86,2),(17,87,2),(17,88,2),(17,89,2),(17,90,2),(17,91,2),(17,92,2),(17,103,2),(17,104,2),(17,105,2),(17,106,2),(17,107,2),(17,108,2),(17,109,2),(17,110,2),(17,111,2),(17,112,2),(17,113,2),(17,114,2),(17,115,2),(17,135,1),(19,39,0),(22,51,0),(22,52,0),(22,53,0),(22,54,0),(23,41,0),(23,42,0),(25,132,0),(25,133,0),(25,134,0),(26,44,0),(26,45,0),(26,46,0),(26,47,0),(26,48,0),(27,163,0),(27,164,0),(27,165,0),(28,25,0),(28,26,0),(28,28,0),(28,158,0),(29,149,0),(29,150,0),(29,154,0),(29,155,0),(30,147,0),(30,152,0),(30,156,0),(30,157,0),(31,140,0),(31,141,0),(31,143,0),(32,138,0),(32,139,0),(33,145,0),(33,148,0),(33,151,0),(33,153,0),(34,159,0),(34,160,0),(34,161,0),(34,162,0);
/*!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`;
CREATE TABLE `catalog_category_product_index` (
  `category_id` int(10) unsigned NOT NULL default '0',
  `product_id` int(10) unsigned NOT NULL default '0',
  `position` int(10) unsigned NOT NULL default '0',
  `is_parent` tinyint(1) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `visibility` tinyint(3) unsigned NOT NULL,
  UNIQUE KEY `UNQ_CATEGORY_PRODUCT` (`category_id`,`product_id`,`is_parent`,`store_id`),
  KEY `FK_CATALOG_CATEGORY_PRODUCT_INDEX_PRODUCT_ENTITY` (`product_id`),
  KEY `FK_CATALOG_CATEGORY_PRODUCT_INDEX_CATEGORY_ENTITY` (`category_id`),
  KEY `IDX_JOIN` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_BASE` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`),
  CONSTRAINT `FK_CATALOG_CATEGORY_PRODUCT_INDEX_CATEGORY_ENTITY` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_CATEGORY_PRODUCT_INDEX_PRODUCT_ENTITY` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATEGORY_PRODUCT_INDEX_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- 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 (3,30,0,0,1,1),(3,34,0,0,1,1),(3,35,0,0,1,1),(3,36,0,0,1,1),(3,37,0,0,1,1),(3,38,0,0,1,1),(3,84,0,0,1,1),(3,85,0,0,1,1),(3,86,0,0,1,1),(3,87,0,0,1,1),(3,88,0,0,1,1),(3,89,0,0,1,1),(3,90,0,0,1,1),(3,91,0,0,1,1),(3,92,0,0,1,1),(3,94,0,0,1,1),(3,95,0,0,1,1),(3,96,0,0,1,1),(3,97,0,0,1,1),(3,99,0,0,1,1),(3,100,0,0,1,1),(3,101,0,0,1,1),(3,102,0,0,1,1),(3,117,0,0,1,1),(3,118,0,0,1,1),(3,121,0,0,1,1),(3,122,0,0,1,1),(3,124,0,0,1,1),(3,125,0,0,1,1),(3,127,0,0,1,1),(3,128,0,0,1,1),(3,129,0,0,1,1),(3,130,0,0,1,1),(3,131,0,0,1,1),(3,31,2,0,1,1),(3,32,2,0,1,1),(3,33,2,0,1,1),(3,49,2,0,1,1),(3,74,2,0,1,1),(3,75,2,0,1,1),(3,79,2,0,1,1),(3,80,2,0,1,1),(3,81,2,0,1,1),(3,82,2,0,1,1),(3,104,2,0,1,1),(3,105,2,0,1,1),(3,106,2,0,1,1),(3,107,2,0,1,1),(3,109,2,0,1,1),(3,110,2,0,1,1),(3,111,2,0,1,1),(3,113,2,0,1,1),(3,114,2,0,1,1),(3,115,2,0,1,1),(3,16,0,0,1,4),(3,17,0,0,1,4),(3,18,0,0,1,4),(3,19,0,0,1,4),(3,20,0,0,1,4),(3,25,0,0,1,4),(3,26,0,0,1,4),(3,39,0,0,1,4),(3,41,0,0,1,4),(3,42,0,0,1,4),(3,44,0,0,1,4),(3,45,0,0,1,4),(3,46,0,0,1,4),(3,47,0,0,1,4),(3,48,0,0,1,4),(3,51,0,0,1,4),(3,52,0,0,1,4),(3,53,0,0,1,4),(3,54,0,0,1,4),(3,83,0,0,1,4),(3,93,0,0,1,4),(3,98,0,0,1,4),(3,119,0,0,1,4),(3,120,0,0,1,4),(3,123,0,0,1,4),(3,126,0,0,1,4),(3,132,0,0,1,4),(3,133,0,0,1,4),(3,134,0,0,1,4),(3,138,0,0,1,4),(3,139,0,0,1,4),(3,140,0,0,1,4),(3,141,0,0,1,4),(3,143,0,0,1,4),(3,145,0,0,1,4),(3,147,0,0,1,4),(3,148,0,0,1,4),(3,149,0,0,1,4),(3,150,0,0,1,4),(3,151,0,0,1,4),(3,152,0,0,1,4),(3,153,0,0,1,4),(3,154,0,0,1,4),(3,155,0,0,1,4),(3,156,0,0,1,4),(3,157,0,0,1,4),(3,158,0,0,1,4),(3,159,0,0,1,4),(3,160,0,0,1,4),(3,161,0,0,1,4),(3,162,0,0,1,4),(3,163,0,0,1,4),(3,164,0,0,1,4),(3,165,0,0,1,4),(3,166,0,0,1,4),(3,135,1,0,1,4),(3,103,2,0,1,4),(3,108,2,0,1,4),(3,112,2,0,1,4),(3,28,3,0,1,4),(4,35,0,1,1,1),(4,36,0,1,1,1),(4,37,0,1,1,1),(4,38,0,1,1,1),(4,117,0,1,1,1),(4,118,0,1,1,1),(4,121,0,1,1,1),(4,122,0,1,1,1),(4,124,0,1,1,1),(4,125,0,1,1,1),(4,127,0,1,1,1),(4,128,0,1,1,1),(4,129,0,1,1,1),(4,130,0,1,1,1),(4,131,0,1,1,1),(4,119,0,1,1,4),(4,120,0,1,1,4),(4,123,0,1,1,4),(4,126,0,1,1,4),(5,30,0,0,1,1),(5,34,0,0,1,1),(5,84,0,0,1,1),(5,85,0,0,1,1),(5,86,0,0,1,1),(5,87,0,0,1,1),(5,88,0,0,1,1),(5,89,0,0,1,1),(5,90,0,0,1,1),(5,91,0,0,1,1),(5,92,0,0,1,1),(5,94,0,0,1,1),(5,95,0,0,1,1),(5,96,0,0,1,1),(5,97,0,0,1,1),(5,99,0,0,1,1),(5,100,0,0,1,1),(5,101,0,0,1,1),(5,102,0,0,1,1),(5,31,2,0,1,1),(5,32,2,0,1,1),(5,33,2,0,1,1),(5,49,2,0,1,1),(5,74,2,0,1,1),(5,75,2,0,1,1),(5,79,2,0,1,1),(5,80,2,0,1,1),(5,81,2,0,1,1),(5,82,2,0,1,1),(5,104,2,0,1,1),(5,105,2,0,1,1),(5,106,2,0,1,1),(5,107,2,0,1,1),(5,109,2,0,1,1),(5,110,2,0,1,1),(5,111,2,0,1,1),(5,113,2,0,1,1),(5,114,2,0,1,1),(5,115,2,0,1,1),(5,83,0,0,1,4),(5,93,0,0,1,4),(5,98,0,0,1,4),(5,135,1,0,1,4),(5,103,2,0,1,4),(5,108,2,0,1,4),(5,112,2,0,1,4),(8,16,0,1,1,4),(8,17,0,1,1,4),(8,18,0,1,1,4),(8,19,0,1,1,4),(8,20,0,1,1,4),(8,166,0,1,1,4),(10,41,0,0,1,4),(10,42,0,0,1,4),(10,51,0,0,1,4),(10,52,0,0,1,4),(10,53,0,0,1,4),(10,54,0,0,1,4),(12,44,0,0,1,4),(12,45,0,0,1,4),(12,47,0,0,1,4),(12,48,0,0,1,4),(12,132,0,0,1,4),(12,133,0,0,1,4),(12,134,0,0,1,4),(12,46,0,1,1,4),(13,16,0,0,1,4),(13,17,0,0,1,4),(13,18,0,0,1,4),(13,19,0,0,1,4),(13,20,0,0,1,4),(13,25,0,0,1,4),(13,26,0,0,1,4),(13,44,0,0,1,4),(13,45,0,0,1,4),(13,46,0,0,1,4),(13,47,0,0,1,4),(13,48,0,0,1,4),(13,132,0,0,1,4),(13,133,0,0,1,4),(13,134,0,0,1,4),(13,138,0,0,1,4),(13,139,0,0,1,4),(13,140,0,0,1,4),(13,141,0,0,1,4),(13,143,0,0,1,4),(13,145,0,0,1,4),(13,147,0,0,1,4),(13,148,0,0,1,4),(13,149,0,0,1,4),(13,150,0,0,1,4),(13,151,0,0,1,4),(13,152,0,0,1,4),(13,153,0,0,1,4),(13,154,0,0,1,4),(13,155,0,0,1,4),(13,156,0,0,1,4),(13,157,0,0,1,4),(13,158,0,0,1,4),(13,159,0,0,1,4),(13,160,0,0,1,4),(13,161,0,0,1,4),(13,162,0,0,1,4),(13,163,0,0,1,4),(13,164,0,0,1,4),(13,165,0,0,1,4),(13,166,0,0,1,4),(13,28,3,0,1,4),(15,138,0,0,1,4),(15,139,0,0,1,4),(15,145,0,0,1,4),(15,147,0,0,1,4),(15,148,0,0,1,4),(15,149,0,0,1,4),(15,150,0,0,1,4),(15,151,0,0,1,4),(15,152,0,0,1,4),(15,153,0,0,1,4),(15,154,0,0,1,4),(15,155,0,0,1,4),(15,156,0,0,1,4),(15,157,0,0,1,4),(15,158,0,0,1,4),(15,159,0,0,1,4),(15,160,0,0,1,4),(15,161,0,0,1,4),(15,162,0,0,1,4),(15,164,0,0,1,4),(15,165,0,0,1,4),(15,25,0,1,1,4),(15,26,0,1,1,4),(15,140,0,1,1,4),(15,141,0,1,1,4),(15,143,0,1,1,4),(15,163,0,1,1,4),(15,28,3,1,1,4),(16,30,0,1,1,1),(16,34,0,1,1,1),(16,84,0,1,1,1),(16,85,0,1,1,1),(16,86,0,1,1,1),(16,87,0,1,1,1),(16,88,0,1,1,1),(16,89,0,1,1,1),(16,90,0,1,1,1),(16,91,0,1,1,1),(16,92,0,1,1,1),(16,94,0,1,1,1),(16,95,0,1,1,1),(16,96,0,1,1,1),(16,97,0,1,1,1),(16,99,0,1,1,1),(16,100,0,1,1,1),(16,101,0,1,1,1),(16,102,0,1,1,1),(16,83,0,1,1,4),(16,93,0,1,1,4),(16,98,0,1,1,4),(17,31,2,1,1,1),(17,32,2,1,1,1),(17,33,2,1,1,1),(17,49,2,1,1,1),(17,74,2,1,1,1),(17,75,2,1,1,1),(17,79,2,1,1,1),(17,80,2,1,1,1),(17,81,2,1,1,1),(17,82,2,1,1,1),(17,84,2,1,1,1),(17,85,2,1,1,1),(17,86,2,1,1,1),(17,87,2,1,1,1),(17,88,2,1,1,1),(17,89,2,1,1,1),(17,90,2,1,1,1),(17,91,2,1,1,1),(17,92,2,1,1,1),(17,104,2,1,1,1),(17,105,2,1,1,1),(17,106,2,1,1,1),(17,107,2,1,1,1),(17,109,2,1,1,1),(17,110,2,1,1,1),(17,111,2,1,1,1),(17,113,2,1,1,1),(17,114,2,1,1,1),(17,115,2,1,1,1),(17,135,1,1,1,4),(17,83,2,1,1,4),(17,103,2,1,1,4),(17,108,2,1,1,4),(17,112,2,1,1,4),(18,30,0,0,1,1),(18,34,0,0,1,1),(18,35,0,0,1,1),(18,36,0,0,1,1),(18,37,0,0,1,1),(18,38,0,0,1,1),(18,84,0,0,1,1),(18,85,0,0,1,1),(18,86,0,0,1,1),(18,87,0,0,1,1),(18,88,0,0,1,1),(18,89,0,0,1,1),(18,90,0,0,1,1),(18,91,0,0,1,1),(18,92,0,0,1,1),(18,94,0,0,1,1),(18,95,0,0,1,1),(18,96,0,0,1,1),(18,97,0,0,1,1),(18,99,0,0,1,1),(18,100,0,0,1,1),(18,101,0,0,1,1),(18,102,0,0,1,1),(18,117,0,0,1,1),(18,118,0,0,1,1),(18,121,0,0,1,1),(18,122,0,0,1,1),(18,124,0,0,1,1),(18,125,0,0,1,1),(18,127,0,0,1,1),(18,128,0,0,1,1),(18,129,0,0,1,1),(18,130,0,0,1,1),(18,131,0,0,1,1),(18,31,2,0,1,1),(18,32,2,0,1,1),(18,33,2,0,1,1),(18,49,2,0,1,1),(18,74,2,0,1,1),(18,75,2,0,1,1),(18,79,2,0,1,1),(18,80,2,0,1,1),(18,81,2,0,1,1),(18,82,2,0,1,1),(18,104,2,0,1,1),(18,105,2,0,1,1),(18,106,2,0,1,1),(18,107,2,0,1,1),(18,109,2,0,1,1),(18,110,2,0,1,1),(18,111,2,0,1,1),(18,113,2,0,1,1),(18,114,2,0,1,1),(18,115,2,0,1,1),(18,39,0,0,1,4),(18,83,0,0,1,4),(18,93,0,0,1,4),(18,98,0,0,1,4),(18,119,0,0,1,4),(18,120,0,0,1,4),(18,123,0,0,1,4),(18,126,0,0,1,4),(18,135,1,0,1,4),(18,103,2,0,1,4),(18,108,2,0,1,4),(18,112,2,0,1,4),(19,39,0,1,1,4),(22,51,0,1,1,4),(22,52,0,1,1,4),(22,53,0,1,1,4),(22,54,0,1,1,4),(23,41,0,1,1,4),(23,42,0,1,1,4),(25,132,0,1,1,4),(25,133,0,1,1,4),(25,134,0,1,1,4),(26,44,0,1,1,4),(26,45,0,1,1,4),(26,46,0,1,1,4),(26,47,0,1,1,4),(26,48,0,1,1,4),(27,163,0,1,1,4),(27,164,0,1,1,4),(27,165,0,1,1,4),(28,25,0,1,1,4),(28,26,0,1,1,4),(28,28,0,1,1,4),(28,158,0,1,1,4),(29,149,0,1,1,4),(29,150,0,1,1,4),(29,154,0,1,1,4),(29,155,0,1,1,4),(30,147,0,1,1,4),(30,152,0,1,1,4),(30,156,0,1,1,4),(30,157,0,1,1,4),(31,140,0,1,1,4),(31,141,0,1,1,4),(31,143,0,1,1,4),(32,138,0,1,1,4),(32,139,0,1,1,4),(33,145,0,1,1,4),(33,148,0,1,1,4),(33,151,0,1,1,4),(33,153,0,1,1,4),(34,159,0,1,1,4),(34,160,0,1,1,4),(34,161,0,1,1,4),(34,162,0,1,1,4),(3,30,0,0,2,1),(3,34,0,0,2,1),(3,35,0,0,2,1),(3,36,0,0,2,1),(3,37,0,0,2,1),(3,38,0,0,2,1),(3,84,0,0,2,1),(3,85,0,0,2,1),(3,86,0,0,2,1),(3,87,0,0,2,1),(3,88,0,0,2,1),(3,89,0,0,2,1),(3,90,0,0,2,1),(3,91,0,0,2,1),(3,92,0,0,2,1),(3,94,0,0,2,1),(3,95,0,0,2,1),(3,96,0,0,2,1),(3,97,0,0,2,1),(3,99,0,0,2,1),(3,100,0,0,2,1),(3,101,0,0,2,1),(3,102,0,0,2,1),(3,117,0,0,2,1),(3,118,0,0,2,1),(3,121,0,0,2,1),(3,122,0,0,2,1),(3,124,0,0,2,1),(3,125,0,0,2,1),(3,127,0,0,2,1),(3,128,0,0,2,1),(3,129,0,0,2,1),(3,130,0,0,2,1),(3,131,0,0,2,1),(3,31,2,0,2,1),(3,32,2,0,2,1),(3,33,2,0,2,1),(3,49,2,0,2,1),(3,74,2,0,2,1),(3,75,2,0,2,1),(3,79,2,0,2,1),(3,80,2,0,2,1),(3,81,2,0,2,1),(3,82,2,0,2,1),(3,104,2,0,2,1),(3,105,2,0,2,1),(3,106,2,0,2,1),(3,107,2,0,2,1),(3,109,2,0,2,1),(3,110,2,0,2,1),(3,111,2,0,2,1),(3,113,2,0,2,1),(3,114,2,0,2,1),(3,115,2,0,2,1),(3,16,0,0,2,4),(3,17,0,0,2,4),(3,18,0,0,2,4),(3,19,0,0,2,4),(3,20,0,0,2,4),(3,25,0,0,2,4),(3,26,0,0,2,4),(3,39,0,0,2,4),(3,41,0,0,2,4),(3,42,0,0,2,4),(3,44,0,0,2,4),(3,45,0,0,2,4),(3,46,0,0,2,4),(3,47,0,0,2,4),(3,48,0,0,2,4),(3,51,0,0,2,4),(3,52,0,0,2,4),(3,53,0,0,2,4),(3,54,0,0,2,4),(3,83,0,0,2,4),(3,93,0,0,2,4),(3,98,0,0,2,4),(3,119,0,0,2,4),(3,120,0,0,2,4),(3,123,0,0,2,4),(3,126,0,0,2,4),(3,132,0,0,2,4),(3,133,0,0,2,4),(3,134,0,0,2,4),(3,138,0,0,2,4),(3,139,0,0,2,4),(3,140,0,0,2,4),(3,141,0,0,2,4),(3,143,0,0,2,4),(3,145,0,0,2,4),(3,147,0,0,2,4),(3,148,0,0,2,4),(3,149,0,0,2,4),(3,150,0,0,2,4),(3,151,0,0,2,4),(3,152,0,0,2,4),(3,153,0,0,2,4),(3,154,0,0,2,4),(3,155,0,0,2,4),(3,156,0,0,2,4),(3,157,0,0,2,4),(3,158,0,0,2,4),(3,159,0,0,2,4),(3,160,0,0,2,4),(3,161,0,0,2,4),(3,162,0,0,2,4),(3,163,0,0,2,4),(3,164,0,0,2,4),(3,165,0,0,2,4),(3,166,0,0,2,4),(3,135,1,0,2,4),(3,103,2,0,2,4),(3,108,2,0,2,4),(3,112,2,0,2,4),(3,28,3,0,2,4),(4,35,0,1,2,1),(4,36,0,1,2,1),(4,37,0,1,2,1),(4,38,0,1,2,1),(4,117,0,1,2,1),(4,118,0,1,2,1),(4,121,0,1,2,1),(4,122,0,1,2,1),(4,124,0,1,2,1),(4,125,0,1,2,1),(4,127,0,1,2,1),(4,128,0,1,2,1),(4,129,0,1,2,1),(4,130,0,1,2,1),(4,131,0,1,2,1),(4,119,0,1,2,4),(4,120,0,1,2,4),(4,123,0,1,2,4),(4,126,0,1,2,4),(5,30,0,0,2,1),(5,34,0,0,2,1),(5,84,0,0,2,1),(5,85,0,0,2,1),(5,86,0,0,2,1),(5,87,0,0,2,1),(5,88,0,0,2,1),(5,89,0,0,2,1),(5,90,0,0,2,1),(5,91,0,0,2,1),(5,92,0,0,2,1),(5,94,0,0,2,1),(5,95,0,0,2,1),(5,96,0,0,2,1),(5,97,0,0,2,1),(5,99,0,0,2,1),(5,100,0,0,2,1),(5,101,0,0,2,1),(5,102,0,0,2,1),(5,31,2,0,2,1),(5,32,2,0,2,1),(5,33,2,0,2,1),(5,49,2,0,2,1),(5,74,2,0,2,1),(5,75,2,0,2,1),(5,79,2,0,2,1),(5,80,2,0,2,1),(5,81,2,0,2,1),(5,82,2,0,2,1),(5,104,2,0,2,1),(5,105,2,0,2,1),(5,106,2,0,2,1),(5,107,2,0,2,1),(5,109,2,0,2,1),(5,110,2,0,2,1),(5,111,2,0,2,1),(5,113,2,0,2,1),(5,114,2,0,2,1),(5,115,2,0,2,1),(5,83,0,0,2,4),(5,93,0,0,2,4),(5,98,0,0,2,4),(5,135,1,0,2,4),(5,103,2,0,2,4),(5,108,2,0,2,4),(5,112,2,0,2,4),(8,16,0,1,2,4),(8,17,0,1,2,4),(8,18,0,1,2,4),(8,19,0,1,2,4),(8,20,0,1,2,4),(8,166,0,1,2,4),(10,41,0,0,2,4),(10,42,0,0,2,4),(10,51,0,0,2,4),(10,52,0,0,2,4),(10,53,0,0,2,4),(10,54,0,0,2,4),(12,44,0,0,2,4),(12,45,0,0,2,4),(12,47,0,0,2,4),(12,48,0,0,2,4),(12,132,0,0,2,4),(12,133,0,0,2,4),(12,134,0,0,2,4),(12,46,0,1,2,4),(13,16,0,0,2,4),(13,17,0,0,2,4),(13,18,0,0,2,4),(13,19,0,0,2,4),(13,20,0,0,2,4),(13,25,0,0,2,4),(13,26,0,0,2,4),(13,44,0,0,2,4),(13,45,0,0,2,4),(13,46,0,0,2,4),(13,47,0,0,2,4),(13,48,0,0,2,4),(13,132,0,0,2,4),(13,133,0,0,2,4),(13,134,0,0,2,4),(13,138,0,0,2,4),(13,139,0,0,2,4),(13,140,0,0,2,4),(13,141,0,0,2,4),(13,143,0,0,2,4),(13,145,0,0,2,4),(13,147,0,0,2,4),(13,148,0,0,2,4),(13,149,0,0,2,4),(13,150,0,0,2,4),(13,151,0,0,2,4),(13,152,0,0,2,4),(13,153,0,0,2,4),(13,154,0,0,2,4),(13,155,0,0,2,4),(13,156,0,0,2,4),(13,157,0,0,2,4),(13,158,0,0,2,4),(13,159,0,0,2,4),(13,160,0,0,2,4),(13,161,0,0,2,4),(13,162,0,0,2,4),(13,163,0,0,2,4),(13,164,0,0,2,4),(13,165,0,0,2,4),(13,166,0,0,2,4),(13,28,3,0,2,4),(15,138,0,0,2,4),(15,139,0,0,2,4),(15,145,0,0,2,4),(15,147,0,0,2,4),(15,148,0,0,2,4),(15,149,0,0,2,4),(15,150,0,0,2,4),(15,151,0,0,2,4),(15,152,0,0,2,4),(15,153,0,0,2,4),(15,154,0,0,2,4),(15,155,0,0,2,4),(15,156,0,0,2,4),(15,157,0,0,2,4),(15,158,0,0,2,4),(15,159,0,0,2,4),(15,160,0,0,2,4),(15,161,0,0,2,4),(15,162,0,0,2,4),(15,164,0,0,2,4),(15,165,0,0,2,4),(15,25,0,1,2,4),(15,26,0,1,2,4),(15,140,0,1,2,4),(15,141,0,1,2,4),(15,143,0,1,2,4),(15,163,0,1,2,4),(15,28,3,1,2,4),(16,30,0,1,2,1),(16,34,0,1,2,1),(16,84,0,1,2,1),(16,85,0,1,2,1),(16,86,0,1,2,1),(16,87,0,1,2,1),(16,88,0,1,2,1),(16,89,0,1,2,1),(16,90,0,1,2,1),(16,91,0,1,2,1),(16,92,0,1,2,1),(16,94,0,1,2,1),(16,95,0,1,2,1),(16,96,0,1,2,1),(16,97,0,1,2,1),(16,99,0,1,2,1),(16,100,0,1,2,1),(16,101,0,1,2,1),(16,102,0,1,2,1),(16,83,0,1,2,4),(16,93,0,1,2,4),(16,98,0,1,2,4),(17,31,2,1,2,1),(17,32,2,1,2,1),(17,33,2,1,2,1),(17,49,2,1,2,1),(17,74,2,1,2,1),(17,75,2,1,2,1),(17,79,2,1,2,1),(17,80,2,1,2,1),(17,81,2,1,2,1),(17,82,2,1,2,1),(17,84,2,1,2,1),(17,85,2,1,2,1),(17,86,2,1,2,1),(17,87,2,1,2,1),(17,88,2,1,2,1),(17,89,2,1,2,1),(17,90,2,1,2,1),(17,91,2,1,2,1),(17,92,2,1,2,1),(17,104,2,1,2,1),(17,105,2,1,2,1),(17,106,2,1,2,1),(17,107,2,1,2,1),(17,109,2,1,2,1),(17,110,2,1,2,1),(17,111,2,1,2,1),(17,113,2,1,2,1),(17,114,2,1,2,1),(17,115,2,1,2,1),(17,135,1,1,2,4),(17,83,2,1,2,4),(17,103,2,1,2,4),(17,108,2,1,2,4),(17,112,2,1,2,4),(18,30,0,0,2,1),(18,34,0,0,2,1),(18,35,0,0,2,1),(18,36,0,0,2,1),(18,37,0,0,2,1),(18,38,0,0,2,1),(18,84,0,0,2,1),(18,85,0,0,2,1),(18,86,0,0,2,1),(18,87,0,0,2,1),(18,88,0,0,2,1),(18,89,0,0,2,1),(18,90,0,0,2,1),(18,91,0,0,2,1),(18,92,0,0,2,1),(18,94,0,0,2,1),(18,95,0,0,2,1),(18,96,0,0,2,1),(18,97,0,0,2,1),(18,99,0,0,2,1),(18,100,0,0,2,1),(18,101,0,0,2,1),(18,102,0,0,2,1),(18,117,0,0,2,1),(18,118,0,0,2,1),(18,121,0,0,2,1),(18,122,0,0,2,1),(18,124,0,0,2,1),(18,125,0,0,2,1),(18,127,0,0,2,1),(18,128,0,0,2,1),(18,129,0,0,2,1),(18,130,0,0,2,1),(18,131,0,0,2,1),(18,31,2,0,2,1),(18,32,2,0,2,1),(18,33,2,0,2,1),(18,49,2,0,2,1),(18,74,2,0,2,1),(18,75,2,0,2,1),(18,79,2,0,2,1),(18,80,2,0,2,1),(18,81,2,0,2,1),(18,82,2,0,2,1),(18,104,2,0,2,1),(18,105,2,0,2,1),(18,106,2,0,2,1),(18,107,2,0,2,1),(18,109,2,0,2,1),(18,110,2,0,2,1),(18,111,2,0,2,1),(18,113,2,0,2,1),(18,114,2,0,2,1),(18,115,2,0,2,1),(18,39,0,0,2,4),(18,83,0,0,2,4),(18,93,0,0,2,4),(18,98,0,0,2,4),(18,119,0,0,2,4),(18,120,0,0,2,4),(18,123,0,0,2,4),(18,126,0,0,2,4),(18,135,1,0,2,4),(18,103,2,0,2,4),(18,108,2,0,2,4),(18,112,2,0,2,4),(19,39,0,1,2,4),(22,51,0,1,2,4),(22,52,0,1,2,4),(22,53,0,1,2,4),(22,54,0,1,2,4),(23,41,0,1,2,4),(23,42,0,1,2,4),(25,132,0,1,2,4),(25,133,0,1,2,4),(25,134,0,1,2,4),(26,44,0,1,2,4),(26,45,0,1,2,4),(26,46,0,1,2,4),(26,47,0,1,2,4),(26,48,0,1,2,4),(27,163,0,1,2,4),(27,164,0,1,2,4),(27,165,0,1,2,4),(28,25,0,1,2,4),(28,26,0,1,2,4),(28,28,0,1,2,4),(28,158,0,1,2,4),(29,149,0,1,2,4),(29,150,0,1,2,4),(29,154,0,1,2,4),(29,155,0,1,2,4),(30,147,0,1,2,4),(30,152,0,1,2,4),(30,156,0,1,2,4),(30,157,0,1,2,4),(31,140,0,1,2,4),(31,141,0,1,2,4),(31,143,0,1,2,4),(32,138,0,1,2,4),(32,139,0,1,2,4),(33,145,0,1,2,4),(33,148,0,1,2,4),(33,151,0,1,2,4),(33,153,0,1,2,4),(34,159,0,1,2,4),(34,160,0,1,2,4),(34,161,0,1,2,4),(34,162,0,1,2,4),(3,30,0,0,3,1),(3,34,0,0,3,1),(3,35,0,0,3,1),(3,36,0,0,3,1),(3,37,0,0,3,1),(3,38,0,0,3,1),(3,84,0,0,3,1),(3,85,0,0,3,1),(3,86,0,0,3,1),(3,87,0,0,3,1),(3,88,0,0,3,1),(3,89,0,0,3,1),(3,90,0,0,3,1),(3,91,0,0,3,1),(3,92,0,0,3,1),(3,94,0,0,3,1),(3,95,0,0,3,1),(3,96,0,0,3,1),(3,97,0,0,3,1),(3,99,0,0,3,1),(3,100,0,0,3,1),(3,101,0,0,3,1),(3,102,0,0,3,1),(3,117,0,0,3,1),(3,118,0,0,3,1),(3,121,0,0,3,1),(3,122,0,0,3,1),(3,124,0,0,3,1),(3,125,0,0,3,1),(3,127,0,0,3,1),(3,128,0,0,3,1),(3,129,0,0,3,1),(3,130,0,0,3,1),(3,131,0,0,3,1),(3,31,2,0,3,1),(3,32,2,0,3,1),(3,33,2,0,3,1),(3,49,2,0,3,1),(3,74,2,0,3,1),(3,75,2,0,3,1),(3,79,2,0,3,1),(3,80,2,0,3,1),(3,81,2,0,3,1),(3,82,2,0,3,1),(3,104,2,0,3,1),(3,105,2,0,3,1),(3,106,2,0,3,1),(3,107,2,0,3,1),(3,109,2,0,3,1),(3,110,2,0,3,1),(3,111,2,0,3,1),(3,113,2,0,3,1),(3,114,2,0,3,1),(3,115,2,0,3,1),(3,16,0,0,3,4),(3,17,0,0,3,4),(3,18,0,0,3,4),(3,19,0,0,3,4),(3,20,0,0,3,4),(3,25,0,0,3,4),(3,26,0,0,3,4),(3,39,0,0,3,4),(3,41,0,0,3,4),(3,42,0,0,3,4),(3,44,0,0,3,4),(3,45,0,0,3,4),(3,46,0,0,3,4),(3,47,0,0,3,4),(3,48,0,0,3,4),(3,51,0,0,3,4),(3,52,0,0,3,4),(3,53,0,0,3,4),(3,54,0,0,3,4),(3,83,0,0,3,4),(3,93,0,0,3,4),(3,98,0,0,3,4),(3,119,0,0,3,4),(3,120,0,0,3,4),(3,123,0,0,3,4),(3,126,0,0,3,4),(3,132,0,0,3,4),(3,133,0,0,3,4),(3,134,0,0,3,4),(3,138,0,0,3,4),(3,139,0,0,3,4),(3,140,0,0,3,4),(3,141,0,0,3,4),(3,143,0,0,3,4),(3,145,0,0,3,4),(3,147,0,0,3,4),(3,148,0,0,3,4),(3,149,0,0,3,4),(3,150,0,0,3,4),(3,151,0,0,3,4),(3,152,0,0,3,4),(3,153,0,0,3,4),(3,154,0,0,3,4),(3,155,0,0,3,4),(3,156,0,0,3,4),(3,157,0,0,3,4),(3,158,0,0,3,4),(3,159,0,0,3,4),(3,160,0,0,3,4),(3,161,0,0,3,4),(3,162,0,0,3,4),(3,163,0,0,3,4),(3,164,0,0,3,4),(3,165,0,0,3,4),(3,166,0,0,3,4),(3,135,1,0,3,4),(3,103,2,0,3,4),(3,108,2,0,3,4),(3,112,2,0,3,4),(3,28,3,0,3,4),(4,35,0,1,3,1),(4,36,0,1,3,1),(4,37,0,1,3,1),(4,38,0,1,3,1),(4,117,0,1,3,1),(4,118,0,1,3,1),(4,121,0,1,3,1),(4,122,0,1,3,1),(4,124,0,1,3,1),(4,125,0,1,3,1),(4,127,0,1,3,1),(4,128,0,1,3,1),(4,129,0,1,3,1),(4,130,0,1,3,1),(4,131,0,1,3,1),(4,119,0,1,3,4),(4,120,0,1,3,4),(4,123,0,1,3,4),(4,126,0,1,3,4),(5,30,0,0,3,1),(5,34,0,0,3,1),(5,84,0,0,3,1),(5,85,0,0,3,1),(5,86,0,0,3,1),(5,87,0,0,3,1),(5,88,0,0,3,1),(5,89,0,0,3,1),(5,90,0,0,3,1),(5,91,0,0,3,1),(5,92,0,0,3,1),(5,94,0,0,3,1),(5,95,0,0,3,1),(5,96,0,0,3,1),(5,97,0,0,3,1),(5,99,0,0,3,1),(5,100,0,0,3,1),(5,101,0,0,3,1),(5,102,0,0,3,1),(5,31,2,0,3,1),(5,32,2,0,3,1),(5,33,2,0,3,1),(5,49,2,0,3,1),(5,74,2,0,3,1),(5,75,2,0,3,1),(5,79,2,0,3,1),(5,80,2,0,3,1),(5,81,2,0,3,1),(5,82,2,0,3,1),(5,104,2,0,3,1),(5,105,2,0,3,1),(5,106,2,0,3,1),(5,107,2,0,3,1),(5,109,2,0,3,1),(5,110,2,0,3,1),(5,111,2,0,3,1),(5,113,2,0,3,1),(5,114,2,0,3,1),(5,115,2,0,3,1),(5,83,0,0,3,4),(5,93,0,0,3,4),(5,98,0,0,3,4),(5,135,1,0,3,4),(5,103,2,0,3,4),(5,108,2,0,3,4),(5,112,2,0,3,4),(8,16,0,1,3,4),(8,17,0,1,3,4),(8,18,0,1,3,4),(8,19,0,1,3,4),(8,20,0,1,3,4),(8,166,0,1,3,4),(10,41,0,0,3,4),(10,42,0,0,3,4),(10,51,0,0,3,4),(10,52,0,0,3,4),(10,53,0,0,3,4),(10,54,0,0,3,4),(12,44,0,0,3,4),(12,45,0,0,3,4),(12,47,0,0,3,4),(12,48,0,0,3,4),(12,132,0,0,3,4),(12,133,0,0,3,4),(12,134,0,0,3,4),(12,46,0,1,3,4),(13,16,0,0,3,4),(13,17,0,0,3,4),(13,18,0,0,3,4),(13,19,0,0,3,4),(13,20,0,0,3,4),(13,25,0,0,3,4),(13,26,0,0,3,4),(13,44,0,0,3,4),(13,45,0,0,3,4),(13,46,0,0,3,4),(13,47,0,0,3,4),(13,48,0,0,3,4),(13,132,0,0,3,4),(13,133,0,0,3,4),(13,134,0,0,3,4),(13,138,0,0,3,4),(13,139,0,0,3,4),(13,140,0,0,3,4),(13,141,0,0,3,4),(13,143,0,0,3,4),(13,145,0,0,3,4),(13,147,0,0,3,4),(13,148,0,0,3,4),(13,149,0,0,3,4),(13,150,0,0,3,4),(13,151,0,0,3,4),(13,152,0,0,3,4),(13,153,0,0,3,4),(13,154,0,0,3,4),(13,155,0,0,3,4),(13,156,0,0,3,4),(13,157,0,0,3,4),(13,158,0,0,3,4),(13,159,0,0,3,4),(13,160,0,0,3,4),(13,161,0,0,3,4),(13,162,0,0,3,4),(13,163,0,0,3,4),(13,164,0,0,3,4),(13,165,0,0,3,4),(13,166,0,0,3,4),(13,28,3,0,3,4),(15,138,0,0,3,4),(15,139,0,0,3,4),(15,145,0,0,3,4),(15,147,0,0,3,4),(15,148,0,0,3,4),(15,149,0,0,3,4),(15,150,0,0,3,4),(15,151,0,0,3,4),(15,152,0,0,3,4),(15,153,0,0,3,4),(15,154,0,0,3,4),(15,155,0,0,3,4),(15,156,0,0,3,4),(15,157,0,0,3,4),(15,158,0,0,3,4),(15,159,0,0,3,4),(15,160,0,0,3,4),(15,161,0,0,3,4),(15,162,0,0,3,4),(15,164,0,0,3,4),(15,165,0,0,3,4),(15,25,0,1,3,4),(15,26,0,1,3,4),(15,140,0,1,3,4),(15,141,0,1,3,4),(15,143,0,1,3,4),(15,163,0,1,3,4),(15,28,3,1,3,4),(16,30,0,1,3,1),(16,34,0,1,3,1),(16,84,0,1,3,1),(16,85,0,1,3,1),(16,86,0,1,3,1),(16,87,0,1,3,1),(16,88,0,1,3,1),(16,89,0,1,3,1),(16,90,0,1,3,1),(16,91,0,1,3,1),(16,92,0,1,3,1),(16,94,0,1,3,1),(16,95,0,1,3,1),(16,96,0,1,3,1),(16,97,0,1,3,1),(16,99,0,1,3,1),(16,100,0,1,3,1),(16,101,0,1,3,1),(16,102,0,1,3,1),(16,83,0,1,3,4),(16,93,0,1,3,4),(16,98,0,1,3,4),(17,31,2,1,3,1),(17,32,2,1,3,1),(17,33,2,1,3,1),(17,49,2,1,3,1),(17,74,2,1,3,1),(17,75,2,1,3,1),(17,79,2,1,3,1),(17,80,2,1,3,1),(17,81,2,1,3,1),(17,82,2,1,3,1),(17,84,2,1,3,1),(17,85,2,1,3,1),(17,86,2,1,3,1),(17,87,2,1,3,1),(17,88,2,1,3,1),(17,89,2,1,3,1),(17,90,2,1,3,1),(17,91,2,1,3,1),(17,92,2,1,3,1),(17,104,2,1,3,1),(17,105,2,1,3,1),(17,106,2,1,3,1),(17,107,2,1,3,1),(17,109,2,1,3,1),(17,110,2,1,3,1),(17,111,2,1,3,1),(17,113,2,1,3,1),(17,114,2,1,3,1),(17,115,2,1,3,1),(17,135,1,1,3,4),(17,83,2,1,3,4),(17,103,2,1,3,4),(17,108,2,1,3,4),(17,112,2,1,3,4),(18,30,0,0,3,1),(18,34,0,0,3,1),(18,35,0,0,3,1),(18,36,0,0,3,1),(18,37,0,0,3,1),(18,38,0,0,3,1),(18,84,0,0,3,1),(18,85,0,0,3,1),(18,86,0,0,3,1),(18,87,0,0,3,1),(18,88,0,0,3,1),(18,89,0,0,3,1),(18,90,0,0,3,1),(18,91,0,0,3,1),(18,92,0,0,3,1),(18,94,0,0,3,1),(18,95,0,0,3,1),(18,96,0,0,3,1),(18,97,0,0,3,1),(18,99,0,0,3,1),(18,100,0,0,3,1),(18,101,0,0,3,1),(18,102,0,0,3,1),(18,117,0,0,3,1),(18,118,0,0,3,1),(18,121,0,0,3,1),(18,122,0,0,3,1),(18,124,0,0,3,1),(18,125,0,0,3,1),(18,127,0,0,3,1),(18,128,0,0,3,1),(18,129,0,0,3,1),(18,130,0,0,3,1),(18,131,0,0,3,1),(18,31,2,0,3,1),(18,32,2,0,3,1),(18,33,2,0,3,1),(18,49,2,0,3,1),(18,74,2,0,3,1),(18,75,2,0,3,1),(18,79,2,0,3,1),(18,80,2,0,3,1),(18,81,2,0,3,1),(18,82,2,0,3,1),(18,104,2,0,3,1),(18,105,2,0,3,1),(18,106,2,0,3,1),(18,107,2,0,3,1),(18,109,2,0,3,1),(18,110,2,0,3,1),(18,111,2,0,3,1),(18,113,2,0,3,1),(18,114,2,0,3,1),(18,115,2,0,3,1),(18,39,0,0,3,4),(18,83,0,0,3,4),(18,93,0,0,3,4),(18,98,0,0,3,4),(18,119,0,0,3,4),(18,120,0,0,3,4),(18,123,0,0,3,4),(18,126,0,0,3,4),(18,135,1,0,3,4),(18,103,2,0,3,4),(18,108,2,0,3,4),(18,112,2,0,3,4),(19,39,0,1,3,4),(22,51,0,1,3,4),(22,52,0,1,3,4),(22,53,0,1,3,4),(22,54,0,1,3,4),(23,41,0,1,3,4),(23,42,0,1,3,4),(25,132,0,1,3,4),(25,133,0,1,3,4),(25,134,0,1,3,4),(26,44,0,1,3,4),(26,45,0,1,3,4),(26,46,0,1,3,4),(26,47,0,1,3,4),(26,48,0,1,3,4),(27,163,0,1,3,4),(27,164,0,1,3,4),(27,165,0,1,3,4),(28,25,0,1,3,4),(28,26,0,1,3,4),(28,28,0,1,3,4),(28,158,0,1,3,4),(29,149,0,1,3,4),(29,150,0,1,3,4),(29,154,0,1,3,4),(29,155,0,1,3,4),(30,147,0,1,3,4),(30,152,0,1,3,4),(30,156,0,1,3,4),(30,157,0,1,3,4),(31,140,0,1,3,4),(31,141,0,1,3,4),(31,143,0,1,3,4),(32,138,0,1,3,4),(32,139,0,1,3,4),(33,145,0,1,3,4),(33,148,0,1,3,4),(33,151,0,1,3,4),(33,153,0,1,3,4),(34,159,0,1,3,4),(34,160,0,1,3,4),(34,161,0,1,3,4),(34,162,0,1,3,4);
/*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_compare_item`
--
DROP TABLE IF EXISTS `catalog_compare_item`;
CREATE TABLE `catalog_compare_item` (
  `catalog_compare_item_id` int(11) unsigned NOT NULL auto_increment,
  `visitor_id` int(11) unsigned NOT NULL default '0',
  `customer_id` int(11) unsigned default NULL,
  `product_id` int(11) unsigned NOT NULL default '0',
  PRIMARY KEY  (`catalog_compare_item_id`),
  KEY `FK_CATALOG_COMPARE_ITEM_CUSTOMER` (`customer_id`),
  KEY `FK_CATALOG_COMPARE_ITEM_PRODUCT` (`product_id`),
  KEY `IDX_VISITOR_PRODUCTS` (`visitor_id`,`product_id`),
  KEY `IDX_CUSTOMER_PRODUCTS` (`customer_id`,`product_id`),
  CONSTRAINT `FK_CATALOG_COMPARE_ITEM_CUSTOMER` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_COMPARE_ITEM_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalog_compare_item`
--
LOCK TABLES `catalog_compare_item` WRITE;
/*!40000 ALTER TABLE `catalog_compare_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_compare_item` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_product_bundle_option`
--
DROP TABLE IF EXISTS `catalog_product_bundle_option`;
CREATE TABLE `catalog_product_bundle_option` (
  `option_id` int(10) unsigned NOT NULL auto_increment,
  `parent_id` int(10) unsigned NOT NULL,
  `required` tinyint(1) unsigned NOT NULL default '0',
  `position` int(10) unsigned NOT NULL default '0',
  `type` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`option_id`),
  KEY `FK_CATALOG_PRODUCT_BUNDLE_OPTION_PARENT` (`parent_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_OPTION_PARENT` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COMMENT='Bundle Options';
--
-- Dumping data for table `catalog_product_bundle_option`
--
LOCK TABLES `catalog_product_bundle_option` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_option` DISABLE KEYS */;
INSERT INTO `catalog_product_bundle_option` VALUES (1,158,0,10,'radio'),(2,158,1,0,'radio'),(3,163,0,11,'multi'),(4,163,0,10,'radio'),(5,163,0,7,'checkbox'),(6,163,0,5,'radio'),(7,163,1,4,'radio'),(8,163,1,3,'radio'),(9,163,1,2,'radio'),(10,163,1,1,'radio'),(11,164,1,4,'select'),(12,164,1,5,'multi'),(13,164,0,8,'checkbox'),(14,165,1,4,'checkbox'),(15,165,1,3,'radio'),(16,165,1,2,'radio'),(17,165,1,1,'select'),(20,164,1,3,'radio'),(21,164,1,1,'radio'),(22,165,1,1,'select');
/*!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`;
CREATE TABLE `catalog_product_bundle_option_value` (
  `value_id` int(10) unsigned NOT NULL auto_increment,
  `option_id` int(10) unsigned NOT NULL,
  `store_id` smallint(5) unsigned NOT NULL,
  `title` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_BUNDLE_OPTION_VALUE_OPTION` (`option_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_OPTION_VALUE_OPTION` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Bundle Selections';
--
-- 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 */;
INSERT INTO `catalog_product_bundle_option_value` VALUES (1,1,0,'Waranty'),(2,2,0,'Laptop'),(3,21,0,'Case'),(4,20,0,'CPU'),(5,11,0,'RAM'),(6,12,0,'Hard Drive'),(7,13,0,'Peripherals'),(8,10,0,'Case'),(9,9,0,'Processor'),(10,8,0,'Memory'),(11,7,0,'Hard Drive'),(12,6,0,'Hard Drive 2'),(13,5,0,'Peripherals'),(14,4,0,'Monitor'),(15,3,0,'Warranty'),(16,17,0,'Case'),(17,22,0,'CPU'),(18,16,0,'Hard Drive'),(19,15,0,'Ram'),(20,14,0,'Monitor');
/*!40000 ALTER TABLE `catalog_product_bundle_option_value` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_product_bundle_selection`
--
DROP TABLE IF EXISTS `catalog_product_bundle_selection`;
CREATE TABLE `catalog_product_bundle_selection` (
  `selection_id` int(10) unsigned NOT NULL auto_increment,
  `option_id` int(10) unsigned NOT NULL,
  `parent_product_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `position` int(10) unsigned NOT NULL default '0',
  `is_default` tinyint(1) unsigned NOT NULL default '0',
  `selection_price_type` tinyint(1) unsigned NOT NULL default '0',
  `selection_price_value` decimal(12,4) NOT NULL default '0.0000',
  `selection_qty` decimal(12,4) NOT NULL default '0.0000',
  `selection_can_change_qty` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`selection_id`),
  KEY `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION` (`option_id`),
  KEY `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT` (`product_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 COMMENT='Bundle Selections';
--
-- Dumping data for table `catalog_product_bundle_selection`
--
LOCK TABLES `catalog_product_bundle_selection` WRITE;
/*!40000 ALTER TABLE `catalog_product_bundle_selection` DISABLE KEYS */;
INSERT INTO `catalog_product_bundle_selection` VALUES (1,1,158,146,20,0,0,'0.0000','1.0000',0),(2,1,158,142,0,0,0,'0.0000','1.0000',0),(3,1,158,144,10,0,0,'0.0000','1.0000',0),(4,2,158,27,0,0,0,'0.0000','1.0000',0),(5,3,163,142,0,0,0,'0.0000','1.0000',1),(6,4,163,157,0,0,0,'0.0000','1.0000',1),(7,4,163,156,0,0,0,'0.0000','1.0000',1),(8,4,163,152,0,0,0,'0.0000','1.0000',1),(9,4,163,147,0,0,0,'0.0000','1.0000',1),(10,5,163,162,50,0,0,'0.0000','1.0000',1),(11,5,163,159,0,0,0,'0.0000','1.0000',1),(12,5,163,161,0,0,0,'0.0000','1.0000',1),(13,5,163,160,100,0,0,'0.0000','1.0000',1),(14,6,163,149,0,0,0,'0.0000','1.0000',1),(15,6,163,154,0,1,0,'0.0000','1.0000',1),(16,7,163,155,0,1,0,'0.0000','1.0000',0),(17,7,163,150,0,0,0,'0.0000','1.0000',0),(18,8,163,143,0,0,0,'0.0000','1.0000',0),(19,8,163,141,0,1,0,'0.0000','1.0000',0),(20,8,163,140,0,0,0,'0.0000','1.0000',0),(21,9,163,148,0,0,0,'0.0000','1.0000',0),(22,9,163,145,0,0,0,'0.0000','1.0000',0),(23,9,163,153,0,1,0,'0.0000','1.0000',0),(24,9,163,151,0,0,0,'0.0000','1.0000',0),(25,10,163,138,0,1,0,'0.0000','1.0000',0),(26,10,163,139,0,0,0,'0.0000','1.0000',0),(27,11,164,143,0,0,0,'0.0000','1.0000',0),(28,11,164,141,0,0,0,'75.0000','1.0000',0),(29,11,164,140,0,0,0,'150.0000','1.0000',0),(30,12,164,149,0,0,0,'250.0000','1.0000',1),(31,12,164,154,0,0,0,'0.0000','1.0000',1),(32,13,164,161,0,0,0,'199.0000','1.0000',1),(33,13,164,160,0,0,0,'50.0000','1.0000',1),(34,13,164,162,0,0,0,'0.0000','1.0000',1),(35,13,164,159,0,0,0,'0.0000','1.0000',1),(36,14,165,157,0,0,0,'0.0000','1.0000',1),(37,14,165,156,0,0,0,'0.0000','1.0000',1),(38,14,165,152,0,0,0,'0.0000','1.0000',1),(39,14,165,147,0,0,0,'0.0000','1.0000',1),(40,15,165,143,0,0,0,'0.0000','1.0000',0),(41,15,165,141,0,0,0,'0.0000','1.0000',0),(42,15,165,140,0,0,0,'0.0000','1.0000',0),(43,16,165,149,0,0,0,'0.0000','1.0000',1),(44,16,165,150,0,0,0,'0.0000','1.0000',1),(45,16,165,154,0,0,0,'0.0000','1.0000',1),(46,16,165,155,0,0,0,'0.0000','1.0000',1),(47,17,165,138,0,0,0,'0.0000','1.0000',0),(48,17,165,139,0,0,0,'0.0000','1.0000',0),(54,20,164,153,0,0,0,'700.0000','1.0000',0),(55,20,164,151,0,0,0,'200.0000','1.0000',0),(56,20,164,148,0,0,0,'100.0000','1.0000',0),(57,20,164,145,0,0,0,'0.0000','1.0000',0),(58,21,164,139,0,0,0,'0.0000','1.0000',0),(59,22,165,145,0,0,0,'0.0000','1.0000',0),(60,22,165,151,0,0,0,'0.0000','1.0000',0),(61,22,165,148,0,0,0,'0.0000','1.0000',0),(62,22,165,153,0,0,0,'0.0000','1.0000',0);
/*!40000 ALTER TABLE `catalog_product_bundle_selection` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_product_enabled_index`
--
DROP TABLE IF EXISTS `catalog_product_enabled_index`;
CREATE TABLE `catalog_product_enabled_index` (
  `product_id` int(10) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `visibility` smallint(5) unsigned NOT NULL default '0',
  UNIQUE KEY `UNQ_PRODUCT_STORE` (`product_id`,`store_id`),
  KEY `IDX_PRODUCT_VISIBILITY_IN_STORE` (`product_id`,`store_id`,`visibility`),
  KEY `FK_CATALOG_PRODUCT_ENABLED_INDEX_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENABLED_INDEX_PRODUCT_ENTITY` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENABLED_INDEX_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalog_product_enabled_index`
--
LOCK TABLES `catalog_product_enabled_index` WRITE;
/*!40000 ALTER TABLE `catalog_product_enabled_index` DISABLE KEYS */;
INSERT INTO `catalog_product_enabled_index` VALUES (16,1,4),(16,2,4),(16,3,4),(17,1,4),(17,2,4),(17,3,4),(18,1,4),(18,2,4),(18,3,4),(19,1,4),(19,2,4),(19,3,4),(20,1,4),(20,2,4),(20,3,4),(25,1,4),(25,2,4),(25,3,4),(26,1,4),(26,2,4),(26,3,4),(27,1,4),(27,2,4),(27,3,4),(28,1,4),(28,2,4),(28,3,4),(29,1,1),(29,2,1),(29,3,1),(30,1,1),(30,2,1),(30,3,1),(31,1,1),(31,2,1),(31,3,1),(32,1,1),(32,2,1),(32,3,1),(33,1,1),(33,2,1),(33,3,1),(34,1,1),(34,2,1),(34,3,1),(35,1,1),(35,2,1),(35,3,1),(36,1,1),(36,2,1),(36,3,1),(37,1,1),(37,2,1),(37,3,1),(38,1,1),(38,2,1),(38,3,1),(39,1,4),(39,2,4),(39,3,4),(41,1,4),(41,2,4),(41,3,4),(42,1,4),(42,2,4),(42,3,4),(44,1,4),(44,2,4),(44,3,4),(45,1,4),(45,2,4),(45,3,4),(46,1,4),(46,2,4),(46,3,4),(47,1,4),(47,2,4),(47,3,4),(48,1,4),(48,2,4),(48,3,4),(49,1,1),(49,2,1),(49,3,1),(51,1,4),(51,2,4),(51,3,4),(52,1,4),(52,2,4),(52,3,4),(53,1,4),(53,2,4),(53,3,4),(54,1,4),(54,2,4),(54,3,4),(74,1,1),(74,2,1),(74,3,1),(75,1,1),(75,2,1),(75,3,1),(79,1,1),(79,2,1),(79,3,1),(80,1,1),(80,2,1),(80,3,1),(81,1,1),(81,2,1),(81,3,1),(82,1,1),(82,2,1),(82,3,1),(83,1,4),(83,2,4),(83,3,4),(84,1,1),(84,2,1),(84,3,1),(85,1,1),(85,2,1),(85,3,1),(86,1,1),(86,2,1),(86,3,1),(87,1,1),(87,2,1),(87,3,1),(88,1,1),(88,2,1),(88,3,1),(89,1,1),(89,2,1),(89,3,1),(90,1,1),(90,2,1),(90,3,1),(91,1,1),(91,2,1),(91,3,1),(92,1,1),(92,2,1),(92,3,1),(93,1,4),(93,2,4),(93,3,4),(94,1,1),(94,2,1),(94,3,1),(95,1,1),(95,2,1),(95,3,1),(96,1,1),(96,2,1),(96,3,1),(97,1,1),(97,2,1),(97,3,1),(98,1,4),(98,2,4),(98,3,4),(99,1,1),(99,2,1),(99,3,1),(100,1,1),(100,2,1),(100,3,1),(101,1,1),(101,2,1),(101,3,1),(102,1,1),(102,2,1),(102,3,1),(103,1,4),(103,2,4),(103,3,4),(104,1,1),(104,2,1),(104,3,1),(105,1,1),(105,2,1),(105,3,1),(106,1,1),(106,2,1),(106,3,1),(107,1,1),(107,2,1),(107,3,1),(108,1,4),(108,2,4),(108,3,4),(109,1,1),(109,2,1),(109,3,1),(110,1,1),(110,2,1),(110,3,1),(111,1,1),(111,2,1),(111,3,1),(112,1,4),(112,2,4),(112,3,4),(113,1,1),(113,2,1),(113,3,1),(114,1,1),(114,2,1),(114,3,1),(115,1,1),(115,2,1),(115,3,1),(117,1,1),(117,2,1),(117,3,1),(118,1,1),(118,2,1),(118,3,1),(119,1,4),(119,2,4),(119,3,4),(120,1,4),(120,2,4),(120,3,4),(121,1,1),(121,2,1),(121,3,1),(122,1,1),(122,2,1),(122,3,1),(123,1,4),(123,2,4),(123,3,4),(124,1,1),(124,2,1),(124,3,1),(125,1,1),(125,2,1),(125,3,1),(126,1,4),(126,2,4),(126,3,4),(127,1,1),(127,2,1),(127,3,1),(128,1,1),(128,2,1),(128,3,1),(129,1,1),(129,2,1),(129,3,1),(130,1,1),(130,2,1),(130,3,1),(131,1,1),(131,2,1),(131,3,1),(132,1,4),(132,2,4),(132,3,4),(133,1,4),(133,2,4),(133,3,4),(134,1,4),(134,2,4),(134,3,4),(135,1,4),(135,2,4),(135,3,4),(138,1,4),(138,2,4),(138,3,4),(139,1,4),(139,2,4),(139,3,4),(140,1,4),(140,2,4),(140,3,4),(141,1,4),(141,2,4),(141,3,4),(142,1,1),(142,2,1),(142,3,1),(143,1,4),(143,2,4),(143,3,4),(144,1,1),(144,2,1),(144,3,1),(145,1,4),(145,2,4),(145,3,4),(146,1,1),(146,2,1),(146,3,1),(147,1,4),(147,2,4),(147,3,4),(148,1,4),(148,2,4),(148,3,4),(149,1,4),(149,2,4),(149,3,4),(150,1,4),(150,2,4),(150,3,4),(151,1,4),(151,2,4),(151,3,4),(152,1,4),(152,2,4),(152,3,4),(153,1,4),(153,2,4),(153,3,4),(154,1,4),(154,2,4),(154,3,4),(155,1,4),(155,2,4),(155,3,4),(156,1,4),(156,2,4),(156,3,4),(157,1,4),(157,2,4),(157,3,4),(158,1,4),(158,2,4),(158,3,4),(159,1,4),(159,2,4),(159,3,4),(160,1,4),(160,2,4),(160,3,4),(161,1,4),(161,2,4),(161,3,4),(162,1,4),(162,2,4),(162,3,4),(163,1,4),(163,2,4),(163,3,4),(164,1,4),(164,2,4),(164,3,4),(165,1,4),(165,2,4),(165,3,4),(166,1,4),(166,2,4),(166,3,4);
/*!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`;
CREATE TABLE `catalog_product_entity` (
  `entity_id` int(10) unsigned NOT NULL auto_increment,
  `entity_type_id` smallint(8) unsigned NOT NULL default '0',
  `attribute_set_id` smallint(5) unsigned NOT NULL default '0',
  `type_id` varchar(32) NOT NULL default 'simple',
  `sku` varchar(64) default NULL,
  `category_ids` text,
  `created_at` datetime NOT NULL default '0000-00-00 00:00:00',
  `updated_at` datetime NOT NULL default '0000-00-00 00:00:00',
  `has_options` smallint(1) NOT NULL default '0',
  PRIMARY KEY  (`entity_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_ENTITY_TYPE` (`entity_type_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`),
  KEY `sku` (`sku`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_ENTITY_TYPE` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=167 DEFAULT CHARSET=utf8 COMMENT='Product Entityies';
--
-- 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 (16,10,38,'simple','n2610','8','2007-08-23 13:03:05','2008-08-08 14:50:04',0),(17,10,38,'simple','bb8100','8','2007-08-23 15:40:26','2008-08-08 14:50:23',0),(18,10,38,'simple','sw810i','8','2007-08-23 15:47:44','2008-08-08 14:50:56',0),(19,10,38,'simple','8525PDA','8','2007-08-23 15:55:29','2008-08-08 14:51:11',0),(20,10,38,'simple','MM-A900M','8','2007-08-23 18:06:42','2008-08-08 14:51:27',0),(25,10,39,'simple','MA464LL/A','15,28','2007-08-24 14:28:50','2008-07-28 21:27:34',1),(26,10,39,'simple','LX.FR206.001','15,28','2007-08-24 14:35:16','2008-08-05 07:14:52',1),(27,10,39,'simple','VGN-TXN27N/B','','2007-08-24 14:41:56','2008-08-06 05:12:24',0),(28,10,39,'simple','M285-E','15,28','2007-08-24 14:47:57','2008-08-08 14:51:44',0),(29,10,40,'simple','cn_3','','2007-08-24 18:53:19','2008-08-08 00:51:34',0),(30,10,40,'simple','asc_8','16','2007-08-24 19:00:49','2008-07-31 17:23:28',0),(31,10,40,'simple','steve_4','17','2007-08-24 19:05:50','2008-08-08 01:02:40',0),(32,10,40,'simple','nine_3','17','2007-08-24 19:12:54','2008-07-31 18:06:25',0),(33,10,40,'simple','ecco_3','17','2007-08-24 19:21:42','2008-08-08 01:04:49',0),(34,10,40,'simple','ken_8','16','2007-08-24 19:27:04','2008-08-08 00:58:35',0),(35,10,41,'simple','coal_sm','4','2007-08-24 19:49:30','2008-07-31 17:36:42',0),(36,10,41,'simple','ink_sm','4','2007-08-24 19:53:06','2008-08-08 00:49:48',0),(37,10,41,'simple','oc_sm','4','2007-08-24 19:59:39','2008-08-08 00:47:47',0),(38,10,41,'simple','zol_r_sm','4','2007-08-24 20:02:08','2008-08-08 00:39:57',0),(39,10,41,'simple','4fasd5f5','19','2007-08-24 20:07:02','2008-06-24 23:45:44',0),(41,10,42,'simple','384822','23','2007-08-27 10:43:59','2008-07-29 22:28:43',0),(42,10,42,'simple','bar1234','23','2007-08-27 10:50:01','2008-06-24 23:59:46',0),(44,10,44,'simple','Rebel XT','26','2007-08-28 13:06:05','2008-06-24 22:50:46',0),(45,10,44,'simple','QC-2185','26','2007-08-28 13:18:56','2008-08-08 14:52:48',0),(46,10,44,'simple','750','12,26','2007-08-28 13:23:34','2008-08-08 14:57:57',0),(47,10,44,'simple','A630','26','2007-08-28 13:27:14','2008-08-08 14:58:14',0),(48,10,44,'simple','C530','26','2007-08-28 13:32:20','2008-08-08 14:58:41',0),(49,10,40,'simple','ana_9','17','2007-08-28 15:09:50','2008-08-08 01:07:50',0),(51,10,42,'simple','1111','22','2007-08-28 16:25:46','2008-08-08 14:59:04',0),(52,10,42,'simple','1112','22','2007-08-28 16:29:24','2008-08-08 14:59:17',0),(53,10,42,'simple','1113','22','2007-08-28 16:32:24','2008-08-08 14:59:40',0),(54,10,42,'grouped','1114','22','2007-08-28 16:38:54','2008-08-08 15:00:22',0),(74,10,40,'simple','ana_3','17','2007-08-28 15:09:50','2008-08-08 13:19:48',0),(75,10,40,'simple','ana_4','17','2007-08-28 15:09:50','2008-08-08 01:07:18',0),(79,10,40,'simple','ana_5','17','2007-08-28 15:09:50','2008-08-08 01:07:11',0),(80,10,40,'simple','ana_6','17','2007-08-28 15:09:50','2008-08-08 01:07:25',0),(81,10,40,'simple','ana_7','17','2007-08-28 15:09:50','2008-08-08 01:07:32',0),(82,10,40,'simple','ana_8','17','2007-08-28 15:09:50','2008-08-08 01:07:44',0),(83,10,40,'configurable','cn','16,17','2007-08-29 10:32:52','2008-08-08 15:00:07',1),(84,10,40,'simple','cn_4','16,17','2007-08-24 18:53:19','2008-08-08 00:53:37',0),(85,10,40,'simple','cn_5','16,17','2007-08-24 18:53:19','2008-08-08 00:53:55',0),(86,10,40,'simple','cn_6','16,17','2007-08-24 18:53:19','2008-08-08 00:53:50',0),(87,10,40,'simple','cn_7','16,17','2007-08-24 18:53:19','2008-08-08 00:54:00',0),(88,10,40,'simple','cn_m8','16,17','2007-08-24 18:53:19','2008-08-08 00:54:10',0),(89,10,40,'simple','cn_m9','16,17','2007-08-24 18:53:19','2008-08-08 00:54:27',0),(90,10,40,'simple','cn_m10','16,17','2007-08-24 18:53:19','2008-08-08 00:54:36',0),(91,10,40,'simple','cn_m11','16,17','2007-08-24 18:53:19','2008-08-08 00:54:40',0),(92,10,40,'simple','cn_m12','16,17','2007-08-24 18:53:19','2008-08-08 00:54:45',0),(93,10,40,'configurable','asc','16','2007-08-29 11:46:47','2008-08-08 15:00:35',1),(94,10,40,'simple','asc_9','16','2007-08-24 19:00:49','2008-07-31 17:23:18',0),(95,10,40,'simple','asc_10','16','2007-08-24 19:00:49','2008-07-31 17:23:37',0),(96,10,40,'simple','asc_11','16','2007-08-24 19:00:49','2008-07-31 17:23:47',0),(97,10,40,'simple','asc_12','16','2007-08-24 19:00:49','2008-07-31 17:23:58',0),(98,10,40,'configurable','ken','16','2007-08-29 12:09:17','2008-08-08 14:29:46',1),(99,10,40,'simple','ken_9','16','2007-08-24 19:27:04','2008-08-08 00:57:45',0),(100,10,40,'simple','ken_10','16','2007-08-24 19:27:04','2008-08-08 00:56:05',0),(101,10,40,'simple','ken_11','16','2007-08-24 19:27:04','2008-08-08 00:57:03',0),(102,10,40,'simple','ken_12','16','2007-08-24 19:27:04','2008-08-08 00:57:40',0),(103,10,40,'configurable','steve','17','2007-08-29 12:29:46','2008-08-08 15:02:24',1),(104,10,40,'simple','steve_5','17','2007-08-24 19:05:50','2008-08-08 01:02:34',0),(105,10,40,'simple','steve_6','17','2007-08-24 19:05:50','2008-08-08 01:02:56',0),(106,10,40,'simple','steve_7','17','2007-08-24 19:05:50','2008-08-08 01:03:00',0),(107,10,40,'simple','steve_8','17','2007-08-24 19:05:50','2008-08-08 01:03:06',0),(108,10,40,'configurable','nine','17','2007-08-29 12:52:39','2008-08-08 15:02:34',1),(109,10,40,'simple','nine_4','17','2007-08-24 19:12:54','2008-07-31 18:06:49',0),(110,10,40,'simple','nine_5','17','2007-08-24 19:12:54','2008-07-31 18:06:42',0),(111,10,40,'simple','nine_6','17','2007-08-24 19:12:54','2008-07-31 18:07:09',0),(112,10,40,'configurable','ecco','17','2007-08-29 13:17:43','2008-08-08 15:02:49',1),(113,10,40,'simple','ecco_4','17','2007-08-24 19:21:42','2008-08-08 01:04:28',0),(114,10,40,'simple','ecco_5','17','2007-08-24 19:21:42','2008-08-08 01:04:37',0),(115,10,40,'simple','ecco_6','17','2007-08-24 19:21:42','2008-08-08 01:04:44',0),(117,10,41,'simple','coal_md','4','2007-08-24 19:49:30','2008-07-31 17:37:23',0),(118,10,41,'simple','coal_lrg','4','2007-08-24 19:49:30','2008-07-31 17:38:30',0),(119,10,41,'configurable','coal_1','4','2007-08-29 15:00:05','2008-08-08 13:26:35',1),(120,10,41,'configurable','ink','4','2007-08-29 15:06:16','2008-08-08 15:05:04',1),(121,10,41,'simple','ink_med','4','2007-08-24 19:53:06','2008-08-08 00:49:36',0),(122,10,41,'simple','ink_lrg','4','2007-08-24 19:53:06','2008-08-08 00:49:19',0),(123,10,41,'configurable','oc','4','2007-08-29 15:14:29','2008-06-24 22:59:14',1),(124,10,41,'simple','oc_med','4','2007-08-24 19:59:39','2008-08-08 00:47:56',0),(125,10,41,'simple','oc_lrg','4','2007-08-24 19:59:39','2008-08-08 00:48:14',0),(126,10,41,'configurable','zol','4','2007-08-29 15:31:56','2008-08-08 15:05:22',1),(127,10,41,'simple','zol_g_sm','4','2007-08-24 20:02:08','2008-08-08 00:40:33',0),(128,10,41,'simple','zol_r_med','4','2007-08-24 20:02:08','2008-08-08 00:41:39',0),(129,10,41,'simple','zol_g_med','4','2007-08-24 20:02:08','2008-08-08 00:40:59',0),(130,10,41,'simple','zol_r_lrg','4','2007-08-24 20:02:08','2008-08-08 00:40:28',0),(131,10,41,'simple','zol_g_lrg','4','2007-08-24 20:02:08','2008-08-08 00:41:10',0),(132,10,9,'simple','ac674','25','2007-08-29 19:53:55','2008-08-08 15:05:45',0),(133,10,9,'simple','ac9003','25','2007-08-29 19:56:27','2008-06-28 01:57:22',0),(134,10,9,'simple','ac-66332','25','2007-08-29 19:59:29','2008-06-28 01:57:16',0),(135,10,40,'configurable','ana','17','2007-08-30 11:22:53','2008-08-08 15:06:02',1),(137,10,41,'simple','zol_b_med','','2007-10-04 07:46:58','2008-08-08 00:41:29',0),(138,10,9,'simple','apevia-black','32','2008-07-25 00:52:03','2008-08-08 13:36:29',0),(139,10,9,'simple','nzxtlexa','32','2008-07-25 00:54:41','2008-07-25 00:54:41',0),(140,10,58,'simple','2gbdimm','15,31','2008-07-25 00:59:55','2008-07-25 02:14:23',0),(141,10,58,'simple','1gbdimm','15,31','2008-07-25 01:02:21','2008-07-25 02:13:04',0),(142,10,59,'virtual','1yr_p_l','','2008-07-25 01:02:54','2008-07-25 01:02:54',0),(143,10,58,'simple','512dimm','15,31','2008-07-25 01:05:00','2008-07-25 02:12:45',0),(144,10,59,'virtual','2yr_p_l','','2008-07-25 01:06:02','2008-07-25 01:06:02',0),(145,10,60,'simple','amdphenom','33','2008-07-25 01:07:37','2008-08-08 15:10:32',0),(146,10,59,'virtual','3yr_p_l','','2008-07-25 01:07:50','2008-07-25 01:07:50',0),(147,10,61,'simple','226bw','30','2008-07-25 01:10:17','2008-08-08 15:33:30',0),(148,10,60,'simple','amda64','33','2008-07-25 01:10:21','2008-08-08 15:11:01',0),(149,10,62,'simple','1tb7200','29','2008-07-25 01:12:44','2008-07-25 02:10:08',0),(150,10,62,'simple','500gb7200','29','2008-07-25 01:12:44','2008-07-25 02:09:26',0),(151,10,60,'simple','intelc2d','33','2008-07-25 01:13:21','2008-08-08 15:33:10',0),(152,10,61,'simple','W2452T-TF','30','2008-07-25 01:14:11','2008-08-08 15:33:00',0),(153,10,60,'simple','intelcore2extreme','33','2008-07-25 01:15:29','2008-08-08 15:32:36',0),(154,10,62,'simple','500gb5400','29','2008-07-25 01:16:03','2008-07-25 02:08:37',0),(155,10,62,'simple','250gb5400','29','2008-07-25 01:16:03','2008-07-25 02:07:40',0),(156,10,61,'simple','W1952TQ-TF','30','2008-07-25 01:16:51','2008-08-08 15:33:26',0),(157,10,61,'simple','M9179LL','30','2008-07-25 01:19:30','2008-08-08 15:32:12',0),(158,10,39,'bundle','VGN-TXN27N/BW','28','2008-07-25 01:21:23','2008-07-25 02:05:56',1),(159,10,9,'simple','microsoftnatural','34','2008-07-25 01:22:14','2008-08-08 15:31:54',0),(160,10,9,'simple','logitechcord','34','2008-07-25 01:24:15','2008-08-08 15:31:33',0),(161,10,9,'simple','logidinovo','34','2008-07-25 01:25:09','2008-08-08 15:31:22',0),(162,10,9,'simple','micronmouse5000','34','2008-07-25 01:25:11','2008-08-08 15:31:01',0),(163,10,9,'bundle','computer','15,27','2008-07-25 01:34:24','2008-07-29 01:33:10',1),(164,10,9,'bundle','computer_fixed','27','2008-07-25 01:36:33','2008-07-31 09:30:37',1),(165,10,39,'bundle','mycomputer','27','2008-07-25 01:40:27','2008-07-31 16:19:40',1),(166,10,38,'simple','HTC Touch Diamond','8','2008-07-25 02:22:13','2008-07-25 02:22:44',0);
/*!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`;
CREATE TABLE `catalog_product_entity_datetime` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_STORE` (`store_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_PRODUCT_ENTITY` (`entity_id`),
  KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
--
-- 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 (1,10,568,0,165,'2008-07-30 00:00:00');
/*!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`;
CREATE TABLE `catalog_product_entity_decimal` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` decimal(12,4) NOT NULL default '0.0000',
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE` (`store_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_PRODUCT_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE` (`attribute_id`),
  KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=411 DEFAULT CHARSET=utf8;
--
-- 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 (1,10,101,0,16,'3.2000'),(2,10,99,0,16,'149.9900'),(3,10,100,0,16,'20.0000'),(4,10,101,0,17,'15.2000'),(5,10,99,0,17,'349.9900'),(6,10,100,0,17,'29.9900'),(7,10,101,0,18,'13.6000'),(8,10,99,0,18,'399.9900'),(9,10,100,0,18,'29.9900'),(10,10,101,0,20,'1.0000'),(11,10,99,0,20,'150.0000'),(12,10,100,0,20,'29.9900'),(13,10,101,0,25,'10.6000'),(14,10,99,0,25,'2299.9900'),(15,10,100,0,25,'1299.9900'),(16,10,101,0,26,'11.4000'),(17,10,99,0,26,'1799.9900'),(18,10,100,0,26,'999.9900'),(19,10,101,0,27,'2.8000'),(20,10,99,0,27,'2699.9900'),(21,10,100,0,27,'899.9900'),(22,10,101,0,28,'10.0000'),(23,10,99,0,28,'1599.9900'),(24,10,100,0,28,'899.9900'),(25,10,101,0,29,'1.0000'),(26,10,99,0,29,'15.9900'),(27,10,100,0,29,'1.0000'),(28,10,101,0,30,'3.0000'),(29,10,99,0,30,'134.9900'),(30,10,100,0,30,'29.9900'),(31,10,101,0,31,'2.0000'),(32,10,99,0,31,'69.9900'),(33,10,100,0,31,'29.9900'),(34,10,101,0,32,'2.0000'),(35,10,99,0,32,'89.9900'),(36,10,100,0,32,'29.9900'),(37,10,101,0,33,'4.0000'),(38,10,99,0,33,'159.9900'),(39,10,100,0,33,'29.9900'),(40,10,101,0,34,'2.0000'),(41,10,99,0,34,'160.9900'),(42,10,100,0,34,'29.9900'),(43,10,101,0,35,'0.5000'),(44,10,99,0,35,'15.0000'),(45,10,100,0,35,'2.0000'),(46,10,101,0,36,'0.5000'),(47,10,99,0,36,'22.0000'),(48,10,100,0,36,'2.0000'),(49,10,101,0,37,'0.4400'),(50,10,99,0,37,'15.0000'),(51,10,100,0,37,'2.0000'),(52,10,101,0,38,'0.4400'),(53,10,99,0,38,'13.5000'),(54,10,100,0,38,'2.0000'),(55,10,101,0,19,'30.0000'),(56,10,99,0,19,'199.9900'),(57,10,100,0,19,'29.9900'),(58,10,101,0,39,'1.7500'),(59,10,99,0,39,'30.0000'),(60,10,100,0,39,'5.0000'),(61,10,101,0,41,'128.9700'),(62,10,99,0,41,'399.9900'),(63,10,100,0,41,'100.0000'),(64,10,503,0,41,'399.9900'),(65,10,101,0,42,'150.0000'),(66,10,99,0,42,'2299.0000'),(67,10,100,0,42,'800.0000'),(68,10,503,0,42,'2299.0000'),(69,10,503,0,28,'1599.9900'),(70,10,503,0,27,'2699.9900'),(71,10,503,0,26,'1799.9900'),(72,10,503,0,25,'2299.9900'),(73,10,101,0,44,'4.0000'),(74,10,99,0,44,'550.0000'),(75,10,100,0,44,'200.0000'),(76,10,503,0,44,'449.0000'),(77,10,101,0,45,'1.0000'),(78,10,99,0,45,'37.4900'),(79,10,100,0,45,'20.0000'),(80,10,100,0,46,'29.9900'),(81,10,503,0,46,'161.9400'),(82,10,101,0,47,'3.0000'),(83,10,101,0,48,'2.0000'),(84,10,99,0,48,'199.9900'),(85,10,100,0,48,'29.9900'),(86,10,100,0,49,'10.0000'),(87,10,503,0,49,'41.9500'),(88,10,101,0,51,'20.0000'),(89,10,99,0,51,'299.9900'),(90,10,100,0,51,'50.0000'),(91,10,503,0,51,'299.9900'),(92,10,101,0,52,'50.0000'),(93,10,99,0,52,'129.9900'),(94,10,100,0,52,'50.0000'),(95,10,100,0,53,'200.0000'),(96,10,503,0,53,'599.9900'),(97,10,101,0,54,'500.0000'),(98,10,99,0,54,'699.9900'),(99,10,100,0,54,'300.0000'),(100,10,503,0,54,'699.9900'),(101,10,503,0,19,'199.9900'),(102,10,503,0,17,'349.9900'),(103,10,503,0,29,'15.9900'),(104,10,503,0,35,'15.0000'),(105,10,503,0,30,'134.9900'),(106,10,503,0,36,'22.0000'),(107,10,101,0,74,'2.0000'),(108,10,99,0,74,'41.9500'),(109,10,100,0,74,'10.0000'),(110,10,503,0,74,'41.9500'),(111,10,101,0,75,'2.0000'),(112,10,99,0,75,'41.9500'),(113,10,100,0,75,'10.0000'),(114,10,503,0,75,'41.9500'),(115,10,101,0,79,'2.0000'),(116,10,99,0,79,'41.9500'),(117,10,100,0,79,'10.0000'),(118,10,503,0,79,'41.9500'),(119,10,101,0,80,'2.0000'),(120,10,99,0,80,'41.9500'),(121,10,100,0,80,'10.0000'),(122,10,100,0,81,'10.0000'),(123,10,503,0,81,'41.9500'),(124,10,101,0,82,'2.0000'),(125,10,101,0,83,'1.0000'),(126,10,99,0,83,'15.9900'),(127,10,100,0,83,'2.0000'),(128,10,100,0,84,'1.0000'),(129,10,503,0,84,'15.9900'),(130,10,101,0,85,'1.0000'),(131,10,101,0,86,'1.0000'),(132,10,99,0,86,'15.9900'),(133,10,100,0,86,'1.0000'),(134,10,100,0,87,'1.0000'),(135,10,503,0,87,'15.9900'),(136,10,101,0,88,'1.0000'),(137,10,101,0,89,'1.0000'),(138,10,99,0,89,'15.9900'),(139,10,100,0,89,'1.0000'),(140,10,100,0,90,'1.0000'),(141,10,503,0,90,'15.9900'),(142,10,101,0,91,'1.0000'),(143,10,101,0,92,'1.0000'),(144,10,99,0,92,'15.9900'),(145,10,100,0,92,'1.0000'),(146,10,100,0,93,'29.9900'),(147,10,503,0,93,'134.9900'),(148,10,101,0,94,'3.0000'),(149,10,101,0,95,'3.0000'),(150,10,99,0,95,'134.9900'),(151,10,100,0,95,'29.9900'),(152,10,100,0,96,'29.9900'),(153,10,503,0,96,'134.9900'),(154,10,101,0,97,'3.0000'),(155,10,101,0,98,'2.0000'),(156,10,99,0,98,'160.9900'),(157,10,100,0,98,'29.9900'),(158,10,99,0,99,'160.9900'),(159,10,100,0,99,'29.9900'),(160,10,503,0,99,'160.9900'),(161,10,100,0,101,'29.9900'),(162,10,503,0,101,'160.9900'),(163,10,101,0,102,'2.0000'),(164,10,101,0,103,'2.0000'),(165,10,99,0,103,'69.9900'),(166,10,100,0,103,'29.9900'),(167,10,503,0,103,'69.9900'),(168,10,503,0,31,'69.9900'),(169,10,101,0,104,'2.0000'),(170,10,99,0,104,'69.9900'),(171,10,100,0,104,'29.9900'),(172,10,503,0,104,'69.9900'),(173,10,101,0,105,'2.0000'),(174,10,99,0,105,'69.9900'),(175,10,100,0,105,'29.9900'),(176,10,503,0,105,'69.9900'),(177,10,101,0,106,'2.0000'),(178,10,99,0,106,'69.9900'),(179,10,100,0,106,'29.9900'),(180,10,503,0,106,'69.9900'),(181,10,101,0,107,'2.0000'),(182,10,99,0,107,'69.9900'),(183,10,100,0,107,'29.9900'),(184,10,503,0,107,'69.9900'),(185,10,101,0,108,'2.0000'),(186,10,99,0,108,'89.9900'),(187,10,100,0,108,'29.9900'),(188,10,503,0,108,'89.9900'),(189,10,503,0,32,'89.9900'),(190,10,101,0,109,'2.0000'),(191,10,99,0,109,'89.9900'),(192,10,100,0,109,'29.9900'),(193,10,503,0,109,'89.9900'),(194,10,101,0,110,'2.0000'),(195,10,99,0,110,'89.9900'),(196,10,100,0,110,'29.9900'),(197,10,503,0,110,'89.9900'),(198,10,101,0,111,'2.0000'),(199,10,99,0,111,'89.9900'),(200,10,100,0,112,'29.9900'),(201,10,503,0,112,'159.9900'),(202,10,101,0,113,'4.0000'),(203,10,99,0,113,'159.9900'),(204,10,100,0,114,'29.9900'),(205,10,503,0,114,'159.9900'),(206,10,101,0,115,'4.0000'),(207,10,99,0,115,'159.9900'),(208,10,100,0,115,'29.9900'),(209,10,503,0,115,'159.9900'),(210,10,503,0,33,'159.9900'),(211,10,101,0,117,'0.5000'),(212,10,99,0,117,'15.0000'),(213,10,100,0,117,'2.0000'),(214,10,503,0,117,'15.0000'),(215,10,101,0,118,'0.5000'),(216,10,99,0,118,'15.0000'),(217,10,100,0,118,'2.0000'),(218,10,503,0,118,'15.0000'),(219,10,101,0,119,'0.5000'),(220,10,99,0,120,'22.0000'),(221,10,100,0,120,'2.0000'),(222,10,503,0,120,'18.0000'),(223,10,101,0,121,'0.5000'),(224,10,99,0,121,'22.0000'),(225,10,100,0,121,'2.0000'),(226,10,503,0,121,'22.0000'),(227,10,101,0,122,'0.5000'),(228,10,99,0,122,'22.0000'),(229,10,100,0,123,'2.0000'),(230,10,503,0,123,'10.0000'),(231,10,503,0,37,'15.0000'),(232,10,101,0,124,'0.4400'),(233,10,99,0,124,'15.0000'),(234,10,100,0,124,'2.0000'),(235,10,503,0,124,'15.0000'),(236,10,101,0,125,'0.4400'),(237,10,99,0,126,'13.5000'),(238,10,100,0,126,'2.0000'),(239,10,503,0,126,'9.5000'),(240,10,503,0,38,'13.5000'),(241,10,101,0,127,'0.4400'),(242,10,99,0,127,'13.5000'),(243,10,100,0,127,'2.0000'),(244,10,503,0,128,'13.5000'),(245,10,101,0,129,'0.4400'),(246,10,99,0,129,'13.5000'),(247,10,100,0,129,'2.0000'),(248,10,503,0,129,'13.5000'),(249,10,101,0,130,'0.4400'),(250,10,99,0,130,'13.5000'),(251,10,100,0,131,'2.0000'),(252,10,503,0,131,'13.5000'),(253,10,503,0,20,'150.0000'),(254,10,99,0,132,'99.0000'),(255,10,503,0,132,'99.0000'),(256,10,99,0,134,'19.0000'),(257,10,503,0,134,'19.0000'),(258,10,101,0,135,'2.0000'),(259,10,99,0,135,'41.9500'),(260,10,100,0,135,'10.0000'),(261,10,503,0,135,'41.9500'),(262,10,101,0,137,'0.4400'),(263,10,99,0,137,'13.5000'),(264,10,100,0,137,'2.0000'),(265,10,101,0,139,'10.0000'),(266,10,99,0,139,'199.9900'),(267,10,101,0,140,'1.0000'),(268,10,99,0,140,'199.9900'),(269,10,101,0,141,'1.0000'),(270,10,99,0,141,'150.9900'),(271,10,99,0,142,'150.0000'),(272,10,101,0,143,'1.0000'),(273,10,99,0,143,'99.9900'),(274,10,99,0,144,'250.0000'),(275,10,101,0,145,'1.0000'),(276,10,101,0,148,'1.0000'),(277,10,99,0,148,'98.9900'),(278,10,101,0,149,'1.0000'),(279,10,99,0,151,'98.9900'),(280,10,101,0,152,'1.0000'),(281,10,99,0,152,'699.9900'),(282,10,101,0,155,'1.0000'),(283,10,99,0,155,'99.0000'),(284,10,101,0,156,'1.0000'),(285,10,99,0,159,'99.9900'),(286,10,101,0,160,'1.0000'),(287,10,99,0,160,'79.9900'),(288,10,101,0,161,'1.0000'),(289,10,101,0,162,'1.0000'),(290,10,99,0,162,'59.9900'),(291,10,101,0,164,'20.0000'),(292,10,99,0,164,'4999.9500'),(293,10,101,0,165,'10.0000'),(294,10,101,0,166,'0.3000'),(295,10,99,0,166,'750.0000'),(296,10,567,0,165,'75.0000'),(297,10,101,0,132,'42.0000'),(298,10,503,0,45,'37.4900'),(299,10,101,0,46,'2.0000'),(300,10,99,0,46,'161.9400'),(301,10,99,0,47,'329.9900'),(302,10,100,0,47,'29.9900'),(303,10,503,0,47,'329.9900'),(304,10,503,0,48,'199.9900'),(305,10,101,0,49,'2.0000'),(306,10,99,0,49,'41.9500'),(307,10,503,0,52,'129.9900'),(308,10,101,0,53,'200.0000'),(309,10,99,0,53,'599.9900'),(310,10,503,0,80,'41.9500'),(311,10,101,0,81,'2.0000'),(312,10,99,0,81,'41.9500'),(313,10,99,0,82,'41.9500'),(314,10,100,0,82,'10.0000'),(315,10,503,0,82,'41.9500'),(316,10,503,0,83,'13.9900'),(317,10,101,0,84,'1.0000'),(318,10,99,0,84,'15.9900'),(319,10,99,0,85,'15.9900'),(320,10,100,0,85,'1.0000'),(321,10,503,0,85,'15.9900'),(322,10,503,0,86,'15.9900'),(323,10,101,0,87,'1.0000'),(324,10,99,0,87,'15.9900'),(325,10,99,0,88,'15.9900'),(326,10,100,0,88,'1.0000'),(327,10,503,0,88,'15.9900'),(328,10,503,0,89,'15.9900'),(329,10,101,0,90,'1.0000'),(330,10,99,0,90,'15.9900'),(331,10,99,0,91,'15.9900'),(332,10,100,0,91,'1.0000'),(333,10,503,0,91,'15.9900'),(334,10,503,0,92,'15.9900'),(335,10,101,0,93,'3.0000'),(336,10,99,0,93,'134.9900'),(337,10,99,0,94,'134.9900'),(338,10,100,0,94,'29.9900'),(339,10,503,0,94,'134.9900'),(340,10,503,0,95,'134.9900'),(341,10,101,0,96,'3.0000'),(342,10,99,0,96,'134.9900'),(343,10,99,0,97,'134.9900'),(344,10,100,0,97,'29.9900'),(345,10,503,0,97,'134.9900'),(346,10,503,0,98,'160.9900'),(347,10,503,0,34,'160.9900'),(348,10,101,0,99,'2.0000'),(349,10,101,0,100,'2.0000'),(350,10,99,0,100,'160.9900'),(351,10,100,0,100,'29.9900'),(352,10,503,0,100,'160.9900'),(353,10,101,0,101,'2.0000'),(354,10,99,0,101,'160.9900'),(355,10,99,0,102,'160.9900'),(356,10,100,0,102,'29.9900'),(357,10,503,0,102,'160.9900'),(358,10,100,0,111,'29.9900'),(359,10,503,0,111,'89.9900'),(360,10,101,0,112,'4.0000'),(361,10,99,0,112,'159.9900'),(362,10,100,0,113,'29.9900'),(363,10,503,0,113,'159.9900'),(364,10,101,0,114,'4.0000'),(365,10,99,0,114,'159.9900'),(366,10,99,0,119,'15.0000'),(367,10,100,0,119,'2.0000'),(368,10,503,0,119,'10.0000'),(369,10,101,0,120,'0.5000'),(370,10,100,0,122,'2.0000'),(371,10,503,0,122,'22.0000'),(372,10,101,0,123,'0.4400'),(373,10,99,0,123,'100.0000'),(374,10,99,0,125,'15.0000'),(375,10,100,0,125,'2.0000'),(376,10,503,0,125,'15.0000'),(377,10,101,0,126,'0.4400'),(378,10,503,0,127,'13.5000'),(379,10,101,0,128,'0.4400'),(380,10,99,0,128,'13.5000'),(381,10,100,0,128,'2.0000'),(382,10,100,0,130,'2.0000'),(383,10,503,0,130,'13.5000'),(384,10,101,0,131,'0.4400'),(385,10,99,0,131,'13.5000'),(386,10,503,0,16,'149.9900'),(387,10,503,0,18,'399.9900'),(388,10,99,0,133,'34.0000'),(389,10,503,0,133,'34.0000'),(390,10,503,0,137,'13.5000'),(391,10,101,0,134,'5.0000'),(392,10,101,0,138,'10.0000'),(393,10,99,0,138,'150.0000'),(394,10,99,0,145,'335.9900'),(395,10,99,0,146,'325.0000'),(396,10,101,0,147,'1.0000'),(397,10,99,0,147,'399.9900'),(398,10,99,0,149,'399.0000'),(399,10,101,0,150,'1.0000'),(400,10,99,0,150,'299.0000'),(401,10,101,0,151,'1.0000'),(402,10,101,0,153,'1.0000'),(403,10,99,0,153,'2049.9900'),(404,10,101,0,154,'1.0000'),(405,10,99,0,154,'299.0000'),(406,10,99,0,156,'399.9900'),(407,10,101,0,157,'1.0000'),(408,10,99,0,157,'699.9900'),(409,10,101,0,159,'1.0000'),(410,10,99,0,161,'239.9900');
/*!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`;
CREATE TABLE `catalog_product_entity_gallery` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` smallint(5) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `position` int(11) NOT NULL default '0',
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`value_id`),
  KEY `IDX_BASE` USING BTREE (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`),
  KEY `FK_ATTRIBUTE_GALLERY_ENTITY` (`entity_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_GALLERY_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_CATEGORY_ENTITY_GALLERY_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- 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`;
CREATE TABLE `catalog_product_entity_int` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` mediumint(8) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` int(11) NOT NULL default '0',
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_INT_STORE` (`store_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_INT_PRODUCT_ENTITY` (`entity_id`),
  KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=687 DEFAULT CHARSET=utf8;
--
-- 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 (1,10,273,0,16,1),(2,10,274,0,16,2),(3,10,272,0,16,24),(4,10,272,0,17,23),(5,10,273,0,17,1),(6,10,274,0,17,2),(7,10,272,0,18,24),(8,10,273,0,18,1),(9,10,274,0,18,2),(10,10,272,0,20,23),(11,10,273,0,20,1),(12,10,274,0,20,2),(13,10,272,0,25,23),(14,10,273,0,25,1),(15,10,274,0,25,2),(16,10,272,0,26,24),(17,10,273,0,26,1),(18,10,274,0,26,2),(19,10,272,0,27,24),(20,10,273,0,27,1),(21,10,274,0,27,2),(22,10,272,0,28,24),(23,10,273,0,28,1),(24,10,274,0,28,2),(25,10,501,0,29,35),(26,10,272,0,29,25),(27,10,502,0,29,46),(28,10,273,0,29,1),(29,10,274,0,29,2),(30,10,501,0,30,36),(31,10,272,0,30,61),(32,10,502,0,30,41),(33,10,107,0,30,49),(34,10,273,0,30,1),(35,10,274,0,30,2),(36,10,501,0,31,35),(37,10,272,0,31,26),(38,10,502,0,31,45),(39,10,107,0,31,51),(40,10,273,0,31,1),(41,10,274,0,31,2),(42,10,501,0,32,35),(43,10,272,0,32,26),(44,10,502,0,32,46),(45,10,107,0,32,51),(46,10,273,0,32,1),(47,10,274,0,32,2),(48,10,501,0,33,35),(49,10,502,0,33,46),(50,10,107,0,33,47),(51,10,273,0,33,1),(52,10,274,0,33,2),(53,10,501,0,34,36),(54,10,272,0,34,24),(55,10,502,0,34,41),(56,10,107,0,34,52),(57,10,273,0,34,1),(58,10,274,0,34,2),(59,10,272,0,35,22),(60,10,273,0,35,1),(61,10,274,0,35,2),(62,10,272,0,36,60),(63,10,273,0,36,1),(64,10,274,0,36,2),(65,10,272,0,37,60),(66,10,273,0,37,1),(67,10,274,0,37,2),(68,10,272,0,38,26),(69,10,273,0,38,1),(70,10,274,0,38,2),(71,10,272,0,19,23),(72,10,273,0,19,1),(73,10,274,0,19,2),(74,10,272,0,39,22),(75,10,273,0,39,1),(76,10,274,0,39,2),(77,10,272,0,41,59),(78,10,508,0,41,71),(79,10,273,0,41,1),(80,10,274,0,41,2),(81,10,272,0,42,59),(82,10,508,0,42,71),(83,10,273,0,42,1),(84,10,274,0,42,2),(85,10,272,0,44,24),(86,10,513,0,44,90),(87,10,273,0,44,1),(88,10,274,0,44,2),(89,10,272,0,45,23),(90,10,513,0,45,93),(91,10,273,0,45,1),(92,10,274,0,45,2),(93,10,272,0,46,23),(94,10,513,0,46,91),(95,10,273,0,46,1),(96,10,274,0,46,2),(97,10,272,0,47,23),(98,10,513,0,47,90),(99,10,273,0,47,1),(100,10,274,0,47,2),(101,10,272,0,48,23),(102,10,513,0,48,93),(103,10,273,0,48,1),(104,10,274,0,48,2),(105,10,501,0,49,35),(106,10,272,0,49,59),(107,10,502,0,49,40),(108,10,273,0,49,1),(109,10,274,0,49,2),(110,10,107,0,49,97),(111,10,272,0,51,26),(112,10,508,0,51,72),(113,10,273,0,51,1),(114,10,274,0,51,2),(115,10,272,0,52,26),(116,10,508,0,52,72),(117,10,273,0,52,1),(118,10,274,0,52,2),(119,10,272,0,53,26),(120,10,508,0,53,72),(121,10,273,0,53,1),(122,10,274,0,53,2),(123,10,272,0,54,26),(124,10,508,0,54,72),(125,10,273,0,54,1),(126,10,274,0,54,2),(127,10,526,0,16,4),(128,10,526,0,17,4),(129,10,526,0,18,4),(130,10,526,0,20,4),(131,10,526,0,25,4),(132,10,526,0,26,4),(133,10,526,0,27,4),(134,10,526,0,28,4),(135,10,526,0,29,1),(136,10,526,0,30,1),(137,10,526,0,31,1),(138,10,526,0,32,1),(139,10,526,0,33,1),(140,10,526,0,34,1),(141,10,526,0,35,1),(142,10,526,0,36,1),(143,10,526,0,37,1),(144,10,526,0,38,1),(145,10,526,0,41,4),(146,10,526,0,44,4),(147,10,526,0,45,4),(148,10,526,0,46,4),(149,10,526,0,47,4),(150,10,526,0,49,1),(151,10,526,0,53,4),(152,10,526,0,54,4),(153,10,510,0,28,74),(154,10,510,0,27,76),(155,10,510,0,25,77),(156,10,272,0,74,59),(157,10,502,0,74,46),(158,10,273,0,74,1),(159,10,274,0,74,2),(160,10,107,0,74,97),(161,10,526,0,74,1),(162,10,501,0,75,35),(163,10,272,0,75,59),(164,10,502,0,75,45),(165,10,273,0,75,1),(166,10,274,0,75,2),(167,10,107,0,75,97),(168,10,501,0,79,35),(169,10,273,0,79,1),(170,10,274,0,79,2),(171,10,107,0,79,97),(172,10,526,0,79,1),(173,10,501,0,80,35),(174,10,272,0,80,59),(175,10,502,0,80,43),(176,10,273,0,80,1),(177,10,274,0,80,2),(178,10,107,0,80,97),(179,10,526,0,80,1),(180,10,501,0,81,35),(181,10,272,0,81,59),(182,10,502,0,81,42),(183,10,273,0,81,1),(184,10,274,0,81,2),(185,10,107,0,81,97),(186,10,526,0,81,1),(187,10,501,0,82,35),(188,10,272,0,82,59),(189,10,502,0,82,41),(190,10,273,0,82,1),(191,10,274,0,82,2),(192,10,107,0,82,97),(193,10,526,0,82,1),(194,10,273,0,83,1),(195,10,274,0,83,2),(196,10,526,0,83,4),(197,10,107,0,83,97),(198,10,272,0,83,25),(199,10,501,0,84,35),(200,10,272,0,84,25),(201,10,502,0,84,45),(202,10,273,0,84,1),(203,10,274,0,84,2),(204,10,526,0,84,1),(205,10,107,0,84,97),(206,10,272,0,85,25),(207,10,274,0,85,2),(208,10,526,0,85,1),(209,10,107,0,85,97),(210,10,501,0,86,35),(211,10,502,0,86,43),(212,10,526,0,86,1),(213,10,107,0,86,97),(214,10,501,0,87,35),(215,10,272,0,87,25),(216,10,273,0,87,1),(217,10,107,0,87,97),(218,10,501,0,88,36),(219,10,272,0,88,25),(220,10,502,0,88,41),(221,10,274,0,88,2),(222,10,501,0,89,36),(223,10,272,0,89,25),(224,10,502,0,89,40),(225,10,273,0,89,1),(226,10,274,0,89,2),(227,10,526,0,89,1),(228,10,502,0,90,39),(229,10,526,0,90,1),(230,10,107,0,90,97),(231,10,501,0,91,36),(232,10,272,0,91,25),(233,10,502,0,91,38),(234,10,273,0,91,1),(235,10,274,0,91,2),(236,10,502,0,92,37),(237,10,526,0,92,1),(238,10,107,0,92,97),(239,10,273,0,93,1),(240,10,274,0,93,2),(241,10,526,0,93,4),(242,10,107,0,93,53),(243,10,272,0,93,61),(244,10,107,0,94,49),(245,10,526,0,94,1),(246,10,501,0,95,36),(247,10,272,0,95,61),(248,10,502,0,95,39),(249,10,107,0,95,49),(250,10,273,0,95,1),(251,10,274,0,95,2),(252,10,107,0,96,49),(253,10,526,0,96,1),(254,10,501,0,97,36),(255,10,272,0,97,61),(256,10,502,0,97,37),(257,10,107,0,97,49),(258,10,273,0,97,1),(259,10,274,0,98,2),(260,10,272,0,98,24),(261,10,501,0,98,36),(262,10,501,0,99,36),(263,10,272,0,99,24),(264,10,502,0,99,40),(265,10,107,0,99,52),(266,10,273,0,99,1),(267,10,502,0,100,39),(268,10,274,0,100,2),(269,10,526,0,100,1),(270,10,501,0,101,36),(271,10,272,0,101,24),(272,10,502,0,101,38),(273,10,107,0,101,52),(274,10,274,0,101,2),(275,10,526,0,101,1),(276,10,502,0,102,37),(277,10,107,0,102,52),(278,10,273,0,102,1),(279,10,274,0,102,2),(280,10,526,0,102,1),(281,10,274,0,103,2),(282,10,526,0,103,4),(283,10,501,0,103,35),(284,10,501,0,104,35),(285,10,272,0,104,26),(286,10,502,0,104,44),(287,10,107,0,104,51),(288,10,274,0,104,2),(289,10,526,0,104,1),(290,10,502,0,105,43),(291,10,107,0,105,51),(292,10,273,0,105,1),(293,10,274,0,105,2),(294,10,526,0,105,1),(295,10,272,0,106,26),(296,10,502,0,106,42),(297,10,526,0,106,1),(298,10,502,0,107,41),(299,10,107,0,107,51),(300,10,273,0,107,1),(301,10,274,0,107,2),(302,10,526,0,107,1),(303,10,274,0,108,2),(304,10,526,0,108,4),(305,10,501,0,108,35),(306,10,501,0,109,35),(307,10,272,0,109,26),(308,10,502,0,109,45),(309,10,107,0,109,51),(310,10,273,0,109,1),(311,10,274,0,109,2),(312,10,526,0,109,1),(313,10,501,0,110,35),(314,10,272,0,110,26),(315,10,502,0,110,44),(316,10,107,0,110,51),(317,10,273,0,110,1),(318,10,274,0,110,2),(319,10,526,0,110,1),(320,10,501,0,111,35),(321,10,107,0,111,51),(322,10,526,0,111,1),(323,10,273,0,112,1),(324,10,274,0,112,2),(325,10,526,0,112,4),(326,10,107,0,112,47),(327,10,272,0,33,59),(328,10,107,0,113,47),(329,10,273,0,113,1),(330,10,274,0,113,2),(331,10,526,0,113,1),(332,10,272,0,113,59),(333,10,501,0,114,35),(334,10,502,0,114,44),(335,10,107,0,114,47),(336,10,273,0,114,1),(337,10,274,0,114,2),(338,10,526,0,114,1),(339,10,272,0,114,59),(340,10,501,0,115,35),(341,10,502,0,115,43),(342,10,107,0,115,47),(343,10,273,0,115,1),(344,10,274,0,115,2),(345,10,526,0,115,1),(346,10,272,0,115,59),(347,10,525,0,35,100),(348,10,272,0,117,22),(349,10,273,0,117,1),(350,10,274,0,117,2),(351,10,526,0,117,1),(352,10,525,0,117,99),(353,10,272,0,118,22),(354,10,273,0,118,1),(355,10,274,0,118,2),(356,10,526,0,118,1),(357,10,525,0,118,98),(358,10,273,0,119,1),(359,10,274,0,119,2),(360,10,526,0,119,4),(361,10,501,0,119,36),(362,10,272,0,119,22),(363,10,501,0,36,35),(364,10,525,0,36,100),(365,10,273,0,120,1),(366,10,274,0,120,2),(367,10,526,0,120,4),(368,10,501,0,120,35),(369,10,272,0,120,60),(370,10,272,0,121,60),(371,10,273,0,121,1),(372,10,274,0,121,2),(373,10,525,0,121,99),(374,10,274,0,122,2),(375,10,526,0,122,1),(376,10,501,0,122,35),(377,10,525,0,122,98),(378,10,273,0,123,1),(379,10,274,0,123,2),(380,10,526,0,123,4),(381,10,501,0,123,36),(382,10,272,0,123,60),(383,10,501,0,37,36),(384,10,273,0,124,1),(385,10,501,0,124,36),(386,10,525,0,124,99),(387,10,272,0,125,60),(388,10,273,0,125,1),(389,10,274,0,125,2),(390,10,526,0,125,1),(391,10,501,0,125,36),(392,10,525,0,125,98),(393,10,273,0,126,1),(394,10,274,0,126,2),(395,10,501,0,38,36),(396,10,273,0,127,1),(397,10,274,0,127,2),(398,10,526,0,127,1),(399,10,501,0,127,36),(400,10,525,0,127,100),(401,10,272,0,128,26),(402,10,273,0,128,1),(403,10,274,0,128,2),(404,10,526,0,128,1),(405,10,501,0,128,36),(406,10,273,0,129,1),(407,10,501,0,129,36),(408,10,525,0,129,99),(409,10,272,0,130,26),(410,10,273,0,130,1),(411,10,274,0,130,2),(412,10,525,0,130,98),(413,10,274,0,131,2),(414,10,526,0,131,1),(415,10,501,0,131,36),(416,10,525,0,131,98),(417,10,501,0,117,36),(418,10,501,0,118,36),(419,10,273,0,133,1),(420,10,274,0,133,2),(421,10,526,0,133,4),(422,10,273,0,132,1),(423,10,274,0,132,2),(424,10,526,0,134,4),(425,10,526,0,135,4),(426,10,272,0,135,59),(427,10,501,0,135,35),(428,10,272,0,137,24),(429,10,273,0,137,2),(430,10,274,0,137,2),(431,10,526,0,137,1),(432,10,501,0,137,36),(433,10,525,0,137,99),(434,10,501,0,39,36),(435,10,525,0,39,99),(436,10,526,0,138,4),(437,10,274,0,139,1),(438,10,526,0,139,4),(439,10,272,0,139,23),(440,10,273,0,140,1),(441,10,274,0,140,1),(442,10,273,0,141,1),(443,10,102,0,141,111),(444,10,273,0,142,1),(445,10,274,0,142,0),(446,10,526,0,142,1),(447,10,273,0,143,1),(448,10,102,0,143,111),(449,10,526,0,144,1),(450,10,273,0,145,1),(451,10,274,0,145,1),(452,10,526,0,145,4),(453,10,526,0,146,1),(454,10,273,0,147,1),(455,10,274,0,147,0),(456,10,526,0,147,4),(457,10,102,0,147,3),(458,10,875,0,147,110),(459,10,273,0,148,1),(460,10,274,0,148,1),(461,10,526,0,148,4),(462,10,102,0,148,117),(463,10,877,0,148,115),(464,10,273,0,149,1),(465,10,274,0,149,1),(466,10,526,0,149,4),(467,10,102,0,149,118),(468,10,273,0,150,1),(469,10,274,0,150,1),(470,10,526,0,150,4),(471,10,102,0,150,118),(472,10,273,0,151,1),(473,10,274,0,151,1),(474,10,526,0,151,4),(475,10,102,0,151,116),(476,10,877,0,151,112),(477,10,273,0,152,1),(478,10,274,0,152,1),(479,10,526,0,152,4),(480,10,102,0,152,1),(481,10,875,0,152,106),(482,10,273,0,153,1),(483,10,274,0,153,1),(484,10,526,0,153,4),(485,10,102,0,153,116),(486,10,877,0,153,114),(487,10,273,0,154,1),(488,10,274,0,154,1),(489,10,526,0,154,4),(490,10,102,0,154,119),(491,10,273,0,155,1),(492,10,274,0,155,1),(493,10,526,0,155,4),(494,10,102,0,155,119),(495,10,273,0,156,1),(496,10,274,0,156,0),(497,10,526,0,156,4),(498,10,102,0,156,1),(499,10,875,0,156,106),(500,10,273,0,157,1),(501,10,274,0,157,0),(502,10,526,0,157,4),(503,10,102,0,157,29),(504,10,875,0,157,107),(505,10,860,0,158,1),(506,10,861,0,158,0),(507,10,273,0,158,1),(508,10,274,0,158,2),(509,10,526,0,158,4),(510,10,859,0,158,0),(511,10,862,0,158,1),(512,10,863,0,158,0),(513,10,273,0,159,1),(514,10,274,0,159,0),(515,10,526,0,159,4),(516,10,102,0,159,120),(517,10,273,0,160,1),(518,10,274,0,160,1),(519,10,526,0,160,4),(520,10,102,0,160,121),(521,10,272,0,160,59),(522,10,273,0,161,1),(523,10,274,0,161,0),(524,10,526,0,161,4),(525,10,102,0,161,121),(526,10,273,0,162,1),(527,10,274,0,162,1),(528,10,526,0,162,4),(529,10,102,0,162,120),(530,10,272,0,162,24),(531,10,860,0,163,0),(532,10,861,0,163,0),(533,10,273,0,163,1),(534,10,274,0,163,1),(535,10,526,0,163,4),(536,10,859,0,163,0),(537,10,862,0,163,0),(538,10,863,0,163,0),(539,10,860,0,164,1),(540,10,861,0,164,1),(541,10,273,0,164,1),(542,10,274,0,164,1),(543,10,526,0,164,4),(544,10,859,0,164,1),(545,10,862,0,164,0),(546,10,863,0,164,1),(547,10,860,0,165,1),(548,10,861,0,165,1),(549,10,273,0,165,1),(550,10,274,0,165,1),(551,10,526,0,165,4),(552,10,859,0,165,0),(553,10,862,0,165,0),(554,10,863,0,165,0),(555,10,273,0,166,1),(556,10,274,0,166,2),(557,10,526,0,166,4),(558,10,272,0,166,24),(559,10,102,0,166,122),(560,10,501,0,35,36),(561,10,526,0,19,4),(562,10,526,0,39,4),(563,10,526,0,42,4),(564,10,526,0,48,4),(565,10,526,0,51,4),(566,10,526,0,52,4),(567,10,510,0,26,79),(568,10,107,0,29,97),(569,10,501,0,74,35),(570,10,526,0,75,1),(571,10,272,0,79,59),(572,10,502,0,79,44),(573,10,501,0,85,35),(574,10,502,0,85,44),(575,10,273,0,85,1),(576,10,272,0,86,25),(577,10,273,0,86,1),(578,10,274,0,86,2),(579,10,502,0,87,42),(580,10,274,0,87,2),(581,10,526,0,87,1),(582,10,273,0,88,1),(583,10,526,0,88,1),(584,10,107,0,88,97),(585,10,107,0,89,97),(586,10,501,0,90,36),(587,10,272,0,90,25),(588,10,273,0,90,1),(589,10,274,0,90,2),(590,10,526,0,91,1),(591,10,107,0,91,97),(592,10,501,0,92,36),(593,10,272,0,92,25),(594,10,273,0,92,1),(595,10,274,0,92,2),(596,10,501,0,93,36),(597,10,501,0,94,36),(598,10,272,0,94,61),(599,10,502,0,94,40),(600,10,273,0,94,1),(601,10,274,0,94,2),(602,10,526,0,95,1),(603,10,501,0,96,36),(604,10,272,0,96,61),(605,10,502,0,96,38),(606,10,273,0,96,1),(607,10,274,0,96,2),(608,10,274,0,97,2),(609,10,526,0,97,1),(610,10,273,0,98,1),(611,10,526,0,98,4),(612,10,107,0,98,52),(613,10,274,0,99,2),(614,10,526,0,99,1),(615,10,501,0,100,36),(616,10,272,0,100,24),(617,10,107,0,100,52),(618,10,273,0,100,1),(619,10,273,0,101,1),(620,10,501,0,102,36),(621,10,272,0,102,24),(622,10,273,0,103,1),(623,10,107,0,103,52),(624,10,272,0,103,26),(625,10,273,0,104,1),(626,10,501,0,105,35),(627,10,272,0,105,26),(628,10,501,0,106,35),(629,10,107,0,106,51),(630,10,273,0,106,1),(631,10,274,0,106,2),(632,10,501,0,107,35),(633,10,272,0,107,26),(634,10,273,0,108,1),(635,10,107,0,108,51),(636,10,272,0,108,26),(637,10,272,0,111,26),(638,10,502,0,111,43),(639,10,273,0,111,1),(640,10,274,0,111,2),(641,10,272,0,112,59),(642,10,501,0,112,35),(643,10,501,0,113,35),(644,10,502,0,113,45),(645,10,526,0,121,1),(646,10,501,0,121,35),(647,10,272,0,122,60),(648,10,273,0,122,1),(649,10,525,0,37,100),(650,10,272,0,124,60),(651,10,274,0,124,2),(652,10,526,0,124,1),(653,10,526,0,126,4),(654,10,501,0,126,36),(655,10,525,0,38,100),(656,10,272,0,127,22),(657,10,525,0,128,99),(658,10,272,0,129,22),(659,10,274,0,129,2),(660,10,526,0,129,1),(661,10,526,0,130,1),(662,10,501,0,130,36),(663,10,272,0,131,22),(664,10,273,0,131,1),(665,10,526,0,132,4),(666,10,273,0,134,1),(667,10,274,0,134,2),(668,10,273,0,135,1),(669,10,274,0,135,2),(670,10,107,0,135,97),(671,10,273,0,138,1),(672,10,274,0,138,1),(673,10,272,0,138,24),(674,10,273,0,139,1),(675,10,526,0,140,4),(676,10,102,0,140,111),(677,10,274,0,141,1),(678,10,526,0,141,4),(679,10,274,0,143,1),(680,10,526,0,143,4),(681,10,273,0,144,1),(682,10,274,0,144,0),(683,10,102,0,145,117),(684,10,877,0,145,113),(685,10,273,0,146,1),(686,10,274,0,146,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`;
CREATE TABLE `catalog_product_entity_media_gallery` (
  `value_id` int(11) unsigned NOT NULL auto_increment,
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` varchar(255) default NULL,
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ENTITY` (`entity_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=366 DEFAULT CHARSET=utf8 COMMENT='Catalog product media gallery';
--
-- 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 (1,703,17,'/b/l/blackberry-8100-pearl.jpg'),(2,703,17,'/b/l/blackberry-8100-pearl-1.jpg'),(3,703,18,'/s/o/sony-ericsson-w810i.jpg'),(4,703,18,'/s/o/sony-ericsson-w810i-1.jpg'),(5,703,29,'/c/n/cn-clogs-beach-garden-clog.jpg'),(6,703,29,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(7,703,30,'/a/s/asics-men-s-gel-kayano-xii.jpg'),(8,703,30,'/a/s/asics-men-s-gel-kayano-xii-1.jpg'),(9,703,31,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(10,703,31,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(11,703,32,'/n/i/nine-west-women-s-lucero-pump.jpg'),(12,703,32,'/n/i/nine-west-women-s-lucero-pump-1.jpg'),(13,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(14,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(15,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(16,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(17,703,35,'/c/o/coalesce-functioning-on-impatience-t-shirt.jpg'),(18,703,36,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(19,703,37,'/t/h/the-only-children-paisley-t-shirt.jpg'),(20,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(21,703,19,'/a/t/at-t-8525-pda.jpg'),(22,703,39,'/t/h/the-get-up-kids-band-camp-pullover-hoodie.jpg'),(24,703,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera.jpg'),(25,703,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera-1.jpg'),(26,703,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera.jpg'),(27,703,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera-1.jpg'),(28,703,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom.jpg'),(29,703,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom-1.jpg'),(30,703,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera.jpg'),(31,703,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera-1.jpg'),(32,703,44,'/c/a/canon-digital-rebel-xt-8mp-digital-slr-camera.jpg'),(33,703,49,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(34,703,49,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(35,703,74,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(36,703,74,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(37,703,75,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(38,703,75,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(47,703,83,'/c/n/cn-clogs-beach-garden-clog.jpg'),(84,703,103,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(102,703,112,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(112,703,119,'/c/o/coalesce-functioning-on-impatience-t-shirt.jpg'),(113,703,120,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(116,703,123,'/t/h/the-only-children-paisley-t-shirt.jpg'),(119,703,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(126,703,16,'/n/o/nokia-2610-phone.jpg'),(127,703,16,'/n/o/nokia-2610-phone-1.jpg'),(130,703,44,'/c/a/canon-digital-rebel-xt-8mp-digital-slr-camera-1.jpg'),(131,703,134,'/u/n/universal-camera-charger.jpg'),(133,703,119,'/c/o/coalesce-functioning-on-impatience-t-shirt-1.jpg'),(136,703,27,'/s/o/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.jpg'),(137,703,39,'/t/h/the-get-up-kids-band-camp-pullover-hoodie-1.jpg'),(139,703,41,'/a/k/akio-dresser.jpg'),(140,703,42,'/b/a/barcelona-bamboo-platform-bed.jpg'),(141,703,138,'/a/p/apevia-black-x-cruiser-case-atx-mid-tower-case-default.jpg'),(142,703,139,'/n/z/nzxt-lexa-silver-aluminum-atx-mid-tower-case-default.jpg'),(143,703,145,'/a/m/amd-phenom-x4-9850-black-ed-2-50ghz-retail.jpg'),(144,703,148,'/a/m/amd-a64-x2-3800-2-0ghz-oem.jpg'),(145,703,147,'/2/2/22-syncmaster-lcd-monitor.jpg'),(146,703,151,'/i/n/intel-c2d-e8400-3-0ghz-retail.jpg'),(147,703,152,'/2/4/24-widescreen-flat-panel-lcd-monitor.jpg'),(148,703,153,'/i/n/intel-core-2-extreme-qx9775-3-20ghz-retail.jpg'),(149,703,156,'/1/9/19-widescreen-flat-panel-lcd-monitor.jpg'),(150,703,157,'/3/0/30-flat-panel-tft-lcd-cinema-hd-monitor.jpg'),(151,703,159,'/m/i/microsoft-natural-ergonomic-keyboard-4000.jpg'),(152,703,161,'/l/o/logitech-dinovo-edge-keyboard.jpg'),(153,703,162,'/m/i/microsoft-wireless-optical-mouse-5000.jpg'),(154,703,160,'/l/o/logitech-cordless-optical-trackman.jpg'),(155,703,163,'/c/o/computer.jpg'),(156,703,164,'/g/a/gaming-computer.jpg'),(157,703,165,'/m/y/my-computer.jpg'),(158,703,158,'/s/o/sony-vaio-11-1-notebook-pc.jpg'),(159,703,155,'/s/e/seagate-250gb-hd-5400rpm.jpg'),(160,703,154,'/s/e/seagate-500gb-hd-5400rpm.jpg'),(161,703,150,'/w/e/western-digital-500gb-hd-7200rpm.jpg'),(162,703,149,'/w/e/western-digital-1tb-hd-7200rpm.jpg'),(163,703,143,'/c/r/crucial-512mb-pc4200-ddr2-533mhz-memory.jpg'),(164,703,141,'/c/r/crucial-1gb-pc4200-ddr2-533mhz-memory.jpg'),(165,703,140,'/c/r/crucial-2gb-pc4200-ddr2-533mhz-memory.jpg'),(166,703,166,'/h/t/htc-touch-diamond.jpg'),(167,703,26,'/a/c/acer-ferrari-3200-notebook-computer-pc.jpg'),(168,703,25,'/a/p/apple-macbook-pro-ma464ll-a-15-4-notebook-pc.jpg'),(171,703,93,'/a/s/asics-men-s-gel-kayano-xii.jpg'),(172,703,93,'/a/s/asics-men-s-gel-kayano-xii-1.jpg'),(173,703,93,'/a/s/asics-men-s-gel-kayano-xii-2.jpg'),(174,703,108,'/n/i/nine-west-women-s-lucero-pump.jpg'),(175,703,108,'/n/i/nine-west-women-s-lucero-pump-1.jpg'),(176,703,108,'/n/i/nine-west-women-s-lucero-pump-2.jpg'),(177,703,135,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(178,703,135,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(179,703,135,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(180,703,83,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(181,703,83,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(182,703,112,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(183,703,112,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(184,703,120,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(185,703,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(186,703,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(187,703,103,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(188,703,103,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(189,703,16,'/n/o/nokia-2610-phone-2.jpg'),(190,703,17,'/b/l/blackberry-8100-pearl-2.jpg'),(191,703,18,'/s/o/sony-ericsson-w810i-2.jpg'),(192,703,20,'/s/a/samsung-mm-a900m-ace.jpg'),(193,703,28,'/t/o/toshiba-m285-e-14.jpg'),(194,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(195,703,37,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(196,703,19,'/a/t/at-t-8525-pda-1.jpg'),(197,703,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera-2.jpg'),(198,703,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera-2.jpg'),(199,703,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom-2.jpg'),(200,703,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera-2.jpg'),(201,703,51,'/o/t/ottoman.jpg'),(202,703,52,'/c/h/chair.jpg'),(203,703,53,'/c/o/couch.jpg'),(204,703,54,'/m/a/magento-red-furniture-set.jpg'),(205,703,133,'/u/n/universal-camera-case.jpg'),(206,703,132,'/s/l/slr-camera-tripod.jpg'),(212,703,29,'/c/n/cn-clogs-beach-garden-clog-3.jpg'),(213,703,31,'/s/t/steven-by-steve-madden-pryme-pump-3.jpg'),(214,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-3.jpg'),(215,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-3.jpg'),(216,703,37,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(222,703,49,'/a/n/anashria-womens-premier-leather-sandal-3.jpg'),(227,703,75,'/a/n/anashria-womens-premier-leather-sandal-3.jpg'),(228,703,124,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(229,703,125,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(230,703,133,'/u/n/universal-camera-case-1.jpg'),(237,703,29,'/c/n/cn-clogs-beach-garden-clog-4.jpg'),(238,703,31,'/s/t/steven-by-steve-madden-pryme-pump-4.jpg'),(239,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-4.jpg'),(240,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-4.jpg'),(241,703,37,'/t/h/the-only-children-paisley-t-shirt-3.jpg'),(242,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-3.jpg'),(248,703,49,'/a/n/anashria-womens-premier-leather-sandal-4.jpg'),(253,703,75,'/a/n/anashria-womens-premier-leather-sandal-4.jpg'),(255,703,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(256,703,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(257,703,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(258,703,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(259,703,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee-2.jpg'),(260,703,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee-2.jpg'),(261,703,124,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(262,703,125,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(263,703,133,'/u/n/universal-camera-case-2.jpg'),(265,703,29,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(266,703,31,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(267,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(268,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(269,703,49,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(270,703,75,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(271,703,79,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(272,703,80,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(273,703,81,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(274,703,82,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(275,703,84,'/c/n/cn-clogs-beach-garden-clog.jpg'),(276,703,85,'/c/n/cn-clogs-beach-garden-clog.jpg'),(277,703,86,'/c/n/cn-clogs-beach-garden-clog.jpg'),(278,703,87,'/c/n/cn-clogs-beach-garden-clog.jpg'),(279,703,88,'/c/n/cn-clogs-beach-garden-clog.jpg'),(280,703,89,'/c/n/cn-clogs-beach-garden-clog.jpg'),(281,703,90,'/c/n/cn-clogs-beach-garden-clog.jpg'),(282,703,91,'/c/n/cn-clogs-beach-garden-clog.jpg'),(283,703,92,'/c/n/cn-clogs-beach-garden-clog.jpg'),(284,703,98,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(285,703,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(286,703,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(287,703,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(288,703,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(289,703,104,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(290,703,105,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(291,703,106,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(292,703,107,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(293,703,113,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(294,703,114,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(295,703,115,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(296,703,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(297,703,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(298,703,124,'/t/h/the-only-children-paisley-t-shirt.jpg'),(299,703,125,'/t/h/the-only-children-paisley-t-shirt.jpg'),(300,703,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(301,703,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(302,703,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(303,703,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(304,703,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(305,703,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(306,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(307,703,79,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(308,703,80,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(309,703,81,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(310,703,82,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(311,703,84,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(312,703,85,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(313,703,86,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(314,703,87,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(315,703,88,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(316,703,89,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(317,703,90,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(318,703,91,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(319,703,92,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(321,703,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(322,703,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(323,703,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(324,703,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(325,703,104,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(326,703,105,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(327,703,106,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(328,703,107,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(329,703,113,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(330,703,114,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(331,703,115,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(332,703,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(333,703,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(334,703,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(335,703,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(336,703,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(337,703,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(338,703,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(339,703,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(340,703,79,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(341,703,80,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(342,703,81,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(343,703,82,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(344,703,84,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(345,703,85,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(346,703,86,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(347,703,87,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(348,703,88,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(349,703,89,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(350,703,90,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(351,703,91,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(352,703,92,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(353,703,104,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(354,703,105,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(355,703,106,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(356,703,107,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(357,703,113,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(358,703,114,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(359,703,115,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(360,703,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(361,703,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(362,703,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(363,703,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(364,703,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(365,703,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.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`;
CREATE TABLE `catalog_product_entity_media_gallery_value` (
  `value_id` int(11) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `label` varchar(255) default NULL,
  `position` int(11) unsigned default NULL,
  `disabled` tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`value_id`,`store_id`),
  KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_VALUE_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_VALUE_GALLERY` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_VALUE_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog product media gallery values';
--
-- 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 (1,0,'',2,0),(2,0,'',1,0),(3,0,'',0,0),(4,0,'',0,0),(5,0,'',0,1),(6,0,'',0,1),(7,0,'',0,0),(8,0,'',0,0),(9,0,'',0,1),(10,0,'',0,1),(11,0,'',0,0),(12,0,'',0,0),(13,0,'',0,1),(14,0,'',0,1),(15,0,'',0,1),(16,0,'',0,1),(17,0,'',0,0),(18,0,'',0,0),(19,0,'',0,0),(20,0,'',0,0),(21,0,'',0,0),(22,0,'',0,0),(24,0,'',1,0),(25,0,'',2,0),(26,0,'',0,0),(27,0,'',0,0),(28,0,'',1,0),(29,0,'',2,0),(30,0,'',0,0),(31,0,'',0,0),(32,0,'',0,0),(33,0,'',0,1),(34,0,'',0,1),(35,0,'',0,1),(36,0,'',0,1),(37,0,'',0,1),(38,0,'',0,1),(47,0,'',0,1),(84,0,'',0,1),(102,0,'',0,1),(112,0,'',0,0),(113,0,'',0,1),(116,0,'',0,1),(119,0,'',0,1),(126,0,'',2,0),(127,0,'',1,0),(130,0,'',1,1),(131,0,'',1,1),(133,0,'',1,1),(136,0,'',1,1),(137,0,'',1,1),(139,0,'',1,1),(140,0,'',1,1),(141,0,'',1,0),(142,0,'',1,0),(143,0,'',1,1),(144,0,'',1,1),(145,0,'',1,1),(146,0,'',1,1),(147,0,'',1,1),(148,0,'',1,1),(149,0,'',1,1),(150,0,'',1,1),(151,0,'',1,1),(152,0,'',1,1),(153,0,'',1,1),(154,0,'',1,1),(155,0,'',1,1),(156,0,'',1,1),(157,0,'',1,1),(158,0,'',1,1),(159,0,'',1,1),(160,0,'',1,1),(161,0,'',1,1),(162,0,'',1,1),(163,0,'',1,1),(164,0,'',1,1),(165,0,'',1,1),(166,0,'',1,1),(167,0,'',1,1),(168,0,'',1,1),(171,0,'',2,0),(172,0,'',1,0),(173,0,'',0,1),(174,0,'',0,1),(175,0,'',1,0),(176,0,'',2,0),(177,0,'',2,0),(178,0,'',1,0),(179,0,'',0,1),(180,0,'',0,0),(181,0,'',0,0),(182,0,'',1,0),(183,0,'',2,0),(184,0,'',0,0),(185,0,'',0,0),(186,0,'',0,0),(187,0,'',1,0),(188,0,'',2,0),(189,0,'',0,1),(190,0,'',0,1),(191,0,'',0,1),(192,0,'',0,1),(193,0,'',0,1),(194,0,'',0,1),(195,0,'',0,1),(196,0,'',0,1),(197,0,'',0,1),(198,0,'',0,1),(199,0,'',0,1),(200,0,'',0,1),(201,0,'',0,1),(202,0,'',0,1),(203,0,'',0,1),(204,0,'',0,1),(205,0,'',0,1),(206,0,'',0,1),(212,0,'',0,1),(213,0,'',0,1),(214,0,'',0,1),(215,0,'',0,1),(216,0,'',0,1),(222,0,'',0,1),(227,0,'',0,1),(228,0,'',0,1),(229,0,'',0,1),(230,0,'',0,1),(237,0,'',0,1),(238,0,'',0,1),(239,0,'',0,1),(240,0,'',0,1),(241,0,'',0,1),(242,0,'',0,1),(248,0,'',0,1),(253,0,'',0,1),(255,0,'',0,1),(256,0,'',0,1),(257,0,'',0,1),(258,0,'',0,1),(259,0,'',0,1),(260,0,'',0,1),(261,0,'',0,1),(262,0,'',0,1),(263,0,'',0,1),(265,0,'',0,1),(266,0,'',0,1),(267,0,'',0,1),(268,0,'',0,1),(269,0,'',0,1),(270,0,'',0,1),(271,0,'',0,1),(272,0,'',0,1),(273,0,'',0,1),(274,0,'',0,1),(275,0,'',0,1),(276,0,'',0,1),(277,0,'',0,1),(278,0,'',0,1),(279,0,'',0,1),(280,0,'',0,1),(281,0,'',0,1),(282,0,'',0,1),(283,0,'',0,1),(284,0,'',0,1),(285,0,'',0,1),(286,0,'',0,1),(287,0,'',0,1),(288,0,'',0,1),(289,0,'',0,1),(290,0,'',0,1),(291,0,'',0,1),(292,0,'',0,1),(293,0,'',0,1),(294,0,'',0,1),(295,0,'',0,1),(296,0,'',0,1),(297,0,'',0,1),(298,0,'',0,1),(299,0,'',0,1),(300,0,'',0,1),(301,0,'',0,1),(302,0,'',0,1),(303,0,'',0,1),(304,0,'',0,1),(305,0,'',0,1),(306,0,'',0,1),(307,0,'',0,1),(308,0,'',0,1),(309,0,'',0,1),(310,0,'',0,1),(311,0,'',0,1),(312,0,'',0,1),(313,0,'',0,1),(314,0,'',0,1),(315,0,'',0,1),(316,0,'',0,1),(317,0,'',0,1),(318,0,'',0,1),(319,0,'',0,1),(321,0,'',0,1),(322,0,'',0,1),(323,0,'',0,1),(324,0,'',0,1),(325,0,'',0,1),(326,0,'',0,1),(327,0,'',0,1),(328,0,'',0,1),(329,0,'',0,1),(330,0,'',0,1),(331,0,'',0,1),(332,0,'',0,1),(333,0,'',0,1),(334,0,'',0,1),(335,0,'',0,1),(336,0,'',0,1),(337,0,'',0,1),(338,0,'',0,1),(339,0,'',0,1),(340,0,'',0,1),(341,0,'',0,1),(342,0,'',0,1),(343,0,'',0,1),(344,0,'',0,1),(345,0,'',0,1),(346,0,'',0,1),(347,0,'',0,1),(348,0,'',0,1),(349,0,'',0,1),(350,0,'',0,1),(351,0,'',0,1),(352,0,'',0,1),(353,0,'',0,1),(354,0,'',0,1),(355,0,'',0,1),(356,0,'',0,1),(357,0,'',0,1),(358,0,'',0,1),(359,0,'',0,1),(360,0,'',0,1),(361,0,'',0,1),(362,0,'',0,1),(363,0,'',0,1),(364,0,'',0,1),(365,0,'',0,1);
/*!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`;
CREATE TABLE `catalog_product_entity_text` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` mediumint(8) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` text NOT NULL,
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_STORE` (`store_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_PRODUCT_ENTITY` (`entity_id`),
  KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=693 DEFAULT CHARSET=utf8;
--
-- 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 (1,10,495,0,16,'2610'),(2,10,494,0,16,'4.1 x 1.7 x 0.7 inches '),(3,10,97,0,16,'The Nokia 2610 is an easy to use device that combines multiple messaging options including email, instant messaging, and more. You can even download MP3 ringtones, graphics, and games straight to the phone, or surf the Internet with Cingular\'s MEdia Net service. It\'s the perfect complement to Cingular service for those even remotely interested in mobile Web capabilities in an affordable handset.<br><br>\r\n\r\n<b>Design</b><br>\r\nCompact and stylish, the 2610 features a candybar design sporting a bright 128 x 128 pixel display capable of displaying over 65,000 colors. Most of the phone\'s features and on-screen menus are controlled by a center toggle on the control pad. A standard hands-free headphone jack is provided, as are volume control keys, and there\'s even a \"Go-To\" button that can be assigned by the user for quick access to favorite applications. Lastly, the included speakerphone allows you to talk handsfree, and because the phone sports an internal antenna, there\'s nothing to snag or break off.\r\n\r\n'),(4,10,492,0,16,'<ul>\r\n<ul class\"disc\">\r\n<li>Integrated camera with video recorder to capture those special moments<br></li>\r\n<li>Enriched data connections for complete mobile access via Email, MMS, and MEdia Net<br></li>\r\n<li> Personalize with downloadable MP3 and polyphonic Ring tones, Games, and Graphics<br></li>\r\n<li>Use AIM, Yahoo! and MSN Messenger to stay in touch on the go<br></li>\r\n<li>Mobile Internet browser and email</li>\r\n</ul>'),(5,10,496,0,16,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(6,10,104,0,16,'Nokia 2610, cell, phone, '),(7,10,495,0,17,'8100'),(8,10,494,0,17,'4.2 x 2 x 0.6 inches '),(9,10,97,0,17,' Like the BlackBerry 7105t, the BlackBerry 8100 Pearl is \r\nThe BlackBerry 8100 Pearl sports a large 240 x 260 screen that supports over 65,000 colors-- plenty of real estate to view your e-mails, Web browser content, messaging sessions, and attachments. The venerable BlackBerry trackwheel has been replaced on this model with an innovative four-way trackball placed below the screen. On the rear of the handheld, you\'ll find a 1.3-megapixel camera and a self portrait mirror. The handheld\'s microSD memory card slot is located inside the device, behind the battery. There\'s also a standard 2.5mm headset jack that can be used with the included headset, as well as a mini-USB port for data connectivity.'),(10,10,492,0,17,'<ul>\r\n<ul class=\"disc\">\r\n<li> 1.3 mega pixel camera to capture those special moments<br></li>\r\n<li> MP3 player lets you listen to your favorite music on the go<br></li>\r\n<li>Menu and escape keys on the front of the device for easier access<br></li>\r\n<li> Bluetooth technology lets you experience hands free and wire free features<br></li>\r\n<li>Package Contents: phone,AC adapter,software CD,headset,USB cable,sim- card,get started poster,reference guide<br></li>\r\n</ul>'),(11,10,496,0,17,'CONDITIONAL $250 Equipment Discount Included: Your price paid includes an Equipment Discount of $250 that has been provided to you in exchange for activating a new, non-substitute line of service with T-Mobile and your agreement that for the 181-day period following such activation you will (1) pay your balance due to T-Mobile each month and otherwise maintain your account in good standing, (2) not disconnect this T-Mobile line of service, (3) not transfer this equipment to another T-Mobile line of service, (4) not change your T-Mobile service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped, (5) not use this line of service to replace an existing account with T-Mobile. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this Equipment Discount without need for further approval.'),(12,10,104,0,17,'Blackberry, 8100, pearl, cell, phone'),(13,10,495,0,18,'W810i'),(14,10,494,0,18,' 3.5 x 1.8 x 1 inches'),(15,10,97,0,18,'The W810i\'s screen sports 176 x 220 pixel resolution with support for 262,000 colors. Quick access buttons below the screen make it easy to control the phone\'s Walkman music features, while a five-way center button controls most of the phone\'s menus and features.'),(16,10,492,0,18,'<ul>\r\n<ul class=\"disc\">\r\n \r\n<li>Disc2Phone™ music copying software is supplied in the W810 kit and it’s easy to copy songs from your favorite CDs, and PC music folders<br></li>\r\n<li>The built-in W810 2 megapixel digital camera with autofus takes excellent photos and when you need to catch some action, W810 has video too<br></li>\r\n<li>Sharing images and other phone content is easy. Use Bluetooth™, or Multimedia messaging when you want to send images and video<br></li>\r\n<li> Wherever you are, you have high speed access to the internet with EDGE technology<br></li>\r\n<li> A full-function email client in your W810 gives you access to your inbox wherever you go</li>\r\n</ul>'),(17,10,496,0,18,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(18,10,104,0,18,'Sony, Ericsson ,W810i, cell, phone'),(19,10,495,0,20,'MM-A900M'),(20,10,494,0,20,'3.9 x 2 x 0.6 inches'),(21,10,97,0,20,'New services supported by both the MM-A900m include the newly announced Sprint Music StoreSM, which allows users to immediately buy and download complete songs directly to their phone; 30 channels of live and on demand video and audio from Sprint TVSM and On Demand, a personalized resource guide to news, traffic, weather, sports and entertainment. The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. Features like external music-navigation keys make these phones both functional and attractive. These handsets are sure to be at the top of many wish lists.'),(22,10,492,0,20,'<ul>\r\n<ul class=\"disc\">\r\n<li>Bluetooth Wireless Technology: Built-in radio technology allows fast, secure transmission between your phone and accessories without cables or wires. Bluetooth wireless accessories are sold separately.<br></li>\r\n<li>Mass Storage Area: Store pictures, videos, voice memos and music within the internal memory of the phone.<br></li>\r\n<li>Streaming Music Enabled: Stream music to your phone with Music Choice®. Select from Pop, Rock, Hip Hop, and R&B plus exclusive video clips, performances, and artist interviews.<br></li>\r\n</ul>\r\n   '),(23,10,496,0,20,'CONDITIONAL $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for activating a new, non-substitute line of service with Sprint and your agreement that for the 181-day period following such activation you will (1) pay your balance due to Sprint each month and otherwise maintain your account in good standing, (2) not disconnect this Sprint line of service, (3) not transfer this equipment to another Sprint line of service, (4) not change your Sprint service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped, and (5) not use this line of service to replace an existing account with Sprint. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(24,10,104,0,20,'Samsung, MM-A900M, cell, phone'),(25,10,495,0,25,'MA464LL/A'),(26,10,494,0,25,'19.5 x 7.6 x 19.5 inches'),(27,10,497,0,25,'2.0 GHz Intel Core Duo processor with 2 MB shared L2 Cache'),(28,10,498,0,25,'1 GB (single SODIMM) 667 MHz DDR2 SDRAM (PC2-5300)'),(29,10,499,0,25,'100 GB 5400 rpm Serial ATA hard drive'),(30,10,500,0,25,'15.4-inch TFT widescreen display with 1440 x 900 resolution'),(31,10,97,0,25,'This, combined with myriad other engineering leaps, boosts performance up to four times higher than the PowerBook G4. With this awesome power, it\'s a breeze to render complex 3D models, enjoy smooth playback of HD video, or host a four-way video conference.Intel Core Duo is the first chip built using Intel\'s groundbreaking 65-nanometer process - resulting in transistors so small, you could fit a hundred inside a single human cell. With smaller distances for electrons to travel, and two processors designed to share resources and conserve power, Intel Core Duo achieves higher levels of performance as it uses fewer watts. Which is what makes it possible to design a super-powerful MacBook Pro that\'s only one inch thin.When Mac technology makes something easy, it\'s hardly news. So here\'s more non-news for MacBook Pro owners: software just works. If you see the Universal logo on a new application, that means it will run on Intel- and PowerPC-based Mac computers. For most existing applications, you simply do what you\'ve always done: double-click them. Thanks to the Rosetta technology in Mac OS X, they look and feel just like they did before.'),(32,10,492,0,25,' <ul>\r\n<ul class=\"disc\">\r\n<li>2.0 GHz Intel Core Duo processor with 2 MB shared L2 Cache<br></li>\r\n<li>1 GB (single SODIMM) 667 MHz DDR2 SDRAM (PC2-5300); 100 GB 5400 rpm Serial ATA hard drive; slot-load SuperDrive (DVD±RW/CD-RW)<br></li>\r\n<li>One FireWire 400, two USB 2.0 ports, and ExpressCard/34 slot; no FireWire 800 slots<br></li>\r\n<li>Built-in 10/100/1000BASE-T (Gigabit); built-in 54 Mbps AirPort Extreme (802.11g); built-in Bluetooth 2.0+EDR<br></li>\r\n<li>15.4-inch TFT widescreen display with 1440 x 900 resolution</li>'),(33,10,104,0,25,'Apple MacBook Pro MA464LL/A 15.4\" Notebook PC (2.0 GHz Intel Core Duo, 1 GB RAM, 100 GB Hard Drive, SuperDrive) '),(34,10,495,0,26,'LX.FR206.001'),(35,10,497,0,26,'Mobile AMD Athlon 64 2800+'),(36,10,498,0,26,'512MB of PC2700 DDR333 SDRAM'),(37,10,499,0,26,'80 gig Western Digital'),(38,10,500,0,26,'15-inch, 200-nit, high-brightness TFT LCD screen '),(39,10,97,0,26,' Acer has flawlessly designed the Ferrari 3200, instilling it with exceptional performance, brilliant graphics, and lightning-fast connectivity. This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success.'),(40,10,492,0,26,' <ul>\r\n<ul class=\"disc\">\r\n<li>Mobile AMD Athlon 64 2800+<br></li>\r\n<li>1MB L2 Cache<br></li>\r\n<li>512MB of PC2700 DDR333 SDRAM<br></li>\r\n<li>2 RAM Slots (0 open - upgrading requires chip removal)<br></li>\r\n<li>RAM is upgradeable to 2GB</li>\r\n</ul>'),(41,10,104,0,26,'Acer Ferrari 3200 Notebook Computer PC '),(42,10,495,0,27,'VGN-TXN27N/B'),(43,10,494,0,27,'10.7 x 1.23 x 7.7 inches (WxHxD)'),(44,10,497,0,27,'Intel Core Solo Processor U1500'),(45,10,498,0,27,'2 GB RAM'),(46,10,499,0,27,'100 GB Hard Drive'),(47,10,500,0,27,'9 inches'),(48,10,97,0,27,' Weighing in at just an amazing 2.84 pounds and offering a sleek, durable carbon-fiber case in charcoal black. And with 4 to 10 hours of standard battery life, it has the stamina to power you through your most demanding applications. With the integrated wireless WAN, you can access the national Sprint Mobile Broadband service to extend your wireless coverage beyond LAN access networks and hotspots, giving you the freedom to go farther, do more, and stay connected.\r\n\r\n'),(49,10,492,0,27,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Ultra Low Voltage Intel Core Solo U1500 processor offers a 1.33 GHz speed paired with a fast 533 MHz front-side bus and large 2 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.) The Core Solo processor delivers enhanced performance for today\'s demanding applications such as CAD tools, 3-D and 2-D modeling, video editing, digital music, digital photography and gaming. And Intel\'s Smart Cache technology enables smarter, more efficient cache and bus design for enhanced performance, responsiveness and power savings.</li>\r\n</ul>\r\n\r\n   '),(50,10,104,0,27,'Sony, VAIO, VGN-TXN27N/B , Notebook, PC, Intel, 2 GB RAM, Laptop'),(51,10,495,0,28,'M285-E'),(52,10,494,0,28,'17 x 7 x 13 inches'),(53,10,497,0,28,'1.66 GHz Intel Core Duo T2300E processor'),(54,10,498,0,28,'1 GB RAM'),(55,10,499,0,28,'60 GB hard drive'),(56,10,500,0,28,'14-inch screen '),(57,10,97,0,28,'Easily mobile at just 6 pounds, the Toshiba Satellite A135-S4527 makes it easy to get your work done with a large, bright 15.4-inch widescreen LCD. The XGA-resolution screen (1280 x 800) permits side-by-side viewing of documents for increased productivity. It\'s also great for using as a media center, with Toshiba\'s unique Express Media Player enabling you to bypass the system and access CDs and DVDs with a touch of button. This affordable notebook PC is powered by Intel\'s 1.73 GHz Core Duo T2080 processor, which provides an optimized, multithreaded architecture for improved gaming and multitasking performance and efficient power consumption. It also offers a 120 GB hard drive, 1 GB of installed RAM (2 GB maximum), dual-layer/multi-format DVD drive that also burns CDs, integrated 54g wireless connectivity, and Intel GMA 950 video card with up to 256 MB of shared video RAM.\r\n\r\n'),(58,10,492,0,28,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Intel Core Duo T2080 processor is built with the Mobile Intel 945PM Express chipset, and it has a 1.73 GHz processor speed, fast 533 MHz front-side bus (FSB), and 1 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.)</li>\r\n</ul>'),(59,10,104,0,28,'Toshiba, notebook, laptop, intel, '),(60,10,495,0,29,'B000JI2N0I'),(61,10,97,0,29,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(62,10,492,0,29,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(63,10,104,0,29,'CN Clogs Beach/Garden Clog '),(64,10,495,0,30,'B000CP1M00'),(65,10,97,0,30,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(66,10,495,0,32,'B000LJQVF8'),(67,10,97,0,32,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(68,10,492,0,32,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(69,10,104,0,32,'Nine West Women\'s Lucero Pump '),(70,10,495,0,33,'B000NPOA1M'),(71,10,97,0,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(72,10,495,0,35,'Impatience'),(73,10,97,0,35,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(74,10,104,0,35,'Coalesce: Functioning On Impatience T-Shirt'),(75,10,495,0,36,'Ink Eater:'),(76,10,97,0,36,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(77,10,104,0,36,'Ink Eater: Krylon Bombear Destroyed Tee'),(78,10,495,0,19,'8525 PDA'),(79,10,494,0,19,'4.4 x 2.4 x 0.9 inches'),(80,10,97,0,19,' The design of the 8525 is clean and uncluttered, with just a few buttons for mail, Internet Explorer, and contextual menus. Meanwhile, call answer and end buttons surround a five-way toggle that allows you to navigate and control the Windows Mobile interface. As mentioned, a full QWERTY keyboard cleverly slides out from underneath the screen. This allows you to hold the device horizontally, and the screen is automatically placed in landscape mode when you\'re using the keyboard. A side scroll wheel is conveniently tucked away on the side, making navigation when accessing the music player and other various applications a cinch when needed. A mini-SD memory expansion card slot is provided, as is an infrared port and support for a stereo Bluetooth headset. A mini-USB port is also included for wired data transfers and charging.'),(81,10,492,0,19,'<ul>\r\n<ul class=\"disc\">\r\n<li>tri-band UMTS/HSDPA; quad-band GSM/GPRS/EDGE for global use<br></li>\r\n<li>Windows Mobile 5.0 with Messaging & Security Feature Pack<br></li>\r\n<li>sliding QWERTY keyboard with improved keypad design and improved backlight for easier use in low light conditions<br></li>\r\n<li>128MB ROM / 64MB RAM; ~51MB user available memory<br></li>\r\n<li>2.0 mega-pixel camera with video capabilities</li>\r\n</ul>'),(82,10,496,0,19,'Conditional $250 Equipment Discount Included: Your price paid includes an equipment discount of $250 that has been provided to you in exchange for either activating a new, non-substitute line of service or renewing an existing line of service with AT&T and your agreement that for the 181-day period following such activation or renewal you will: (1) pay your balance due to AT&T each month and otherwise maintain your account in good standing; (2) not disconnect this AT&T line of service; (3) not transfer this equipment to another AT&T line of service; (4) not change your AT&T service rate plan to a lower monthly service rate--this includes canceling or removing required PDA, BlackBerry, or smartphone features after your product has shipped; (5) not use this line of service to replace an existing account with AT&T. If these conditions are not met, you hereby authorize Magento.com to charge your credit card $250 as reimbursement of this equipment discount without need for further approval.'),(83,10,104,0,19,'At&t, 8525, cell, phone'),(84,10,495,0,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(85,10,97,0,39,'Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies.  Sizing info is available here. '),(86,10,104,0,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(87,10,495,0,41,'384822'),(88,10,494,0,41,'21\"W x 44\"L x 35.5\"H'),(89,10,507,0,41,'Thailand'),(90,10,509,0,41,'Asian Beechwood'),(91,10,97,0,41,'Features include inset panel sides and for spacious drawers and two wicker baskets. 41\"Wx18\"Dx36\"H.'),(92,10,104,0,41,'Hardwood, drawers, wicker, asian, beechwood'),(93,10,495,0,42,'bar1234'),(94,10,494,0,42,'62\"W x 84\"L x 8\"H'),(95,10,507,0,42,'Thailand'),(96,10,492,0,44,'<ul>\r\n<ul class=\"disc\"> \r\n\r\n<li>8.0-megapixel CMOS sensor captures enough detail for photo-quality 16 x 22-inch prints<br></li>\r\n<li>Includes Canon\'s EF-S 18-55mm, f3.5-5.6 zoom lens<br></li>\r\n<li>DIGIC II Image Processor provides fast, accurate image processing; captures images at a rate of up to 3 frames per second<br></li>\r\n<li>Fast start-up time--.2 seconds<br></li>\r\n<li>Powered by rechargeable Lithium-ion battery (included, with charger)</li>\r\n</ul>\r\n'),(97,10,104,0,44,'canon, slr, camera, 8, digital'),(98,10,495,0,45,'QC-2185'),(99,10,494,0,45,'2.75 inches x 1.5 inches'),(100,10,97,0,45,'The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.\r\n\r\nThe Argus QC-2185 features a clear and bright 1.1-inch CSTN (color super-twist nematic) LCD display that makes it easy to frame the perfect picture. Thanks to its USB 1.1 connection compatibility, this digital camera lets you quickly download pictures to your Mac or PC, and can also function as a handy web camera. The QC-2185 includes eight megabytes of internal SDRAM memory, with the ability to expand camera memory via a built-in SD (secure digital) storage card slot for easy storage and transfer of your pictures. This unit also includes a built-in auto flash with a three to seven foot range, and comes with ArcSoft PhotoImpression\'s photo editing software which makes it easy for you to edit, crop, adjust and improve all your best pictures to make them even better.\r\n'),(101,10,492,0,45,'<ul>\r\n<ul class=\"disc\".  \r\n<li>5 megapixel digital camera with a 1600 x 1200 resolution and an f2.8 aperture</li>\r\n<li> Clear and bright 1.1-inch CSTN LCD display makes it easy to frame the perfect picture</li>\r\n<li>USB 1.1 connection compatibility lets you quickly download pictures to your Mac or PC, and function as a web camera</li>\r\n<li>Runs on 3 AAA batteries, and requires; Windows OS 98 or higher, at least 32 MB of RAM and 125 MB of hard disk space, and an available USB port</li>\r\n<li>Weighs 3.4 ounces, measures 3.6 x 2.4 x 1.1 inches (W x H x D), and is backed by a 1-year manufacturer\'s warranty</li>\r\n</ul>\r\n'),(102,10,104,0,45,'Argus, QC-2185, digital, camera, 2MP'),(103,10,495,0,46,'750'),(104,10,494,0,46,'3.8 x 2.1 x 1 inches'),(105,10,97,0,46,'Olympus continues to innovate with the launch of the Stylus 750 digital camera, a technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom that tucks away into a streamlined metal, all-weather body design. The camera is distinguished by a number of premium features, including:\r\n\r\n    * An advanced combination of the mechanical CCD-shift Image Stabilization and Digital Image Stabilization work together to ensure the clearest pictures possible in any situation;\r\n    * A 5x optical zoom lens with a newly developed lens element to maintain a small compact size;\r\n    * A 2.5-inch LCD and Bright Capture Technology dramatically improve composition, capture and review of images in low-light situations;\r\n    * Olympus\' exclusive TruePic Turbo Image Processing engine is coupled with a 7.1-megapixel image sensor to produce crisp, high-quality p'),(106,10,492,0,46,'<ul>\r\n<ul class=\"disc\">\r\n\r\n<li>7.1-megapixel CCD captures enough detail for photo-quality 15 x 20-inch prints<br></li>\r\n<li>5x image-stabilized optical zoom; 2.5-inch LCD display<br></li>\r\n<li>Compact, all-weather body measures 3.8 x 2.1 x 0.96 inches<br></li>\r\n<li>Bright Capture technology; 27 selectable shooting modes; built-in Help guide<br></li>\r\n<li>Stores images on xD Picture Cards; powered by Li-Ion battery (battery and charger included)</li>\r\n</ul>'),(107,10,104,0,46,'Olympus, stylus, 750, 7MP, digital, camera, zoom'),(108,10,495,0,47,'A630 '),(109,10,494,0,47,'4.3 x 2.6 x 1.9 inches '),(110,10,97,0,47,'Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.<br>\r\n\r\nThe PowerShot A630 packs a vast array of advanced features into a remarkably compact space<br><br>\r\n\r\n'),(111,10,492,0,47,'<ul>\r\n<ul class=\"disc\">\r\n<li>8-megapixel CCD captures enough detail for photo-quality 16 x 22-inch prints<br></li>\r\n<li>4x optical zoom; 2.5-inch vari-angle LCD display<br></li>\r\n<li>ISO range up to ISO 800 for less blur in low light while hand-holding<br></li>\r\n<li>3:2 guide masks LCD to display 4 x 6-inch print size; 16:9 format option for still images<br></li>\r\n<li>Stores images on SD cards; powered by 4 AA-size batteries</li>\r\n</ul>'),(112,10,104,0,47,'canon, powershot, A630, digital, camera, optical, zoom'),(113,10,495,0,48,'C530 '),(114,10,494,0,48,' 4 x 6 x 9 inches'),(115,10,97,0,48,'Small on size. Big on value. Kodak\'s newest C-Series digital camera, the C530, sports awesome features--such as 5.0-megapixel CCD resolution, on-camera image cropping, and an on-camera Share button--at a very affordable price.'),(116,10,492,0,48,'<ul>\r\n<ul class=\"disc\">   \r\n\r\n<li>5.0-megapixel CCD captures enough detail for photo-quality 13 x 17-inch prints<br></li>\r\n<li>1.5-inch LCD display<br></li>\r\n<li>Continuous QVGA video<br></li>\r\n<li>Auto scene mode and three color modes; in-camera cropping<br></li>\r\n<li>Powered by AA size batteries; stores images on SD memory cards (includes 16 MB internal memory)</li>\r\n</ul>'),(117,10,104,0,48,'kodak, eayshare, c530, 5MP, digital, camera'),(118,10,495,0,49,'B000KJ43SG'),(119,10,97,0,49,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(120,10,492,0,49,'Womens Premier Leather Single Layer Narrow Strap - '),(121,10,104,0,49,'womens, sandal, leather, anashria, '),(122,10,495,0,51,'magotto'),(123,10,507,0,51,'Italy'),(124,10,509,0,51,'Microfiber'),(125,10,97,0,51,'The Magento ottoman will impress with its style while it delivers on quality. This piece of living room furniture is built to last with durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.'),(126,10,104,0,51,'Ottoman'),(127,10,495,0,52,'1112'),(128,10,507,0,52,'Italy'),(129,10,509,0,52,'Microfiber'),(130,10,97,0,52,'This Magento chair features a fun, futuristic design, with fluid curves and gentle angles that follow the shape of the body to enhance ultimate relaxation. It combines a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.'),(131,10,104,0,52,'Chair'),(132,10,495,0,53,'1113'),(133,10,507,0,53,'Italy'),(134,10,509,0,53,'Microfiber'),(135,10,97,0,53,'Inspired by the classic camelback sofa, Magento offers comfort and style in a low maintenance package.  For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!'),(136,10,104,0,53,'Couch'),(137,10,495,0,54,'RFS'),(138,10,507,0,54,'Italy'),(139,10,509,0,54,'Microfiber'),(140,10,97,0,54,'The perfect furniture set for the living room!  Love red?  You\'ll love these pieces of handmade modern furniture!'),(141,10,104,0,54,'Magento, Red, Furniture, Set, ottoman, couch, chair'),(142,10,506,0,39,'Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies.  '),(143,10,506,0,38,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(144,10,506,0,37,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(145,10,506,0,36,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(146,10,506,0,35,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(147,10,506,0,34,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(148,10,506,0,19,'Under the hood, the 8525 features 128MB of embedded memory and 64MB RAM, running on a 400 MHz Samsung processor. Up front, the 240 x 320 LCD touch-screen supports over 65,000 colors, while the rear of the device houses a 2.0 megapixel camera.'),(149,10,506,0,18,'The W810i follows a long tradition of beautifully designed and crafted phones from Sony Ericsson. The same candy-bar style that graced the W800 is here.'),(150,10,506,0,17,'The BlackBerry 8100 Pearl is a departure from the form factor of previous BlackBerry devices. This BlackBerry handset is far more phone-like, and RIM\'s engineers have managed to fit a QWERTY keyboard onto the handset\'s slim frame.'),(151,10,506,0,16,'The words \"entry level\" no longer mean \"low-end,\" especially when it comes to the Nokia 2610. Offering advanced media and calling features without breaking the bank'),(152,10,506,0,30,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(153,10,506,0,41,'Our Akio dresser has a solid hardwood frame.  '),(154,10,506,0,42,'Our Barcelona platform bed captures the spirit and drama of late 20th century design with a variety of subtle details.'),(155,10,506,0,44,' Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. '),(156,10,506,0,54,'Love red?  You\'ll love these pieces of handmade modern furniture!'),(157,10,495,0,74,'B000KJ43SG'),(158,10,97,0,74,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(159,10,492,0,74,'Womens Premier Leather Single Layer Narrow Strap - '),(160,10,104,0,74,'womens, sandal, leather, anashria, '),(161,10,506,0,74,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(162,10,495,0,75,'B000KJ43SG'),(163,10,97,0,75,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(164,10,492,0,75,'Womens Premier Leather Single Layer Narrow Strap - '),(165,10,492,0,80,'Womens Premier Leather Single Layer Narrow Strap - '),(166,10,104,0,80,'womens, sandal, leather, anashria, '),(167,10,506,0,80,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(168,10,495,0,81,'B000KJ43SG'),(169,10,97,0,81,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(170,10,492,0,81,'Womens Premier Leather Single Layer Narrow Strap - '),(171,10,104,0,81,'womens, sandal, leather, anashria, '),(172,10,506,0,81,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(173,10,495,0,82,'B000KJ43SG'),(174,10,495,0,84,'B000JI2N0I'),(175,10,97,0,84,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(176,10,492,0,84,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(177,10,104,0,84,'CN Clogs Beach/Garden Clog '),(178,10,104,0,85,'CN Clogs Beach/Garden Clog '),(179,10,506,0,85,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(180,10,495,0,86,'B000JI2N0I'),(181,10,97,0,86,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(182,10,97,0,87,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(183,10,492,0,87,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(184,10,104,0,87,'CN Clogs Beach/Garden Clog '),(185,10,506,0,87,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(186,10,506,0,88,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(187,10,495,0,89,'B000JI2N0I'),(188,10,97,0,89,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(189,10,492,0,89,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(190,10,492,0,90,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(191,10,104,0,90,'CN Clogs Beach/Garden Clog '),(192,10,506,0,90,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(193,10,495,0,91,'B000JI2N0I'),(194,10,495,0,92,'B000JI2N0I'),(195,10,97,0,92,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(196,10,492,0,92,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(197,10,104,0,92,'CN Clogs Beach/Garden Clog '),(198,10,97,0,93,'Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(199,10,492,0,93,'<ul>\r\n<ul class=\"disc\">\r\n<li> I.G.S.: Allows for natural foot movement from heel strike to toe-off<br></li>\r\n<li>DuoMax Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off<br></li>\r\n<li> Space Trusstic System: Allows for greater midsole deformation and more efficient foot function<br></li>\r\n<li>GEL Cushioning System: Provides maximum rearfoot/forefoot shock attenuation<br></li>\r\n<li>Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation</li>\r\n\r\n</ul>'),(200,10,495,0,94,'B000CP1M00'),(201,10,506,0,94,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(202,10,495,0,95,'B000CP1M00'),(203,10,97,0,95,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(204,10,495,0,96,'B000CP1M00'),(205,10,97,0,96,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(206,10,492,0,96,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(207,10,97,0,97,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(208,10,492,0,97,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(209,10,104,0,97,'ASICS® Men\'s GEL-Kayano® XII '),(210,10,104,0,99,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(211,10,506,0,99,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(212,10,495,0,100,'B000IKC6AY'),(213,10,506,0,100,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(214,10,495,0,101,'B000IKC6AY'),(215,10,97,0,101,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(216,10,492,0,101,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(217,10,104,0,101,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(218,10,506,0,101,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(219,10,495,0,102,'B000IKC6AY'),(220,10,97,0,102,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(221,10,492,0,102,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(222,10,104,0,102,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(223,10,506,0,102,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue'),(224,10,495,0,103,'B000NOGIKY'),(225,10,104,0,103,'Steven by Steve Madden Pryme Pump'),(226,10,506,0,103,' This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(227,10,97,0,103,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(228,10,492,0,103,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(229,10,495,0,104,'B000NOGIKY'),(230,10,97,0,104,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(231,10,492,0,104,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(232,10,104,0,104,'Steven by Steve Madden Pryme Pump'),(233,10,506,0,104,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(234,10,495,0,105,'B000NOGIKY'),(235,10,97,0,105,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(236,10,492,0,105,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(237,10,104,0,105,'Steven by Steve Madden Pryme Pump'),(238,10,506,0,105,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(239,10,495,0,106,'B000NOGIKY'),(240,10,97,0,106,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(241,10,492,0,106,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(242,10,104,0,106,'Steven by Steve Madden Pryme Pump'),(243,10,506,0,106,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(244,10,495,0,107,'B000NOGIKY'),(245,10,97,0,107,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(246,10,492,0,107,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(247,10,104,0,107,'Steven by Steve Madden Pryme Pump'),(248,10,506,0,107,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(249,10,495,0,108,'B000LJQVF8'),(250,10,104,0,108,'Nine West, Women, Lucero, Pump'),(251,10,506,0,108,'This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(252,10,97,0,108,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(253,10,492,0,108,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(254,10,495,0,109,'B000LJQVF8'),(255,10,97,0,109,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(256,10,492,0,109,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(257,10,104,0,109,'Nine West Women\'s Lucero Pump '),(258,10,506,0,109,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(259,10,495,0,110,'B000LJQVF8'),(260,10,97,0,110,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(261,10,97,0,111,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you\'ll be absolutely unforgettable.'),(262,10,506,0,111,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(263,10,495,0,112,'B000NPOA1M'),(264,10,104,0,112,'ECCO, Womens, Golf, Flexor, Shoe'),(265,10,506,0,112,'With a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(266,10,97,0,112,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(267,10,492,0,112,'<ul>\r\n<ul class=\"disc\">\r\n<li>Breathable mesh fabric lining<br></li>\r\n<li>Cushioned Comfort Fibre System(R) <br></li>\r\n<li>Moisture absorbent<br></li>\r\n<li>Anti-bacterial insole<br></li>\r\n</ul>'),(268,10,495,0,113,'B000NPOA1M'),(269,10,495,0,114,'B000NPOA1M'),(270,10,104,0,114,'ECCO Womens Golf Flexor Golf Shoe'),(271,10,506,0,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(272,10,495,0,115,'B000NPOA1M'),(273,10,97,0,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(274,10,492,0,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(275,10,104,0,115,'ECCO Womens Golf Flexor Golf Shoe'),(276,10,506,0,115,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(277,10,495,0,117,'Impatience'),(278,10,97,0,117,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(279,10,104,0,117,'Coalesce: Functioning On Impatience T-Shirt'),(280,10,506,0,117,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(281,10,495,0,118,'Impatience'),(282,10,97,0,118,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(283,10,104,0,118,'Coalesce: Functioning On Impatience T-Shirt'),(284,10,506,0,118,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(285,10,495,0,119,'Impatience'),(286,10,104,0,119,'Coalesce, T-Shirt'),(287,10,506,0,119,'<ul>\r\n<ul class=\"disc\">\r\n\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton<br></li>\r\n<li>Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>\r\n</ul>'),(288,10,97,0,119,'Comfortable preshrunk shirts.  Highest Quality Printing.<br><br>\r\n<ul>\r\n<ul class=\"disc\">\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton<br></li>\r\n<li>Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>'),(289,10,495,0,120,'Ink Eater:'),(290,10,104,0,120,'Ink Eater, Krylon, Bombear , Destroyed, Tee, t shirt'),(291,10,506,0,120,'Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(292,10,97,0,120,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(293,10,495,0,121,'Ink Eater:'),(294,10,97,0,121,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(295,10,104,0,121,'Ink Eater: Krylon Bombear Destroyed Tee'),(296,10,506,0,121,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(297,10,495,0,122,'Ink Eater:'),(298,10,97,0,122,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(299,10,104,0,122,'Ink Eater: Krylon Bombear Destroyed Tee'),(300,10,506,0,122,'We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear.  Oh well -- can\'t argue with art.  Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!'),(301,10,495,0,123,'paisley'),(302,10,104,0,123,'The Only Children: Paisley T-Shirt'),(303,10,506,0,123,'Printed on American Apparel Classic style 5495 California cotton T shirt.   '),(304,10,97,0,123,'<ul>\r\n<ul class=\"disc\">\r\n<li>6.1 oz. 100% preshrunk heavyweight cotton <br></li>\r\n<li>Double-needle sleeves and bottom hem</li>\r\n</ul>'),(305,10,495,0,124,'The Only Children: Paisley T-Shirt'),(306,10,97,0,124,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(307,10,104,0,124,'The Only Children: Paisley T-Shirt'),(308,10,506,0,124,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(309,10,495,0,125,'The Only Children: Paisley T-Shirt'),(310,10,97,0,125,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(311,10,104,0,125,'The Only Children: Paisley T-Shirt'),(312,10,506,0,125,'Printed on American Apparel Classic style 5495 California cotton T shirst.   '),(313,10,495,0,126,'zolof'),(314,10,104,0,126,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(315,10,506,0,126,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(316,10,97,0,126,'<ul>\r\n<ul class=\"disc\")\r\n<li> 6.1 oz. 100% preshrunk heavyweight cotton <br></li>\r\n<li> Shoulder-to-shoulder taping<br></li>\r\n<li>Double-needle sleeves and bottom hem<br></li>\r\n</ul>'),(317,10,104,0,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(318,10,104,0,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(319,10,506,0,128,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(320,10,495,0,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(321,10,97,0,129,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(322,10,104,0,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(323,10,506,0,129,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(324,10,495,0,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(325,10,97,0,130,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(326,10,104,0,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(327,10,506,0,130,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(328,10,495,0,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(329,10,97,0,131,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(330,10,97,0,133,'A stylish digital camera demands stylish protection. This leather carrying case will defend your camera from the dings and scratches of travel and everyday use while looking smart all the time.'),(331,10,97,0,134,'Features foldable Flat Pin for Easy Storage/ Slim/ Lightweight Design and Smart Charging LED Indicator.'),(332,10,506,0,134,'Features foldable Flat Pin for Easy Storage/ Slim/ Lightweight Design and Smart Charging LED Indicator.'),(333,10,495,0,135,'B000KJ43SG!'),(334,10,104,0,135,'womens, sandal, leather, anashria, '),(335,10,506,0,135,'Buckle embellished contrasting straps adorn both the heel and canvas covered wedge of this t-strap sandal to make it a truly unique addition to your wardrobe'),(336,10,97,0,135,'Smooth kidskin upper in a dress platform wedge t-strap sandal style, with a round open toe, front and ankle adjustable buckles and tonal stitching accents. Ankle buckle features elastic panel. Smooth faux leather lining, cushioning faux leather and fabric topped insole. 1 inch matching leather and fabric wrapped midsole.'),(337,10,492,0,135,'<ul>\r\n<ul class=\"disc\">\r\n<li>Womens Style <br></li>\r\n<li>Genuine Top Grain Premier Leather <br></li>\r\n<li>Rich Color Tones <br></li>\r\n<li>Straps lined with 2000 lb test nylon <br></li>\r\n<li>Guaranteed for the Life of the Sole - Non-slip sole<br></li>\r\n</ul>'),(338,10,495,0,137,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(339,10,97,0,137,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(340,10,104,0,137,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(341,10,506,0,137,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(342,10,531,0,28,''),(343,10,104,0,134,''),(344,10,531,0,51,''),(345,10,531,0,119,''),(346,10,531,0,126,''),(347,10,531,0,123,''),(348,10,531,0,120,''),(349,10,531,0,83,''),(350,10,531,0,44,''),(351,10,531,0,27,''),(352,10,531,0,39,''),(353,10,531,0,41,''),(354,10,531,0,42,''),(355,10,104,0,138,''),(356,10,531,0,138,''),(357,10,531,0,139,''),(358,10,104,0,140,''),(359,10,97,0,140,'Crucial 2GB PC4200 DDR2 533MHz Memory\r\nCrucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.\r\n\r\nEvery single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality. '),(360,10,506,0,140,'Crucial 2GB PC4200 DDR2 533MHz Memory\r\nCrucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.\r\n\r\nEvery single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality. '),(361,10,531,0,140,''),(362,10,104,0,141,''),(363,10,531,0,141,''),(364,10,531,0,142,''),(365,10,104,0,143,''),(366,10,97,0,143,'Crucial 512MB PC4200 DDR2 533MHz Memory\r\nCrucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.\r\n\r\nEvery single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality. '),(367,10,506,0,143,'Crucial 512MB PC4200 DDR2 533MHz Memory\r\nCrucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.\r\n\r\nEvery single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality. '),(368,10,531,0,143,''),(369,10,104,0,144,'2 Year Warranty - Parts and Labor'),(370,10,97,0,144,'2 Year Extended Warranty - Parts and Labor'),(371,10,506,0,144,'2 Year Extended Warranty - Parts and Labor'),(372,10,531,0,144,''),(373,10,104,0,145,''),(374,10,97,0,145,'Overclocker’s dream! Deliver more sophisticated solutions with the leading-edge technology of AMD Phenom™ 9000 Series processor. Built from the ground up for true quad-core performance, AMD Phenom 9000 Series processors incorporate a unified high-speed L3 cache and high-speed DDR2 memory. Speed through complex multitasking, critical business productivity, advanced visual design and modeling and visually stunning digital media and entertainment. Whether it\'s a single solution or an enterprise system, AMD Phenom processors have the power to perform.'),(375,10,531,0,145,''),(376,10,531,0,146,''),(377,10,500,0,147,'22\"'),(378,10,104,0,147,''),(379,10,97,0,147,'The wide, 16:10 format of SAMSUNG\'s 226BW digital/Analog widescreen LCD monitor gives you plenty of room for all your computer applications and multiple images. DC 3000:1 contrast ratio creates crisp, easy-to-view images and gaming graphics, without ghosting or blurring. Complete with Microsoft® Vista® Premium certification and advanced dual interface for both analog digital video signals, the 226BW monitor is future-ready.'),(380,10,506,0,147,'The wide, 16:10 format of SAMSUNG\'s 226BW digital/Analog widescreen LCD monitor gives you plenty of room for all your computer applications and multiple images. DC 3000:1 contrast ratio creates crisp, easy-to-view images and gaming graphics, without ghosting or blurring. Complete with Microsoft® Vista® Premium certification and advanced dual interface for both analog digital video signals, the 226BW monitor is future-ready.'),(381,10,531,0,147,''),(382,10,104,0,148,''),(383,10,97,0,148,'Frustrated by staring at the hourglass icon as soon as you try to work on more than three programs at once, especially when you’re working with digital media? Increase your performance with the AMD Athlon™ 64 X2 dual core processor. Work or play with multiple programs without any stalling or waiting. Dual-core technology is like having two processors, and two working together is better and faster than one working alone. Do more in less time with the AMD Athlon 64 X2 dual-core processor.'),(384,10,506,0,148,'AMD Athlon 64 X2 3800+ Processor ADO3800IAA5CZ - 2.0GHz, 2 x 512KB Cache, 1000MHz (2000 MT/s) FSB, Windsor, Dual Core, OEM, Socket AM2, Processor'),(385,10,531,0,148,''),(386,10,499,0,149,'1 TB'),(387,10,104,0,149,''),(388,10,97,0,149,'1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache'),(389,10,506,0,149,'1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache'),(390,10,531,0,149,''),(391,10,499,0,150,'500 GB'),(392,10,531,0,150,''),(393,10,506,0,151,'Intel® Core™2 Duo processor is the new brand name for our next-generation energy-efficient performance desktop and mobile processors.'),(394,10,531,0,151,''),(395,10,500,0,152,'24\"'),(396,10,104,0,152,''),(397,10,97,0,152,'With ultrafine 10,000:1 contrast and wide 170° viewing angles, this 24\" widescreen LCD monitor delivers crystal-clear high-definition visuals for gaming and work projects. The DVI-D input lets you connect a DVD player or other digital video device.\r\n\r\nProduct Features:\r\n    * Ultrafast 5 ms response time\r\n    * Digital Fine 10,000:1 contrast ratio; 400 cd/m² brightness\r\n    * 1920 x 1200 maximum resolution; wide 170° horizontal and vertical viewing angles\r\n'),(398,10,506,0,152,'5 ms response time; 10,000:1 contrast ratio; 400 cd/m² brightness; 1920 x 1200 maximum resolution; DVI-D and 15-pin D-sub inputs'),(399,10,506,0,153,'Intel Core 2 Extreme QX9775 Processor BX80574QX9775 - 45nm, 3.20GHz, 12MB Cache, 1600MHz FSB, Yorkfield XE, Quad-Core, Retail, Socket 771, Processor'),(400,10,104,0,154,''),(401,10,97,0,154,'1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache'),(402,10,506,0,154,'1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache'),(403,10,531,0,154,''),(404,10,499,0,155,'5400 rpm'),(405,10,104,0,155,''),(406,10,500,0,156,'19\"'),(407,10,506,0,156,'2 ms response time; 10,000:1 contrast ratio; 300 cd/m² brightness; 1440 x 900 maximum resolution; DVI-D and 15-pin D-sub inputs'),(408,10,531,0,156,''),(409,10,500,0,157,'30\"'),(410,10,104,0,157,''),(411,10,97,0,157,'    * Digital (DVI), USB 2.0 and FireWire 400 inputs\r\n    * Cinema HD delivers up to 16.7 million colors across a wide gamut for a breathtaking, vivid picture\r\n    * ColorSync technology lets you create a custom profile to maintain consistent colors on the screen and in print\r\n    * Single cable with breakout for DVI, USB and FireWire ports provides a tidy look while reducing clutter\r\n    * Built-in, 2-port USB 2.0 hub to easily connect peripheral devices\r\n    * User controls allow you to monitor display power, system sleep/wake, brightness and monitor tilt\r\n    * Antiglare, hard-coat screen treatment\r\n    * Wall-mountable with optional mounting kit (not included)\r\n    * ENERGY STAR compliance assures a high standard of energy efficiency\r\n'),(412,10,506,0,157,'Computer games, digital photo editing and graphic applications will astound you on this huge 30\" flat-panel monitor. Cinema HD and ColorSync technology let you enjoy 16.7 million breathtaking colors and custom profiling for color consistency.'),(413,10,97,0,158,' <ul>\r\n<ul class=\"disc\">\r\n<li>Processor: The Ultra Low Voltage Intel Core Solo U1500 processor offers a 1.33 GHz speed paired with a fast 533 MHz front-side bus and large 2 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system\'s performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.) The Core Solo processor delivers enhanced performance for today\'s demanding applications such as CAD tools, 3-D and 2-D modeling, video editing, digital music, digital photography and gaming. And Intel\'s Smart Cache technology enables smarter, more efficient cache and bus design for enhanced performance, responsiveness and power savings.</li>\r\n</ul>\r\n'),(414,10,97,0,159,'The most comfortable ergonomic keyboard on the market! We just made a great deal for this Microsoft Natural ergonomic keyboard. And we know you’re going to love it. This newest addition to the world’s best selling line of ergonomic keyboards features a natural wrist alignment that will make your day! Just one touch allows you to perform a wealth of common but important tasks such as opening documents and replying to e-mail. The Microsoft Natural Model 4000 ergonomic keyboard also features an improved number pad with easy-to-reach symbols such left and right, equal sign and back space placed just above the number pad. Easy-access to the Internet. Multimedia keys. Lockable F keys and much more (see complete list of additional features below). Don’t you think it’s time to go natural? Microsoft’s Natural Ergonomic Model 4000 Keyboard. Available right here, for the best price!'),(415,10,506,0,159,'The most comfortable ergonomic keyboard on the market! We just made a great deal for this Microsoft Natural ergonomic keyboard.'),(416,10,531,0,159,''),(417,10,104,0,160,''),(418,10,97,0,160,'Our most advanced trackball yet: a comfortable, cordless, finger-operated trackball that works where you need it. Save space and eliminate desktop clutter. Take advantage of extra buttons that help you navigate around Windows and the web more easily. And with Logitech\'s patented optical technology, you get virtually maintenance-free precision and smooth tracking.'),(419,10,506,0,160,'Our most advanced trackball yet. It\'s comfortable, cordless, finger-operated and works where you need it. Save space and eliminate desktop clutter.'),(420,10,531,0,160,''),(421,10,104,0,161,''),(422,10,97,0,161,'PerfectStroke key system for the ultimate keyboard feel. Bluetooth wireless and Li-Ion powered. Stylishly sleek with its elegant charging base and backlit controls, the diNovo Edge makes a bold statement.\r\n\r\nAn ideal partner for any high-end computer, the ultra-slim Logitech diNovo Edge delivers the ultimate in feel and response. The revolutionary TouchDisc with hyper-speed scrolling and pixel-perfect control makes trackpads obsolete. A slim recharging base doubles as a keyboard stand. Work longer thanks to the longer-lasting Li-Ion batteries, and more securely via Bluetooth wireless technology. Combine it with the world\'s most advanced mouse, the Logitech MX Revolution, for a premium desktop experience!'),(423,10,506,0,161,'PerfectStroke key system for the ultimate keyboard feel. Bluetooth wireless and Li-Ion powered.'),(424,10,531,0,161,''),(425,10,104,0,162,''),(426,10,97,0,162,'Experience smoother tracking and wireless freedom. Navigate with enhanced precision with this ergonomic High Definition Optical mouse. Easily enlarge and edit detail with the new Magnifier and enjoy more than six months of battery life. '),(427,10,506,0,162,'Experience smoother tracking and wireless freedom. Navigate with enhanced precision with this ergonomic High Definition Optical mouse.'),(428,10,531,0,162,''),(429,10,531,0,25,''),(430,10,104,0,163,''),(431,10,97,0,163,'Make a computer'),(432,10,506,0,163,'Make a computer'),(433,10,531,0,163,''),(434,10,104,0,164,''),(435,10,97,0,164,'Make a computer'),(436,10,506,0,164,'Make a computer'),(437,10,531,0,164,''),(438,10,104,0,165,''),(439,10,506,0,165,'test description'),(440,10,97,0,165,'test description'),(441,10,531,0,165,''),(442,10,495,0,166,'HTC Touch Diamond'),(443,10,104,0,166,''),(444,10,506,0,166,'Re-defining the perception of advanced mobile phones… the HTC Touch Diamond™ signals a giant leap forward in combining hi-tech prowess with intuitive usability and exhilarating design.'),(445,10,97,0,166,'Re-defining the perception of advanced mobile phones… the HTC Touch Diamond™ signals a giant leap forward in combining hi-tech prowess with intuitive usability and exhilarating design.\r\n\r\nFeaturing a sharp 2.8-inch touch screen housed within a stunning formation of brushed metal and flawless faceted edges, the HTC Touch Diamond is as beautiful to behold as it is to use.\r\n\r\nWith HTC’s vibrant touch-responsive user interface, TouchFLO™ 3D, and ultra-fast HSDPA internet connectivity… the HTC Touch Diamond offers a rich online experience to rival a notebook computer, allowing you to interact with Google, YouTube, and Wikipedia as freely as you would with a broadband connection.\r\n\r\nYour contacts, favourite music, videos and photos are no longer an uninspired line of text. With TouchFLO 3D, album artwork, video stills and snapshots of your friends’ and family’s faces are brought to life for you to interact, play and launch at your fingertips.\r\n\r\nA 3.2 megapixel auto-focus camera will help you capture the perfect moment in style and with a massive 4GB of internal storage you can keep all the files you need. The integrated ultra-sensitive GPS will help you find your destination as quickly and efficiently as a dedicated satellite navigation unit.\r\n\r\nStyle and substance in a phone are no longer mutually exclusive. The HTC Touch Diamond has arrived.'),(446,10,492,0,166,'Re-defining the perception of advanced mobile phones… the HTC Touch Diamond™ signals a giant leap forward in combining hi-tech prowess with intuitive usability and exhilarating design.\r\n\r\nFeaturing a sharp 2.8-inch touch screen housed within a stunning formation of brushed metal and flawless faceted edges, the HTC Touch Diamond is as beautiful to behold as it is to use.\r\n\r\nWith HTC’s vibrant touch-responsive user interface, TouchFLO™ 3D, and ultra-fast HSDPA internet connectivity… the HTC Touch Diamond offers a rich online experience to rival a notebook computer, allowing you to interact with Google, YouTube, and Wikipedia as freely as you would with a broadband connection.\r\n\r\nYour contacts, favourite music, videos and photos are no longer an uninspired line of text. With TouchFLO 3D, album artwork, video stills and snapshots of your friends’ and family’s faces are brought to life for you to interact, play and launch at your fingertips.\r\n\r\nA 3.2 megapixel auto-focus camera will help you capture the perfect moment in style and with a massive 4GB of internal storage you can keep all the files you need. The integrated ultra-sensitive GPS will help you find your destination as quickly and efficiently as a dedicated satellite navigation unit.\r\n\r\nStyle and substance in a phone are no longer mutually exclusive. The HTC Touch Diamond has arrived.'),(447,10,494,0,166,'102 mm (L) X 51 mm (W) X 11.35 mm (T)'),(448,10,496,0,166,''),(449,10,531,0,166,''),(450,10,531,0,108,''),(451,10,531,0,94,''),(452,10,531,0,30,''),(453,10,531,0,95,''),(454,10,531,0,96,''),(455,10,531,0,97,''),(456,10,531,0,93,''),(457,10,531,0,35,''),(458,10,531,0,117,''),(459,10,531,0,32,''),(460,10,531,0,110,''),(461,10,531,0,109,''),(462,10,531,0,111,''),(463,10,531,0,36,''),(464,10,531,0,137,''),(465,10,531,0,38,''),(466,10,531,0,128,''),(467,10,531,0,130,''),(468,10,531,0,127,''),(469,10,531,0,129,''),(470,10,531,0,131,''),(471,10,531,0,37,''),(472,10,531,0,124,''),(473,10,531,0,125,''),(474,10,531,0,122,''),(475,10,531,0,121,''),(476,10,531,0,29,''),(477,10,531,0,84,''),(478,10,531,0,86,''),(479,10,531,0,85,''),(480,10,531,0,87,''),(481,10,531,0,88,''),(482,10,531,0,89,''),(483,10,531,0,90,''),(484,10,531,0,91,''),(485,10,531,0,92,''),(486,10,531,0,100,''),(487,10,531,0,101,''),(488,10,531,0,102,''),(489,10,531,0,99,''),(490,10,531,0,34,''),(491,10,531,0,104,''),(492,10,531,0,31,''),(493,10,531,0,105,''),(494,10,531,0,106,''),(495,10,531,0,107,''),(496,10,531,0,113,''),(497,10,531,0,114,''),(498,10,531,0,115,''),(499,10,531,0,33,''),(500,10,531,0,74,''),(501,10,531,0,79,''),(502,10,531,0,75,''),(503,10,531,0,80,''),(504,10,531,0,81,''),(505,10,531,0,82,''),(506,10,531,0,49,''),(507,10,531,0,135,''),(508,10,531,0,112,''),(509,10,531,0,103,''),(510,10,531,0,98,''),(511,10,531,0,16,''),(512,10,531,0,17,''),(513,10,531,0,18,''),(514,10,531,0,19,''),(515,10,531,0,20,''),(516,10,531,0,45,''),(517,10,531,0,46,''),(518,10,531,0,47,''),(519,10,531,0,48,''),(520,10,494,0,52,''),(521,10,531,0,52,''),(522,10,494,0,53,''),(523,10,531,0,53,''),(524,10,494,0,54,''),(525,10,531,0,54,''),(526,10,104,0,132,''),(527,10,531,0,132,''),(528,10,492,0,30,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(529,10,104,0,30,'ASICS® Men\'s GEL-Kayano® XII '),(530,10,495,0,31,'B000NOGIKY'),(531,10,97,0,31,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you\'re certain to catch a lot of attention.'),(532,10,492,0,31,'A prime example of chic style. Patent leather upper. Round toe. 3-1/2 inch covered heel. Flex leather sole. Imported. '),(533,10,104,0,31,'Steven by Steve Madden Pryme Pump'),(534,10,492,0,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(535,10,104,0,33,'ECCO Womens Golf Flexor Golf Shoe'),(536,10,495,0,34,'B000IKC6AY'),(537,10,97,0,34,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(538,10,492,0,34,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(539,10,104,0,34,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(540,10,495,0,37,'The Only Children: Paisley T-Shirt'),(541,10,97,0,37,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Double-needle sleeves and bottom hem'),(542,10,104,0,37,'The Only Children: Paisley T-Shirt'),(543,10,495,0,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(544,10,97,0,38,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(545,10,104,0,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(546,10,509,0,42,'Bamboo'),(547,10,97,0,42,'Entirely handcrafted of solid Bamboo. Designed for use with a mattress alone, it includes a sturdy, padded wood platform for comfort and proper mattress support.'),(548,10,104,0,42,'bamboo, barcelona, platform, bed'),(549,10,495,0,44,'Rebel XT '),(550,10,494,0,44,'5 x 3.7 x 2.5 inches'),(551,10,97,0,44,'The Canon EOS Digital Rebel camera now has a new, faster, even smaller big brother. Sibling rivalries aside, the 8.0-megapixel Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. Even with its advancements in ergonomic design and technology, this easy-to-use EOS digital camera is compatible with all of Canon\'s EF lenses, including the EF-S lenses.'),(552,10,506,0,33,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(553,10,506,0,32,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(554,10,506,0,31,'Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe'),(555,10,506,0,29,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(556,10,506,0,28,'Get the competitive edge with the Gateway M285-E. This widescreen Convertible Notebook functions as both a conventional notebook and a tablet.'),(557,10,506,0,27,'Take a load off your shoulders when you\'re racing for your plane with the sleekly designed and ultra-portable Sony Vaio VGN-TXN27N/B notebook PC.'),(558,10,506,0,26,'This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success'),(559,10,506,0,25,'You\'ve seen improvements in notebook performance before - but never on this scale. The Intel Core Duo powering MacBook Pro is actually two processors built into a single chip.'),(560,10,506,0,20,'The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. '),(561,10,506,0,45,'The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.'),(562,10,506,0,46,'A technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom.'),(563,10,506,0,47,'Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.'),(564,10,506,0,48,'Small on size. Big on value. Kodak\'s newest C-Series digital camera, the C530, sports awesome features'),(565,10,506,0,49,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(566,10,506,0,51,'With durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.'),(567,10,506,0,52,'Combining a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.'),(568,10,506,0,53,'For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!'),(569,10,104,0,75,'womens, sandal, leather, anashria, '),(570,10,506,0,75,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(571,10,495,0,79,'B000KJ43SG'),(572,10,97,0,79,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(573,10,492,0,79,'Womens Premier Leather Single Layer Narrow Strap - '),(574,10,104,0,79,'womens, sandal, leather, anashria, '),(575,10,506,0,79,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(576,10,495,0,80,'B000KJ43SG'),(577,10,97,0,80,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(578,10,97,0,82,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(579,10,492,0,82,'Womens Premier Leather Single Layer Narrow Strap - '),(580,10,104,0,82,'womens, sandal, leather, anashria, '),(581,10,506,0,82,'Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.'),(582,10,495,0,83,'B000JI2N0I'),(583,10,104,0,83,'cn, clogs, outdoor, shoes, sandals, comfortable'),(584,10,506,0,83,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(585,10,97,0,83,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(586,10,492,0,83,'<ul>\r\n<ul class=\"disc\">\r\n<li>Made of EVA foam<br></li>\r\n<li>Heel strap keeps shoe on foot<br></li>\r\n<li>Non-marking, slip-resistant outsole<br></li>\r\n<li> Weigh just 6-10 ounces<br></li>\r\n'),(587,10,506,0,84,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(588,10,495,0,85,'B000JI2N0I'),(589,10,97,0,85,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(590,10,492,0,85,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(591,10,492,0,86,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(592,10,104,0,86,'CN Clogs Beach/Garden Clog '),(593,10,506,0,86,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(594,10,495,0,87,'B000JI2N0I'),(595,10,495,0,88,'B000JI2N0I'),(596,10,97,0,88,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(597,10,492,0,88,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(598,10,104,0,88,'CN Clogs Beach/Garden Clog '),(599,10,104,0,89,'CN Clogs Beach/Garden Clog '),(600,10,506,0,89,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(601,10,495,0,90,'B000JI2N0I'),(602,10,97,0,90,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(603,10,97,0,91,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.'),(604,10,492,0,91,'    * Made of EVA foam\r\n    * Heel strap keeps shoe on foot\r\n    * Non-marking, slip-resistant outsole\r\n    * Weigh just 6-10 ounces\r\n\r\n'),(605,10,104,0,91,'CN Clogs Beach/Garden Clog '),(606,10,506,0,91,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(607,10,506,0,92,'Comfortable and fun to wear these clogs are the latest trend in fashion footwear'),(608,10,495,0,93,'B000CP1M00'),(609,10,104,0,93,'asics, gel, kayano'),(610,10,506,0,93,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. '),(611,10,97,0,94,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.'),(612,10,492,0,94,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(613,10,104,0,94,'ASICS® Men\'s GEL-Kayano® XII '),(614,10,492,0,95,'# I.G.S.?: Allows for natural foot movement from heel strike to toe-off\r\n# DuoMax? Support System: Maintains proper support for the foot during the critical transition from heel strike to toe-off\r\n# Space Trusstic System?: Allows for greater midsole deformation and more efficient foot function\r\n# GEL? Cushioning System: Provides maximum rearfoot/forefoot shock attenuation\r\n# Biomorphic Fit Upper: Provides enhanced upper fit and comfort while limiting irritation'),(615,10,104,0,95,'ASICS® Men\'s GEL-Kayano® XII '),(616,10,506,0,95,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(617,10,104,0,96,'ASICS® Men\'s GEL-Kayano® XII '),(618,10,506,0,96,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(619,10,495,0,97,'B000CP1M00'),(620,10,506,0,97,'The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. '),(621,10,495,0,98,'B000IKC6AY'),(622,10,104,0,98,'Kenneth Cole, New York, Men\'s, Con-verge, Slip-on'),(623,10,506,0,98,'Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe.'),(624,10,97,0,98,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(625,10,492,0,98,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(626,10,495,0,99,'B000IKC6AY'),(627,10,97,0,99,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(628,10,492,0,99,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(629,10,97,0,100,'High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.'),(630,10,492,0,100,'The handsome style of the Con-Verge slip-on from Kenneth Cole New York is larger than life. This sharp shoe has a semi-polished smooth leather upper, a squared off stitched apron toe, and dual-goring for easy on/off accessibility. It also features soft leather linings, a cushioned insole, and a paneled rubber outsole for a sturdy step. The Con-Verge is a perfect companion to your business and special occasion wardrobes.'),(631,10,104,0,100,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(632,10,492,0,110,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(633,10,104,0,110,'Nine West Women\'s Lucero Pump '),(634,10,506,0,110,'The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp'),(635,10,495,0,111,'B000LJQVF8'),(636,10,492,0,111,'The perfect pump will suit any ensemble. Leather upper. 3-3/4 inch stacked heel. Man-made sole. Imported. '),(637,10,104,0,111,'Nine West Women\'s Lucero Pump '),(638,10,97,0,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(639,10,492,0,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(640,10,104,0,113,'ECCO Womens Golf Flexor Golf Shoe'),(641,10,506,0,113,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links.'),(642,10,97,0,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(643,10,492,0,114,'Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you\'ll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.'),(644,10,495,0,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(645,10,97,0,127,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(646,10,506,0,127,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(647,10,495,0,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(648,10,97,0,128,'# 6.1 oz. 100% preshrunk heavyweight cotton \r\n# Shoulder-to-shoulder taping\r\n# Double-needle sleeves and bottom hem'),(649,10,104,0,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(650,10,506,0,131,'Printed on American Apparel Classic style 5495 California t-shirts.  '),(651,10,506,0,133,'A stylish digital camera demands stylish protection. This leather carrying case will defend your camera from the dings and scratches of travel and everyday use while looking smart all the time.'),(652,10,97,0,132,'Sturdy, lightweight tripods are designed to meet the needs of amateur and professional photographers and videographers.'),(653,10,506,0,132,'Sturdy, lightweight tripods are designed to meet the needs of amateur and professional photographers and videographers.'),(654,10,494,0,26,''),(655,10,531,0,26,''),(656,10,531,0,134,''),(657,10,531,0,118,''),(658,10,494,0,51,''),(659,10,97,0,138,'This superb, multi-functional Aspire X-Cruiser mid tower case is designed to follow Intel\'s recommendations to achieve the highest level of thermal performance. This gorgeous case outperforms most of the expensive chassis in the market, boasts an abundance of innovative features, yet carries a very affordable price tag. The Aspire X-Cruiser is fully loaded with everything you could possibly imagine that a great gaming case could have. With a built-in air duct on the side panel to funnel cool air towards the CPU, the fan-less X-Cruiser is specially designed to bring out the best performance in systems based on high-end processors.'),(660,10,506,0,138,'This magnificent new case features 2 x 80mm built-in fans with space for 2 optional fans. The Aspire X-Cruiser features front temperature gauge, front fan speed controller and gauge, and front volume controller and gauge. It also features USB2.0, Firewire and audio ports. The superior cooling solution that X-Cruiser delivers can only be found in very few of the expensive chassis in the market.'),(661,10,104,0,139,''),(662,10,97,0,139,'Introducing the next advancement in case design and technology, the Lexa. Designed from ground up to be symmetrical, the Lexa is representative of the modern lifestyle design cues of today. The Lexa\'s minimalist and classy design fits perfectly under the NZXT Classic Series line.'),(663,10,506,0,139,'The Lexa boasts a ridgid, but light weight aluminum chassis. The Lexa\'s high-air-flow design, while quiet, ensures cooling options for the more ambitious computing enthusiasts. Three thermal probes provide temperature readings to the illuminated LCD display for monitoring your systems core components. The Lexa ships with a rugged carrying strap with protective window cover for easy single-handed transportation.'),(664,10,97,0,141,'Crucial 1024MB PC4200 DDR2 533MHz Memory\r\nCrucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.\r\n\r\nEvery single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality. '),(665,10,506,0,141,'Crucial 1024MB PC4200 DDR2 533MHz Memory\r\nCrucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.\r\n\r\nEvery single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality. '),(666,10,104,0,142,'1 Year Warranty - Parts and Labor'),(667,10,97,0,142,'1 Year Extended Warranty - Parts and Labor'),(668,10,506,0,142,'1 Year Extended Warranty - Parts and Labor'),(669,10,506,0,145,'Deliver more sophisticated solutions with the leading-edge technology of AMD Phenom™ 9000 Series processor.'),(670,10,104,0,146,'3 Year Warranty - Parts and Labor'),(671,10,97,0,146,'3 Year Extended Warranty - Parts and Labor'),(672,10,506,0,146,'3 Year Extended Warranty - Parts and Labor'),(673,10,104,0,150,''),(674,10,97,0,150,'500GB- 7200RPM, SATA 3.0Gb/s, 32MB Cache'),(675,10,506,0,150,'500GB - 7200RPM, SATA 3.0Gb/s, 32MB Cache'),(676,10,104,0,151,''),(677,10,97,0,151,'Intel® Core™2 Duo processor is the new brand name for our next-generation energy-efficient performance desktop and mobile processors. Formerly known by their codenames Conroe and Merom, the Intel® Core™2 processors for desktop and mobile computers are based on the Intel® Core™ microarchitecture, Intel\'s new industry-leading foundation for all mobile, desktop and server platforms moving forward.'),(678,10,531,0,152,''),(679,10,104,0,153,''),(680,10,97,0,153,'The new Intel® Core™2 Extreme processor QX9775 with hafnium-infused chip design delivers unrivaled gaming performance1 with four independent processing cores, 12 MB of cache, 1600 MHz Front Side Bus, and clock speeds of 3.2 GHz.The Intel® Core™2 Extreme processor is the world’s first quad core desktop processor, delivering the latest in cutting-edge processor technology and unprecedented performance across a wide range of applications and benchmarks. All Intel Core 2 Extreme processor QX9000 series are based on the industry-leading 45nm manufacturing technology, providing another giant leap forward on the road to multi-core and parallel computing.'),(681,10,531,0,153,''),(682,10,499,0,154,'5400 rpm'),(683,10,97,0,155,'1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache'),(684,10,506,0,155,'1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache'),(685,10,531,0,155,''),(686,10,104,0,156,''),(687,10,97,0,156,'Experience smooth gaming visuals and crystal-clear video with this 19\" flat-panel LCD monitor that features an ultrafast 2 ms response time and sharp 10,000:1 contrast. The DVI-D with HDCP input lets you connect a DVD player or other digital video device.\r\nProduct Features\r\n\r\n    * Ultrafast 2 ms response time\r\n    * Digital Fine 10,000:1 contrast ratio; 300 cd/m² brightness\r\n    * 1440 x 900 maximum resolution; wide 170° horizontal and vertical viewing angles\r\n'),(688,10,531,0,157,''),(689,10,104,0,158,'Sony, VAIO, VGN-TXN27N/B , Notebook, PC, Intel, 2 GB RAM, '),(690,10,506,0,158,'Weighing in at just an amazing 2.84 pounds and offering a sleek, durable carbon-fiber case in charcoal black. And with 4 to 10 hours of standard battery life, it has the stamina to power you through your most demanding applications. With the integrated wireless WAN, you can access the national Sprint Mobile Broadband service to extend your wireless coverage beyond LAN access networks and hotspots, giving you the freedom to go farther, do more, and stay connected.\r\n\r\n'),(691,10,531,0,158,''),(692,10,104,0,159,'');
/*!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`;
CREATE TABLE `catalog_product_entity_tier_price` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_id` int(10) unsigned NOT NULL default '0',
  `all_groups` tinyint(1) unsigned NOT NULL default '1',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0',
  `qty` decimal(12,4) NOT NULL default '1.0000',
  `value` decimal(12,4) NOT NULL default '0.0000',
  `website_id` smallint(5) unsigned NOT NULL,
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_TIER_PRICE_PRODUCT_ENTITY` (`entity_id`),
  KEY `FK_catalog_product_entity_tier_price_group` (`customer_group_id`),
  KEY `FK_CATALOG_PRODUCT_TIER_WEBSITE` (`website_id`),
  CONSTRAINT `FK_catalog_product_entity_tier_price_group` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TIER_PRICE_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_TIER_WEBSITE` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
--
-- 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 */;
INSERT INTO `catalog_product_entity_tier_price` VALUES (1,44,1,0,'2.0000','449.0000',0),(2,123,1,0,'5.0000','90.0000',0),(3,123,1,0,'10.0000','80.0000',0),(4,123,1,0,'20.0000','70.0000',0),(5,120,1,0,'5.0000','21.0000',0),(6,120,1,0,'10.0000','20.0000',0),(7,120,1,0,'20.0000','18.0000',0),(8,126,1,0,'5.0000','12.5000',0),(9,126,1,0,'10.0000','11.5000',0),(10,126,1,0,'20.0000','9.5000',0);
/*!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`;
CREATE TABLE `catalog_product_entity_varchar` (
  `value_id` int(11) NOT NULL auto_increment,
  `entity_type_id` mediumint(8) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`value_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_VARCHAR_ATTRIBUTE` (`attribute_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_VARCHAR_STORE` (`store_id`),
  KEY `FK_CATALOG_PRODUCT_ENTITY_VARCHAR_PRODUCT_ENTITY` (`entity_id`),
  KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_VARCHAR_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_VARCHAR_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_VARCHAR_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1278 DEFAULT CHARSET=utf8;
--
-- 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 (1,10,96,0,16,'Nokia 2610 Phone'),(2,10,102,0,16,'20'),(3,10,481,0,16,'nokia-2610-phone'),(4,10,103,0,16,'Nokia 2610'),(5,10,105,0,16,'Offering advanced media and calling features without breaking the bank, The Nokia 2610 is an easy to use'),(6,10,106,0,16,'/n/o/nokia-2610-phone-2.jpg'),(7,10,109,0,16,'/n/o/nokia-2610-phone-2.jpg'),(8,10,493,0,16,'/n/o/nokia-2610-phone-2.jpg'),(9,10,96,0,17,'BlackBerry 8100 Pearl'),(10,10,102,0,17,'21'),(11,10,481,0,17,'blackberry-8100-pearl'),(12,10,103,0,17,'BlackBerry 8100 Pearl'),(13,10,105,0,17,'BlackBerry 8100 Pearl sports a large 240 x 260 screen that supports over 65,000 colors-- plenty of real estate to view your e-mails, Web browser content, messaging sessions, and attachments.'),(14,10,493,0,17,'/b/l/blackberry-8100-pearl-2.jpg'),(15,10,109,0,17,'/b/l/blackberry-8100-pearl-2.jpg'),(16,10,106,0,17,'/b/l/blackberry-8100-pearl-2.jpg'),(17,10,96,0,18,'Sony Ericsson W810i'),(18,10,102,0,18,'2'),(19,10,481,0,18,'sony-ericsson-w810i'),(20,10,103,0,18,'Sony Ericsson W810i'),(21,10,105,0,18,'The W810i follows a long tradition of beautifully designed and crafted phones from Sony Ericsson. The same candy-bar style that graced the W800 is here, as is the horizontally-oriented camera unit on the back of the phone, allowing you to hold the phone j'),(22,10,493,0,18,'/s/o/sony-ericsson-w810i-2.jpg'),(23,10,109,0,18,'/s/o/sony-ericsson-w810i-2.jpg'),(24,10,106,0,18,'/s/o/sony-ericsson-w810i-2.jpg'),(25,10,96,0,20,'Samsung MM-A900M Ace'),(26,10,102,0,20,'3'),(27,10,481,0,20,'samsung-mm-a900m-ace'),(28,10,103,0,20,'Samsung MM-A900M Ace Phone'),(29,10,105,0,20,'New services supported by both the MM-A900m include the newly announced Sprint Music StoreSM, which allows users to immediately buy and download complete songs directly to their phone'),(30,10,493,0,20,'/s/a/samsung-mm-a900m-ace.jpg'),(31,10,109,0,20,'/s/a/samsung-mm-a900m-ace.jpg'),(32,10,106,0,20,'/s/a/samsung-mm-a900m-ace.jpg'),(33,10,96,0,25,'Apple MacBook Pro MA464LL/A 15.4\" Notebook PC'),(34,10,481,0,25,'apple-macbook-pro-ma464ll-a-15-4-notebook-pc-2-0-ghz-intel-core-duo-1-gb-ram-100-gb-hard-drive-superdrive'),(35,10,103,0,25,'Apple MacBook Pro MA464LL/A 15.4\" Notebook PC (2.0 GHz Intel Core Duo, 1 GB RAM, 100 GB Hard Drive, SuperDrive)'),(36,10,105,0,25,'Apple MacBook Pro MA464LL/A 15.4\" Notebook PC (2.0 GHz Intel Core Duo, 1 GB RAM, 100 GB Hard Drive, SuperDrive)'),(37,10,493,0,25,'/a/p/apple-macbook-pro-ma464ll-a-15-4-notebook-pc.jpg'),(38,10,109,0,25,'/a/p/apple-macbook-pro-ma464ll-a-15-4-notebook-pc.jpg'),(39,10,106,0,25,'/a/p/apple-macbook-pro-ma464ll-a-15-4-notebook-pc.jpg'),(40,10,96,0,26,'Acer Ferrari 3200 Notebook Computer PC'),(41,10,481,0,26,'acer-ferrari-3200-notebook-computer-pc'),(42,10,103,0,26,'Acer Ferrari 3200 Notebook Computer PC'),(43,10,105,0,26,'Acer Ferrari 3200 Notebook Computer PC'),(44,10,493,0,26,'/a/c/acer-ferrari-3200-notebook-computer-pc.jpg'),(45,10,109,0,26,'/a/c/acer-ferrari-3200-notebook-computer-pc.jpg'),(46,10,106,0,26,'/a/c/acer-ferrari-3200-notebook-computer-pc.jpg'),(47,10,96,0,27,'Sony VAIO VGN-TXN27N/B 11.1\" Notebook PC'),(48,10,481,0,27,'sony-vaio-vgn-txn27n-b-11-1-notebook-pc'),(49,10,103,0,27,'Sony VAIO VGN-TXN27N/B 11.1\" Notebook PC (Intel Core Solo Processor U1500, 2 GB RAM, 100 GB Hard Drive, DVD±RW Drive, Vista Business) Charcoal Black'),(50,10,105,0,27,'Sony VAIO VGN-TXN27N/B 11.1\" Notebook PC (Intel Core Solo Processor U1500, 2 GB RAM, 100 GB Hard Drive, DVD±RW Drive, Vista Business) Charcoal Black'),(51,10,493,0,27,'/s/o/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.jpg'),(52,10,109,0,27,'/s/o/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.jpg'),(53,10,106,0,27,'/s/o/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.jpg'),(54,10,96,0,28,'Toshiba M285-E 14\"'),(55,10,481,0,28,'toshiba-satellite-a135-s4527-155-4-notebook-pc-intel-pentium-dual-core-processor-t2080-1-gb-ram-120-gb-hard-drive-supermulti-dvd-drive-vista-premium'),(56,10,103,0,28,'Toshiba Satellite A135-S4527 155.4\" Notebook PC (Intel Pentium Dual Core Processor T2080, 1 GB RAM, 120 GB Hard Drive, SuperMulti DVD Drive, Vista Premium)'),(57,10,105,0,28,'Toshiba M285-E 14\" Convertible Notebook PC (Intel Core Duo Processor T2300E, 1 GB RAM, 60'),(58,10,493,0,28,'/t/o/toshiba-m285-e-14.jpg'),(59,10,109,0,28,'/t/o/toshiba-m285-e-14.jpg'),(60,10,106,0,28,'/t/o/toshiba-m285-e-14.jpg'),(61,10,96,0,29,'CN Clogs Beach/Garden Clog'),(62,10,481,0,29,'cn-clogs-beach-garden-clog-3'),(63,10,103,0,29,'CN Clogs Beach/Garden Clog'),(64,10,105,0,29,'CN Clogs Beach/Garden Clog'),(65,10,493,0,29,'/c/n/cn-clogs-beach-garden-clog-4.jpg'),(66,10,109,0,29,'/c/n/cn-clogs-beach-garden-clog-3.jpg'),(67,10,106,0,29,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(68,10,96,0,30,'ASICS® Men\'s GEL-Kayano® XII'),(69,10,481,0,30,'asics-men-s-gel-kayano-xii-8'),(70,10,103,0,30,'ASICS® Men\'s GEL-Kayano® XII'),(71,10,105,0,30,'ASICS® Men\'s GEL-Kayano® XII'),(72,10,493,0,30,'no_selection'),(73,10,109,0,30,'no_selection'),(74,10,106,0,30,'no_selection'),(75,10,96,0,31,'Steven by Steve Madden Pryme Pump'),(76,10,481,0,31,'steven-by-steve-madden-pryme-pump-4'),(77,10,103,0,31,'Steven by Steve Madden Pryme Pump'),(78,10,105,0,31,'Steven by Steve Madden Pryme Pump'),(79,10,493,0,31,'/s/t/steven-by-steve-madden-pryme-pump-4.jpg'),(80,10,109,0,31,'/s/t/steven-by-steve-madden-pryme-pump-3.jpg'),(81,10,106,0,31,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(82,10,96,0,32,'Nine West Women\'s Lucero Pump'),(83,10,481,0,32,'nine-west-women-s-lucero-pump-3'),(84,10,103,0,32,'Nine West Women\'s Lucero Pump'),(85,10,105,0,32,'Nine West Women\'s Lucero Pump'),(86,10,493,0,32,'no_selection'),(87,10,109,0,32,'no_selection'),(88,10,106,0,32,'no_selection'),(89,10,96,0,33,'ECCO Womens Golf Flexor Golf Shoe'),(90,10,481,0,33,'ecco-womens-golf-flexor-golf-shoe-3'),(91,10,103,0,33,'ECCO Womens Golf Flexor Golf Shoe'),(92,10,105,0,33,'ECCO Womens Golf Flexor Golf Shoe'),(93,10,493,0,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-4.jpg'),(94,10,109,0,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-3.jpg'),(95,10,106,0,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(96,10,96,0,34,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(97,10,481,0,34,'kenneth-cole-new-york-men-s-con-verge-slip-on-8'),(98,10,103,0,34,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(99,10,105,0,34,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(100,10,493,0,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-4.jpg'),(101,10,109,0,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-3.jpg'),(102,10,106,0,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(103,10,96,0,35,'Coalesce: Functioning On Impatience T-Shirt'),(104,10,481,0,35,'coalesce-functioning-on-impatience-t-shirt-small'),(105,10,103,0,35,'Coalesce: Functioning On Impatience T-Shirt'),(106,10,105,0,35,'Coalesce: Functioning On Impatience T-Shirt'),(107,10,493,0,35,'no_selection'),(108,10,109,0,35,'no_selection'),(109,10,106,0,35,'no_selection'),(110,10,96,0,36,'Ink Eater: Krylon Bombear Destroyed Tee'),(111,10,481,0,36,'ink-eater-krylon-bombear-destroyed-tee-sm'),(112,10,103,0,36,'Ink Eater: Krylon Bombear Destroyed Tee'),(113,10,105,0,36,'Ink Eater: Krylon Bombear Destroyed Tee'),(114,10,493,0,36,'no_selection'),(115,10,109,0,36,'no_selection'),(116,10,106,0,36,'no_selection'),(117,10,96,0,37,'The Only Children: Paisley T-Shirt'),(118,10,481,0,37,'the-only-children-paisley-t-shirt-sm'),(119,10,103,0,37,'The Only Children: Paisley T-Shirt'),(120,10,105,0,37,'The Only Children: Paisley T-Shirt'),(121,10,493,0,37,'/t/h/the-only-children-paisley-t-shirt-3.jpg'),(122,10,109,0,37,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(123,10,106,0,37,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(124,10,96,0,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(125,10,481,0,38,'zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-r-sm'),(126,10,103,0,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(127,10,105,0,38,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(128,10,493,0,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-3.jpg'),(129,10,109,0,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(130,10,106,0,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(131,10,96,0,19,'AT&T 8525 PDA'),(132,10,481,0,19,'atandt-8525-pda'),(133,10,103,0,19,'AT&T 8525 PDA Phone'),(134,10,105,0,19,'nder the hood, the 8525 features 128MB of embedded memory and 64MB RAM, running on a 400 MHz Samsung processor. Up front, the 240 x 320 LCD touch-screen supports over 65,000 colors, while the rear of the device houses a 2.0 megapixel camera. The design of'),(135,10,493,0,19,'/a/t/at-t-8525-pda-1.jpg'),(136,10,109,0,19,'/a/t/at-t-8525-pda-1.jpg'),(137,10,106,0,19,'/a/t/at-t-8525-pda-1.jpg'),(138,10,96,0,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(139,10,481,0,39,'the-get-up-kids-band-camp-pullover-hoodie'),(140,10,103,0,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(141,10,105,0,39,'The Get Up Kids: Band Camp Pullover Hoodie'),(142,10,493,0,39,'/t/h/the-get-up-kids-band-camp-pullover-hoodie-1.jpg'),(143,10,109,0,39,'/t/h/the-get-up-kids-band-camp-pullover-hoodie-1.jpg'),(144,10,106,0,39,'/t/h/the-get-up-kids-band-camp-pullover-hoodie-1.jpg'),(145,10,96,0,41,'Akio Dresser'),(146,10,481,0,41,'akio-dresser'),(147,10,103,0,41,'Akio Dresser'),(148,10,105,0,41,'Our Akio dresser has a solid hardwood frame.  Features include inset panel sides and for spacious drawers and two wicker baskets.'),(149,10,493,0,41,'/a/k/akio-dresser.jpg'),(150,10,109,0,41,'/a/k/akio-dresser.jpg'),(151,10,106,0,41,'/a/k/akio-dresser.jpg'),(152,10,96,0,42,'Barcelona Bamboo Platform Bed'),(153,10,481,0,42,'barcelona-bamboo-platform-bed'),(154,10,103,0,42,'Barcelona Bamboo Platform Bed'),(155,10,105,0,42,'Our Barcelona platform bed captures the spirit and drama of late 20th century design with a variety of subtle details.'),(156,10,493,0,42,'/b/a/barcelona-bamboo-platform-bed.jpg'),(157,10,109,0,42,'/b/a/barcelona-bamboo-platform-bed.jpg'),(158,10,106,0,42,'/b/a/barcelona-bamboo-platform-bed.jpg'),(159,10,102,0,30,'64'),(160,10,96,0,44,'Canon Digital Rebel XT 8MP Digital SLR Camera'),(161,10,102,0,44,'34'),(162,10,481,0,44,'canon-digital-rebel-xt-8mp-digital-slr-camera-with-ef-s-18-55mm-f3-5-5-6-lens-black'),(163,10,103,0,44,'Canon Digital Rebel XT 8MP Digital SLR Camera with EF-S 18-55mm f3.5-5.6 Lens (Black)'),(164,10,105,0,44,'Canon Digital Rebel XT 8MP Digital SLR Camera with EF-S 18-55mm f3.5-5.6 Lens (Black)'),(165,10,493,0,44,'/c/a/canon-digital-rebel-xt-8mp-digital-slr-camera-1.jpg'),(166,10,109,0,44,'/c/a/canon-digital-rebel-xt-8mp-digital-slr-camera-1.jpg'),(167,10,106,0,44,'/c/a/canon-digital-rebel-xt-8mp-digital-slr-camera-1.jpg'),(168,10,96,0,45,' Argus QC-2185 Quick Click 5MP Digital Camera'),(169,10,102,0,45,'32'),(170,10,481,0,45,'argus-qc-2185-quick-click-5mp-digital-camera'),(171,10,103,0,45,'Argus QC-2185 Quick Click 2MP Digital Camera'),(172,10,105,0,45,'Argus QC-2185 Quick Click 2MP Digital Camera'),(173,10,493,0,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera-2.jpg'),(174,10,109,0,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera-2.jpg'),(175,10,106,0,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera-2.jpg'),(176,10,96,0,46,' Olympus Stylus 750 7.1MP Digital Camera'),(177,10,102,0,46,'33'),(178,10,481,0,46,'olympus-stylus-750-7-1mp-digital-camera'),(179,10,103,0,46,'Olympus Stylus 750 7.1MP Digital Camera with Digital Image Stabilized 5x Optical Zoom and CCD Shift Stabilization (Silver)'),(180,10,105,0,46,'Olympus Stylus 750 7.1MP Digital Camera with Digital Image Stabilized 5x Optical Zoom and CCD Shift Stabilization (Silver)'),(181,10,493,0,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera-2.jpg'),(182,10,109,0,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera-2.jpg'),(183,10,106,0,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera-2.jpg'),(184,10,96,0,47,'Canon PowerShot A630 8MP Digital Camera with 4x Optical Zoom'),(185,10,102,0,47,'34'),(186,10,481,0,47,'canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom'),(187,10,103,0,47,'Canon PowerShot A630 8MP Digital Camera with 4x Optical Zoom'),(188,10,105,0,47,'Canon PowerShot A630 8MP Digital Camera with 4x Optical Zoom'),(189,10,493,0,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom-2.jpg'),(190,10,109,0,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom-2.jpg'),(191,10,106,0,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom-2.jpg'),(192,10,96,0,48,'Kodak EasyShare C530 5MP Digital Camera'),(193,10,102,0,48,'31'),(194,10,481,0,48,'kodak-easyshare-c530-5mp-digital-camera'),(195,10,103,0,48,'Kodak EasyShare C530 5MP Digital Camera'),(196,10,105,0,48,'Kodak EasyShare C530 5MP Digital Camera'),(197,10,493,0,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera-2.jpg'),(198,10,109,0,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera-2.jpg'),(199,10,106,0,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera-2.jpg'),(200,10,96,0,49,'Anashria Womens Premier Leather Sandal'),(201,10,481,0,49,'anashria-womens-premier-leather-sandal-9'),(202,10,103,0,49,'Anashria Womens Premier Leather Sandal'),(203,10,105,0,49,'Anashria Womens Premier Leather Sandal'),(204,10,493,0,49,'/a/n/anashria-womens-premier-leather-sandal-4.jpg'),(205,10,109,0,49,'/a/n/anashria-womens-premier-leather-sandal-3.jpg'),(206,10,106,0,49,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(207,10,96,0,51,'Ottoman'),(208,10,481,0,51,'ottoman'),(209,10,103,0,51,'Ottoman'),(210,10,105,0,51,'Ottoman'),(211,10,493,0,51,'/o/t/ottoman.jpg'),(212,10,109,0,51,'/o/t/ottoman.jpg'),(213,10,106,0,51,'/o/t/ottoman.jpg'),(214,10,96,0,52,'Chair'),(215,10,481,0,52,'chair'),(216,10,103,0,52,'Chair'),(217,10,105,0,52,'Chair'),(218,10,493,0,52,'/c/h/chair.jpg'),(219,10,109,0,52,'/c/h/chair.jpg'),(220,10,106,0,52,'/c/h/chair.jpg'),(221,10,96,0,53,'Couch'),(222,10,481,0,53,'couch'),(223,10,103,0,53,'Couch'),(224,10,105,0,53,'Couch'),(225,10,493,0,53,'/c/o/couch.jpg'),(226,10,109,0,53,'/c/o/couch.jpg'),(227,10,106,0,53,'/c/o/couch.jpg'),(228,10,96,0,54,'Magento Red Furniture Set'),(229,10,481,0,54,'magento-red-furniture-set'),(230,10,103,0,54,'Magento Red Furniture Set'),(231,10,105,0,54,'Magento Red Furniture Set'),(232,10,493,0,54,'/m/a/magento-red-furniture-set.jpg'),(233,10,109,0,54,'/m/a/magento-red-furniture-set.jpg'),(234,10,106,0,54,'/m/a/magento-red-furniture-set.jpg'),(235,10,102,0,19,'101'),(236,10,102,0,49,'102'),(237,10,102,0,34,'103'),(238,10,102,0,33,'104'),(239,10,102,0,31,'62'),(240,10,102,0,29,'63'),(241,10,96,0,74,'Anashria Womens Premier Leather Sandal'),(242,10,481,0,74,'anashria-womens-premier-leather-sandal-3'),(243,10,103,0,74,'Anashria Womens Premier Leather Sandal'),(244,10,105,0,74,'Anashria Womens Premier Leather Sandal'),(245,10,493,0,74,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(246,10,109,0,74,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(247,10,106,0,74,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(248,10,102,0,74,'102'),(249,10,96,0,75,'Anashria Womens Premier Leather Sandal'),(250,10,481,0,75,'anashria-womens-premier-leather-sandal-4'),(251,10,103,0,75,'Anashria Womens Premier Leather Sandal'),(252,10,105,0,75,'Anashria Womens Premier Leather Sandal'),(253,10,493,0,75,'/a/n/anashria-womens-premier-leather-sandal-4.jpg'),(254,10,109,0,75,'/a/n/anashria-womens-premier-leather-sandal-3.jpg'),(255,10,106,0,75,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(256,10,102,0,75,'102'),(257,10,96,0,79,'Anashria Womens Premier Leather Sandal'),(258,10,481,0,79,'anashria-womens-premier-leather-sandal-5'),(259,10,103,0,79,'Anashria Womens Premier Leather Sandal'),(260,10,105,0,79,'Anashria Womens Premier Leather Sandal'),(261,10,493,0,79,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(262,10,109,0,79,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(263,10,106,0,79,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(264,10,102,0,79,'102'),(265,10,96,0,80,'Anashria Womens Premier Leather Sandal'),(266,10,481,0,80,'anashria-womens-premier-leather-sandal-6'),(267,10,103,0,80,'Anashria Womens Premier Leather Sandal'),(268,10,105,0,80,'Anashria Womens Premier Leather Sandal'),(269,10,493,0,80,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(270,10,109,0,80,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(271,10,106,0,80,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(272,10,102,0,80,'102'),(273,10,96,0,81,'Anashria Womens Premier Leather Sandal'),(274,10,481,0,81,'anashria-womens-premier-leather-sandal-7'),(275,10,103,0,81,'Anashria Womens Premier Leather Sandal'),(276,10,105,0,81,'Anashria Womens Premier Leather Sandal'),(277,10,493,0,81,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(278,10,109,0,81,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(279,10,106,0,81,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(280,10,102,0,81,'102'),(281,10,96,0,82,'Anashria Womens Premier Leather Sandal'),(282,10,481,0,82,'anashria-womens-premier-leather-sandal-8'),(283,10,103,0,82,'Anashria Womens Premier Leather Sandal'),(284,10,105,0,82,'Anashria Womens Premier Leather Sandal'),(285,10,493,0,82,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(286,10,109,0,82,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(287,10,106,0,82,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(288,10,102,0,82,'102'),(289,10,96,0,83,'CN Clogs Beach/Garden Clog'),(290,10,481,0,83,'cn-clogs-beach-garden-clog'),(291,10,103,0,83,'CN Clogs Beach/Garden Clog'),(292,10,105,0,83,'CN Clogs Beach/Garden Clog'),(293,10,493,0,83,'/c/n/cn-clogs-beach-garden-clog.jpg'),(294,10,109,0,83,'/c/n/cn-clogs-beach-garden-clog.jpg'),(295,10,106,0,83,'/c/n/cn-clogs-beach-garden-clog.jpg'),(296,10,96,0,84,'CN Clogs Beach/Garden Clog'),(297,10,481,0,84,'cn-clogs-beach-garden-clog-4'),(298,10,103,0,84,'CN Clogs Beach/Garden Clog'),(299,10,105,0,84,'CN Clogs Beach/Garden Clog'),(300,10,493,0,84,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(301,10,109,0,84,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(302,10,106,0,84,'/c/n/cn-clogs-beach-garden-clog.jpg'),(303,10,102,0,84,'63'),(304,10,96,0,85,'CN Clogs Beach/Garden Clog'),(305,10,481,0,85,'cn-clogs-beach-garden-clog-5'),(306,10,103,0,85,'CN Clogs Beach/Garden Clog'),(307,10,105,0,85,'CN Clogs Beach/Garden Clog'),(308,10,493,0,85,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(309,10,109,0,85,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(310,10,106,0,85,'/c/n/cn-clogs-beach-garden-clog.jpg'),(311,10,102,0,85,'63'),(312,10,96,0,86,'CN Clogs Beach/Garden Clog'),(313,10,481,0,86,'cn-clogs-beach-garden-clog-6'),(314,10,103,0,86,'CN Clogs Beach/Garden Clog'),(315,10,105,0,86,'CN Clogs Beach/Garden Clog'),(316,10,493,0,86,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(317,10,109,0,86,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(318,10,106,0,86,'/c/n/cn-clogs-beach-garden-clog.jpg'),(319,10,102,0,86,'63'),(320,10,96,0,87,'CN Clogs Beach/Garden Clog'),(321,10,481,0,87,'cn-clogs-beach-garden-clog-7'),(322,10,103,0,87,'CN Clogs Beach/Garden Clog'),(323,10,105,0,87,'CN Clogs Beach/Garden Clog'),(324,10,493,0,87,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(325,10,109,0,87,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(326,10,106,0,87,'/c/n/cn-clogs-beach-garden-clog.jpg'),(327,10,102,0,87,'63'),(328,10,96,0,88,'CN Clogs Beach/Garden Clog'),(329,10,481,0,88,'cn-clogs-beach-garden-clog-8'),(330,10,103,0,88,'CN Clogs Beach/Garden Clog'),(331,10,105,0,88,'CN Clogs Beach/Garden Clog'),(332,10,493,0,88,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(333,10,109,0,88,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(334,10,106,0,88,'/c/n/cn-clogs-beach-garden-clog.jpg'),(335,10,102,0,88,'63'),(336,10,96,0,89,'CN Clogs Beach/Garden Clog'),(337,10,481,0,89,'cn-clogs-beach-garden-clog-9'),(338,10,103,0,89,'CN Clogs Beach/Garden Clog'),(339,10,105,0,89,'CN Clogs Beach/Garden Clog'),(340,10,493,0,89,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(341,10,109,0,89,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(342,10,106,0,89,'/c/n/cn-clogs-beach-garden-clog.jpg'),(343,10,102,0,89,'63'),(344,10,96,0,90,'CN Clogs Beach/Garden Clog'),(345,10,481,0,90,'cn-clogs-beach-garden-clog-10'),(346,10,103,0,90,'CN Clogs Beach/Garden Clog'),(347,10,105,0,90,'CN Clogs Beach/Garden Clog'),(348,10,493,0,90,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(349,10,109,0,90,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(350,10,106,0,90,'/c/n/cn-clogs-beach-garden-clog.jpg'),(351,10,102,0,90,'63'),(352,10,96,0,91,'CN Clogs Beach/Garden Clog'),(353,10,481,0,91,'cn-clogs-beach-garden-clog-11'),(354,10,103,0,91,'CN Clogs Beach/Garden Clog'),(355,10,105,0,91,'CN Clogs Beach/Garden Clog'),(356,10,493,0,91,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(357,10,109,0,91,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(358,10,106,0,91,'/c/n/cn-clogs-beach-garden-clog.jpg'),(359,10,102,0,91,'63'),(360,10,96,0,92,'CN Clogs Beach/Garden Clog'),(361,10,481,0,92,'cn-clogs-beach-garden-clog-12'),(362,10,103,0,92,'CN Clogs Beach/Garden Clog'),(363,10,105,0,92,'CN Clogs Beach/Garden Clog'),(364,10,493,0,92,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(365,10,109,0,92,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(366,10,106,0,92,'/c/n/cn-clogs-beach-garden-clog.jpg'),(367,10,102,0,92,'63'),(368,10,96,0,93,'ASICS® Men\'s GEL-Kayano® XII'),(369,10,481,0,93,'asics-men-s-gel-kayano-xii'),(370,10,103,0,93,'ASICS® Men\'s GEL-Kayano® XII'),(371,10,105,0,93,'ASICS® Men\'s GEL-Kayano® XII'),(372,10,493,0,93,'/a/s/asics-men-s-gel-kayano-xii-2.jpg'),(373,10,109,0,93,'/a/s/asics-men-s-gel-kayano-xii-2.jpg'),(374,10,106,0,93,'/a/s/asics-men-s-gel-kayano-xii-2.jpg'),(375,10,96,0,94,'ASICS® Men\'s GEL-Kayano® XII'),(376,10,481,0,94,'asics-men-s-gel-kayano-xii-9'),(377,10,103,0,94,'ASICS® Men\'s GEL-Kayano® XII'),(378,10,105,0,94,'ASICS® Men\'s GEL-Kayano® XII'),(379,10,493,0,94,'no_selection'),(380,10,109,0,94,'no_selection'),(381,10,106,0,94,'no_selection'),(382,10,102,0,94,'64'),(383,10,96,0,95,'ASICS® Men\'s GEL-Kayano® XII'),(384,10,481,0,95,'asics-men-s-gel-kayano-xii-10'),(385,10,103,0,95,'ASICS® Men\'s GEL-Kayano® XII'),(386,10,105,0,95,'ASICS® Men\'s GEL-Kayano® XII'),(387,10,493,0,95,'no_selection'),(388,10,109,0,95,'no_selection'),(389,10,106,0,95,'no_selection'),(390,10,102,0,95,'64'),(391,10,96,0,96,'ASICS® Men\'s GEL-Kayano® XII'),(392,10,481,0,96,'asics-men-s-gel-kayano-xii-11'),(393,10,103,0,96,'ASICS® Men\'s GEL-Kayano® XII'),(394,10,105,0,96,'ASICS® Men\'s GEL-Kayano® XII'),(395,10,493,0,96,'no_selection'),(396,10,109,0,96,'no_selection'),(397,10,106,0,96,'no_selection'),(398,10,102,0,96,'64'),(399,10,96,0,97,'ASICS® Men\'s GEL-Kayano® XII'),(400,10,481,0,97,'asics-men-s-gel-kayano-xii-12'),(401,10,103,0,97,'ASICS® Men\'s GEL-Kayano® XII'),(402,10,105,0,97,'ASICS® Men\'s GEL-Kayano® XII'),(403,10,493,0,97,'no_selection'),(404,10,109,0,97,'no_selection'),(405,10,106,0,97,'no_selection'),(406,10,102,0,97,'64'),(407,10,96,0,98,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(408,10,481,0,98,'kenneth-cole-new-york-men-s-con-verge-slip-on'),(409,10,103,0,98,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(410,10,105,0,98,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(411,10,493,0,98,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(412,10,109,0,98,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(413,10,106,0,98,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(414,10,96,0,99,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(415,10,481,0,99,'kenneth-cole-new-york-men-s-con-verge-slip-on-9'),(416,10,103,0,99,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(417,10,105,0,99,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(418,10,493,0,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(419,10,109,0,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(420,10,106,0,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(421,10,102,0,99,'103'),(422,10,96,0,100,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(423,10,481,0,100,'kenneth-cole-new-york-men-s-con-verge-slip-on-10'),(424,10,103,0,100,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(425,10,105,0,100,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(426,10,493,0,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(427,10,109,0,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(428,10,106,0,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(429,10,102,0,100,'103'),(430,10,96,0,101,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(431,10,481,0,101,'kenneth-cole-new-york-men-s-con-verge-slip-on-11'),(432,10,103,0,101,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(433,10,105,0,101,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(434,10,493,0,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(435,10,109,0,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(436,10,106,0,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(437,10,102,0,101,'103'),(438,10,96,0,102,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(439,10,481,0,102,'kenneth-cole-new-york-men-s-con-verge-slip-on-12'),(440,10,103,0,102,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(441,10,105,0,102,'Kenneth Cole New York Men\'s Con-verge Slip-on'),(442,10,493,0,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(443,10,109,0,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(444,10,106,0,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(445,10,102,0,102,'103'),(446,10,96,0,103,'Steven by Steve Madden Pryme Pump'),(447,10,481,0,103,'steven-by-steve-madden-pryme-pump'),(448,10,103,0,103,'Steven by Steve Madden Pryme Pump'),(449,10,105,0,103,'Steven by Steve Madden Pryme Pump'),(450,10,493,0,103,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(451,10,109,0,103,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(452,10,106,0,103,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(453,10,96,0,104,'Steven by Steve Madden Pryme Pump'),(454,10,481,0,104,'steven-by-steve-madden-pryme-pump-5'),(455,10,103,0,104,'Steven by Steve Madden Pryme Pump'),(456,10,105,0,104,'Steven by Steve Madden Pryme Pump'),(457,10,493,0,104,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(458,10,109,0,104,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(459,10,106,0,104,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(460,10,102,0,104,'62'),(461,10,96,0,105,'Steven by Steve Madden Pryme Pump'),(462,10,481,0,105,'steven-by-steve-madden-pryme-pump-6'),(463,10,103,0,105,'Steven by Steve Madden Pryme Pump'),(464,10,105,0,105,'Steven by Steve Madden Pryme Pump'),(465,10,493,0,105,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(466,10,109,0,105,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(467,10,106,0,105,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(468,10,102,0,105,'62'),(469,10,96,0,106,'Steven by Steve Madden Pryme Pump'),(470,10,481,0,106,'steven-by-steve-madden-pryme-pump-7'),(471,10,103,0,106,'Steven by Steve Madden Pryme Pump'),(472,10,105,0,106,'Steven by Steve Madden Pryme Pump'),(473,10,493,0,106,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(474,10,109,0,106,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(475,10,106,0,106,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(476,10,102,0,106,'62'),(477,10,96,0,107,'Steven by Steve Madden Pryme Pump'),(478,10,481,0,107,'steven-by-steve-madden-pryme-pump-8'),(479,10,103,0,107,'Steven by Steve Madden Pryme Pump'),(480,10,105,0,107,'Steven by Steve Madden Pryme Pump'),(481,10,493,0,107,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(482,10,109,0,107,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(483,10,106,0,107,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(484,10,102,0,107,'62'),(485,10,96,0,108,'Nine West Women\'s Lucero Pump'),(486,10,481,0,108,'nine-west-women-s-lucero-pump'),(487,10,103,0,108,'Nine West Women\'s Lucero Pump'),(488,10,105,0,108,'Nine West Women\'s Lucero Pump'),(489,10,493,0,108,'/n/i/nine-west-women-s-lucero-pump.jpg'),(490,10,109,0,108,'/n/i/nine-west-women-s-lucero-pump.jpg'),(491,10,106,0,108,'/n/i/nine-west-women-s-lucero-pump.jpg'),(492,10,96,0,109,'Nine West Women\'s Lucero Pump'),(493,10,481,0,109,'nine-west-women-s-lucero-pump-4'),(494,10,103,0,109,'Nine West Women\'s Lucero Pump'),(495,10,105,0,109,'Nine West Women\'s Lucero Pump'),(496,10,493,0,109,'no_selection'),(497,10,109,0,109,'no_selection'),(498,10,106,0,109,'no_selection'),(499,10,102,0,109,'105'),(500,10,96,0,110,'Nine West Women\'s Lucero Pump'),(501,10,481,0,110,'nine-west-women-s-lucero-pump-5'),(502,10,103,0,110,'Nine West Women\'s Lucero Pump'),(503,10,105,0,110,'Nine West Women\'s Lucero Pump'),(504,10,493,0,110,'no_selection'),(505,10,109,0,110,'no_selection'),(506,10,106,0,110,'no_selection'),(507,10,102,0,110,'105'),(508,10,96,0,111,'Nine West Women\'s Lucero Pump'),(509,10,481,0,111,'nine-west-women-s-lucero-pump-6'),(510,10,103,0,111,'Nine West Women\'s Lucero Pump'),(511,10,105,0,111,'Nine West Women\'s Lucero Pump'),(512,10,493,0,111,'no_selection'),(513,10,109,0,111,'no_selection'),(514,10,106,0,111,'no_selection'),(515,10,102,0,111,'105'),(516,10,102,0,32,'105'),(517,10,102,0,108,'105'),(518,10,102,0,103,'62'),(519,10,102,0,98,'103'),(520,10,102,0,93,'64'),(521,10,102,0,83,'63'),(522,10,96,0,112,'ECCO Womens Golf Flexor Golf Shoe'),(523,10,102,0,112,'104'),(524,10,481,0,112,'ecco-womens-golf-flexor-golf-shoe'),(525,10,103,0,112,'ECCO Womens Golf Flexor Golf Shoe'),(526,10,105,0,112,'ECCO Womens Golf Flexor Golf Shoe'),(527,10,493,0,112,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(528,10,109,0,112,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(529,10,106,0,112,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(530,10,96,0,113,'ECCO Womens Golf Flexor Golf Shoe'),(531,10,481,0,113,'ecco-womens-golf-flexor-golf-shoe-4'),(532,10,103,0,113,'ECCO Womens Golf Flexor Golf Shoe'),(533,10,105,0,113,'ECCO Womens Golf Flexor Golf Shoe'),(534,10,493,0,113,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(535,10,109,0,113,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(536,10,106,0,113,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(537,10,102,0,113,'104'),(538,10,96,0,114,'ECCO Womens Golf Flexor Golf Shoe'),(539,10,481,0,114,'ecco-womens-golf-flexor-golf-shoe-5'),(540,10,103,0,114,'ECCO Womens Golf Flexor Golf Shoe'),(541,10,105,0,114,'ECCO Womens Golf Flexor Golf Shoe'),(542,10,493,0,114,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(543,10,109,0,114,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(544,10,106,0,114,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(545,10,102,0,114,'104'),(546,10,96,0,115,'ECCO Womens Golf Flexor Golf Shoe'),(547,10,481,0,115,'ecco-womens-golf-flexor-golf-shoe-6'),(548,10,103,0,115,'ECCO Womens Golf Flexor Golf Shoe'),(549,10,105,0,115,'ECCO Womens Golf Flexor Golf Shoe'),(550,10,493,0,115,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(551,10,109,0,115,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(552,10,106,0,115,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(553,10,102,0,115,'104'),(554,10,96,0,117,'Coalesce: Functioning On Impatience T-Shirt'),(555,10,481,0,117,'coalesce-functioning-on-impatience-t-shirt-medium'),(556,10,103,0,117,'Coalesce: Functioning On Impatience T-Shirt'),(557,10,105,0,117,'Coalesce: Functioning On Impatience T-Shirt'),(558,10,493,0,117,'no_selection'),(559,10,109,0,117,'no_selection'),(560,10,106,0,117,'no_selection'),(561,10,96,0,118,'Coalesce: Functioning On Impatience T-Shirt'),(562,10,481,0,118,'coalesce-functioning-on-impatience-t-shirt-large'),(563,10,103,0,118,'Coalesce: Functioning On Impatience T-Shirt'),(564,10,105,0,118,'Coalesce: Functioning On Impatience T-Shirt'),(565,10,493,0,118,'no_selection'),(566,10,109,0,118,'no_selection'),(567,10,106,0,118,'no_selection'),(568,10,96,0,119,'Coalesce: Functioning On Impatience T-Shirt'),(569,10,481,0,119,'coalesce-functioning-on-impatience-t-shirt'),(570,10,103,0,119,'Coalesce: Functioning On Impatience T-Shirt'),(571,10,105,0,119,'Coalesce: Functioning On Impatience T-Shirt'),(572,10,493,0,119,'/c/o/coalesce-functioning-on-impatience-t-shirt-1.jpg'),(573,10,109,0,119,'/c/o/coalesce-functioning-on-impatience-t-shirt-1.jpg'),(574,10,106,0,119,'/c/o/coalesce-functioning-on-impatience-t-shirt-1.jpg'),(575,10,96,0,120,'Ink Eater: Krylon Bombear Destroyed Tee'),(576,10,481,0,120,'ink-eater-krylon-bombear-destroyed-tee'),(577,10,103,0,120,'Ink Eater: Krylon Bombear Destroyed Tee'),(578,10,105,0,120,'Ink Eater: Krylon Bombear Destroyed Tee'),(579,10,493,0,120,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(580,10,109,0,120,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(581,10,106,0,120,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(582,10,96,0,121,'Ink Eater: Krylon Bombear Destroyed Tee'),(583,10,481,0,121,'ink-eater-krylon-bombear-destroyed-tee-med'),(584,10,103,0,121,'Ink Eater: Krylon Bombear Destroyed Tee'),(585,10,105,0,121,'Ink Eater: Krylon Bombear Destroyed Tee'),(586,10,493,0,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee-2.jpg'),(587,10,109,0,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(588,10,106,0,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(589,10,96,0,122,'Ink Eater: Krylon Bombear Destroyed Tee'),(590,10,481,0,122,'ink-eater-krylon-bombear-destroyed-tee-lrg'),(591,10,103,0,122,'Ink Eater: Krylon Bombear Destroyed Tee'),(592,10,105,0,122,'Ink Eater: Krylon Bombear Destroyed Tee'),(593,10,493,0,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee-2.jpg'),(594,10,109,0,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(595,10,106,0,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(596,10,96,0,123,'The Only Children: Paisley T-Shirt'),(597,10,481,0,123,'the-only-children-paisley-t-shirt'),(598,10,103,0,123,'The Only Children: Paisley T-Shirt'),(599,10,105,0,123,'The Only Children: Paisley T-Shirt'),(600,10,493,0,123,'/t/h/the-only-children-paisley-t-shirt.jpg'),(601,10,109,0,123,'/t/h/the-only-children-paisley-t-shirt.jpg'),(602,10,106,0,123,'/t/h/the-only-children-paisley-t-shirt.jpg'),(603,10,96,0,124,'The Only Children: Paisley T-Shirt'),(604,10,481,0,124,'the-only-children-paisley-t-shirt-med'),(605,10,103,0,124,'The Only Children: Paisley T-Shirt'),(606,10,105,0,124,'The Only Children: Paisley T-Shirt'),(607,10,493,0,124,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(608,10,109,0,124,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(609,10,106,0,124,'/t/h/the-only-children-paisley-t-shirt.jpg'),(610,10,96,0,125,'The Only Children: Paisley T-Shirt'),(611,10,481,0,125,'the-only-children-paisley-t-shirt-lrg'),(612,10,103,0,125,'The Only Children: Paisley T-Shirt'),(613,10,105,0,125,'The Only Children: Paisley T-Shirt'),(614,10,493,0,125,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(615,10,109,0,125,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(616,10,106,0,125,'/t/h/the-only-children-paisley-t-shirt.jpg'),(617,10,96,0,126,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(618,10,481,0,126,'zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt'),(619,10,103,0,126,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(620,10,105,0,126,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(621,10,493,0,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(622,10,109,0,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(623,10,106,0,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(624,10,96,0,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(625,10,481,0,127,'zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-g-sm'),(626,10,103,0,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(627,10,105,0,127,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(628,10,493,0,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(629,10,109,0,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(630,10,106,0,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(631,10,96,0,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(632,10,481,0,128,'zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-r-med'),(633,10,103,0,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(634,10,105,0,128,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(635,10,493,0,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(636,10,109,0,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(637,10,106,0,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(638,10,96,0,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(639,10,481,0,129,'zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-g-med'),(640,10,103,0,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(641,10,105,0,129,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(642,10,493,0,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(643,10,109,0,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(644,10,106,0,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(645,10,96,0,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(646,10,481,0,130,'zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-r-lrg'),(647,10,103,0,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(648,10,105,0,130,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(649,10,493,0,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(650,10,109,0,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(651,10,106,0,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(652,10,96,0,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(653,10,481,0,131,'zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-g-lrg'),(654,10,103,0,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(655,10,105,0,131,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(656,10,493,0,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(657,10,109,0,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(658,10,106,0,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(659,10,96,0,133,'Universal Camera Case'),(660,10,481,0,133,'universal-camera-case'),(661,10,109,0,133,'/u/n/universal-camera-case-1.jpg'),(662,10,96,0,132,'SLR Camera Tripod'),(663,10,481,0,132,'slr-camera-tripod'),(664,10,109,0,132,'/s/l/slr-camera-tripod.jpg'),(665,10,96,0,134,'Universal Camera Charger'),(666,10,481,0,134,'universal-camera-charger'),(667,10,109,0,134,'/u/n/universal-camera-charger.jpg'),(668,10,493,0,134,'/u/n/universal-camera-charger.jpg'),(669,10,106,0,134,'/u/n/universal-camera-charger.jpg'),(670,10,493,0,133,'/u/n/universal-camera-case-2.jpg'),(671,10,106,0,133,'/u/n/universal-camera-case.jpg'),(672,10,493,0,132,'/s/l/slr-camera-tripod.jpg'),(673,10,106,0,132,'/s/l/slr-camera-tripod.jpg'),(674,10,96,0,135,'Anashria Womens Premier Leather Sandal'),(675,10,102,0,135,'102'),(676,10,481,0,135,'anashria-womens-premier-leather-sandal'),(677,10,103,0,135,'Anashria Womens Premier Leather Sandal'),(678,10,105,0,135,'Anashria Womens Premier Leather Sandal'),(679,10,493,0,135,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(680,10,109,0,135,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(681,10,106,0,135,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(682,10,96,0,137,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(683,10,481,0,137,'zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-b-med'),(684,10,103,0,137,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(685,10,105,0,137,'Zolof The Rock And Roll Destroyer: LOL Cat T-shirt'),(686,10,493,0,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(687,10,109,0,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(688,10,106,0,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(689,10,562,0,28,'2'),(690,10,571,0,28,''),(691,10,562,0,26,'2'),(692,10,571,0,26,''),(693,10,562,0,134,'2'),(694,10,103,0,134,''),(695,10,105,0,134,''),(696,10,571,0,134,''),(697,10,562,0,118,'2'),(698,10,571,0,118,''),(699,10,562,0,51,'2'),(700,10,571,0,51,''),(701,10,562,0,119,'2'),(702,10,571,0,119,''),(703,10,562,0,126,'2'),(704,10,571,0,126,''),(705,10,562,0,123,'2'),(706,10,571,0,123,''),(707,10,562,0,120,'2'),(708,10,571,0,120,''),(709,10,562,0,83,'2'),(710,10,571,0,83,''),(711,10,562,0,44,'2'),(712,10,562,0,17,'2'),(713,10,562,0,18,'2'),(714,10,562,0,19,'2'),(715,10,562,0,20,'2'),(716,10,562,0,25,'2'),(717,10,562,0,27,'2'),(718,10,562,0,30,'2'),(719,10,562,0,32,'2'),(720,10,562,0,35,'2'),(721,10,562,0,36,'2'),(722,10,562,0,37,'2'),(723,10,562,0,38,'2'),(724,10,562,0,39,'2'),(725,10,562,0,41,'2'),(726,10,562,0,42,'2'),(727,10,562,0,46,'2'),(728,10,562,0,52,'2'),(729,10,562,0,53,'2'),(730,10,562,0,80,'2'),(731,10,562,0,96,'2'),(732,10,562,0,117,'2'),(733,10,562,0,128,'2'),(734,10,571,0,27,''),(735,10,562,0,16,'2'),(736,10,562,0,84,'2'),(737,10,562,0,124,'2'),(738,10,562,0,132,'2'),(739,10,571,0,44,''),(740,10,571,0,39,''),(741,10,562,0,122,'2'),(742,10,562,0,121,'2'),(743,10,571,0,41,''),(744,10,571,0,42,''),(745,10,562,0,137,'2'),(746,10,562,0,133,'2'),(747,10,836,0,16,'container2'),(748,10,836,0,17,'container2'),(749,10,836,0,18,'container2'),(750,10,836,0,19,'container2'),(751,10,836,0,20,'container2'),(752,10,836,0,25,'container1'),(753,10,836,0,26,'container2'),(754,10,836,0,27,'container2'),(755,10,836,0,28,'container2'),(756,10,836,0,29,'container2'),(757,10,836,0,30,'container2'),(758,10,836,0,31,'container2'),(759,10,836,0,32,'container2'),(760,10,836,0,33,'container2'),(761,10,836,0,34,'container2'),(762,10,836,0,35,'container2'),(763,10,836,0,36,'container2'),(764,10,836,0,37,'container2'),(765,10,836,0,38,'container2'),(766,10,836,0,39,'container2'),(767,10,836,0,41,'container2'),(768,10,836,0,42,'container2'),(769,10,836,0,44,'container2'),(770,10,836,0,45,'container2'),(771,10,836,0,46,'container2'),(772,10,836,0,47,'container2'),(773,10,836,0,48,'container2'),(774,10,836,0,49,'container2'),(775,10,836,0,51,'container2'),(776,10,836,0,52,'container2'),(777,10,836,0,53,'container2'),(778,10,836,0,54,'container2'),(779,10,836,0,74,'container2'),(780,10,836,0,75,'container2'),(781,10,836,0,79,'container2'),(782,10,836,0,80,'container2'),(783,10,836,0,81,'container2'),(784,10,836,0,82,'container2'),(785,10,836,0,83,'container1'),(786,10,836,0,84,'container2'),(787,10,836,0,85,'container2'),(788,10,836,0,86,'container2'),(789,10,836,0,87,'container2'),(790,10,836,0,88,'container2'),(791,10,836,0,89,'container2'),(792,10,836,0,90,'container2'),(793,10,836,0,91,'container2'),(794,10,836,0,92,'container2'),(795,10,836,0,93,'container1'),(796,10,836,0,94,'container2'),(797,10,836,0,95,'container2'),(798,10,836,0,96,'container2'),(799,10,836,0,97,'container2'),(800,10,836,0,98,'container1'),(801,10,836,0,99,'container2'),(802,10,836,0,100,'container2'),(803,10,836,0,101,'container2'),(804,10,836,0,102,'container2'),(805,10,836,0,103,'container1'),(806,10,836,0,104,'container2'),(807,10,836,0,105,'container2'),(808,10,836,0,106,'container2'),(809,10,836,0,107,'container2'),(810,10,836,0,108,'container1'),(811,10,836,0,109,'container2'),(812,10,836,0,110,'container2'),(813,10,836,0,111,'container2'),(814,10,836,0,112,'container1'),(815,10,836,0,113,'container2'),(816,10,836,0,114,'container2'),(817,10,836,0,115,'container2'),(818,10,836,0,117,'container2'),(819,10,836,0,118,'container2'),(820,10,836,0,119,'container1'),(821,10,836,0,120,'container1'),(822,10,836,0,121,'container2'),(823,10,836,0,122,'container2'),(824,10,836,0,123,'container1'),(825,10,836,0,124,'container2'),(826,10,836,0,125,'container2'),(827,10,836,0,126,'container1'),(828,10,836,0,127,'container2'),(829,10,836,0,128,'container2'),(830,10,836,0,129,'container2'),(831,10,836,0,130,'container2'),(832,10,836,0,131,'container2'),(833,10,836,0,132,'container2'),(834,10,836,0,133,'container2'),(835,10,836,0,134,'container2'),(836,10,836,0,135,'container1'),(837,10,836,0,137,'container2'),(838,10,96,0,138,'Apevia Black X-Cruiser Case ATX Mid-Tower Case (Default)'),(839,10,481,0,138,'apevia-black-x-cruiser-case-atx-mid-tower-case'),(840,10,562,0,138,'2'),(841,10,103,0,138,''),(842,10,105,0,138,''),(843,10,106,0,138,'/a/p/apevia-black-x-cruiser-case-atx-mid-tower-case-default.jpg'),(844,10,493,0,138,'/a/p/apevia-black-x-cruiser-case-atx-mid-tower-case-default.jpg'),(845,10,109,0,138,'/a/p/apevia-black-x-cruiser-case-atx-mid-tower-case-default.jpg'),(846,10,571,0,138,''),(847,10,836,0,138,'container2'),(848,10,96,0,139,'NZXT Lexa Silver Aluminum ATX Mid-Tower Case (Default)'),(849,10,481,0,139,'nzxt-lexa-silver-aluminum-atx-mid-tower-case'),(850,10,562,0,139,'2'),(851,10,103,0,139,''),(852,10,105,0,139,''),(853,10,493,0,139,'/n/z/nzxt-lexa-silver-aluminum-atx-mid-tower-case-default.jpg'),(854,10,109,0,139,'/n/z/nzxt-lexa-silver-aluminum-atx-mid-tower-case-default.jpg'),(855,10,106,0,139,'/n/z/nzxt-lexa-silver-aluminum-atx-mid-tower-case-default.jpg'),(856,10,571,0,139,''),(857,10,836,0,139,'container2'),(858,10,96,0,140,'Crucial 2GB PC4200 DDR2 533MHz Memory'),(859,10,481,0,140,'crucial-2gb-pc4200-ddr2-533mhz-memory'),(860,10,562,0,140,'2'),(861,10,874,0,140,'2GB'),(862,10,103,0,140,''),(863,10,105,0,140,''),(864,10,493,0,140,'/c/r/crucial-2gb-pc4200-ddr2-533mhz-memory.jpg'),(865,10,109,0,140,'/c/r/crucial-2gb-pc4200-ddr2-533mhz-memory.jpg'),(866,10,106,0,140,'/c/r/crucial-2gb-pc4200-ddr2-533mhz-memory.jpg'),(867,10,571,0,140,''),(868,10,836,0,140,'container2'),(869,10,96,0,141,'Crucial 1GB PC4200 DDR2 533MHz Memory'),(870,10,481,0,141,'crucial-1gb-pc4200-ddr2-533mhz-memory'),(871,10,562,0,141,'2'),(872,10,874,0,141,'1GB'),(873,10,103,0,141,''),(874,10,105,0,141,''),(875,10,493,0,141,'/c/r/crucial-1gb-pc4200-ddr2-533mhz-memory.jpg'),(876,10,109,0,141,'/c/r/crucial-1gb-pc4200-ddr2-533mhz-memory.jpg'),(877,10,106,0,141,'/c/r/crucial-1gb-pc4200-ddr2-533mhz-memory.jpg'),(878,10,571,0,141,''),(879,10,836,0,141,'container2'),(880,10,96,0,142,'One Year Extended Warranty - Parts and Labor'),(881,10,481,0,142,'1-year-extended-warranty-parts-and-labor'),(882,10,103,0,142,'1 Year Warranty - Parts and Labor'),(883,10,105,0,142,'1 Year Warranty - Parts and Labor'),(884,10,493,0,142,'no_selection'),(885,10,109,0,142,'no_selection'),(886,10,106,0,142,'no_selection'),(887,10,571,0,142,''),(888,10,836,0,142,'container2'),(889,10,96,0,143,'Crucial 512MB PC4200 DDR2 533MHz Memory'),(890,10,481,0,143,'crucial-512mb-pc4200-ddr2-533mhz-memory'),(891,10,562,0,143,'2'),(892,10,874,0,143,'512MB'),(893,10,103,0,143,''),(894,10,105,0,143,''),(895,10,493,0,143,'/c/r/crucial-512mb-pc4200-ddr2-533mhz-memory.jpg'),(896,10,109,0,143,'/c/r/crucial-512mb-pc4200-ddr2-533mhz-memory.jpg'),(897,10,106,0,143,'/c/r/crucial-512mb-pc4200-ddr2-533mhz-memory.jpg'),(898,10,571,0,143,''),(899,10,836,0,143,'container2'),(900,10,96,0,144,'Two Year Extended Warranty - Parts and Labor'),(901,10,481,0,144,'1-year-extended-warranty-parts-and-labor'),(902,10,103,0,144,'2 Year Warranty - Parts and Labor'),(903,10,105,0,144,'2 Year Warranty - Parts and Labor'),(904,10,493,0,144,'no_selection'),(905,10,109,0,144,'no_selection'),(906,10,106,0,144,'no_selection'),(907,10,571,0,144,''),(908,10,836,0,144,'container2'),(909,10,96,0,145,'AMD Phenom X4 9850 Black Ed. 2.50GHz Retail'),(910,10,481,0,145,'amd-phenom-x4-9850-black-ed-2-50ghz-retail'),(911,10,562,0,145,'2'),(912,10,103,0,145,''),(913,10,105,0,145,''),(914,10,493,0,145,'/a/m/amd-phenom-x4-9850-black-ed-2-50ghz-retail.jpg'),(915,10,109,0,145,'/a/m/amd-phenom-x4-9850-black-ed-2-50ghz-retail.jpg'),(916,10,106,0,145,'/a/m/amd-phenom-x4-9850-black-ed-2-50ghz-retail.jpg'),(917,10,571,0,145,''),(918,10,836,0,145,'container2'),(919,10,96,0,146,'Three Year Extended Warranty - Parts and Labor'),(920,10,481,0,146,'1-year-extended-warranty-parts-and-labor'),(921,10,103,0,146,'3 Year Warranty - Parts and Labor'),(922,10,105,0,146,'3 Year Warranty - Parts and Labor'),(923,10,493,0,146,'no_selection'),(924,10,109,0,146,'no_selection'),(925,10,106,0,146,'no_selection'),(926,10,571,0,146,''),(927,10,836,0,146,'container2'),(928,10,96,0,147,'22\" Syncmaster LCD Monitor'),(929,10,481,0,147,'22-syncmaster-lcd-monitor'),(930,10,562,0,147,'2'),(931,10,873,0,147,'1680 x 1050'),(932,10,876,0,147,'2ms'),(933,10,103,0,147,''),(934,10,105,0,147,''),(935,10,493,0,147,'/2/2/22-syncmaster-lcd-monitor.jpg'),(936,10,109,0,147,'/2/2/22-syncmaster-lcd-monitor.jpg'),(937,10,106,0,147,'/2/2/22-syncmaster-lcd-monitor.jpg'),(938,10,571,0,147,''),(939,10,836,0,147,'container2'),(940,10,96,0,148,'AMD A64 X2 3800+ 2.0GHz OEM'),(941,10,481,0,148,'amd-a64-x2-3800-2-0ghz-oem'),(942,10,562,0,148,'2'),(943,10,103,0,148,''),(944,10,105,0,148,''),(945,10,493,0,148,'/a/m/amd-a64-x2-3800-2-0ghz-oem.jpg'),(946,10,109,0,148,'/a/m/amd-a64-x2-3800-2-0ghz-oem.jpg'),(947,10,106,0,148,'/a/m/amd-a64-x2-3800-2-0ghz-oem.jpg'),(948,10,571,0,148,''),(949,10,836,0,148,'container2'),(950,10,96,0,149,'Western Digital - 1TB HD - 7200RPM'),(951,10,481,0,149,'1tb-7200rpm'),(952,10,562,0,149,'2'),(953,10,878,0,149,'7200 rpm'),(954,10,103,0,149,''),(955,10,105,0,149,''),(956,10,493,0,149,'/w/e/western-digital-1tb-hd-7200rpm.jpg'),(957,10,109,0,149,'/w/e/western-digital-1tb-hd-7200rpm.jpg'),(958,10,106,0,149,'/w/e/western-digital-1tb-hd-7200rpm.jpg'),(959,10,571,0,149,''),(960,10,836,0,149,'container2'),(961,10,96,0,150,'Western Digital 500GB HD - 7200RPM'),(962,10,481,0,150,'500gb-7200rpm'),(963,10,562,0,150,'2'),(964,10,878,0,150,'7200 rpm'),(965,10,103,0,150,''),(966,10,105,0,150,''),(967,10,493,0,150,'/w/e/western-digital-500gb-hd-7200rpm.jpg'),(968,10,109,0,150,'/w/e/western-digital-500gb-hd-7200rpm.jpg'),(969,10,106,0,150,'/w/e/western-digital-500gb-hd-7200rpm.jpg'),(970,10,571,0,150,''),(971,10,836,0,150,'container2'),(972,10,96,0,151,'Intel C2D E8400 3.0GHz Retail'),(973,10,481,0,151,'intel-c2d-e8400-3-0ghz-retail'),(974,10,562,0,151,'2'),(975,10,103,0,151,''),(976,10,105,0,151,''),(977,10,493,0,151,'/i/n/intel-c2d-e8400-3-0ghz-retail.jpg'),(978,10,109,0,151,'/i/n/intel-c2d-e8400-3-0ghz-retail.jpg'),(979,10,106,0,151,'/i/n/intel-c2d-e8400-3-0ghz-retail.jpg'),(980,10,571,0,151,''),(981,10,836,0,151,'container2'),(982,10,96,0,152,'24\" Widescreen Flat-Panel LCD Monitor'),(983,10,481,0,152,'24-widescreen-flat-panel-lcd-monitor'),(984,10,562,0,152,'2'),(985,10,873,0,152,'1920x1200'),(986,10,876,0,152,'5ms'),(987,10,103,0,152,''),(988,10,105,0,152,''),(989,10,493,0,152,'/2/4/24-widescreen-flat-panel-lcd-monitor.jpg'),(990,10,109,0,152,'/2/4/24-widescreen-flat-panel-lcd-monitor.jpg'),(991,10,106,0,152,'/2/4/24-widescreen-flat-panel-lcd-monitor.jpg'),(992,10,571,0,152,''),(993,10,836,0,152,'container2'),(994,10,96,0,153,'Intel Core 2 Extreme QX9775 3.20GHz Retail'),(995,10,481,0,153,'intel-core-2-extreme-qx9775-3-20ghz-retail'),(996,10,562,0,153,'2'),(997,10,103,0,153,''),(998,10,105,0,153,''),(999,10,493,0,153,'/i/n/intel-core-2-extreme-qx9775-3-20ghz-retail.jpg'),(1000,10,109,0,153,'/i/n/intel-core-2-extreme-qx9775-3-20ghz-retail.jpg'),(1001,10,106,0,153,'/i/n/intel-core-2-extreme-qx9775-3-20ghz-retail.jpg'),(1002,10,571,0,153,''),(1003,10,836,0,153,'container2'),(1004,10,96,0,154,'Seagate 500GB HD - 5400RPM'),(1005,10,481,0,154,'500gb-5400rpm'),(1006,10,562,0,154,'2'),(1007,10,878,0,154,'500 GB'),(1008,10,103,0,154,''),(1009,10,105,0,154,''),(1010,10,493,0,154,'/s/e/seagate-500gb-hd-5400rpm.jpg'),(1011,10,109,0,154,'/s/e/seagate-500gb-hd-5400rpm.jpg'),(1012,10,106,0,154,'/s/e/seagate-500gb-hd-5400rpm.jpg'),(1013,10,571,0,154,''),(1014,10,836,0,154,'container2'),(1015,10,96,0,155,'Seagate 250GB HD - 5400RPM'),(1016,10,481,0,155,'250gb-5400rpm'),(1017,10,562,0,155,'2'),(1018,10,878,0,155,'250 GB'),(1019,10,103,0,155,''),(1020,10,105,0,155,''),(1021,10,493,0,155,'/s/e/seagate-250gb-hd-5400rpm.jpg'),(1022,10,109,0,155,'/s/e/seagate-250gb-hd-5400rpm.jpg'),(1023,10,106,0,155,'/s/e/seagate-250gb-hd-5400rpm.jpg'),(1024,10,571,0,155,''),(1025,10,836,0,155,'container2'),(1026,10,96,0,156,'19\" Widescreen Flat-Panel LCD Monitor'),(1027,10,481,0,156,'19-widescreen-flat-panel-lcd-monitor'),(1028,10,562,0,156,'2'),(1029,10,873,0,156,'1440x900'),(1030,10,876,0,156,'2ms'),(1031,10,103,0,156,''),(1032,10,105,0,156,''),(1033,10,493,0,156,'/1/9/19-widescreen-flat-panel-lcd-monitor.jpg'),(1034,10,109,0,156,'/1/9/19-widescreen-flat-panel-lcd-monitor.jpg'),(1035,10,106,0,156,'/1/9/19-widescreen-flat-panel-lcd-monitor.jpg'),(1036,10,571,0,156,''),(1037,10,836,0,156,'container2'),(1038,10,96,0,157,'30\" Flat-Panel TFT-LCD Cinema HD Monitor'),(1039,10,481,0,157,'30-flat-panel-tft-lcd-cinema-hd-monitor'),(1040,10,562,0,157,'2'),(1041,10,873,0,157,'1920x1200'),(1042,10,876,0,157,'15ms'),(1043,10,103,0,157,''),(1044,10,105,0,157,''),(1045,10,493,0,157,'/3/0/30-flat-panel-tft-lcd-cinema-hd-monitor.jpg'),(1046,10,109,0,157,'/3/0/30-flat-panel-tft-lcd-cinema-hd-monitor.jpg'),(1047,10,106,0,157,'/3/0/30-flat-panel-tft-lcd-cinema-hd-monitor.jpg'),(1048,10,571,0,157,''),(1049,10,836,0,157,'container2'),(1050,10,96,0,158,'Sony VAIO 11.1\" Notebook PC'),(1051,10,481,0,158,'sony-vaio-vgn-txn27n-b-11-1-notebook-pc'),(1052,10,103,0,158,'Sony VAIO VGN-TXN27N/B 11.1\" Notebook PC (Intel Core Solo Processor U1500, 2 GB RAM, 100 GB Hard Drive, DVD±RW Drive, Vista Business) Charcoal Black'),(1053,10,105,0,158,'Sony VAIO VGN-TXN27N/B 11.1\" Notebook PC (Intel Core Solo Processor U1500, 2 GB RAM, 100 GB Hard Drive, DVD±RW Drive, Vista Business) Charcoal Black'),(1054,10,493,0,158,'/s/o/sony-vaio-11-1-notebook-pc.jpg'),(1055,10,109,0,158,'/s/o/sony-vaio-11-1-notebook-pc.jpg'),(1056,10,106,0,158,'/s/o/sony-vaio-11-1-notebook-pc.jpg'),(1057,10,571,0,158,''),(1058,10,836,0,158,'container2'),(1059,10,837,0,158,'1'),(1060,10,96,0,159,'Microsoft Natural Ergonomic Keyboard 4000'),(1061,10,481,0,159,'microsoft-natural-ergonomic-keyboard-4000'),(1062,10,562,0,159,'2'),(1063,10,103,0,159,''),(1064,10,105,0,159,''),(1065,10,493,0,159,'/m/i/microsoft-natural-ergonomic-keyboard-4000.jpg'),(1066,10,109,0,159,'/m/i/microsoft-natural-ergonomic-keyboard-4000.jpg'),(1067,10,106,0,159,'/m/i/microsoft-natural-ergonomic-keyboard-4000.jpg'),(1068,10,571,0,159,''),(1069,10,836,0,159,'container2'),(1070,10,96,0,160,'Logitech Cordless Optical Trackman'),(1071,10,481,0,160,'microsoft-wireless-optical-mouse-5000'),(1072,10,562,0,160,'2'),(1073,10,103,0,160,''),(1074,10,105,0,160,''),(1075,10,493,0,160,'/l/o/logitech-cordless-optical-trackman.jpg'),(1076,10,109,0,160,'/l/o/logitech-cordless-optical-trackman.jpg'),(1077,10,106,0,160,'/l/o/logitech-cordless-optical-trackman.jpg'),(1078,10,571,0,160,''),(1079,10,836,0,160,'container2'),(1080,10,96,0,161,'Logitech diNovo Edge Keyboard'),(1081,10,481,0,161,'logitech-dinovo-edge-keyboard'),(1082,10,562,0,161,'2'),(1083,10,103,0,161,''),(1084,10,105,0,161,''),(1085,10,493,0,161,'/l/o/logitech-dinovo-edge-keyboard.jpg'),(1086,10,109,0,161,'/l/o/logitech-dinovo-edge-keyboard.jpg'),(1087,10,106,0,161,'/l/o/logitech-dinovo-edge-keyboard.jpg'),(1088,10,571,0,161,''),(1089,10,836,0,161,'container2'),(1090,10,96,0,162,'Microsoft Wireless Optical Mouse 5000'),(1091,10,481,0,162,'microsoft-wireless-optical-mouse-5000'),(1092,10,562,0,162,'2'),(1093,10,103,0,162,''),(1094,10,105,0,162,''),(1095,10,493,0,162,'/m/i/microsoft-wireless-optical-mouse-5000.jpg'),(1096,10,109,0,162,'/m/i/microsoft-wireless-optical-mouse-5000.jpg'),(1097,10,106,0,162,'/m/i/microsoft-wireless-optical-mouse-5000.jpg'),(1098,10,571,0,162,''),(1099,10,836,0,162,'container2'),(1100,10,571,0,25,''),(1101,10,96,0,163,'Computer'),(1102,10,481,0,163,'computer'),(1103,10,103,0,163,''),(1104,10,105,0,163,''),(1105,10,493,0,163,'/c/o/computer.jpg'),(1106,10,109,0,163,'/c/o/computer.jpg'),(1107,10,106,0,163,'/c/o/computer.jpg'),(1108,10,571,0,163,''),(1109,10,836,0,163,'container2'),(1110,10,837,0,163,'1'),(1111,10,96,0,164,'Gaming Computer'),(1112,10,481,0,164,'gaming-computer'),(1113,10,103,0,164,''),(1114,10,105,0,164,''),(1115,10,493,0,164,'/g/a/gaming-computer.jpg'),(1116,10,109,0,164,'/g/a/gaming-computer.jpg'),(1117,10,106,0,164,'/g/a/gaming-computer.jpg'),(1118,10,571,0,164,''),(1119,10,836,0,164,'container2'),(1120,10,837,0,164,'1'),(1121,10,96,0,165,'My Computer'),(1122,10,481,0,165,'my-computer'),(1123,10,103,0,165,''),(1124,10,105,0,165,''),(1125,10,493,0,165,'/m/y/my-computer.jpg'),(1126,10,109,0,165,'/m/y/my-computer.jpg'),(1127,10,106,0,165,'/m/y/my-computer.jpg'),(1128,10,571,0,165,''),(1129,10,836,0,165,'container2'),(1130,10,837,0,165,'1'),(1131,10,96,0,166,'HTC Touch Diamond'),(1132,10,481,0,166,'htc-touch-diamond'),(1133,10,562,0,166,'2'),(1134,10,103,0,166,''),(1135,10,105,0,166,''),(1136,10,493,0,166,'/h/t/htc-touch-diamond.jpg'),(1137,10,109,0,166,'/h/t/htc-touch-diamond.jpg'),(1138,10,106,0,166,'/h/t/htc-touch-diamond.jpg'),(1139,10,571,0,166,''),(1140,10,836,0,166,'container2'),(1141,10,562,0,45,'2'),(1142,10,562,0,112,'2'),(1143,10,562,0,164,'2'),(1144,10,562,0,108,'2'),(1145,10,571,0,108,''),(1146,10,837,0,108,'1'),(1147,10,562,0,94,'2'),(1148,10,571,0,94,''),(1149,10,571,0,30,''),(1150,10,562,0,95,'2'),(1151,10,571,0,95,''),(1152,10,571,0,96,''),(1153,10,562,0,97,'2'),(1154,10,571,0,97,''),(1155,10,562,0,93,'2'),(1156,10,571,0,93,''),(1157,10,837,0,93,'1'),(1158,10,571,0,35,''),(1159,10,571,0,117,''),(1160,10,837,0,119,'1'),(1161,10,571,0,32,''),(1162,10,562,0,110,'2'),(1163,10,571,0,110,''),(1164,10,562,0,109,'2'),(1165,10,571,0,109,''),(1166,10,562,0,111,'2'),(1167,10,571,0,111,''),(1168,10,562,0,135,'2'),(1169,10,837,0,83,'1'),(1170,10,571,0,36,''),(1171,10,571,0,137,''),(1172,10,571,0,38,''),(1173,10,571,0,128,''),(1174,10,562,0,130,'2'),(1175,10,571,0,130,''),(1176,10,562,0,127,'2'),(1177,10,571,0,127,''),(1178,10,562,0,129,'2'),(1179,10,571,0,129,''),(1180,10,562,0,131,'2'),(1181,10,571,0,131,''),(1182,10,837,0,126,'1'),(1183,10,571,0,37,''),(1184,10,571,0,124,''),(1185,10,562,0,125,'2'),(1186,10,571,0,125,''),(1187,10,571,0,122,''),(1188,10,571,0,121,''),(1189,10,562,0,29,'2'),(1190,10,571,0,29,''),(1191,10,571,0,84,''),(1192,10,562,0,86,'2'),(1193,10,571,0,86,''),(1194,10,562,0,85,'2'),(1195,10,571,0,85,''),(1196,10,562,0,87,'2'),(1197,10,571,0,87,''),(1198,10,562,0,88,'2'),(1199,10,571,0,88,''),(1200,10,562,0,89,'2'),(1201,10,571,0,89,''),(1202,10,562,0,90,'2'),(1203,10,571,0,90,''),(1204,10,562,0,91,'2'),(1205,10,571,0,91,''),(1206,10,562,0,92,'2'),(1207,10,571,0,92,''),(1208,10,562,0,100,'2'),(1209,10,571,0,100,''),(1210,10,562,0,101,'2'),(1211,10,571,0,101,''),(1212,10,562,0,102,'2'),(1213,10,571,0,102,''),(1214,10,562,0,99,'2'),(1215,10,571,0,99,''),(1216,10,562,0,34,'2'),(1217,10,571,0,34,''),(1218,10,562,0,104,'2'),(1219,10,571,0,104,''),(1220,10,562,0,31,'2'),(1221,10,571,0,31,''),(1222,10,562,0,105,'2'),(1223,10,571,0,105,''),(1224,10,562,0,106,'2'),(1225,10,571,0,106,''),(1226,10,562,0,107,'2'),(1227,10,571,0,107,''),(1228,10,562,0,113,'2'),(1229,10,571,0,113,''),(1230,10,562,0,114,'2'),(1231,10,571,0,114,''),(1232,10,562,0,115,'2'),(1233,10,571,0,115,''),(1234,10,562,0,33,'2'),(1235,10,571,0,33,''),(1236,10,562,0,74,'2'),(1237,10,571,0,74,''),(1238,10,562,0,79,'2'),(1239,10,571,0,79,''),(1240,10,562,0,75,'2'),(1241,10,571,0,75,''),(1242,10,571,0,80,''),(1243,10,562,0,81,'2'),(1244,10,571,0,81,''),(1245,10,562,0,82,'2'),(1246,10,571,0,82,''),(1247,10,562,0,49,'2'),(1248,10,571,0,49,''),(1249,10,571,0,135,''),(1250,10,837,0,135,'1'),(1251,10,571,0,112,''),(1252,10,837,0,112,'1'),(1253,10,837,0,120,'1'),(1254,10,562,0,103,'2'),(1255,10,571,0,103,''),(1256,10,837,0,103,'1'),(1257,10,562,0,98,'2'),(1258,10,571,0,98,''),(1259,10,837,0,98,'1'),(1260,10,571,0,16,''),(1261,10,571,0,17,''),(1262,10,571,0,18,''),(1263,10,571,0,19,''),(1264,10,571,0,20,''),(1265,10,571,0,45,''),(1266,10,571,0,46,''),(1267,10,562,0,47,'2'),(1268,10,571,0,47,''),(1269,10,562,0,48,'2'),(1270,10,571,0,48,''),(1271,10,571,0,52,''),(1272,10,571,0,53,''),(1273,10,562,0,54,'2'),(1274,10,571,0,54,''),(1275,10,103,0,132,''),(1276,10,105,0,132,''),(1277,10,571,0,132,'');
/*!40000 ALTER TABLE `catalog_product_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_product_link`
--
DROP TABLE IF EXISTS `catalog_product_link`;
CREATE TABLE `catalog_product_link` (
  `link_id` int(11) unsigned NOT NULL auto_increment,
  `product_id` int(10) unsigned NOT NULL default '0',
  `linked_product_id` int(10) unsigned NOT NULL default '0',
  `link_type_id` tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (`link_id`),
  KEY `FK_LINK_PRODUCT` (`product_id`),
  KEY `FK_LINKED_PRODUCT` (`linked_product_id`),
  KEY `FK_PRODUCT_LINK_TYPE` (`link_type_id`),
  CONSTRAINT `FK_PRODUCT_LINK_LINKED_PRODUCT` FOREIGN KEY (`linked_product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_PRODUCT_LINK_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_PRODUCT_LINK_TYPE` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2732 DEFAULT CHARSET=utf8 COMMENT='Related products';
--
-- 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 (1,49,29,1),(2,49,32,1),(3,49,33,1),(4,49,44,1),(5,49,17,4),(6,49,25,4),(7,49,41,4),(8,49,28,5),(9,49,36,5),(10,49,47,5),(11,29,30,1),(12,29,33,1),(13,29,20,4),(14,29,41,4),(15,29,53,4),(16,29,25,5),(17,29,34,5),(18,29,36,5),(19,30,29,1),(20,30,31,1),(21,30,32,1),(22,30,35,4),(23,30,38,4),(24,30,27,5),(25,30,39,5),(26,34,29,1),(27,34,30,1),(28,34,42,4),(29,34,46,4),(30,34,25,5),(31,34,36,5),(32,34,41,5),(33,31,32,1),(34,31,29,4),(35,31,39,4),(36,31,25,5),(37,31,42,5),(38,32,31,1),(39,32,33,1),(40,32,36,4),(41,32,45,4),(42,32,53,4),(43,32,25,5),(44,32,38,5),(45,32,42,5),(46,33,29,1),(47,33,17,4),(48,33,44,4),(49,33,54,4),(50,33,25,5),(51,33,32,5),(52,33,42,5),(53,33,53,5),(54,35,36,1),(55,35,37,1),(56,35,39,1),(57,37,35,1),(58,37,36,1),(59,37,39,1),(60,37,29,4),(61,37,32,4),(62,38,36,1),(63,38,39,1),(64,38,25,4),(65,38,29,4),(66,98,93,4),(67,98,126,5),(68,98,123,5),(69,98,120,5),(70,98,119,5),(71,103,83,4),(72,103,108,4),(73,103,112,4),(74,103,123,5),(75,103,120,5),(76,103,119,5),(77,108,103,4),(78,108,135,4),(79,108,119,5),(80,53,51,1),(81,53,52,1),(82,53,54,4),(83,53,17,5),(84,53,34,5),(85,53,44,5),(86,52,53,1),(87,52,54,4),(88,52,41,5),(89,52,42,5),(90,54,41,5),(91,54,42,5),(92,54,51,3),(93,54,52,3),(94,54,53,3),(95,112,83,4),(96,112,103,4),(97,112,108,4),(98,48,132,1),(99,48,133,1),(100,48,134,1),(101,48,44,4),(102,48,45,4),(103,48,47,4),(104,48,16,5),(105,48,19,5),(106,48,26,5),(107,47,44,4),(108,47,46,4),(109,47,48,4),(110,47,16,5),(111,47,25,5),(112,47,28,5),(113,46,132,1),(114,46,133,1),(115,46,134,1),(116,46,44,4),(117,46,47,4),(118,46,48,4),(119,46,19,5),(120,46,20,5),(121,46,25,5),(122,46,28,5),(123,46,83,5),(124,45,132,1),(125,45,133,1),(126,45,134,1),(127,45,44,4),(128,45,47,4),(129,45,48,4),(130,45,16,5),(131,45,17,5),(132,45,19,5),(133,93,83,4),(134,93,98,4),(135,93,119,5),(136,93,120,5),(137,93,123,5),(138,18,16,1),(139,18,17,1),(140,18,19,1),(141,18,26,4),(142,18,44,4),(143,18,25,5),(144,18,42,5),(145,18,54,5),(146,17,16,1),(147,17,18,1),(148,17,19,1),(149,17,25,4),(150,17,44,4),(151,17,53,4),(152,17,126,4),(153,17,27,5),(154,17,28,5),(155,17,51,5),(156,16,17,1),(157,16,18,1),(158,16,19,1),(159,16,27,4),(160,16,34,4),(161,16,39,4),(162,16,26,5),(163,16,29,5),(164,16,38,5),(165,20,16,1),(166,20,17,1),(167,20,18,1),(168,20,31,4),(169,20,27,5),(170,20,33,5),(171,20,39,5),(172,135,83,4),(173,25,134,1),(174,25,26,4),(175,25,27,4),(176,25,28,4),(177,25,17,5),(178,25,44,5),(179,19,16,1),(180,19,17,1),(181,19,18,1),(182,19,41,4),(183,19,47,4),(184,19,93,4),(185,19,25,5),(186,19,38,5),(187,19,39,5),(188,19,52,5),(189,19,126,5),(190,28,134,1),(191,28,25,4),(192,28,26,4),(193,28,27,4),(194,28,17,5),(195,28,44,5),(196,28,133,5),(197,26,134,1),(198,26,25,4),(199,26,27,4),(200,26,28,4),(201,26,17,5),(202,26,47,5),(203,51,52,1),(204,51,54,4),(205,51,41,5),(206,51,42,5),(2647,44,132,1),(2648,44,133,1),(2649,44,134,1),(2650,44,46,4),(2651,44,47,4),(2652,44,48,4),(2653,44,17,5),(2654,44,20,5),(2655,44,28,5),(2659,123,119,4),(2660,123,120,4),(2661,123,126,4),(2662,83,135,4),(2663,83,119,5),(2664,83,120,5),(2665,83,123,5),(2666,120,126,4),(2667,120,119,4),(2668,120,39,4),(2669,120,83,5),(2670,126,39,4),(2671,126,119,4),(2672,126,120,4),(2673,126,123,4),(2674,126,83,5),(2675,27,134,1),(2676,27,25,4),(2677,27,26,4),(2678,27,28,4),(2679,27,44,5),(2680,27,46,5),(2681,27,132,5),(2700,39,35,1),(2701,39,36,1),(2702,39,37,1),(2703,39,25,4),(2704,39,41,4),(2705,39,29,4),(2706,39,54,5),(2707,39,38,5),(2708,39,32,5),(2720,41,42,5),(2721,41,52,5),(2722,41,53,5),(2723,41,54,5),(2725,42,41,5),(2726,42,52,5),(2727,42,53,5),(2728,42,54,5),(2729,158,28,4),(2730,158,26,4),(2731,158,25,4);
/*!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`;
CREATE TABLE `catalog_product_link_attribute` (
  `product_link_attribute_id` smallint(6) unsigned NOT NULL auto_increment,
  `link_type_id` tinyint(3) unsigned NOT NULL default '0',
  `product_link_attribute_code` varchar(32) NOT NULL default '',
  `data_type` varchar(32) NOT NULL default '',
  PRIMARY KEY  (`product_link_attribute_id`),
  KEY `FK_ATTRIBUTE_PRODUCT_LINK_TYPE` (`link_type_id`),
  CONSTRAINT `FK_ATTRIBUTE_PRODUCT_LINK_TYPE` 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='Attributes for product link';
--
-- 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`;
CREATE TABLE `catalog_product_link_attribute_decimal` (
  `value_id` int(11) unsigned NOT NULL auto_increment,
  `product_link_attribute_id` smallint(6) unsigned default NULL,
  `link_id` int(11) unsigned default NULL,
  `value` decimal(12,4) NOT NULL default '0.0000',
  PRIMARY KEY  (`value_id`),
  KEY `FK_DECIMAL_PRODUCT_LINK_ATTRIBUTE` (`product_link_attribute_id`),
  KEY `FK_DECIMAL_LINK` (`link_id`),
  CONSTRAINT `FK_DECIMAL_LINK` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_DECIMAL_PRODUCT_LINK_ATTRIBUTE` 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=8 DEFAULT CHARSET=utf8 COMMENT='Decimal attributes values';
--
-- 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 */;
INSERT INTO `catalog_product_link_attribute_decimal` VALUES (1,6,2647,'0.0000'),(2,6,2648,'0.0000'),(3,6,2649,'0.0000'),(4,6,2675,'0.0000'),(5,6,2700,'0.0000'),(6,6,2701,'0.0000'),(7,6,2702,'0.0000');
/*!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`;
CREATE TABLE `catalog_product_link_attribute_int` (
  `value_id` int(11) unsigned NOT NULL auto_increment,
  `product_link_attribute_id` smallint(6) unsigned default NULL,
  `link_id` int(11) unsigned default NULL,
  `value` int(11) NOT NULL default '0',
  PRIMARY KEY  (`value_id`),
  KEY `FK_INT_PRODUCT_LINK_ATTRIBUTE` (`product_link_attribute_id`),
  KEY `FK_INT_PRODUCT_LINK` (`link_id`),
  CONSTRAINT `FK_INT_PRODUCT_LINK` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_INT_PRODUCT_LINK_ATTRIBUTE` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8;
--
-- 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,2647,0),(2,2,2648,0),(3,2,2649,0),(4,3,2650,0),(5,3,2651,0),(6,3,2652,0),(7,4,2653,0),(8,4,2654,0),(9,4,2655,0),(10,3,2659,0),(11,3,2660,0),(12,3,2661,0),(13,3,2662,0),(14,4,2663,0),(15,4,2664,0),(16,4,2665,0),(17,3,2666,0),(18,3,2667,0),(19,3,2668,0),(20,4,2669,0),(21,3,2670,0),(22,3,2671,0),(23,3,2672,0),(24,3,2673,0),(25,4,2674,0),(26,2,2675,0),(27,3,2676,0),(28,3,2677,0),(29,3,2678,0),(30,4,2679,0),(31,4,2680,0),(32,4,2681,0),(33,2,2700,0),(34,2,2701,0),(35,2,2702,0),(36,3,2703,0),(37,3,2704,0),(38,3,2705,0),(39,4,2706,0),(40,4,2707,0),(41,4,2708,0),(42,4,2720,0),(43,4,2721,0),(44,4,2722,0),(45,4,2723,0),(46,4,2725,0),(47,4,2726,0),(48,4,2727,0),(49,4,2728,0),(50,3,2729,0),(51,3,2730,0),(52,3,2731,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`;
CREATE TABLE `catalog_product_link_attribute_varchar` (
  `value_id` int(11) unsigned NOT NULL auto_increment,
  `product_link_attribute_id` smallint(6) unsigned NOT NULL default '0',
  `link_id` int(11) unsigned default NULL,
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`value_id`),
  KEY `FK_VARCHAR_PRODUCT_LINK_ATTRIBUTE` (`product_link_attribute_id`),
  KEY `FK_VARCHAR_LINK` (`link_id`),
  CONSTRAINT `FK_VARCHAR_LINK` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_VARCHAR_PRODUCT_LINK_ATTRIBUTE` 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='Varchar attributes values';
--
-- 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`;
CREATE TABLE `catalog_product_link_type` (
  `link_type_id` tinyint(3) unsigned NOT NULL auto_increment,
  `code` varchar(32) NOT NULL default '',
  PRIMARY KEY  (`link_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Types of product link(Related, superproduct, bundles)';
--
-- 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`;
CREATE TABLE `catalog_product_option` (
  `option_id` int(10) unsigned NOT NULL auto_increment,
  `product_id` int(10) unsigned NOT NULL default '0',
  `type` varchar(50) NOT NULL default '',
  `is_require` tinyint(1) NOT NULL default '1',
  `sku` varchar(64) NOT NULL default '',
  `max_characters` int(10) unsigned default NULL,
  `file_extension` varchar(50) default NULL,
  `sort_order` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`option_id`),
  KEY `CATALOG_PRODUCT_OPTION_PRODUCT` (`product_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
--
-- 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 (1,25,'drop_down',0,'',NULL,NULL,0),(2,26,'radio',0,'',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`;
CREATE TABLE `catalog_product_option_price` (
  `option_price_id` int(10) unsigned NOT NULL auto_increment,
  `option_id` int(10) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `price` decimal(12,4) NOT NULL default '0.0000',
  `price_type` enum('fixed','percent') NOT NULL default 'fixed',
  PRIMARY KEY  (`option_price_id`),
  KEY `CATALOG_PRODUCT_OPTION_PRICE_OPTION` (`option_id`),
  KEY `CATALOG_PRODUCT_OPTION_TITLE_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_PRICE_OPTION` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_PRICE_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- 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`;
CREATE TABLE `catalog_product_option_title` (
  `option_title_id` int(10) unsigned NOT NULL auto_increment,
  `option_id` int(10) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `title` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`option_title_id`),
  KEY `CATALOG_PRODUCT_OPTION_TITLE_OPTION` (`option_id`),
  KEY `CATALOG_PRODUCT_OPTION_TITLE_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_TITLE_OPTION` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_TITLE_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
--
-- 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 (1,1,0,'Extended Warranty'),(2,2,0,'Extended Warranty');
/*!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`;
CREATE TABLE `catalog_product_option_type_price` (
  `option_type_price_id` int(10) unsigned NOT NULL auto_increment,
  `option_type_id` int(10) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `price` decimal(12,4) NOT NULL default '0.0000',
  `price_type` enum('fixed','percent') NOT NULL default 'fixed',
  PRIMARY KEY  (`option_type_price_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE` (`option_type_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
--
-- 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 (1,1,0,'150.0000','fixed'),(2,2,0,'250.0000','fixed'),(3,3,0,'325.0000','fixed'),(4,4,0,'150.0000','fixed'),(5,5,0,'250.0000','fixed'),(6,6,0,'325.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`;
CREATE TABLE `catalog_product_option_type_title` (
  `option_type_title_id` int(10) unsigned NOT NULL auto_increment,
  `option_type_id` int(10) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `title` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`option_type_title_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION` (`option_type_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE` (`store_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
--
-- 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 (1,1,0,'1 Year - Parts and Labor'),(2,2,0,'2 Years - Parts and Labor'),(3,3,0,'3 Year - Parts and Labor'),(4,4,0,'1 Year - Parts and Labor'),(5,5,0,'2 Years - Parts and Labor'),(6,6,0,'3 Year - Parts and Labor');
/*!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`;
CREATE TABLE `catalog_product_option_type_value` (
  `option_type_id` int(10) unsigned NOT NULL auto_increment,
  `option_id` int(10) unsigned NOT NULL default '0',
  `sku` varchar(64) NOT NULL default '',
  `sort_order` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`option_type_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_VALUE_OPTION` (`option_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_TYPE_VALUE_OPTION` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
--
-- 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 (1,1,'1yr_p_l',10),(2,1,'2yr_p_l',20),(3,1,'3yr_p_l',30),(4,2,'1yr_p_l',10),(5,2,'2yr_p_l',20),(6,2,'3yr_p_l',0);
/*!40000 ALTER TABLE `catalog_product_option_type_value` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_product_super_attribute`
--
DROP TABLE IF EXISTS `catalog_product_super_attribute`;
CREATE TABLE `catalog_product_super_attribute` (
  `product_super_attribute_id` int(10) unsigned NOT NULL auto_increment,
  `product_id` int(10) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `position` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`product_super_attribute_id`),
  KEY `FK_SUPER_PRODUCT_ATTRIBUTE_PRODUCT` (`product_id`),
  CONSTRAINT `FK_SUPER_PRODUCT_ATTRIBUTE_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalog_product_super_attribute`
--
LOCK TABLES `catalog_product_super_attribute` WRITE;
/*!40000 ALTER TABLE `catalog_product_super_attribute` DISABLE KEYS */;
INSERT INTO `catalog_product_super_attribute` VALUES (1,83,501,0),(2,93,502,0),(3,83,502,1),(4,103,502,0),(5,108,502,0),(6,98,502,0),(7,119,525,0),(8,120,525,0),(9,112,502,0),(10,126,525,0),(11,135,502,0),(12,123,525,0),(13,126,272,1);
/*!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`;
CREATE TABLE `catalog_product_super_attribute_label` (
  `value_id` int(10) unsigned NOT NULL auto_increment,
  `product_super_attribute_id` int(10) unsigned NOT NULL default '0',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`value_id`),
  KEY `FK_SUPER_PRODUCT_ATTRIBUTE_LABEL` (`product_super_attribute_id`),
  CONSTRAINT `catalog_product_super_attribute_label_ibfk_1` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
--
-- 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 */;
INSERT INTO `catalog_product_super_attribute_label` VALUES (1,3,0,'Shoe Size'),(2,1,0,'Gender'),(3,2,0,'Shoe Size'),(4,6,0,'Shoe Size'),(5,4,0,'Shoe Size'),(6,5,0,'Shoe Size'),(7,9,0,'Shoe Size'),(8,7,0,'Size'),(9,8,0,'Size'),(10,12,0,'Size'),(11,10,0,'Size'),(12,13,0,'Color'),(13,11,0,'Shoe Size');
/*!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`;
CREATE TABLE `catalog_product_super_attribute_pricing` (
  `value_id` int(10) unsigned NOT NULL auto_increment,
  `product_super_attribute_id` int(10) unsigned NOT NULL default '0',
  `value_index` varchar(255) NOT NULL default '',
  `is_percent` tinyint(1) unsigned default '0',
  `pricing_value` decimal(10,4) default NULL,
  PRIMARY KEY  (`value_id`),
  KEY `FK_SUPER_PRODUCT_ATTRIBUTE_PRICING` (`product_super_attribute_id`),
  CONSTRAINT `catalog_product_super_attribute_pricing_ibfk_1` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
--
-- 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 */;
INSERT INTO `catalog_product_super_attribute_pricing` VALUES (1,12,'100',0,'10.0000'),(2,12,'99',0,'20.0000'),(3,12,'98',0,'30.0000'),(4,3,'39',0,'1.0000'),(5,3,'38',0,'2.0000'),(6,3,'37',0,'3.0000'),(7,13,'22',0,'5.2500');
/*!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`;
CREATE TABLE `catalog_product_super_link` (
  `link_id` int(10) unsigned NOT NULL auto_increment,
  `product_id` int(10) unsigned NOT NULL default '0',
  `parent_id` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`link_id`),
  KEY `FK_SUPER_PRODUCT_LINK_PARENT` (`parent_id`),
  KEY `FK_catalog_product_super_link` (`product_id`),
  CONSTRAINT `catalog_product_super_link_ibfk_2` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `catalog_product_super_link_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=367 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalog_product_super_link`
--
LOCK TABLES `catalog_product_super_link` WRITE;
/*!40000 ALTER TABLE `catalog_product_super_link` DISABLE KEYS */;
INSERT INTO `catalog_product_super_link` VALUES (118,37,123),(119,124,123),(120,125,123),(171,35,119),(172,117,119),(173,118,119),(318,94,98),(319,96,98),(320,95,98),(321,97,98),(322,30,98),(323,29,83),(324,84,83),(325,85,83),(326,86,83),(327,87,83),(328,88,83),(329,89,83),(330,90,83),(331,91,83),(332,92,83),(333,30,93),(334,97,93),(335,96,93),(336,95,93),(337,94,93),(338,31,103),(339,104,103),(340,105,103),(341,106,103),(342,107,103),(343,32,108),(344,109,108),(345,110,108),(346,111,108),(347,33,112),(348,113,112),(349,114,112),(350,115,112),(351,36,120),(352,121,120),(353,122,120),(354,38,126),(355,127,126),(356,128,126),(357,129,126),(358,130,126),(359,131,126),(360,49,135),(361,74,135),(362,75,135),(363,79,135),(364,80,135),(365,81,135),(366,82,135);
/*!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`;
CREATE TABLE `catalog_product_website` (
  `product_id` int(10) unsigned NOT NULL auto_increment,
  `website_id` smallint(5) unsigned NOT NULL,
  PRIMARY KEY  (`product_id`,`website_id`),
  KEY `FK_CATAOLOG_PRODUCT_WEBSITE_WEBSITE` (`website_id`),
  CONSTRAINT `FK_CATALOG_PRODUCT_WEBSITE_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATAOLOG_PRODUCT_WEBSITE_WEBSITE` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=167 DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
--
-- 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 (16,1),(17,1),(18,1),(19,1),(20,1),(25,1),(26,1),(27,1),(28,1),(29,1),(30,1),(31,1),(32,1),(33,1),(34,1),(35,1),(36,1),(37,1),(38,1),(39,1),(41,1),(42,1),(44,1),(45,1),(46,1),(47,1),(48,1),(49,1),(51,1),(52,1),(53,1),(54,1),(74,1),(75,1),(79,1),(80,1),(81,1),(82,1),(83,1),(84,1),(85,1),(86,1),(87,1),(88,1),(89,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),(112,1),(113,1),(114,1),(115,1),(117,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),(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);
/*!40000 ALTER TABLE `catalog_product_website` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalogindex_aggregation`
--
DROP TABLE IF EXISTS `catalogindex_aggregation`;
CREATE TABLE `catalogindex_aggregation` (
  `aggregation_id` int(10) unsigned NOT NULL auto_increment,
  `store_id` smallint(5) unsigned NOT 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;
--
-- 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`;
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;
--
-- 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`;
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;
--
-- 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`;
CREATE TABLE `catalogindex_eav` (
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `entity_id` int(10) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `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;
--
-- 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`;
CREATE TABLE `catalogindex_minimal_price` (
  `index_id` int(10) unsigned NOT NULL auto_increment,
  `entity_id` int(10) unsigned NOT NULL default '0',
  `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 default NULL,
  PRIMARY KEY  (`index_id`),
  KEY `IDX_VALUE` (`value`),
  KEY `IDX_QTY` (`qty`),
  KEY `FK_CATALOGINDEX_MINIMAL_PRICE_ENTITY` (`entity_id`),
  KEY `FK_CATALOGINDEX_MINIMAL_PRICE_CUSTOMER_GROUP` (`customer_group_id`),
  KEY `FK_CI_MINIMAL_PRICE_WEBSITE_ID` (`website_id`),
  KEY `IDX_FULL` (`entity_id`,`qty`,`customer_group_id`,`value`,`website_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;
--
-- 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`;
CREATE TABLE `catalogindex_price` (
  `entity_id` int(10) unsigned NOT NULL default '0',
  `attribute_id` smallint(5) unsigned NOT NULL default '0',
  `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 default 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 `FK_CI_PRICE_WEBSITE_ID` (`website_id`),
  KEY `IDX_FULL` (`entity_id`,`attribute_id`,`customer_group_id`,`value`,`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;
--
-- 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`;
CREATE TABLE `cataloginventory_stock` (
  `stock_id` smallint(4) unsigned NOT NULL auto_increment,
  `stock_name` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`stock_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Catalog inventory Stocks list';
--
-- 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`;
CREATE TABLE `cataloginventory_stock_item` (
  `item_id` int(10) unsigned NOT NULL auto_increment,
  `product_id` int(10) unsigned NOT NULL default '0',
  `stock_id` smallint(4) unsigned NOT NULL default '0',
  `qty` decimal(12,4) NOT NULL default '0.0000',
  `min_qty` decimal(12,4) NOT NULL default '0.0000',
  `use_config_min_qty` tinyint(1) unsigned NOT NULL default '1',
  `is_qty_decimal` tinyint(1) unsigned NOT NULL default '0',
  `backorders` tinyint(3) unsigned NOT NULL default '0',
  `use_config_backorders` tinyint(1) unsigned NOT NULL default '1',
  `min_sale_qty` decimal(12,4) NOT NULL default '1.0000',
  `use_config_min_sale_qty` tinyint(1) unsigned NOT NULL default '1',
  `max_sale_qty` decimal(12,4) NOT NULL default '0.0000',
  `use_config_max_sale_qty` tinyint(1) unsigned NOT NULL default '1',
  `is_in_stock` tinyint(1) unsigned NOT NULL default '0',
  `low_stock_date` datetime default NULL,
  `notify_stock_qty` decimal(12,4) default NULL,
  `use_config_notify_stock_qty` tinyint(1) unsigned NOT NULL default '1',
  `manage_stock` tinyint(1) unsigned NOT NULL default '0',
  `use_config_manage_stock` tinyint(1) unsigned NOT NULL default '1',
  `stock_status_changed_automatically` tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`item_id`),
  UNIQUE KEY `IDX_STOCK_PRODUCT` (`product_id`,`stock_id`),
  KEY `FK_CATALOGINVENTORY_STOCK_ITEM_PRODUCT` (`product_id`),
  KEY `FK_CATALOGINVENTORY_STOCK_ITEM_STOCK` (`stock_id`),
  CONSTRAINT `FK_CATALOGINVENTORY_STOCK_ITEM_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOGINVENTORY_STOCK_ITEM_STOCK` FOREIGN KEY (`stock_id`) REFERENCES `cataloginventory_stock` (`stock_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=121 DEFAULT CHARSET=utf8 COMMENT='Invetory Stock Item Data';
--
-- 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 (1,16,1,'996.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(2,17,1,'797.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(3,18,1,'989.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(4,19,1,'328.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(5,20,1,'361.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(6,25,1,'143.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(7,26,1,'11.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(8,27,1,'595.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(9,28,1,'681.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(10,29,1,'16.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(11,30,1,'719.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(12,31,1,'441.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(13,32,1,'805.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(14,33,1,'386.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(15,34,1,'718.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(16,35,1,'580.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(17,36,1,'79.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,0,'0000-00-00 00:00:00',NULL,1,0,1,0),(18,37,1,'722.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(19,38,1,'99.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(20,39,1,'234.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(21,41,1,'339.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(22,42,1,'994.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(23,44,1,'452.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(24,45,1,'120.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(25,46,1,'932.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(26,47,1,'673.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(27,48,1,'872.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(28,49,1,'456.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(29,51,1,'706.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(30,52,1,'724.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(31,53,1,'956.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(32,54,1,'960.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(33,74,1,'999.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(34,75,1,'617.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(35,79,1,'797.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(36,80,1,'856.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(37,81,1,'660.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(38,82,1,'321.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(39,83,1,'986.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(40,84,1,'859.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(41,85,1,'31.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(42,86,1,'303.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(43,87,1,'621.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(44,88,1,'191.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(45,89,1,'948.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(46,90,1,'533.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(47,91,1,'293.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(48,92,1,'563.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(49,93,1,'767.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(50,94,1,'480.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(51,95,1,'95.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(52,96,1,'202.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(53,97,1,'326.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(54,98,1,'114.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(55,99,1,'618.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(56,100,1,'820.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(57,101,1,'966.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(58,102,1,'898.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(59,103,1,'961.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(60,104,1,'641.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(61,105,1,'537.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(62,106,1,'808.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(63,107,1,'718.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(64,108,1,'384.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(65,109,1,'379.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(66,110,1,'312.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(67,111,1,'979.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(68,112,1,'264.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(69,113,1,'336.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(70,114,1,'374.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(71,115,1,'343.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(72,117,1,'998.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(73,118,1,'749.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(74,119,1,'466.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(75,120,1,'896.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(76,121,1,'812.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(77,122,1,'469.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(78,123,1,'555.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(79,124,1,'241.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(80,125,1,'422.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(81,126,1,'832.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(82,127,1,'113.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(83,128,1,'463.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(84,129,1,'45.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(85,130,1,'687.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(86,131,1,'105.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(87,132,1,'162.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(88,133,1,'398.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(89,134,1,'377.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(90,135,1,'998.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(91,137,1,'427.0000','0.0000',1,0,0,1,'1.0000',1,'100.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(92,138,1,'703.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(93,139,1,'743.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(94,140,1,'769.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(95,141,1,'853.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(96,142,1,'678.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(97,143,1,'133.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(98,144,1,'879.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(99,145,1,'539.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(100,146,1,'543.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(101,147,1,'385.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(102,148,1,'303.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(103,149,1,'74.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(104,150,1,'17.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(105,151,1,'846.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(106,152,1,'504.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(107,153,1,'549.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(108,154,1,'313.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(109,155,1,'363.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(110,156,1,'453.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(111,157,1,'563.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(112,158,1,'156.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(113,159,1,'275.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(114,160,1,'618.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(115,161,1,'209.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(116,162,1,'760.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(117,163,1,'426.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(118,164,1,'968.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(119,165,1,'79.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0),(120,166,1,'849.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,'0000-00-00 00:00:00',NULL,1,0,1,0);
/*!40000 ALTER TABLE `cataloginventory_stock_item` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalogrule`
--
DROP TABLE IF EXISTS `catalogrule`;
CREATE TABLE `catalogrule` (
  `rule_id` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `description` text NOT NULL,
  `from_date` date default NULL,
  `to_date` date default NULL,
  `customer_group_ids` varchar(255) NOT NULL default '',
  `is_active` tinyint(1) NOT NULL default '0',
  `conditions_serialized` mediumtext NOT NULL,
  `actions_serialized` mediumtext NOT NULL,
  `stop_rules_processing` tinyint(1) NOT NULL default '1',
  `sort_order` int(10) unsigned NOT NULL default '0',
  `simple_action` varchar(32) NOT NULL,
  `discount_amount` decimal(12,4) NOT NULL,
  `website_ids` text,
  PRIMARY KEY  (`rule_id`),
  KEY `sort_order` (`is_active`,`sort_order`,`to_date`,`from_date`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalogrule`
--
LOCK TABLES `catalogrule` WRITE;
/*!40000 ALTER TABLE `catalogrule` DISABLE KEYS */;
INSERT INTO `catalogrule` VALUES (1,'Sony Sale','20% discount on all Sony products.','2008-08-25','2009-01-31','0,1,2,3',1,'a:7:{s:4:\"type\";s:34:\"catalogrule/rule_condition_combine\";s:9:\"attribute\";N;s:8:\"operator\";N;s:5:\"value\";s:1:\"1\";s:18:\"is_value_processed\";N;s:10:\"aggregator\";s:3:\"all\";s:10:\"conditions\";a:2:{i:0;a:5:{s:4:\"type\";s:34:\"catalogrule/rule_condition_product\";s:9:\"attribute\";s:12:\"manufacturer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";s:18:\"is_value_processed\";b:0;}i:1;a:5:{s:4:\"type\";s:34:\"catalogrule/rule_condition_product\";s:9:\"attribute\";s:5:\"price\";s:8:\"operator\";s:2:\"<=\";s:5:\"value\";d:100;s:18:\"is_value_processed\";b:0;}}}','a:4:{s:4:\"type\";s:34:\"catalogrule/rule_action_collection\";s:9:\"attribute\";N;s:8:\"operator\";s:1:\"=\";s:5:\"value\";N;}',1,0,'by_percent','0.0000','1'),(3,'CODEDEMOSTORE','10% off all Toshiba laptops','2008-08-06','2009-08-23','0,1,2,4',1,'a:7:{s:4:\"type\";s:34:\"catalogrule/rule_condition_combine\";s:9:\"attribute\";N;s:8:\"operator\";N;s:5:\"value\";s:1:\"1\";s:18:\"is_value_processed\";N;s:10:\"aggregator\";s:3:\"all\";s:10:\"conditions\";a:1:{i:0;a:5:{s:4:\"type\";s:34:\"catalogrule/rule_condition_product\";s:9:\"attribute\";s:12:\"manufacturer\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:0:\"\";s:18:\"is_value_processed\";b:0;}}}','a:4:{s:4:\"type\";s:34:\"catalogrule/rule_action_collection\";s:9:\"attribute\";N;s:8:\"operator\";s:1:\"=\";s:5:\"value\";N;}',0,0,'by_percent','0.0000','1'),(4,'Anashria 20 percent Off','','2008-08-27','2009-08-28','0,1,2,4',1,'a:7:{s:4:\"type\";s:34:\"catalogrule/rule_condition_combine\";s:9:\"attribute\";N;s:8:\"operator\";N;s:5:\"value\";s:1:\"1\";s:18:\"is_value_processed\";N;s:10:\"aggregator\";s:3:\"all\";s:10:\"conditions\";a:1:{i:0;a:5:{s:4:\"type\";s:34:\"catalogrule/rule_condition_product\";s:9:\"attribute\";s:3:\"sku\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"ana\";s:18:\"is_value_processed\";b:0;}}}','a:4:{s:4:\"type\";s:34:\"catalogrule/rule_action_collection\";s:9:\"attribute\";N;s:8:\"operator\";s:1:\"=\";s:5:\"value\";N;}',1,0,'by_percent','0.0000','1'),(5,'20 percent off selected Furniture','','2008-08-24','2009-09-28','0,1,2,4',1,'a:7:{s:4:\"type\";s:34:\"catalogrule/rule_condition_combine\";s:9:\"attribute\";N;s:8:\"operator\";N;s:5:\"value\";s:1:\"1\";s:18:\"is_value_processed\";N;s:10:\"aggregator\";s:3:\"any\";s:10:\"conditions\";a:3:{i:0;a:5:{s:4:\"type\";s:34:\"catalogrule/rule_condition_product\";s:9:\"attribute\";s:3:\"sku\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"384822\";s:18:\"is_value_processed\";b:0;}i:1;a:5:{s:4:\"type\";s:34:\"catalogrule/rule_condition_product\";s:9:\"attribute\";s:3:\"sku\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:6:\"349838\";s:18:\"is_value_processed\";b:0;}i:2;a:5:{s:4:\"type\";s:34:\"catalogrule/rule_condition_product\";s:9:\"attribute\";s:3:\"sku\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"1112\";s:18:\"is_value_processed\";b:0;}}}','a:4:{s:4:\"type\";s:34:\"catalogrule/rule_action_collection\";s:9:\"attribute\";N;s:8:\"operator\";s:1:\"=\";s:5:\"value\";N;}',1,0,'by_percent','0.0000','1'),(6,'20 percent off T shirts','','2008-08-28','2009-10-30','0,1,2',1,'a:7:{s:4:\"type\";s:34:\"catalogrule/rule_condition_combine\";s:9:\"attribute\";N;s:8:\"operator\";N;s:5:\"value\";s:1:\"1\";s:18:\"is_value_processed\";N;s:10:\"aggregator\";s:3:\"all\";s:10:\"conditions\";a:1:{i:0;a:5:{s:4:\"type\";s:34:\"catalogrule/rule_condition_product\";s:9:\"attribute\";s:16:\"attribute_set_id\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"41\";s:18:\"is_value_processed\";b:0;}}}','a:4:{s:4:\"type\";s:34:\"catalogrule/rule_action_collection\";s:9:\"attribute\";N;s:8:\"operator\";s:1:\"=\";s:5:\"value\";N;}',0,0,'by_percent','0.0000','1'),(7,'Christmas Rule','','2008-12-21','2009-01-24','0,1,2,3,4',0,'a:6:{s:4:\"type\";s:34:\"catalogrule/rule_condition_combine\";s:9:\"attribute\";N;s:8:\"operator\";N;s:5:\"value\";s:1:\"1\";s:18:\"is_value_processed\";N;s:10:\"aggregator\";s:3:\"all\";}','a:4:{s:4:\"type\";s:34:\"catalogrule/rule_action_collection\";s:9:\"attribute\";N;s:8:\"operator\";s:1:\"=\";s:5:\"value\";N;}',0,0,'by_percent','10.0000','1');
/*!40000 ALTER TABLE `catalogrule` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalogrule_affected_product`
--
DROP TABLE IF EXISTS `catalogrule_affected_product`;
CREATE TABLE `catalogrule_affected_product` (
  `product_id` int(10) unsigned NOT NULL,
  KEY `IDX_PRODUCT` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- 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_product`
--
DROP TABLE IF EXISTS `catalogrule_product`;
CREATE TABLE `catalogrule_product` (
  `rule_product_id` int(10) unsigned NOT NULL auto_increment,
  `rule_id` int(10) unsigned NOT NULL default '0',
  `from_time` int(10) unsigned NOT NULL default '0',
  `to_time` int(10) unsigned NOT NULL default '0',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0',
  `product_id` int(10) unsigned NOT NULL default '0',
  `action_operator` enum('to_fixed','to_percent','by_fixed','by_percent') NOT NULL default 'to_fixed',
  `action_amount` decimal(12,4) NOT NULL default '0.0000',
  `action_stop` tinyint(1) NOT NULL default '0',
  `sort_order` int(10) unsigned NOT NULL default '0',
  `website_id` smallint(5) unsigned NOT NULL,
  PRIMARY KEY  (`rule_product_id`),
  UNIQUE KEY `sort_order` (`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  KEY `FK_catalogrule_product_rule` (`rule_id`),
  KEY `FK_catalogrule_product_customergroup` (`customer_group_id`),
  KEY `FK_catalogrule_product_website` (`website_id`),
  KEY `FK_CATALOGRULE_PRODUCT_PRODUCT` (`product_id`),
  CONSTRAINT `FK_CATALOGRULE_PRODUCT_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_catalogrule_product_customergroup` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_catalogrule_product_rule` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_catalogrule_product_website` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=708 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalogrule_product`
--
LOCK TABLES `catalogrule_product` WRITE;
/*!40000 ALTER TABLE `catalogrule_product` DISABLE KEYS */;
INSERT INTO `catalogrule_product` VALUES (1,1,1219622400,1233446399,0,29,'by_percent','0.0000',1,0,1),(2,1,1219622400,1233446399,1,29,'by_percent','0.0000',1,0,1),(3,1,1219622400,1233446399,2,29,'by_percent','0.0000',1,0,1),(4,1,1219622400,1233446399,3,29,'by_percent','0.0000',1,0,1),(5,1,1219622400,1233446399,0,31,'by_percent','0.0000',1,0,1),(6,1,1219622400,1233446399,1,31,'by_percent','0.0000',1,0,1),(7,1,1219622400,1233446399,2,31,'by_percent','0.0000',1,0,1),(8,1,1219622400,1233446399,3,31,'by_percent','0.0000',1,0,1),(9,1,1219622400,1233446399,0,32,'by_percent','0.0000',1,0,1),(10,1,1219622400,1233446399,1,32,'by_percent','0.0000',1,0,1),(11,1,1219622400,1233446399,2,32,'by_percent','0.0000',1,0,1),(12,1,1219622400,1233446399,3,32,'by_percent','0.0000',1,0,1),(13,1,1219622400,1233446399,0,35,'by_percent','0.0000',1,0,1),(14,1,1219622400,1233446399,1,35,'by_percent','0.0000',1,0,1),(15,1,1219622400,1233446399,2,35,'by_percent','0.0000',1,0,1),(16,1,1219622400,1233446399,3,35,'by_percent','0.0000',1,0,1),(17,1,1219622400,1233446399,0,36,'by_percent','0.0000',1,0,1),(18,1,1219622400,1233446399,1,36,'by_percent','0.0000',1,0,1),(19,1,1219622400,1233446399,2,36,'by_percent','0.0000',1,0,1),(20,1,1219622400,1233446399,3,36,'by_percent','0.0000',1,0,1),(21,1,1219622400,1233446399,0,37,'by_percent','0.0000',1,0,1),(22,1,1219622400,1233446399,1,37,'by_percent','0.0000',1,0,1),(23,1,1219622400,1233446399,2,37,'by_percent','0.0000',1,0,1),(24,1,1219622400,1233446399,3,37,'by_percent','0.0000',1,0,1),(25,1,1219622400,1233446399,0,38,'by_percent','0.0000',1,0,1),(26,1,1219622400,1233446399,1,38,'by_percent','0.0000',1,0,1),(27,1,1219622400,1233446399,2,38,'by_percent','0.0000',1,0,1),(28,1,1219622400,1233446399,3,38,'by_percent','0.0000',1,0,1),(29,1,1219622400,1233446399,0,39,'by_percent','0.0000',1,0,1),(30,1,1219622400,1233446399,1,39,'by_percent','0.0000',1,0,1),(31,1,1219622400,1233446399,2,39,'by_percent','0.0000',1,0,1),(32,1,1219622400,1233446399,3,39,'by_percent','0.0000',1,0,1),(33,1,1219622400,1233446399,0,45,'by_percent','0.0000',1,0,1),(34,1,1219622400,1233446399,1,45,'by_percent','0.0000',1,0,1),(35,1,1219622400,1233446399,2,45,'by_percent','0.0000',1,0,1),(36,1,1219622400,1233446399,3,45,'by_percent','0.0000',1,0,1),(37,1,1219622400,1233446399,0,49,'by_percent','0.0000',1,0,1),(38,1,1219622400,1233446399,1,49,'by_percent','0.0000',1,0,1),(39,1,1219622400,1233446399,2,49,'by_percent','0.0000',1,0,1),(40,1,1219622400,1233446399,3,49,'by_percent','0.0000',1,0,1),(41,1,1219622400,1233446399,0,74,'by_percent','0.0000',1,0,1),(42,1,1219622400,1233446399,1,74,'by_percent','0.0000',1,0,1),(43,1,1219622400,1233446399,2,74,'by_percent','0.0000',1,0,1),(44,1,1219622400,1233446399,3,74,'by_percent','0.0000',1,0,1),(45,1,1219622400,1233446399,0,75,'by_percent','0.0000',1,0,1),(46,1,1219622400,1233446399,1,75,'by_percent','0.0000',1,0,1),(47,1,1219622400,1233446399,2,75,'by_percent','0.0000',1,0,1),(48,1,1219622400,1233446399,3,75,'by_percent','0.0000',1,0,1),(49,1,1219622400,1233446399,0,79,'by_percent','0.0000',1,0,1),(50,1,1219622400,1233446399,1,79,'by_percent','0.0000',1,0,1),(51,1,1219622400,1233446399,2,79,'by_percent','0.0000',1,0,1),(52,1,1219622400,1233446399,3,79,'by_percent','0.0000',1,0,1),(53,1,1219622400,1233446399,0,80,'by_percent','0.0000',1,0,1),(54,1,1219622400,1233446399,1,80,'by_percent','0.0000',1,0,1),(55,1,1219622400,1233446399,2,80,'by_percent','0.0000',1,0,1),(56,1,1219622400,1233446399,3,80,'by_percent','0.0000',1,0,1),(57,1,1219622400,1233446399,0,81,'by_percent','0.0000',1,0,1),(58,1,1219622400,1233446399,1,81,'by_percent','0.0000',1,0,1),(59,1,1219622400,1233446399,2,81,'by_percent','0.0000',1,0,1),(60,1,1219622400,1233446399,3,81,'by_percent','0.0000',1,0,1),(61,1,1219622400,1233446399,0,82,'by_percent','0.0000',1,0,1),(62,1,1219622400,1233446399,1,82,'by_percent','0.0000',1,0,1),(63,1,1219622400,1233446399,2,82,'by_percent','0.0000',1,0,1),(64,1,1219622400,1233446399,3,82,'by_percent','0.0000',1,0,1),(65,1,1219622400,1233446399,0,83,'by_percent','0.0000',1,0,1),(66,1,1219622400,1233446399,1,83,'by_percent','0.0000',1,0,1),(67,1,1219622400,1233446399,2,83,'by_percent','0.0000',1,0,1),(68,1,1219622400,1233446399,3,83,'by_percent','0.0000',1,0,1),(69,1,1219622400,1233446399,0,84,'by_percent','0.0000',1,0,1),(70,1,1219622400,1233446399,1,84,'by_percent','0.0000',1,0,1),(71,1,1219622400,1233446399,2,84,'by_percent','0.0000',1,0,1),(72,1,1219622400,1233446399,3,84,'by_percent','0.0000',1,0,1),(73,1,1219622400,1233446399,0,85,'by_percent','0.0000',1,0,1),(74,1,1219622400,1233446399,1,85,'by_percent','0.0000',1,0,1),(75,1,1219622400,1233446399,2,85,'by_percent','0.0000',1,0,1),(76,1,1219622400,1233446399,3,85,'by_percent','0.0000',1,0,1),(77,1,1219622400,1233446399,0,86,'by_percent','0.0000',1,0,1),(78,1,1219622400,1233446399,1,86,'by_percent','0.0000',1,0,1),(79,1,1219622400,1233446399,2,86,'by_percent','0.0000',1,0,1),(80,1,1219622400,1233446399,3,86,'by_percent','0.0000',1,0,1),(81,1,1219622400,1233446399,0,87,'by_percent','0.0000',1,0,1),(82,1,1219622400,1233446399,1,87,'by_percent','0.0000',1,0,1),(83,1,1219622400,1233446399,2,87,'by_percent','0.0000',1,0,1),(84,1,1219622400,1233446399,3,87,'by_percent','0.0000',1,0,1),(85,1,1219622400,1233446399,0,88,'by_percent','0.0000',1,0,1),(86,1,1219622400,1233446399,1,88,'by_percent','0.0000',1,0,1),(87,1,1219622400,1233446399,2,88,'by_percent','0.0000',1,0,1),(88,1,1219622400,1233446399,3,88,'by_percent','0.0000',1,0,1),(89,1,1219622400,1233446399,0,89,'by_percent','0.0000',1,0,1),(90,1,1219622400,1233446399,1,89,'by_percent','0.0000',1,0,1),(91,1,1219622400,1233446399,2,89,'by_percent','0.0000',1,0,1),(92,1,1219622400,1233446399,3,89,'by_percent','0.0000',1,0,1),(93,1,1219622400,1233446399,0,90,'by_percent','0.0000',1,0,1),(94,1,1219622400,1233446399,1,90,'by_percent','0.0000',1,0,1),(95,1,1219622400,1233446399,2,90,'by_percent','0.0000',1,0,1),(96,1,1219622400,1233446399,3,90,'by_percent','0.0000',1,0,1),(97,1,1219622400,1233446399,0,91,'by_percent','0.0000',1,0,1),(98,1,1219622400,1233446399,1,91,'by_percent','0.0000',1,0,1),(99,1,1219622400,1233446399,2,91,'by_percent','0.0000',1,0,1),(100,1,1219622400,1233446399,3,91,'by_percent','0.0000',1,0,1),(101,1,1219622400,1233446399,0,92,'by_percent','0.0000',1,0,1),(102,1,1219622400,1233446399,1,92,'by_percent','0.0000',1,0,1),(103,1,1219622400,1233446399,2,92,'by_percent','0.0000',1,0,1),(104,1,1219622400,1233446399,3,92,'by_percent','0.0000',1,0,1),(105,1,1219622400,1233446399,0,103,'by_percent','0.0000',1,0,1),(106,1,1219622400,1233446399,1,103,'by_percent','0.0000',1,0,1),(107,1,1219622400,1233446399,2,103,'by_percent','0.0000',1,0,1),(108,1,1219622400,1233446399,3,103,'by_percent','0.0000',1,0,1),(109,1,1219622400,1233446399,0,104,'by_percent','0.0000',1,0,1),(110,1,1219622400,1233446399,1,104,'by_percent','0.0000',1,0,1),(111,1,1219622400,1233446399,2,104,'by_percent','0.0000',1,0,1),(112,1,1219622400,1233446399,3,104,'by_percent','0.0000',1,0,1),(113,1,1219622400,1233446399,0,105,'by_percent','0.0000',1,0,1),(114,1,1219622400,1233446399,1,105,'by_percent','0.0000',1,0,1),(115,1,1219622400,1233446399,2,105,'by_percent','0.0000',1,0,1),(116,1,1219622400,1233446399,3,105,'by_percent','0.0000',1,0,1),(117,1,1219622400,1233446399,0,106,'by_percent','0.0000',1,0,1),(118,1,1219622400,1233446399,1,106,'by_percent','0.0000',1,0,1),(119,1,1219622400,1233446399,2,106,'by_percent','0.0000',1,0,1),(120,1,1219622400,1233446399,3,106,'by_percent','0.0000',1,0,1),(121,1,1219622400,1233446399,0,107,'by_percent','0.0000',1,0,1),(122,1,1219622400,1233446399,1,107,'by_percent','0.0000',1,0,1),(123,1,1219622400,1233446399,2,107,'by_percent','0.0000',1,0,1),(124,1,1219622400,1233446399,3,107,'by_percent','0.0000',1,0,1),(125,1,1219622400,1233446399,0,108,'by_percent','0.0000',1,0,1),(126,1,1219622400,1233446399,1,108,'by_percent','0.0000',1,0,1),(127,1,1219622400,1233446399,2,108,'by_percent','0.0000',1,0,1),(128,1,1219622400,1233446399,3,108,'by_percent','0.0000',1,0,1),(129,1,1219622400,1233446399,0,109,'by_percent','0.0000',1,0,1),(130,1,1219622400,1233446399,1,109,'by_percent','0.0000',1,0,1),(131,1,1219622400,1233446399,2,109,'by_percent','0.0000',1,0,1),(132,1,1219622400,1233446399,3,109,'by_percent','0.0000',1,0,1),(133,1,1219622400,1233446399,0,110,'by_percent','0.0000',1,0,1),(134,1,1219622400,1233446399,1,110,'by_percent','0.0000',1,0,1),(135,1,1219622400,1233446399,2,110,'by_percent','0.0000',1,0,1),(136,1,1219622400,1233446399,3,110,'by_percent','0.0000',1,0,1),(137,1,1219622400,1233446399,0,111,'by_percent','0.0000',1,0,1),(138,1,1219622400,1233446399,1,111,'by_percent','0.0000',1,0,1),(139,1,1219622400,1233446399,2,111,'by_percent','0.0000',1,0,1),(140,1,1219622400,1233446399,3,111,'by_percent','0.0000',1,0,1),(141,1,1219622400,1233446399,0,117,'by_percent','0.0000',1,0,1),(142,1,1219622400,1233446399,1,117,'by_percent','0.0000',1,0,1),(143,1,1219622400,1233446399,2,117,'by_percent','0.0000',1,0,1),(144,1,1219622400,1233446399,3,117,'by_percent','0.0000',1,0,1),(145,1,1219622400,1233446399,0,118,'by_percent','0.0000',1,0,1),(146,1,1219622400,1233446399,1,118,'by_percent','0.0000',1,0,1),(147,1,1219622400,1233446399,2,118,'by_percent','0.0000',1,0,1),(148,1,1219622400,1233446399,3,118,'by_percent','0.0000',1,0,1),(149,1,1219622400,1233446399,0,119,'by_percent','0.0000',1,0,1),(150,1,1219622400,1233446399,1,119,'by_percent','0.0000',1,0,1),(151,1,1219622400,1233446399,2,119,'by_percent','0.0000',1,0,1),(152,1,1219622400,1233446399,3,119,'by_percent','0.0000',1,0,1),(153,1,1219622400,1233446399,0,120,'by_percent','0.0000',1,0,1),(154,1,1219622400,1233446399,1,120,'by_percent','0.0000',1,0,1),(155,1,1219622400,1233446399,2,120,'by_percent','0.0000',1,0,1),(156,1,1219622400,1233446399,3,120,'by_percent','0.0000',1,0,1),(157,1,1219622400,1233446399,0,121,'by_percent','0.0000',1,0,1),(158,1,1219622400,1233446399,1,121,'by_percent','0.0000',1,0,1),(159,1,1219622400,1233446399,2,121,'by_percent','0.0000',1,0,1),(160,1,1219622400,1233446399,3,121,'by_percent','0.0000',1,0,1),(161,1,1219622400,1233446399,0,122,'by_percent','0.0000',1,0,1),(162,1,1219622400,1233446399,1,122,'by_percent','0.0000',1,0,1),(163,1,1219622400,1233446399,2,122,'by_percent','0.0000',1,0,1),(164,1,1219622400,1233446399,3,122,'by_percent','0.0000',1,0,1),(165,1,1219622400,1233446399,0,123,'by_percent','0.0000',1,0,1),(166,1,1219622400,1233446399,1,123,'by_percent','0.0000',1,0,1),(167,1,1219622400,1233446399,2,123,'by_percent','0.0000',1,0,1),(168,1,1219622400,1233446399,3,123,'by_percent','0.0000',1,0,1),(169,1,1219622400,1233446399,0,124,'by_percent','0.0000',1,0,1),(170,1,1219622400,1233446399,1,124,'by_percent','0.0000',1,0,1),(171,1,1219622400,1233446399,2,124,'by_percent','0.0000',1,0,1),(172,1,1219622400,1233446399,3,124,'by_percent','0.0000',1,0,1),(173,1,1219622400,1233446399,0,125,'by_percent','0.0000',1,0,1),(174,1,1219622400,1233446399,1,125,'by_percent','0.0000',1,0,1),(175,1,1219622400,1233446399,2,125,'by_percent','0.0000',1,0,1),(176,1,1219622400,1233446399,3,125,'by_percent','0.0000',1,0,1),(177,1,1219622400,1233446399,0,126,'by_percent','0.0000',1,0,1),(178,1,1219622400,1233446399,1,126,'by_percent','0.0000',1,0,1),(179,1,1219622400,1233446399,2,126,'by_percent','0.0000',1,0,1),(180,1,1219622400,1233446399,3,126,'by_percent','0.0000',1,0,1),(181,1,1219622400,1233446399,0,127,'by_percent','0.0000',1,0,1),(182,1,1219622400,1233446399,1,127,'by_percent','0.0000',1,0,1),(183,1,1219622400,1233446399,2,127,'by_percent','0.0000',1,0,1),(184,1,1219622400,1233446399,3,127,'by_percent','0.0000',1,0,1),(185,1,1219622400,1233446399,0,128,'by_percent','0.0000',1,0,1),(186,1,1219622400,1233446399,1,128,'by_percent','0.0000',1,0,1),(187,1,1219622400,1233446399,2,128,'by_percent','0.0000',1,0,1),(188,1,1219622400,1233446399,3,128,'by_percent','0.0000',1,0,1),(189,1,1219622400,1233446399,0,129,'by_percent','0.0000',1,0,1),(190,1,1219622400,1233446399,1,129,'by_percent','0.0000',1,0,1),(191,1,1219622400,1233446399,2,129,'by_percent','0.0000',1,0,1),(192,1,1219622400,1233446399,3,129,'by_percent','0.0000',1,0,1),(193,1,1219622400,1233446399,0,130,'by_percent','0.0000',1,0,1),(194,1,1219622400,1233446399,1,130,'by_percent','0.0000',1,0,1),(195,1,1219622400,1233446399,2,130,'by_percent','0.0000',1,0,1),(196,1,1219622400,1233446399,3,130,'by_percent','0.0000',1,0,1),(197,1,1219622400,1233446399,0,131,'by_percent','0.0000',1,0,1),(198,1,1219622400,1233446399,1,131,'by_percent','0.0000',1,0,1),(199,1,1219622400,1233446399,2,131,'by_percent','0.0000',1,0,1),(200,1,1219622400,1233446399,3,131,'by_percent','0.0000',1,0,1),(201,1,1219622400,1233446399,0,132,'by_percent','0.0000',1,0,1),(202,1,1219622400,1233446399,1,132,'by_percent','0.0000',1,0,1),(203,1,1219622400,1233446399,2,132,'by_percent','0.0000',1,0,1),(204,1,1219622400,1233446399,3,132,'by_percent','0.0000',1,0,1),(205,1,1219622400,1233446399,0,133,'by_percent','0.0000',1,0,1),(206,1,1219622400,1233446399,1,133,'by_percent','0.0000',1,0,1),(207,1,1219622400,1233446399,2,133,'by_percent','0.0000',1,0,1),(208,1,1219622400,1233446399,3,133,'by_percent','0.0000',1,0,1),(209,1,1219622400,1233446399,0,134,'by_percent','0.0000',1,0,1),(210,1,1219622400,1233446399,1,134,'by_percent','0.0000',1,0,1),(211,1,1219622400,1233446399,2,134,'by_percent','0.0000',1,0,1),(212,1,1219622400,1233446399,3,134,'by_percent','0.0000',1,0,1),(213,1,1219622400,1233446399,0,135,'by_percent','0.0000',1,0,1),(214,1,1219622400,1233446399,1,135,'by_percent','0.0000',1,0,1),(215,1,1219622400,1233446399,2,135,'by_percent','0.0000',1,0,1),(216,1,1219622400,1233446399,3,135,'by_percent','0.0000',1,0,1),(217,1,1219622400,1233446399,0,137,'by_percent','0.0000',1,0,1),(218,1,1219622400,1233446399,1,137,'by_percent','0.0000',1,0,1),(219,1,1219622400,1233446399,2,137,'by_percent','0.0000',1,0,1),(220,1,1219622400,1233446399,3,137,'by_percent','0.0000',1,0,1),(221,1,1219622400,1233446399,0,158,'by_percent','0.0000',1,0,1),(222,1,1219622400,1233446399,1,158,'by_percent','0.0000',1,0,1),(223,1,1219622400,1233446399,2,158,'by_percent','0.0000',1,0,1),(224,1,1219622400,1233446399,3,158,'by_percent','0.0000',1,0,1),(225,1,1219622400,1233446399,0,163,'by_percent','0.0000',1,0,1),(226,1,1219622400,1233446399,1,163,'by_percent','0.0000',1,0,1),(227,1,1219622400,1233446399,2,163,'by_percent','0.0000',1,0,1),(228,1,1219622400,1233446399,3,163,'by_percent','0.0000',1,0,1),(229,1,1219622400,1233446399,0,165,'by_percent','0.0000',1,0,1),(230,1,1219622400,1233446399,1,165,'by_percent','0.0000',1,0,1),(231,1,1219622400,1233446399,2,165,'by_percent','0.0000',1,0,1),(232,1,1219622400,1233446399,3,165,'by_percent','0.0000',1,0,1),(233,3,1217980800,1251071999,0,16,'by_percent','0.0000',0,0,1),(234,3,1217980800,1251071999,1,16,'by_percent','0.0000',0,0,1),(235,3,1217980800,1251071999,2,16,'by_percent','0.0000',0,0,1),(236,3,1217980800,1251071999,4,16,'by_percent','0.0000',0,0,1),(237,3,1217980800,1251071999,0,17,'by_percent','0.0000',0,0,1),(238,3,1217980800,1251071999,1,17,'by_percent','0.0000',0,0,1),(239,3,1217980800,1251071999,2,17,'by_percent','0.0000',0,0,1),(240,3,1217980800,1251071999,4,17,'by_percent','0.0000',0,0,1),(241,3,1217980800,1251071999,0,18,'by_percent','0.0000',0,0,1),(242,3,1217980800,1251071999,1,18,'by_percent','0.0000',0,0,1),(243,3,1217980800,1251071999,2,18,'by_percent','0.0000',0,0,1),(244,3,1217980800,1251071999,4,18,'by_percent','0.0000',0,0,1),(245,3,1217980800,1251071999,0,19,'by_percent','0.0000',0,0,1),(246,3,1217980800,1251071999,1,19,'by_percent','0.0000',0,0,1),(247,3,1217980800,1251071999,2,19,'by_percent','0.0000',0,0,1),(248,3,1217980800,1251071999,4,19,'by_percent','0.0000',0,0,1),(249,3,1217980800,1251071999,0,20,'by_percent','0.0000',0,0,1),(250,3,1217980800,1251071999,1,20,'by_percent','0.0000',0,0,1),(251,3,1217980800,1251071999,2,20,'by_percent','0.0000',0,0,1),(252,3,1217980800,1251071999,4,20,'by_percent','0.0000',0,0,1),(253,3,1217980800,1251071999,0,25,'by_percent','0.0000',0,0,1),(254,3,1217980800,1251071999,1,25,'by_percent','0.0000',0,0,1),(255,3,1217980800,1251071999,2,25,'by_percent','0.0000',0,0,1),(256,3,1217980800,1251071999,4,25,'by_percent','0.0000',0,0,1),(257,3,1217980800,1251071999,0,26,'by_percent','0.0000',0,0,1),(258,3,1217980800,1251071999,1,26,'by_percent','0.0000',0,0,1),(259,3,1217980800,1251071999,2,26,'by_percent','0.0000',0,0,1),(260,3,1217980800,1251071999,4,26,'by_percent','0.0000',0,0,1),(261,3,1217980800,1251071999,0,27,'by_percent','0.0000',0,0,1),(262,3,1217980800,1251071999,1,27,'by_percent','0.0000',0,0,1),(263,3,1217980800,1251071999,2,27,'by_percent','0.0000',0,0,1),(264,3,1217980800,1251071999,4,27,'by_percent','0.0000',0,0,1),(265,3,1217980800,1251071999,0,28,'by_percent','0.0000',0,0,1),(266,3,1217980800,1251071999,1,28,'by_percent','0.0000',0,0,1),(267,3,1217980800,1251071999,2,28,'by_percent','0.0000',0,0,1),(268,3,1217980800,1251071999,4,28,'by_percent','0.0000',0,0,1),(269,3,1217980800,1251071999,0,29,'by_percent','0.0000',0,0,1),(270,3,1217980800,1251071999,1,29,'by_percent','0.0000',0,0,1),(271,3,1217980800,1251071999,2,29,'by_percent','0.0000',0,0,1),(272,3,1217980800,1251071999,4,29,'by_percent','0.0000',0,0,1),(273,3,1217980800,1251071999,0,30,'by_percent','0.0000',0,0,1),(274,3,1217980800,1251071999,1,30,'by_percent','0.0000',0,0,1),(275,3,1217980800,1251071999,2,30,'by_percent','0.0000',0,0,1),(276,3,1217980800,1251071999,4,30,'by_percent','0.0000',0,0,1),(277,3,1217980800,1251071999,0,31,'by_percent','0.0000',0,0,1),(278,3,1217980800,1251071999,1,31,'by_percent','0.0000',0,0,1),(279,3,1217980800,1251071999,2,31,'by_percent','0.0000',0,0,1),(280,3,1217980800,1251071999,4,31,'by_percent','0.0000',0,0,1),(281,3,1217980800,1251071999,0,32,'by_percent','0.0000',0,0,1),(282,3,1217980800,1251071999,1,32,'by_percent','0.0000',0,0,1),(283,3,1217980800,1251071999,2,32,'by_percent','0.0000',0,0,1),(284,3,1217980800,1251071999,4,32,'by_percent','0.0000',0,0,1),(285,3,1217980800,1251071999,0,33,'by_percent','0.0000',0,0,1),(286,3,1217980800,1251071999,1,33,'by_percent','0.0000',0,0,1),(287,3,1217980800,1251071999,2,33,'by_percent','0.0000',0,0,1),(288,3,1217980800,1251071999,4,33,'by_percent','0.0000',0,0,1),(289,3,1217980800,1251071999,0,34,'by_percent','0.0000',0,0,1),(290,3,1217980800,1251071999,1,34,'by_percent','0.0000',0,0,1),(291,3,1217980800,1251071999,2,34,'by_percent','0.0000',0,0,1),(292,3,1217980800,1251071999,4,34,'by_percent','0.0000',0,0,1),(293,3,1217980800,1251071999,0,35,'by_percent','0.0000',0,0,1),(294,3,1217980800,1251071999,1,35,'by_percent','0.0000',0,0,1),(295,3,1217980800,1251071999,2,35,'by_percent','0.0000',0,0,1),(296,3,1217980800,1251071999,4,35,'by_percent','0.0000',0,0,1),(297,3,1217980800,1251071999,0,36,'by_percent','0.0000',0,0,1),(298,3,1217980800,1251071999,1,36,'by_percent','0.0000',0,0,1),(299,3,1217980800,1251071999,2,36,'by_percent','0.0000',0,0,1),(300,3,1217980800,1251071999,4,36,'by_percent','0.0000',0,0,1),(301,3,1217980800,1251071999,0,37,'by_percent','0.0000',0,0,1),(302,3,1217980800,1251071999,1,37,'by_percent','0.0000',0,0,1),(303,3,1217980800,1251071999,2,37,'by_percent','0.0000',0,0,1),(304,3,1217980800,1251071999,4,37,'by_percent','0.0000',0,0,1),(305,3,1217980800,1251071999,0,38,'by_percent','0.0000',0,0,1),(306,3,1217980800,1251071999,1,38,'by_percent','0.0000',0,0,1),(307,3,1217980800,1251071999,2,38,'by_percent','0.0000',0,0,1),(308,3,1217980800,1251071999,4,38,'by_percent','0.0000',0,0,1),(309,3,1217980800,1251071999,0,39,'by_percent','0.0000',0,0,1),(310,3,1217980800,1251071999,1,39,'by_percent','0.0000',0,0,1),(311,3,1217980800,1251071999,2,39,'by_percent','0.0000',0,0,1),(312,3,1217980800,1251071999,4,39,'by_percent','0.0000',0,0,1),(313,3,1217980800,1251071999,0,41,'by_percent','0.0000',0,0,1),(314,3,1217980800,1251071999,1,41,'by_percent','0.0000',0,0,1),(315,3,1217980800,1251071999,2,41,'by_percent','0.0000',0,0,1),(316,3,1217980800,1251071999,4,41,'by_percent','0.0000',0,0,1),(317,3,1217980800,1251071999,0,42,'by_percent','0.0000',0,0,1),(318,3,1217980800,1251071999,1,42,'by_percent','0.0000',0,0,1),(319,3,1217980800,1251071999,2,42,'by_percent','0.0000',0,0,1),(320,3,1217980800,1251071999,4,42,'by_percent','0.0000',0,0,1),(321,3,1217980800,1251071999,0,44,'by_percent','0.0000',0,0,1),(322,3,1217980800,1251071999,1,44,'by_percent','0.0000',0,0,1),(323,3,1217980800,1251071999,2,44,'by_percent','0.0000',0,0,1),(324,3,1217980800,1251071999,4,44,'by_percent','0.0000',0,0,1),(325,3,1217980800,1251071999,0,45,'by_percent','0.0000',0,0,1),(326,3,1217980800,1251071999,1,45,'by_percent','0.0000',0,0,1),(327,3,1217980800,1251071999,2,45,'by_percent','0.0000',0,0,1),(328,3,1217980800,1251071999,4,45,'by_percent','0.0000',0,0,1),(329,3,1217980800,1251071999,0,46,'by_percent','0.0000',0,0,1),(330,3,1217980800,1251071999,1,46,'by_percent','0.0000',0,0,1),(331,3,1217980800,1251071999,2,46,'by_percent','0.0000',0,0,1),(332,3,1217980800,1251071999,4,46,'by_percent','0.0000',0,0,1),(333,3,1217980800,1251071999,0,47,'by_percent','0.0000',0,0,1),(334,3,1217980800,1251071999,1,47,'by_percent','0.0000',0,0,1),(335,3,1217980800,1251071999,2,47,'by_percent','0.0000',0,0,1),(336,3,1217980800,1251071999,4,47,'by_percent','0.0000',0,0,1),(337,3,1217980800,1251071999,0,48,'by_percent','0.0000',0,0,1),(338,3,1217980800,1251071999,1,48,'by_percent','0.0000',0,0,1),(339,3,1217980800,1251071999,2,48,'by_percent','0.0000',0,0,1),(340,3,1217980800,1251071999,4,48,'by_percent','0.0000',0,0,1),(341,3,1217980800,1251071999,0,49,'by_percent','0.0000',0,0,1),(342,3,1217980800,1251071999,1,49,'by_percent','0.0000',0,0,1),(343,3,1217980800,1251071999,2,49,'by_percent','0.0000',0,0,1),(344,3,1217980800,1251071999,4,49,'by_percent','0.0000',0,0,1),(345,3,1217980800,1251071999,0,51,'by_percent','0.0000',0,0,1),(346,3,1217980800,1251071999,1,51,'by_percent','0.0000',0,0,1),(347,3,1217980800,1251071999,2,51,'by_percent','0.0000',0,0,1),(348,3,1217980800,1251071999,4,51,'by_percent','0.0000',0,0,1),(349,3,1217980800,1251071999,0,52,'by_percent','0.0000',0,0,1),(350,3,1217980800,1251071999,1,52,'by_percent','0.0000',0,0,1),(351,3,1217980800,1251071999,2,52,'by_percent','0.0000',0,0,1),(352,3,1217980800,1251071999,4,52,'by_percent','0.0000',0,0,1),(353,3,1217980800,1251071999,0,53,'by_percent','0.0000',0,0,1),(354,3,1217980800,1251071999,1,53,'by_percent','0.0000',0,0,1),(355,3,1217980800,1251071999,2,53,'by_percent','0.0000',0,0,1),(356,3,1217980800,1251071999,4,53,'by_percent','0.0000',0,0,1),(357,3,1217980800,1251071999,0,54,'by_percent','0.0000',0,0,1),(358,3,1217980800,1251071999,1,54,'by_percent','0.0000',0,0,1),(359,3,1217980800,1251071999,2,54,'by_percent','0.0000',0,0,1),(360,3,1217980800,1251071999,4,54,'by_percent','0.0000',0,0,1),(361,3,1217980800,1251071999,0,74,'by_percent','0.0000',0,0,1),(362,3,1217980800,1251071999,1,74,'by_percent','0.0000',0,0,1),(363,3,1217980800,1251071999,2,74,'by_percent','0.0000',0,0,1),(364,3,1217980800,1251071999,4,74,'by_percent','0.0000',0,0,1),(365,3,1217980800,1251071999,0,75,'by_percent','0.0000',0,0,1),(366,3,1217980800,1251071999,1,75,'by_percent','0.0000',0,0,1),(367,3,1217980800,1251071999,2,75,'by_percent','0.0000',0,0,1),(368,3,1217980800,1251071999,4,75,'by_percent','0.0000',0,0,1),(369,3,1217980800,1251071999,0,79,'by_percent','0.0000',0,0,1),(370,3,1217980800,1251071999,1,79,'by_percent','0.0000',0,0,1),(371,3,1217980800,1251071999,2,79,'by_percent','0.0000',0,0,1),(372,3,1217980800,1251071999,4,79,'by_percent','0.0000',0,0,1),(373,3,1217980800,1251071999,0,80,'by_percent','0.0000',0,0,1),(374,3,1217980800,1251071999,1,80,'by_percent','0.0000',0,0,1),(375,3,1217980800,1251071999,2,80,'by_percent','0.0000',0,0,1),(376,3,1217980800,1251071999,4,80,'by_percent','0.0000',0,0,1),(377,3,1217980800,1251071999,0,81,'by_percent','0.0000',0,0,1),(378,3,1217980800,1251071999,1,81,'by_percent','0.0000',0,0,1),(379,3,1217980800,1251071999,2,81,'by_percent','0.0000',0,0,1),(380,3,1217980800,1251071999,4,81,'by_percent','0.0000',0,0,1),(381,3,1217980800,1251071999,0,82,'by_percent','0.0000',0,0,1),(382,3,1217980800,1251071999,1,82,'by_percent','0.0000',0,0,1),(383,3,1217980800,1251071999,2,82,'by_percent','0.0000',0,0,1),(384,3,1217980800,1251071999,4,82,'by_percent','0.0000',0,0,1),(385,3,1217980800,1251071999,0,83,'by_percent','0.0000',0,0,1),(386,3,1217980800,1251071999,1,83,'by_percent','0.0000',0,0,1),(387,3,1217980800,1251071999,2,83,'by_percent','0.0000',0,0,1),(388,3,1217980800,1251071999,4,83,'by_percent','0.0000',0,0,1),(389,3,1217980800,1251071999,0,84,'by_percent','0.0000',0,0,1),(390,3,1217980800,1251071999,1,84,'by_percent','0.0000',0,0,1),(391,3,1217980800,1251071999,2,84,'by_percent','0.0000',0,0,1),(392,3,1217980800,1251071999,4,84,'by_percent','0.0000',0,0,1),(393,3,1217980800,1251071999,0,85,'by_percent','0.0000',0,0,1),(394,3,1217980800,1251071999,1,85,'by_percent','0.0000',0,0,1),(395,3,1217980800,1251071999,2,85,'by_percent','0.0000',0,0,1),(396,3,1217980800,1251071999,4,85,'by_percent','0.0000',0,0,1),(397,3,1217980800,1251071999,0,86,'by_percent','0.0000',0,0,1),(398,3,1217980800,1251071999,1,86,'by_percent','0.0000',0,0,1),(399,3,1217980800,1251071999,2,86,'by_percent','0.0000',0,0,1),(400,3,1217980800,1251071999,4,86,'by_percent','0.0000',0,0,1),(401,3,1217980800,1251071999,0,87,'by_percent','0.0000',0,0,1),(402,3,1217980800,1251071999,1,87,'by_percent','0.0000',0,0,1),(403,3,1217980800,1251071999,2,87,'by_percent','0.0000',0,0,1),(404,3,1217980800,1251071999,4,87,'by_percent','0.0000',0,0,1),(405,3,1217980800,1251071999,0,88,'by_percent','0.0000',0,0,1),(406,3,1217980800,1251071999,1,88,'by_percent','0.0000',0,0,1),(407,3,1217980800,1251071999,2,88,'by_percent','0.0000',0,0,1),(408,3,1217980800,1251071999,4,88,'by_percent','0.0000',0,0,1),(409,3,1217980800,1251071999,0,89,'by_percent','0.0000',0,0,1),(410,3,1217980800,1251071999,1,89,'by_percent','0.0000',0,0,1),(411,3,1217980800,1251071999,2,89,'by_percent','0.0000',0,0,1),(412,3,1217980800,1251071999,4,89,'by_percent','0.0000',0,0,1),(413,3,1217980800,1251071999,0,90,'by_percent','0.0000',0,0,1),(414,3,1217980800,1251071999,1,90,'by_percent','0.0000',0,0,1),(415,3,1217980800,1251071999,2,90,'by_percent','0.0000',0,0,1),(416,3,1217980800,1251071999,4,90,'by_percent','0.0000',0,0,1),(417,3,1217980800,1251071999,0,91,'by_percent','0.0000',0,0,1),(418,3,1217980800,1251071999,1,91,'by_percent','0.0000',0,0,1),(419,3,1217980800,1251071999,2,91,'by_percent','0.0000',0,0,1),(420,3,1217980800,1251071999,4,91,'by_percent','0.0000',0,0,1),(421,3,1217980800,1251071999,0,92,'by_percent','0.0000',0,0,1),(422,3,1217980800,1251071999,1,92,'by_percent','0.0000',0,0,1),(423,3,1217980800,1251071999,2,92,'by_percent','0.0000',0,0,1),(424,3,1217980800,1251071999,4,92,'by_percent','0.0000',0,0,1),(425,3,1217980800,1251071999,0,93,'by_percent','0.0000',0,0,1),(426,3,1217980800,1251071999,1,93,'by_percent','0.0000',0,0,1),(427,3,1217980800,1251071999,2,93,'by_percent','0.0000',0,0,1),(428,3,1217980800,1251071999,4,93,'by_percent','0.0000',0,0,1),(429,3,1217980800,1251071999,0,94,'by_percent','0.0000',0,0,1),(430,3,1217980800,1251071999,1,94,'by_percent','0.0000',0,0,1),(431,3,1217980800,1251071999,2,94,'by_percent','0.0000',0,0,1),(432,3,1217980800,1251071999,4,94,'by_percent','0.0000',0,0,1),(433,3,1217980800,1251071999,0,95,'by_percent','0.0000',0,0,1),(434,3,1217980800,1251071999,1,95,'by_percent','0.0000',0,0,1),(435,3,1217980800,1251071999,2,95,'by_percent','0.0000',0,0,1),(436,3,1217980800,1251071999,4,95,'by_percent','0.0000',0,0,1),(437,3,1217980800,1251071999,0,96,'by_percent','0.0000',0,0,1),(438,3,1217980800,1251071999,1,96,'by_percent','0.0000',0,0,1),(439,3,1217980800,1251071999,2,96,'by_percent','0.0000',0,0,1),(440,3,1217980800,1251071999,4,96,'by_percent','0.0000',0,0,1),(441,3,1217980800,1251071999,0,97,'by_percent','0.0000',0,0,1),(442,3,1217980800,1251071999,1,97,'by_percent','0.0000',0,0,1),(443,3,1217980800,1251071999,2,97,'by_percent','0.0000',0,0,1),(444,3,1217980800,1251071999,4,97,'by_percent','0.0000',0,0,1),(445,3,1217980800,1251071999,0,98,'by_percent','0.0000',0,0,1),(446,3,1217980800,1251071999,1,98,'by_percent','0.0000',0,0,1),(447,3,1217980800,1251071999,2,98,'by_percent','0.0000',0,0,1),(448,3,1217980800,1251071999,4,98,'by_percent','0.0000',0,0,1),(449,3,1217980800,1251071999,0,99,'by_percent','0.0000',0,0,1),(450,3,1217980800,1251071999,1,99,'by_percent','0.0000',0,0,1),(451,3,1217980800,1251071999,2,99,'by_percent','0.0000',0,0,1),(452,3,1217980800,1251071999,4,99,'by_percent','0.0000',0,0,1),(453,3,1217980800,1251071999,0,100,'by_percent','0.0000',0,0,1),(454,3,1217980800,1251071999,1,100,'by_percent','0.0000',0,0,1),(455,3,1217980800,1251071999,2,100,'by_percent','0.0000',0,0,1),(456,3,1217980800,1251071999,4,100,'by_percent','0.0000',0,0,1),(457,3,1217980800,1251071999,0,101,'by_percent','0.0000',0,0,1),(458,3,1217980800,1251071999,1,101,'by_percent','0.0000',0,0,1),(459,3,1217980800,1251071999,2,101,'by_percent','0.0000',0,0,1),(460,3,1217980800,1251071999,4,101,'by_percent','0.0000',0,0,1),(461,3,1217980800,1251071999,0,102,'by_percent','0.0000',0,0,1),(462,3,1217980800,1251071999,1,102,'by_percent','0.0000',0,0,1),(463,3,1217980800,1251071999,2,102,'by_percent','0.0000',0,0,1),(464,3,1217980800,1251071999,4,102,'by_percent','0.0000',0,0,1),(465,3,1217980800,1251071999,0,103,'by_percent','0.0000',0,0,1),(466,3,1217980800,1251071999,1,103,'by_percent','0.0000',0,0,1),(467,3,1217980800,1251071999,2,103,'by_percent','0.0000',0,0,1),(468,3,1217980800,1251071999,4,103,'by_percent','0.0000',0,0,1),(469,3,1217980800,1251071999,0,104,'by_percent','0.0000',0,0,1),(470,3,1217980800,1251071999,1,104,'by_percent','0.0000',0,0,1),(471,3,1217980800,1251071999,2,104,'by_percent','0.0000',0,0,1),(472,3,1217980800,1251071999,4,104,'by_percent','0.0000',0,0,1),(473,3,1217980800,1251071999,0,105,'by_percent','0.0000',0,0,1),(474,3,1217980800,1251071999,1,105,'by_percent','0.0000',0,0,1),(475,3,1217980800,1251071999,2,105,'by_percent','0.0000',0,0,1),(476,3,1217980800,1251071999,4,105,'by_percent','0.0000',0,0,1),(477,3,1217980800,1251071999,0,106,'by_percent','0.0000',0,0,1),(478,3,1217980800,1251071999,1,106,'by_percent','0.0000',0,0,1),(479,3,1217980800,1251071999,2,106,'by_percent','0.0000',0,0,1),(480,3,1217980800,1251071999,4,106,'by_percent','0.0000',0,0,1),(481,3,1217980800,1251071999,0,107,'by_percent','0.0000',0,0,1),(482,3,1217980800,1251071999,1,107,'by_percent','0.0000',0,0,1),(483,3,1217980800,1251071999,2,107,'by_percent','0.0000',0,0,1),(484,3,1217980800,1251071999,4,107,'by_percent','0.0000',0,0,1),(485,3,1217980800,1251071999,0,108,'by_percent','0.0000',0,0,1),(486,3,1217980800,1251071999,1,108,'by_percent','0.0000',0,0,1),(487,3,1217980800,1251071999,2,108,'by_percent','0.0000',0,0,1),(488,3,1217980800,1251071999,4,108,'by_percent','0.0000',0,0,1),(489,3,1217980800,1251071999,0,109,'by_percent','0.0000',0,0,1),(490,3,1217980800,1251071999,1,109,'by_percent','0.0000',0,0,1),(491,3,1217980800,1251071999,2,109,'by_percent','0.0000',0,0,1),(492,3,1217980800,1251071999,4,109,'by_percent','0.0000',0,0,1),(493,3,1217980800,1251071999,0,110,'by_percent','0.0000',0,0,1),(494,3,1217980800,1251071999,1,110,'by_percent','0.0000',0,0,1),(495,3,1217980800,1251071999,2,110,'by_percent','0.0000',0,0,1),(496,3,1217980800,1251071999,4,110,'by_percent','0.0000',0,0,1),(497,3,1217980800,1251071999,0,111,'by_percent','0.0000',0,0,1),(498,3,1217980800,1251071999,1,111,'by_percent','0.0000',0,0,1),(499,3,1217980800,1251071999,2,111,'by_percent','0.0000',0,0,1),(500,3,1217980800,1251071999,4,111,'by_percent','0.0000',0,0,1),(501,3,1217980800,1251071999,0,112,'by_percent','0.0000',0,0,1),(502,3,1217980800,1251071999,1,112,'by_percent','0.0000',0,0,1),(503,3,1217980800,1251071999,2,112,'by_percent','0.0000',0,0,1),(504,3,1217980800,1251071999,4,112,'by_percent','0.0000',0,0,1),(505,3,1217980800,1251071999,0,113,'by_percent','0.0000',0,0,1),(506,3,1217980800,1251071999,1,113,'by_percent','0.0000',0,0,1),(507,3,1217980800,1251071999,2,113,'by_percent','0.0000',0,0,1),(508,3,1217980800,1251071999,4,113,'by_percent','0.0000',0,0,1),(509,3,1217980800,1251071999,0,114,'by_percent','0.0000',0,0,1),(510,3,1217980800,1251071999,1,114,'by_percent','0.0000',0,0,1),(511,3,1217980800,1251071999,2,114,'by_percent','0.0000',0,0,1),(512,3,1217980800,1251071999,4,114,'by_percent','0.0000',0,0,1),(513,3,1217980800,1251071999,0,115,'by_percent','0.0000',0,0,1),(514,3,1217980800,1251071999,1,115,'by_percent','0.0000',0,0,1),(515,3,1217980800,1251071999,2,115,'by_percent','0.0000',0,0,1),(516,3,1217980800,1251071999,4,115,'by_percent','0.0000',0,0,1),(517,3,1217980800,1251071999,0,117,'by_percent','0.0000',0,0,1),(518,3,1217980800,1251071999,1,117,'by_percent','0.0000',0,0,1),(519,3,1217980800,1251071999,2,117,'by_percent','0.0000',0,0,1),(520,3,1217980800,1251071999,4,117,'by_percent','0.0000',0,0,1),(521,3,1217980800,1251071999,0,118,'by_percent','0.0000',0,0,1),(522,3,1217980800,1251071999,1,118,'by_percent','0.0000',0,0,1),(523,3,1217980800,1251071999,2,118,'by_percent','0.0000',0,0,1),(524,3,1217980800,1251071999,4,118,'by_percent','0.0000',0,0,1),(525,3,1217980800,1251071999,0,119,'by_percent','0.0000',0,0,1),(526,3,1217980800,1251071999,1,119,'by_percent','0.0000',0,0,1),(527,3,1217980800,1251071999,2,119,'by_percent','0.0000',0,0,1),(528,3,1217980800,1251071999,4,119,'by_percent','0.0000',0,0,1),(529,3,1217980800,1251071999,0,120,'by_percent','0.0000',0,0,1),(530,3,1217980800,1251071999,1,120,'by_percent','0.0000',0,0,1),(531,3,1217980800,1251071999,2,120,'by_percent','0.0000',0,0,1),(532,3,1217980800,1251071999,4,120,'by_percent','0.0000',0,0,1),(533,3,1217980800,1251071999,0,121,'by_percent','0.0000',0,0,1),(534,3,1217980800,1251071999,1,121,'by_percent','0.0000',0,0,1),(535,3,1217980800,1251071999,2,121,'by_percent','0.0000',0,0,1),(536,3,1217980800,1251071999,4,121,'by_percent','0.0000',0,0,1),(537,3,1217980800,1251071999,0,122,'by_percent','0.0000',0,0,1),(538,3,1217980800,1251071999,1,122,'by_percent','0.0000',0,0,1),(539,3,1217980800,1251071999,2,122,'by_percent','0.0000',0,0,1),(540,3,1217980800,1251071999,4,122,'by_percent','0.0000',0,0,1),(541,3,1217980800,1251071999,0,123,'by_percent','0.0000',0,0,1),(542,3,1217980800,1251071999,1,123,'by_percent','0.0000',0,0,1),(543,3,1217980800,1251071999,2,123,'by_percent','0.0000',0,0,1),(544,3,1217980800,1251071999,4,123,'by_percent','0.0000',0,0,1),(545,3,1217980800,1251071999,0,124,'by_percent','0.0000',0,0,1),(546,3,1217980800,1251071999,1,124,'by_percent','0.0000',0,0,1),(547,3,1217980800,1251071999,2,124,'by_percent','0.0000',0,0,1),(548,3,1217980800,1251071999,4,124,'by_percent','0.0000',0,0,1),(549,3,1217980800,1251071999,0,125,'by_percent','0.0000',0,0,1),(550,3,1217980800,1251071999,1,125,'by_percent','0.0000',0,0,1),(551,3,1217980800,1251071999,2,125,'by_percent','0.0000',0,0,1),(552,3,1217980800,1251071999,4,125,'by_percent','0.0000',0,0,1),(553,3,1217980800,1251071999,0,126,'by_percent','0.0000',0,0,1),(554,3,1217980800,1251071999,1,126,'by_percent','0.0000',0,0,1),(555,3,1217980800,1251071999,2,126,'by_percent','0.0000',0,0,1),(556,3,1217980800,1251071999,4,126,'by_percent','0.0000',0,0,1),(557,3,1217980800,1251071999,0,127,'by_percent','0.0000',0,0,1),(558,3,1217980800,1251071999,1,127,'by_percent','0.0000',0,0,1),(559,3,1217980800,1251071999,2,127,'by_percent','0.0000',0,0,1),(560,3,1217980800,1251071999,4,127,'by_percent','0.0000',0,0,1),(561,3,1217980800,1251071999,0,128,'by_percent','0.0000',0,0,1),(562,3,1217980800,1251071999,1,128,'by_percent','0.0000',0,0,1),(563,3,1217980800,1251071999,2,128,'by_percent','0.0000',0,0,1),(564,3,1217980800,1251071999,4,128,'by_percent','0.0000',0,0,1),(565,3,1217980800,1251071999,0,129,'by_percent','0.0000',0,0,1),(566,3,1217980800,1251071999,1,129,'by_percent','0.0000',0,0,1),(567,3,1217980800,1251071999,2,129,'by_percent','0.0000',0,0,1),(568,3,1217980800,1251071999,4,129,'by_percent','0.0000',0,0,1),(569,3,1217980800,1251071999,0,130,'by_percent','0.0000',0,0,1),(570,3,1217980800,1251071999,1,130,'by_percent','0.0000',0,0,1),(571,3,1217980800,1251071999,2,130,'by_percent','0.0000',0,0,1),(572,3,1217980800,1251071999,4,130,'by_percent','0.0000',0,0,1),(573,3,1217980800,1251071999,0,131,'by_percent','0.0000',0,0,1),(574,3,1217980800,1251071999,1,131,'by_percent','0.0000',0,0,1),(575,3,1217980800,1251071999,2,131,'by_percent','0.0000',0,0,1),(576,3,1217980800,1251071999,4,131,'by_percent','0.0000',0,0,1),(577,3,1217980800,1251071999,0,132,'by_percent','0.0000',0,0,1),(578,3,1217980800,1251071999,1,132,'by_percent','0.0000',0,0,1),(579,3,1217980800,1251071999,2,132,'by_percent','0.0000',0,0,1),(580,3,1217980800,1251071999,4,132,'by_percent','0.0000',0,0,1),(581,3,1217980800,1251071999,0,133,'by_percent','0.0000',0,0,1),(582,3,1217980800,1251071999,1,133,'by_percent','0.0000',0,0,1),(583,3,1217980800,1251071999,2,133,'by_percent','0.0000',0,0,1),(584,3,1217980800,1251071999,4,133,'by_percent','0.0000',0,0,1),(585,3,1217980800,1251071999,0,134,'by_percent','0.0000',0,0,1),(586,3,1217980800,1251071999,1,134,'by_percent','0.0000',0,0,1),(587,3,1217980800,1251071999,2,134,'by_percent','0.0000',0,0,1),(588,3,1217980800,1251071999,4,134,'by_percent','0.0000',0,0,1),(589,3,1217980800,1251071999,0,135,'by_percent','0.0000',0,0,1),(590,3,1217980800,1251071999,1,135,'by_percent','0.0000',0,0,1),(591,3,1217980800,1251071999,2,135,'by_percent','0.0000',0,0,1),(592,3,1217980800,1251071999,4,135,'by_percent','0.0000',0,0,1),(593,3,1217980800,1251071999,0,137,'by_percent','0.0000',0,0,1),(594,3,1217980800,1251071999,1,137,'by_percent','0.0000',0,0,1),(595,3,1217980800,1251071999,2,137,'by_percent','0.0000',0,0,1),(596,3,1217980800,1251071999,4,137,'by_percent','0.0000',0,0,1),(597,3,1217980800,1251071999,0,138,'by_percent','0.0000',0,0,1),(598,3,1217980800,1251071999,1,138,'by_percent','0.0000',0,0,1),(599,3,1217980800,1251071999,2,138,'by_percent','0.0000',0,0,1),(600,3,1217980800,1251071999,4,138,'by_percent','0.0000',0,0,1),(601,3,1217980800,1251071999,0,139,'by_percent','0.0000',0,0,1),(602,3,1217980800,1251071999,1,139,'by_percent','0.0000',0,0,1),(603,3,1217980800,1251071999,2,139,'by_percent','0.0000',0,0,1),(604,3,1217980800,1251071999,4,139,'by_percent','0.0000',0,0,1),(605,3,1217980800,1251071999,0,142,'by_percent','0.0000',0,0,1),(606,3,1217980800,1251071999,1,142,'by_percent','0.0000',0,0,1),(607,3,1217980800,1251071999,2,142,'by_percent','0.0000',0,0,1),(608,3,1217980800,1251071999,4,142,'by_percent','0.0000',0,0,1),(609,3,1217980800,1251071999,0,144,'by_percent','0.0000',0,0,1),(610,3,1217980800,1251071999,1,144,'by_percent','0.0000',0,0,1),(611,3,1217980800,1251071999,2,144,'by_percent','0.0000',0,0,1),(612,3,1217980800,1251071999,4,144,'by_percent','0.0000',0,0,1),(613,3,1217980800,1251071999,0,146,'by_percent','0.0000',0,0,1),(614,3,1217980800,1251071999,1,146,'by_percent','0.0000',0,0,1),(615,3,1217980800,1251071999,2,146,'by_percent','0.0000',0,0,1),(616,3,1217980800,1251071999,4,146,'by_percent','0.0000',0,0,1),(617,3,1217980800,1251071999,0,158,'by_percent','0.0000',0,0,1),(618,3,1217980800,1251071999,1,158,'by_percent','0.0000',0,0,1),(619,3,1217980800,1251071999,2,158,'by_percent','0.0000',0,0,1),(620,3,1217980800,1251071999,4,158,'by_percent','0.0000',0,0,1),(621,3,1217980800,1251071999,0,163,'by_percent','0.0000',0,0,1),(622,3,1217980800,1251071999,1,163,'by_percent','0.0000',0,0,1),(623,3,1217980800,1251071999,2,163,'by_percent','0.0000',0,0,1),(624,3,1217980800,1251071999,4,163,'by_percent','0.0000',0,0,1),(625,3,1217980800,1251071999,0,164,'by_percent','0.0000',0,0,1),(626,3,1217980800,1251071999,1,164,'by_percent','0.0000',0,0,1),(627,3,1217980800,1251071999,2,164,'by_percent','0.0000',0,0,1),(628,3,1217980800,1251071999,4,164,'by_percent','0.0000',0,0,1),(629,3,1217980800,1251071999,0,165,'by_percent','0.0000',0,0,1),(630,3,1217980800,1251071999,1,165,'by_percent','0.0000',0,0,1),(631,3,1217980800,1251071999,2,165,'by_percent','0.0000',0,0,1),(632,3,1217980800,1251071999,4,165,'by_percent','0.0000',0,0,1),(633,4,1219795200,1251503999,0,135,'by_percent','0.0000',1,0,1),(634,4,1219795200,1251503999,1,135,'by_percent','0.0000',1,0,1),(635,4,1219795200,1251503999,2,135,'by_percent','0.0000',1,0,1),(636,4,1219795200,1251503999,4,135,'by_percent','0.0000',1,0,1),(637,5,1219536000,1254182399,0,41,'by_percent','0.0000',1,0,1),(638,5,1219536000,1254182399,1,41,'by_percent','0.0000',1,0,1),(639,5,1219536000,1254182399,2,41,'by_percent','0.0000',1,0,1),(640,5,1219536000,1254182399,4,41,'by_percent','0.0000',1,0,1),(641,5,1219536000,1254182399,0,52,'by_percent','0.0000',1,0,1),(642,5,1219536000,1254182399,1,52,'by_percent','0.0000',1,0,1),(643,5,1219536000,1254182399,2,52,'by_percent','0.0000',1,0,1),(644,5,1219536000,1254182399,4,52,'by_percent','0.0000',1,0,1),(645,6,1219881600,1256947199,0,35,'by_percent','0.0000',0,0,1),(646,6,1219881600,1256947199,1,35,'by_percent','0.0000',0,0,1),(647,6,1219881600,1256947199,2,35,'by_percent','0.0000',0,0,1),(648,6,1219881600,1256947199,0,36,'by_percent','0.0000',0,0,1),(649,6,1219881600,1256947199,1,36,'by_percent','0.0000',0,0,1),(650,6,1219881600,1256947199,2,36,'by_percent','0.0000',0,0,1),(651,6,1219881600,1256947199,0,37,'by_percent','0.0000',0,0,1),(652,6,1219881600,1256947199,1,37,'by_percent','0.0000',0,0,1),(653,6,1219881600,1256947199,2,37,'by_percent','0.0000',0,0,1),(654,6,1219881600,1256947199,0,38,'by_percent','0.0000',0,0,1),(655,6,1219881600,1256947199,1,38,'by_percent','0.0000',0,0,1),(656,6,1219881600,1256947199,2,38,'by_percent','0.0000',0,0,1),(657,6,1219881600,1256947199,0,39,'by_percent','0.0000',0,0,1),(658,6,1219881600,1256947199,1,39,'by_percent','0.0000',0,0,1),(659,6,1219881600,1256947199,2,39,'by_percent','0.0000',0,0,1),(660,6,1219881600,1256947199,0,117,'by_percent','0.0000',0,0,1),(661,6,1219881600,1256947199,1,117,'by_percent','0.0000',0,0,1),(662,6,1219881600,1256947199,2,117,'by_percent','0.0000',0,0,1),(663,6,1219881600,1256947199,0,118,'by_percent','0.0000',0,0,1),(664,6,1219881600,1256947199,1,118,'by_percent','0.0000',0,0,1),(665,6,1219881600,1256947199,2,118,'by_percent','0.0000',0,0,1),(666,6,1219881600,1256947199,0,119,'by_percent','0.0000',0,0,1),(667,6,1219881600,1256947199,1,119,'by_percent','0.0000',0,0,1),(668,6,1219881600,1256947199,2,119,'by_percent','0.0000',0,0,1),(669,6,1219881600,1256947199,0,120,'by_percent','0.0000',0,0,1),(670,6,1219881600,1256947199,1,120,'by_percent','0.0000',0,0,1),(671,6,1219881600,1256947199,2,120,'by_percent','0.0000',0,0,1),(672,6,1219881600,1256947199,0,121,'by_percent','0.0000',0,0,1),(673,6,1219881600,1256947199,1,121,'by_percent','0.0000',0,0,1),(674,6,1219881600,1256947199,2,121,'by_percent','0.0000',0,0,1),(675,6,1219881600,1256947199,0,122,'by_percent','0.0000',0,0,1),(676,6,1219881600,1256947199,1,122,'by_percent','0.0000',0,0,1),(677,6,1219881600,1256947199,2,122,'by_percent','0.0000',0,0,1),(678,6,1219881600,1256947199,0,123,'by_percent','0.0000',0,0,1),(679,6,1219881600,1256947199,1,123,'by_percent','0.0000',0,0,1),(680,6,1219881600,1256947199,2,123,'by_percent','0.0000',0,0,1),(681,6,1219881600,1256947199,0,124,'by_percent','0.0000',0,0,1),(682,6,1219881600,1256947199,1,124,'by_percent','0.0000',0,0,1),(683,6,1219881600,1256947199,2,124,'by_percent','0.0000',0,0,1),(684,6,1219881600,1256947199,0,125,'by_percent','0.0000',0,0,1),(685,6,1219881600,1256947199,1,125,'by_percent','0.0000',0,0,1),(686,6,1219881600,1256947199,2,125,'by_percent','0.0000',0,0,1),(687,6,1219881600,1256947199,0,126,'by_percent','0.0000',0,0,1),(688,6,1219881600,1256947199,1,126,'by_percent','0.0000',0,0,1),(689,6,1219881600,1256947199,2,126,'by_percent','0.0000',0,0,1),(690,6,1219881600,1256947199,0,127,'by_percent','0.0000',0,0,1),(691,6,1219881600,1256947199,1,127,'by_percent','0.0000',0,0,1),(692,6,1219881600,1256947199,2,127,'by_percent','0.0000',0,0,1),(693,6,1219881600,1256947199,0,128,'by_percent','0.0000',0,0,1),(694,6,1219881600,1256947199,1,128,'by_percent','0.0000',0,0,1),(695,6,1219881600,1256947199,2,128,'by_percent','0.0000',0,0,1),(696,6,1219881600,1256947199,0,129,'by_percent','0.0000',0,0,1),(697,6,1219881600,1256947199,1,129,'by_percent','0.0000',0,0,1),(698,6,1219881600,1256947199,2,129,'by_percent','0.0000',0,0,1),(699,6,1219881600,1256947199,0,130,'by_percent','0.0000',0,0,1),(700,6,1219881600,1256947199,1,130,'by_percent','0.0000',0,0,1),(701,6,1219881600,1256947199,2,130,'by_percent','0.0000',0,0,1),(702,6,1219881600,1256947199,0,131,'by_percent','0.0000',0,0,1),(703,6,1219881600,1256947199,1,131,'by_percent','0.0000',0,0,1),(704,6,1219881600,1256947199,2,131,'by_percent','0.0000',0,0,1),(705,6,1219881600,1256947199,0,137,'by_percent','0.0000',0,0,1),(706,6,1219881600,1256947199,1,137,'by_percent','0.0000',0,0,1),(707,6,1219881600,1256947199,2,137,'by_percent','0.0000',0,0,1);
/*!40000 ALTER TABLE `catalogrule_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalogrule_product_price`
--
DROP TABLE IF EXISTS `catalogrule_product_price`;
CREATE TABLE `catalogrule_product_price` (
  `rule_product_price_id` int(10) unsigned NOT NULL auto_increment,
  `rule_date` date NOT NULL default '0000-00-00',
  `customer_group_id` smallint(5) unsigned NOT NULL default '0',
  `product_id` int(10) unsigned NOT NULL default '0',
  `rule_price` decimal(12,4) NOT NULL default '0.0000',
  `website_id` smallint(5) unsigned NOT NULL,
  `latest_start_date` date default NULL,
  `earliest_end_date` date default NULL,
  PRIMARY KEY  (`rule_product_price_id`),
  UNIQUE KEY `rule_date` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  KEY `FK_catalogrule_product_price_customergroup` (`customer_group_id`),
  KEY `FK_catalogrule_product_price_website` (`website_id`),
  KEY `FK_CATALOGRULE_PRODUCT_PRICE_PRODUCT` (`product_id`),
  CONSTRAINT `FK_CATALOGRULE_PRODUCT_PRICE_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_catalogrule_product_price_customergroup` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_catalogrule_product_price_website` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7375 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalogrule_product_price`
--
LOCK TABLES `catalogrule_product_price` WRITE;
/*!40000 ALTER TABLE `catalogrule_product_price` DISABLE KEYS */;
INSERT INTO `catalogrule_product_price` VALUES (6034,'2008-12-26',0,16,'149.9900',1,'2008-08-06','2009-08-23'),(6035,'2008-12-27',0,16,'149.9900',1,'2008-08-06','2009-08-23'),(6036,'2008-12-28',0,16,'149.9900',1,'2008-08-06','2009-08-23'),(6037,'2008-12-26',0,17,'349.9900',1,'2008-08-06','2009-08-23'),(6038,'2008-12-27',0,17,'349.9900',1,'2008-08-06','2009-08-23'),(6039,'2008-12-28',0,17,'349.9900',1,'2008-08-06','2009-08-23'),(6040,'2008-12-26',0,18,'399.9900',1,'2008-08-06','2009-08-23'),(6041,'2008-12-27',0,18,'399.9900',1,'2008-08-06','2009-08-23'),(6042,'2008-12-28',0,18,'399.9900',1,'2008-08-06','2009-08-23'),(6043,'2008-12-26',0,19,'199.9900',1,'2008-08-06','2009-08-23'),(6044,'2008-12-27',0,19,'199.9900',1,'2008-08-06','2009-08-23'),(6045,'2008-12-28',0,19,'199.9900',1,'2008-08-06','2009-08-23'),(6046,'2008-12-26',0,20,'150.0000',1,'2008-08-06','2009-08-23'),(6047,'2008-12-27',0,20,'150.0000',1,'2008-08-06','2009-08-23'),(6048,'2008-12-28',0,20,'150.0000',1,'2008-08-06','2009-08-23'),(6049,'2008-12-26',0,25,'2299.9900',1,'2008-08-06','2009-08-23'),(6050,'2008-12-27',0,25,'2299.9900',1,'2008-08-06','2009-08-23'),(6051,'2008-12-28',0,25,'2299.9900',1,'2008-08-06','2009-08-23'),(6052,'2008-12-26',0,26,'1799.9900',1,'2008-08-06','2009-08-23'),(6053,'2008-12-27',0,26,'1799.9900',1,'2008-08-06','2009-08-23'),(6054,'2008-12-28',0,26,'1799.9900',1,'2008-08-06','2009-08-23'),(6055,'2008-12-26',0,27,'2699.9900',1,'2008-08-06','2009-08-23'),(6056,'2008-12-27',0,27,'2699.9900',1,'2008-08-06','2009-08-23'),(6057,'2008-12-28',0,27,'2699.9900',1,'2008-08-06','2009-08-23'),(6058,'2008-12-26',0,28,'1599.9900',1,'2008-08-06','2009-08-23'),(6059,'2008-12-27',0,28,'1599.9900',1,'2008-08-06','2009-08-23'),(6060,'2008-12-28',0,28,'1599.9900',1,'2008-08-06','2009-08-23'),(6061,'2008-12-26',0,29,'15.9900',1,'2008-08-25','2009-01-31'),(6062,'2008-12-27',0,29,'15.9900',1,'2008-08-25','2009-01-31'),(6063,'2008-12-28',0,29,'15.9900',1,'2008-08-25','2009-01-31'),(6064,'2008-12-26',0,30,'134.9900',1,'2008-08-06','2009-08-23'),(6065,'2008-12-27',0,30,'134.9900',1,'2008-08-06','2009-08-23'),(6066,'2008-12-28',0,30,'134.9900',1,'2008-08-06','2009-08-23'),(6067,'2008-12-26',0,31,'69.9900',1,'2008-08-25','2009-01-31'),(6068,'2008-12-27',0,31,'69.9900',1,'2008-08-25','2009-01-31'),(6069,'2008-12-28',0,31,'69.9900',1,'2008-08-25','2009-01-31'),(6070,'2008-12-26',0,32,'89.9900',1,'2008-08-25','2009-01-31'),(6071,'2008-12-27',0,32,'89.9900',1,'2008-08-25','2009-01-31'),(6072,'2008-12-28',0,32,'89.9900',1,'2008-08-25','2009-01-31'),(6073,'2008-12-26',0,33,'159.9900',1,'2008-08-06','2009-08-23'),(6074,'2008-12-27',0,33,'159.9900',1,'2008-08-06','2009-08-23'),(6075,'2008-12-28',0,33,'159.9900',1,'2008-08-06','2009-08-23'),(6076,'2008-12-26',0,34,'160.9900',1,'2008-08-06','2009-08-23'),(6077,'2008-12-27',0,34,'160.9900',1,'2008-08-06','2009-08-23'),(6078,'2008-12-28',0,34,'160.9900',1,'2008-08-06','2009-08-23'),(6079,'2008-12-26',0,35,'15.0000',1,'2008-08-28','2009-01-31'),(6080,'2008-12-27',0,35,'15.0000',1,'2008-08-28','2009-01-31'),(6081,'2008-12-28',0,35,'15.0000',1,'2008-08-28','2009-01-31'),(6082,'2008-12-26',0,36,'22.0000',1,'2008-08-28','2009-01-31'),(6083,'2008-12-27',0,36,'22.0000',1,'2008-08-28','2009-01-31'),(6084,'2008-12-28',0,36,'22.0000',1,'2008-08-28','2009-01-31'),(6085,'2008-12-26',0,37,'15.0000',1,'2008-08-28','2009-01-31'),(6086,'2008-12-27',0,37,'15.0000',1,'2008-08-28','2009-01-31'),(6087,'2008-12-28',0,37,'15.0000',1,'2008-08-28','2009-01-31'),(6088,'2008-12-26',0,38,'13.5000',1,'2008-08-25','2009-01-31'),(6089,'2008-12-27',0,38,'13.5000',1,'2008-08-25','2009-01-31'),(6090,'2008-12-28',0,38,'13.5000',1,'2008-08-25','2009-01-31'),(6091,'2008-12-26',0,39,'30.0000',1,'2008-08-28','2009-01-31'),(6092,'2008-12-27',0,39,'30.0000',1,'2008-08-28','2009-01-31'),(6093,'2008-12-28',0,39,'30.0000',1,'2008-08-28','2009-01-31'),(6094,'2008-12-26',0,41,'399.9900',1,'2008-08-24','2009-09-28'),(6095,'2008-12-27',0,41,'399.9900',1,'2008-08-24','2009-09-28'),(6096,'2008-12-28',0,41,'399.9900',1,'2008-08-24','2009-09-28'),(6097,'2008-12-26',0,42,'2299.0000',1,'2008-08-06','2009-08-23'),(6098,'2008-12-27',0,42,'2299.0000',1,'2008-08-06','2009-08-23'),(6099,'2008-12-28',0,42,'2299.0000',1,'2008-08-06','2009-08-23'),(6100,'2008-12-26',0,44,'550.0000',1,'2008-08-06','2009-08-23'),(6101,'2008-12-27',0,44,'550.0000',1,'2008-08-06','2009-08-23'),(6102,'2008-12-28',0,44,'550.0000',1,'2008-08-06','2009-08-23'),(6103,'2008-12-26',0,45,'37.4900',1,'2008-08-25','2009-01-31'),(6104,'2008-12-27',0,45,'37.4900',1,'2008-08-25','2009-01-31'),(6105,'2008-12-28',0,45,'37.4900',1,'2008-08-25','2009-01-31'),(6106,'2008-12-26',0,46,'161.9400',1,'2008-08-06','2009-08-23'),(6107,'2008-12-27',0,46,'161.9400',1,'2008-08-06','2009-08-23'),(6108,'2008-12-28',0,46,'161.9400',1,'2008-08-06','2009-08-23'),(6109,'2008-12-26',0,47,'329.9900',1,'2008-08-06','2009-08-23'),(6110,'2008-12-27',0,47,'329.9900',1,'2008-08-06','2009-08-23'),(6111,'2008-12-28',0,47,'329.9900',1,'2008-08-06','2009-08-23'),(6112,'2008-12-26',0,48,'199.9900',1,'2008-08-06','2009-08-23'),(6113,'2008-12-27',0,48,'199.9900',1,'2008-08-06','2009-08-23'),(6114,'2008-12-28',0,48,'199.9900',1,'2008-08-06','2009-08-23'),(6115,'2008-12-26',0,49,'41.9500',1,'2008-08-25','2009-01-31'),(6116,'2008-12-27',0,49,'41.9500',1,'2008-08-25','2009-01-31'),(6117,'2008-12-28',0,49,'41.9500',1,'2008-08-25','2009-01-31'),(6118,'2008-12-26',0,51,'299.9900',1,'2008-08-06','2009-08-23'),(6119,'2008-12-27',0,51,'299.9900',1,'2008-08-06','2009-08-23'),(6120,'2008-12-28',0,51,'299.9900',1,'2008-08-06','2009-08-23'),(6121,'2008-12-26',0,52,'129.9900',1,'2008-08-24','2009-09-28'),(6122,'2008-12-27',0,52,'129.9900',1,'2008-08-24','2009-09-28'),(6123,'2008-12-28',0,52,'129.9900',1,'2008-08-24','2009-09-28'),(6124,'2008-12-26',0,53,'599.9900',1,'2008-08-06','2009-08-23'),(6125,'2008-12-27',0,53,'599.9900',1,'2008-08-06','2009-08-23'),(6126,'2008-12-28',0,53,'599.9900',1,'2008-08-06','2009-08-23'),(6127,'2008-12-26',0,54,'699.9900',1,'2008-08-06','2009-08-23'),(6128,'2008-12-27',0,54,'699.9900',1,'2008-08-06','2009-08-23'),(6129,'2008-12-28',0,54,'699.9900',1,'2008-08-06','2009-08-23'),(6130,'2008-12-26',0,74,'41.9500',1,'2008-08-25','2009-01-31'),(6131,'2008-12-27',0,74,'41.9500',1,'2008-08-25','2009-01-31'),(6132,'2008-12-28',0,74,'41.9500',1,'2008-08-25','2009-01-31'),(6136,'2008-12-26',0,75,'41.9500',1,'2008-08-25','2009-01-31'),(6137,'2008-12-27',0,75,'41.9500',1,'2008-08-25','2009-01-31'),(6138,'2008-12-28',0,75,'41.9500',1,'2008-08-25','2009-01-31'),(6139,'2008-12-26',0,79,'41.9500',1,'2008-08-25','2009-01-31'),(6140,'2008-12-27',0,79,'41.9500',1,'2008-08-25','2009-01-31'),(6141,'2008-12-28',0,79,'41.9500',1,'2008-08-25','2009-01-31'),(6142,'2008-12-26',0,80,'41.9500',1,'2008-08-25','2009-01-31'),(6143,'2008-12-27',0,80,'41.9500',1,'2008-08-25','2009-01-31'),(6144,'2008-12-28',0,80,'41.9500',1,'2008-08-25','2009-01-31'),(6145,'2008-12-26',0,81,'41.9500',1,'2008-08-25','2009-01-31'),(6146,'2008-12-27',0,81,'41.9500',1,'2008-08-25','2009-01-31'),(6147,'2008-12-28',0,81,'41.9500',1,'2008-08-25','2009-01-31'),(6148,'2008-12-26',0,82,'41.9500',1,'2008-08-25','2009-01-31'),(6149,'2008-12-27',0,82,'41.9500',1,'2008-08-25','2009-01-31'),(6150,'2008-12-28',0,82,'41.9500',1,'2008-08-25','2009-01-31'),(6151,'2008-12-26',0,83,'15.9900',1,'2008-08-25','2009-01-31'),(6152,'2008-12-27',0,83,'15.9900',1,'2008-08-25','2009-01-31'),(6153,'2008-12-28',0,83,'15.9900',1,'2008-08-25','2009-01-31'),(6154,'2008-12-26',0,84,'15.9900',1,'2008-08-25','2009-01-31'),(6155,'2008-12-27',0,84,'15.9900',1,'2008-08-25','2009-01-31'),(6156,'2008-12-28',0,84,'15.9900',1,'2008-08-25','2009-01-31'),(6157,'2008-12-26',0,85,'15.9900',1,'2008-08-25','2009-01-31'),(6158,'2008-12-27',0,85,'15.9900',1,'2008-08-25','2009-01-31'),(6159,'2008-12-28',0,85,'15.9900',1,'2008-08-25','2009-01-31'),(6160,'2008-12-26',0,86,'15.9900',1,'2008-08-25','2009-01-31'),(6161,'2008-12-27',0,86,'15.9900',1,'2008-08-25','2009-01-31'),(6162,'2008-12-28',0,86,'15.9900',1,'2008-08-25','2009-01-31'),(6163,'2008-12-26',0,87,'15.9900',1,'2008-08-25','2009-01-31'),(6164,'2008-12-27',0,87,'15.9900',1,'2008-08-25','2009-01-31'),(6165,'2008-12-28',0,87,'15.9900',1,'2008-08-25','2009-01-31'),(6166,'2008-12-26',0,88,'15.9900',1,'2008-08-25','2009-01-31'),(6167,'2008-12-27',0,88,'15.9900',1,'2008-08-25','2009-01-31'),(6168,'2008-12-28',0,88,'15.9900',1,'2008-08-25','2009-01-31'),(6169,'2008-12-26',0,89,'15.9900',1,'2008-08-25','2009-01-31'),(6170,'2008-12-27',0,89,'15.9900',1,'2008-08-25','2009-01-31'),(6171,'2008-12-28',0,89,'15.9900',1,'2008-08-25','2009-01-31'),(6172,'2008-12-26',0,90,'15.9900',1,'2008-08-25','2009-01-31'),(6173,'2008-12-27',0,90,'15.9900',1,'2008-08-25','2009-01-31'),(6174,'2008-12-28',0,90,'15.9900',1,'2008-08-25','2009-01-31'),(6175,'2008-12-26',0,91,'15.9900',1,'2008-08-25','2009-01-31'),(6176,'2008-12-27',0,91,'15.9900',1,'2008-08-25','2009-01-31'),(6177,'2008-12-28',0,91,'15.9900',1,'2008-08-25','2009-01-31'),(6178,'2008-12-26',0,92,'15.9900',1,'2008-08-25','2009-01-31'),(6179,'2008-12-27',0,92,'15.9900',1,'2008-08-25','2009-01-31'),(6180,'2008-12-28',0,92,'15.9900',1,'2008-08-25','2009-01-31'),(6181,'2008-12-26',0,93,'134.9900',1,'2008-08-06','2009-08-23'),(6182,'2008-12-27',0,93,'134.9900',1,'2008-08-06','2009-08-23'),(6183,'2008-12-28',0,93,'134.9900',1,'2008-08-06','2009-08-23'),(6184,'2008-12-26',0,94,'134.9900',1,'2008-08-06','2009-08-23'),(6185,'2008-12-27',0,94,'134.9900',1,'2008-08-06','2009-08-23'),(6186,'2008-12-28',0,94,'134.9900',1,'2008-08-06','2009-08-23'),(6187,'2008-12-26',0,95,'134.9900',1,'2008-08-06','2009-08-23'),(6188,'2008-12-27',0,95,'134.9900',1,'2008-08-06','2009-08-23'),(6189,'2008-12-28',0,95,'134.9900',1,'2008-08-06','2009-08-23'),(6190,'2008-12-26',0,96,'134.9900',1,'2008-08-06','2009-08-23'),(6191,'2008-12-27',0,96,'134.9900',1,'2008-08-06','2009-08-23'),(6192,'2008-12-28',0,96,'134.9900',1,'2008-08-06','2009-08-23'),(6193,'2008-12-26',0,97,'134.9900',1,'2008-08-06','2009-08-23'),(6194,'2008-12-27',0,97,'134.9900',1,'2008-08-06','2009-08-23'),(6195,'2008-12-28',0,97,'134.9900',1,'2008-08-06','2009-08-23'),(6196,'2008-12-26',0,98,'160.9900',1,'2008-08-06','2009-08-23'),(6197,'2008-12-27',0,98,'160.9900',1,'2008-08-06','2009-08-23'),(6198,'2008-12-28',0,98,'160.9900',1,'2008-08-06','2009-08-23'),(6199,'2008-12-26',0,99,'160.9900',1,'2008-08-06','2009-08-23'),(6200,'2008-12-27',0,99,'160.9900',1,'2008-08-06','2009-08-23'),(6201,'2008-12-28',0,99,'160.9900',1,'2008-08-06','2009-08-23'),(6202,'2008-12-26',0,100,'160.9900',1,'2008-08-06','2009-08-23'),(6203,'2008-12-27',0,100,'160.9900',1,'2008-08-06','2009-08-23'),(6204,'2008-12-28',0,100,'160.9900',1,'2008-08-06','2009-08-23'),(6205,'2008-12-26',0,101,'160.9900',1,'2008-08-06','2009-08-23'),(6206,'2008-12-27',0,101,'160.9900',1,'2008-08-06','2009-08-23'),(6207,'2008-12-28',0,101,'160.9900',1,'2008-08-06','2009-08-23'),(6208,'2008-12-26',0,102,'160.9900',1,'2008-08-06','2009-08-23'),(6209,'2008-12-27',0,102,'160.9900',1,'2008-08-06','2009-08-23'),(6210,'2008-12-28',0,102,'160.9900',1,'2008-08-06','2009-08-23'),(6211,'2008-12-26',0,103,'69.9900',1,'2008-08-25','2009-01-31'),(6212,'2008-12-27',0,103,'69.9900',1,'2008-08-25','2009-01-31'),(6213,'2008-12-28',0,103,'69.9900',1,'2008-08-25','2009-01-31'),(6214,'2008-12-26',0,104,'69.9900',1,'2008-08-25','2009-01-31'),(6215,'2008-12-27',0,104,'69.9900',1,'2008-08-25','2009-01-31'),(6216,'2008-12-28',0,104,'69.9900',1,'2008-08-25','2009-01-31'),(6217,'2008-12-26',0,105,'69.9900',1,'2008-08-25','2009-01-31'),(6218,'2008-12-27',0,105,'69.9900',1,'2008-08-25','2009-01-31'),(6219,'2008-12-28',0,105,'69.9900',1,'2008-08-25','2009-01-31'),(6220,'2008-12-26',0,106,'69.9900',1,'2008-08-25','2009-01-31'),(6221,'2008-12-27',0,106,'69.9900',1,'2008-08-25','2009-01-31'),(6222,'2008-12-28',0,106,'69.9900',1,'2008-08-25','2009-01-31'),(6223,'2008-12-26',0,107,'69.9900',1,'2008-08-25','2009-01-31'),(6224,'2008-12-27',0,107,'69.9900',1,'2008-08-25','2009-01-31'),(6225,'2008-12-28',0,107,'69.9900',1,'2008-08-25','2009-01-31'),(6226,'2008-12-26',0,108,'89.9900',1,'2008-08-25','2009-01-31'),(6227,'2008-12-27',0,108,'89.9900',1,'2008-08-25','2009-01-31'),(6228,'2008-12-28',0,108,'89.9900',1,'2008-08-25','2009-01-31'),(6229,'2008-12-26',0,109,'89.9900',1,'2008-08-25','2009-01-31'),(6230,'2008-12-27',0,109,'89.9900',1,'2008-08-25','2009-01-31'),(6231,'2008-12-28',0,109,'89.9900',1,'2008-08-25','2009-01-31'),(6232,'2008-12-26',0,110,'89.9900',1,'2008-08-25','2009-01-31'),(6233,'2008-12-27',0,110,'89.9900',1,'2008-08-25','2009-01-31'),(6234,'2008-12-28',0,110,'89.9900',1,'2008-08-25','2009-01-31'),(6238,'2008-12-26',0,111,'89.9900',1,'2008-08-25','2009-01-31'),(6239,'2008-12-27',0,111,'89.9900',1,'2008-08-25','2009-01-31'),(6240,'2008-12-28',0,111,'89.9900',1,'2008-08-25','2009-01-31'),(6241,'2008-12-26',0,112,'159.9900',1,'2008-08-06','2009-08-23'),(6242,'2008-12-27',0,112,'159.9900',1,'2008-08-06','2009-08-23'),(6243,'2008-12-28',0,112,'159.9900',1,'2008-08-06','2009-08-23'),(6244,'2008-12-26',0,113,'159.9900',1,'2008-08-06','2009-08-23'),(6245,'2008-12-27',0,113,'159.9900',1,'2008-08-06','2009-08-23'),(6246,'2008-12-28',0,113,'159.9900',1,'2008-08-06','2009-08-23'),(6247,'2008-12-26',0,114,'159.9900',1,'2008-08-06','2009-08-23'),(6248,'2008-12-27',0,114,'159.9900',1,'2008-08-06','2009-08-23'),(6249,'2008-12-28',0,114,'159.9900',1,'2008-08-06','2009-08-23'),(6250,'2008-12-26',0,115,'159.9900',1,'2008-08-06','2009-08-23'),(6251,'2008-12-27',0,115,'159.9900',1,'2008-08-06','2009-08-23'),(6252,'2008-12-28',0,115,'159.9900',1,'2008-08-06','2009-08-23'),(6253,'2008-12-26',0,117,'15.0000',1,'2008-08-28','2009-01-31'),(6254,'2008-12-27',0,117,'15.0000',1,'2008-08-28','2009-01-31'),(6255,'2008-12-28',0,117,'15.0000',1,'2008-08-28','2009-01-31'),(6256,'2008-12-26',0,118,'15.0000',1,'2008-08-25','2009-01-31'),(6257,'2008-12-27',0,118,'15.0000',1,'2008-08-25','2009-01-31'),(6258,'2008-12-28',0,118,'15.0000',1,'2008-08-25','2009-01-31'),(6259,'2008-12-26',0,119,'15.0000',1,'2008-08-28','2009-01-31'),(6260,'2008-12-27',0,119,'15.0000',1,'2008-08-28','2009-01-31'),(6261,'2008-12-28',0,119,'15.0000',1,'2008-08-28','2009-01-31'),(6262,'2008-12-26',0,120,'22.0000',1,'2008-08-25','2009-01-31'),(6263,'2008-12-27',0,120,'22.0000',1,'2008-08-25','2009-01-31'),(6264,'2008-12-28',0,120,'22.0000',1,'2008-08-25','2009-01-31'),(6265,'2008-12-26',0,121,'22.0000',1,'2008-08-28','2009-01-31'),(6266,'2008-12-27',0,121,'22.0000',1,'2008-08-28','2009-01-31'),(6267,'2008-12-28',0,121,'22.0000',1,'2008-08-28','2009-01-31'),(6268,'2008-12-26',0,122,'22.0000',1,'2008-08-28','2009-01-31'),(6269,'2008-12-27',0,122,'22.0000',1,'2008-08-28','2009-01-31'),(6270,'2008-12-28',0,122,'22.0000',1,'2008-08-28','2009-01-31'),(6271,'2008-12-26',0,123,'100.0000',1,'2008-08-25','2009-01-31'),(6272,'2008-12-27',0,123,'100.0000',1,'2008-08-25','2009-01-31'),(6273,'2008-12-28',0,123,'100.0000',1,'2008-08-25','2009-01-31'),(6274,'2008-12-26',0,124,'15.0000',1,'2008-08-28','2009-01-31'),(6275,'2008-12-27',0,124,'15.0000',1,'2008-08-28','2009-01-31'),(6276,'2008-12-28',0,124,'15.0000',1,'2008-08-28','2009-01-31'),(6277,'2008-12-26',0,125,'15.0000',1,'2008-08-25','2009-01-31'),(6278,'2008-12-27',0,125,'15.0000',1,'2008-08-25','2009-01-31'),(6279,'2008-12-28',0,125,'15.0000',1,'2008-08-25','2009-01-31'),(6280,'2008-12-26',0,126,'13.5000',1,'2008-08-28','2009-01-31'),(6281,'2008-12-27',0,126,'13.5000',1,'2008-08-28','2009-01-31'),(6282,'2008-12-28',0,126,'13.5000',1,'2008-08-28','2009-01-31'),(6283,'2008-12-26',0,127,'13.5000',1,'2008-08-28','2009-01-31'),(6284,'2008-12-27',0,127,'13.5000',1,'2008-08-28','2009-01-31'),(6285,'2008-12-28',0,127,'13.5000',1,'2008-08-28','2009-01-31'),(6286,'2008-12-26',0,128,'13.5000',1,'2008-08-28','2009-01-31'),(6287,'2008-12-27',0,128,'13.5000',1,'2008-08-28','2009-01-31'),(6288,'2008-12-28',0,128,'13.5000',1,'2008-08-28','2009-01-31'),(6289,'2008-12-26',0,129,'13.5000',1,'2008-08-28','2009-01-31'),(6290,'2008-12-27',0,129,'13.5000',1,'2008-08-28','2009-01-31'),(6291,'2008-12-28',0,129,'13.5000',1,'2008-08-28','2009-01-31'),(6292,'2008-12-26',0,130,'13.5000',1,'2008-08-25','2009-01-31'),(6293,'2008-12-27',0,130,'13.5000',1,'2008-08-25','2009-01-31'),(6294,'2008-12-28',0,130,'13.5000',1,'2008-08-25','2009-01-31'),(6295,'2008-12-26',0,131,'13.5000',1,'2008-08-28','2009-01-31'),(6296,'2008-12-27',0,131,'13.5000',1,'2008-08-28','2009-01-31'),(6297,'2008-12-28',0,131,'13.5000',1,'2008-08-28','2009-01-31'),(6298,'2008-12-26',0,132,'99.0000',1,'2008-08-25','2009-01-31'),(6299,'2008-12-27',0,132,'99.0000',1,'2008-08-25','2009-01-31'),(6300,'2008-12-28',0,132,'99.0000',1,'2008-08-25','2009-01-31'),(6301,'2008-12-26',0,133,'34.0000',1,'2008-08-25','2009-01-31'),(6302,'2008-12-27',0,133,'34.0000',1,'2008-08-25','2009-01-31'),(6303,'2008-12-28',0,133,'34.0000',1,'2008-08-25','2009-01-31'),(6304,'2008-12-26',0,134,'19.0000',1,'2008-08-25','2009-01-31'),(6305,'2008-12-27',0,134,'19.0000',1,'2008-08-25','2009-01-31'),(6306,'2008-12-28',0,134,'19.0000',1,'2008-08-25','2009-01-31'),(6307,'2008-12-26',0,135,'41.9500',1,'2008-08-25','2009-01-31'),(6308,'2008-12-27',0,135,'41.9500',1,'2008-08-25','2009-01-31'),(6309,'2008-12-28',0,135,'41.9500',1,'2008-08-25','2009-01-31'),(6310,'2008-12-26',0,137,'13.5000',1,'2008-08-28','2009-01-31'),(6311,'2008-12-27',0,137,'13.5000',1,'2008-08-28','2009-01-31'),(6312,'2008-12-28',0,137,'13.5000',1,'2008-08-28','2009-01-31'),(6313,'2008-12-26',0,138,'150.0000',1,'2008-08-06','2009-08-23'),(6314,'2008-12-27',0,138,'150.0000',1,'2008-08-06','2009-08-23'),(6315,'2008-12-28',0,138,'150.0000',1,'2008-08-06','2009-08-23'),(6316,'2008-12-26',0,139,'199.9900',1,'2008-08-06','2009-08-23'),(6317,'2008-12-27',0,139,'199.9900',1,'2008-08-06','2009-08-23'),(6318,'2008-12-28',0,139,'199.9900',1,'2008-08-06','2009-08-23'),(6319,'2008-12-26',0,142,'150.0000',1,'2008-08-06','2009-08-23'),(6320,'2008-12-27',0,142,'150.0000',1,'2008-08-06','2009-08-23'),(6321,'2008-12-28',0,142,'150.0000',1,'2008-08-06','2009-08-23'),(6322,'2008-12-26',0,144,'250.0000',1,'2008-08-06','2009-08-23'),(6323,'2008-12-27',0,144,'250.0000',1,'2008-08-06','2009-08-23'),(6324,'2008-12-28',0,144,'250.0000',1,'2008-08-06','2009-08-23'),(6325,'2008-12-26',0,146,'325.0000',1,'2008-08-06','2009-08-23'),(6326,'2008-12-27',0,146,'325.0000',1,'2008-08-06','2009-08-23'),(6327,'2008-12-28',0,146,'325.0000',1,'2008-08-06','2009-08-23'),(6328,'2008-12-26',0,164,'4999.9500',1,'2008-08-06','2009-08-23'),(6329,'2008-12-27',0,164,'4999.9500',1,'2008-08-06','2009-08-23'),(6330,'2008-12-28',0,164,'4999.9500',1,'2008-08-06','2009-08-23'),(6331,'2008-12-26',1,16,'149.9900',1,'2008-08-06','2009-08-23'),(6332,'2008-12-27',1,16,'149.9900',1,'2008-08-06','2009-08-23'),(6333,'2008-12-28',1,16,'149.9900',1,'2008-08-06','2009-08-23'),(6334,'2008-12-26',1,17,'349.9900',1,'2008-08-06','2009-08-23'),(6335,'2008-12-27',1,17,'349.9900',1,'2008-08-06','2009-08-23'),(6336,'2008-12-28',1,17,'349.9900',1,'2008-08-06','2009-08-23'),(6337,'2008-12-26',1,18,'399.9900',1,'2008-08-06','2009-08-23'),(6338,'2008-12-27',1,18,'399.9900',1,'2008-08-06','2009-08-23'),(6339,'2008-12-28',1,18,'399.9900',1,'2008-08-06','2009-08-23'),(6340,'2008-12-26',1,19,'199.9900',1,'2008-08-06','2009-08-23'),(6341,'2008-12-27',1,19,'199.9900',1,'2008-08-06','2009-08-23'),(6342,'2008-12-28',1,19,'199.9900',1,'2008-08-06','2009-08-23'),(6343,'2008-12-26',1,20,'150.0000',1,'2008-08-06','2009-08-23'),(6344,'2008-12-27',1,20,'150.0000',1,'2008-08-06','2009-08-23'),(6345,'2008-12-28',1,20,'150.0000',1,'2008-08-06','2009-08-23'),(6346,'2008-12-26',1,25,'2299.9900',1,'2008-08-06','2009-08-23'),(6347,'2008-12-27',1,25,'2299.9900',1,'2008-08-06','2009-08-23'),(6348,'2008-12-28',1,25,'2299.9900',1,'2008-08-06','2009-08-23'),(6349,'2008-12-26',1,26,'1799.9900',1,'2008-08-06','2009-08-23'),(6350,'2008-12-27',1,26,'1799.9900',1,'2008-08-06','2009-08-23'),(6351,'2008-12-28',1,26,'1799.9900',1,'2008-08-06','2009-08-23'),(6352,'2008-12-26',1,27,'2699.9900',1,'2008-08-06','2009-08-23'),(6353,'2008-12-27',1,27,'2699.9900',1,'2008-08-06','2009-08-23'),(6354,'2008-12-28',1,27,'2699.9900',1,'2008-08-06','2009-08-23'),(6355,'2008-12-26',1,28,'1599.9900',1,'2008-08-06','2009-08-23'),(6356,'2008-12-27',1,28,'1599.9900',1,'2008-08-06','2009-08-23'),(6357,'2008-12-28',1,28,'1599.9900',1,'2008-08-06','2009-08-23'),(6358,'2008-12-26',1,29,'15.9900',1,'2008-08-25','2009-01-31'),(6359,'2008-12-27',1,29,'15.9900',1,'2008-08-25','2009-01-31'),(6360,'2008-12-28',1,29,'15.9900',1,'2008-08-25','2009-01-31'),(6361,'2008-12-26',1,30,'134.9900',1,'2008-08-06','2009-08-23'),(6362,'2008-12-27',1,30,'134.9900',1,'2008-08-06','2009-08-23'),(6363,'2008-12-28',1,30,'134.9900',1,'2008-08-06','2009-08-23'),(6364,'2008-12-26',1,31,'69.9900',1,'2008-08-25','2009-01-31'),(6365,'2008-12-27',1,31,'69.9900',1,'2008-08-25','2009-01-31'),(6366,'2008-12-28',1,31,'69.9900',1,'2008-08-25','2009-01-31'),(6367,'2008-12-26',1,32,'89.9900',1,'2008-08-25','2009-01-31'),(6368,'2008-12-27',1,32,'89.9900',1,'2008-08-25','2009-01-31'),(6369,'2008-12-28',1,32,'89.9900',1,'2008-08-25','2009-01-31'),(6370,'2008-12-26',1,33,'159.9900',1,'2008-08-06','2009-08-23'),(6371,'2008-12-27',1,33,'159.9900',1,'2008-08-06','2009-08-23'),(6372,'2008-12-28',1,33,'159.9900',1,'2008-08-06','2009-08-23'),(6373,'2008-12-26',1,34,'160.9900',1,'2008-08-06','2009-08-23'),(6374,'2008-12-27',1,34,'160.9900',1,'2008-08-06','2009-08-23'),(6375,'2008-12-28',1,34,'160.9900',1,'2008-08-06','2009-08-23'),(6376,'2008-12-26',1,35,'15.0000',1,'2008-08-25','2009-01-31'),(6377,'2008-12-27',1,35,'15.0000',1,'2008-08-25','2009-01-31'),(6378,'2008-12-28',1,35,'15.0000',1,'2008-08-25','2009-01-31'),(6379,'2008-12-26',1,36,'22.0000',1,'2008-08-28','2009-01-31'),(6380,'2008-12-27',1,36,'22.0000',1,'2008-08-28','2009-01-31'),(6381,'2008-12-28',1,36,'22.0000',1,'2008-08-28','2009-01-31'),(6382,'2008-12-26',1,37,'15.0000',1,'2008-08-28','2009-01-31'),(6383,'2008-12-27',1,37,'15.0000',1,'2008-08-28','2009-01-31'),(6384,'2008-12-28',1,37,'15.0000',1,'2008-08-28','2009-01-31'),(6385,'2008-12-26',1,38,'13.5000',1,'2008-08-28','2009-01-31'),(6386,'2008-12-27',1,38,'13.5000',1,'2008-08-28','2009-01-31'),(6387,'2008-12-28',1,38,'13.5000',1,'2008-08-28','2009-01-31'),(6388,'2008-12-26',1,39,'30.0000',1,'2008-08-28','2009-01-31'),(6389,'2008-12-27',1,39,'30.0000',1,'2008-08-28','2009-01-31'),(6390,'2008-12-28',1,39,'30.0000',1,'2008-08-28','2009-01-31'),(6391,'2008-12-26',1,41,'399.9900',1,'2008-08-24','2009-08-23'),(6392,'2008-12-27',1,41,'399.9900',1,'2008-08-24','2009-08-23'),(6393,'2008-12-28',1,41,'399.9900',1,'2008-08-24','2009-08-23'),(6394,'2008-12-26',1,42,'2299.0000',1,'2008-08-06','2009-08-23'),(6395,'2008-12-27',1,42,'2299.0000',1,'2008-08-06','2009-08-23'),(6396,'2008-12-28',1,42,'2299.0000',1,'2008-08-06','2009-08-23'),(6397,'2008-12-26',1,44,'550.0000',1,'2008-08-06','2009-08-23'),(6398,'2008-12-27',1,44,'550.0000',1,'2008-08-06','2009-08-23'),(6399,'2008-12-28',1,44,'550.0000',1,'2008-08-06','2009-08-23'),(6400,'2008-12-26',1,45,'37.4900',1,'2008-08-25','2009-01-31'),(6401,'2008-12-27',1,45,'37.4900',1,'2008-08-25','2009-01-31'),(6402,'2008-12-28',1,45,'37.4900',1,'2008-08-25','2009-01-31'),(6403,'2008-12-26',1,46,'161.9400',1,'2008-08-06','2009-08-23'),(6404,'2008-12-27',1,46,'161.9400',1,'2008-08-06','2009-08-23'),(6405,'2008-12-28',1,46,'161.9400',1,'2008-08-06','2009-08-23'),(6406,'2008-12-26',1,47,'329.9900',1,'2008-08-06','2009-08-23'),(6407,'2008-12-27',1,47,'329.9900',1,'2008-08-06','2009-08-23'),(6408,'2008-12-28',1,47,'329.9900',1,'2008-08-06','2009-08-23'),(6409,'2008-12-26',1,48,'199.9900',1,'2008-08-06','2009-08-23'),(6410,'2008-12-27',1,48,'199.9900',1,'2008-08-06','2009-08-23'),(6411,'2008-12-28',1,48,'199.9900',1,'2008-08-06','2009-08-23'),(6412,'2008-12-26',1,49,'41.9500',1,'2008-08-25','2009-01-31'),(6413,'2008-12-27',1,49,'41.9500',1,'2008-08-25','2009-01-31'),(6414,'2008-12-28',1,49,'41.9500',1,'2008-08-25','2009-01-31'),(6415,'2008-12-26',1,51,'299.9900',1,'2008-08-06','2009-08-23'),(6416,'2008-12-27',1,51,'299.9900',1,'2008-08-06','2009-08-23'),(6417,'2008-12-28',1,51,'299.9900',1,'2008-08-06','2009-08-23'),(6418,'2008-12-26',1,52,'129.9900',1,'2008-08-24','2009-09-28'),(6419,'2008-12-27',1,52,'129.9900',1,'2008-08-24','2009-09-28'),(6420,'2008-12-28',1,52,'129.9900',1,'2008-08-24','2009-09-28'),(6421,'2008-12-26',1,53,'599.9900',1,'2008-08-06','2009-08-23'),(6422,'2008-12-27',1,53,'599.9900',1,'2008-08-06','2009-08-23'),(6423,'2008-12-28',1,53,'599.9900',1,'2008-08-06','2009-08-23'),(6424,'2008-12-26',1,54,'699.9900',1,'2008-08-06','2009-08-23'),(6425,'2008-12-27',1,54,'699.9900',1,'2008-08-06','2009-08-23'),(6426,'2008-12-28',1,54,'699.9900',1,'2008-08-06','2009-08-23'),(6427,'2008-12-26',1,74,'41.9500',1,'2008-08-25','2009-01-31'),(6428,'2008-12-27',1,74,'41.9500',1,'2008-08-25','2009-01-31'),(6429,'2008-12-28',1,74,'41.9500',1,'2008-08-25','2009-01-31'),(6430,'2008-12-26',1,75,'41.9500',1,'2008-08-25','2009-01-31'),(6431,'2008-12-27',1,75,'41.9500',1,'2008-08-25','2009-01-31'),(6432,'2008-12-28',1,75,'41.9500',1,'2008-08-25','2009-01-31'),(6433,'2008-12-26',1,79,'41.9500',1,'2008-08-25','2009-01-31'),(6434,'2008-12-27',1,79,'41.9500',1,'2008-08-25','2009-01-31'),(6435,'2008-12-28',1,79,'41.9500',1,'2008-08-25','2009-01-31'),(6436,'2008-12-26',1,80,'41.9500',1,'2008-08-25','2009-01-31'),(6437,'2008-12-27',1,80,'41.9500',1,'2008-08-25','2009-01-31'),(6438,'2008-12-28',1,80,'41.9500',1,'2008-08-25','2009-01-31'),(6439,'2008-12-26',1,81,'41.9500',1,'2008-08-25','2009-01-31'),(6440,'2008-12-27',1,81,'41.9500',1,'2008-08-25','2009-01-31'),(6441,'2008-12-28',1,81,'41.9500',1,'2008-08-25','2009-01-31'),(6442,'2008-12-26',1,82,'41.9500',1,'2008-08-25','2009-01-31'),(6443,'2008-12-27',1,82,'41.9500',1,'2008-08-25','2009-01-31'),(6444,'2008-12-28',1,82,'41.9500',1,'2008-08-25','2009-01-31'),(6445,'2008-12-26',1,83,'15.9900',1,'2008-08-25','2009-01-31'),(6446,'2008-12-27',1,83,'15.9900',1,'2008-08-25','2009-01-31'),(6447,'2008-12-28',1,83,'15.9900',1,'2008-08-25','2009-01-31'),(6448,'2008-12-26',1,84,'15.9900',1,'2008-08-25','2009-01-31'),(6449,'2008-12-27',1,84,'15.9900',1,'2008-08-25','2009-01-31'),(6450,'2008-12-28',1,84,'15.9900',1,'2008-08-25','2009-01-31'),(6451,'2008-12-26',1,85,'15.9900',1,'2008-08-25','2009-01-31'),(6452,'2008-12-27',1,85,'15.9900',1,'2008-08-25','2009-01-31'),(6453,'2008-12-28',1,85,'15.9900',1,'2008-08-25','2009-01-31'),(6454,'2008-12-26',1,86,'15.9900',1,'2008-08-25','2009-01-31'),(6455,'2008-12-27',1,86,'15.9900',1,'2008-08-25','2009-01-31'),(6456,'2008-12-28',1,86,'15.9900',1,'2008-08-25','2009-01-31'),(6457,'2008-12-26',1,87,'15.9900',1,'2008-08-25','2009-01-31'),(6458,'2008-12-27',1,87,'15.9900',1,'2008-08-25','2009-01-31'),(6459,'2008-12-28',1,87,'15.9900',1,'2008-08-25','2009-01-31'),(6460,'2008-12-26',1,88,'15.9900',1,'2008-08-25','2009-01-31'),(6461,'2008-12-27',1,88,'15.9900',1,'2008-08-25','2009-01-31'),(6462,'2008-12-28',1,88,'15.9900',1,'2008-08-25','2009-01-31'),(6463,'2008-12-26',1,89,'15.9900',1,'2008-08-25','2009-01-31'),(6464,'2008-12-27',1,89,'15.9900',1,'2008-08-25','2009-01-31'),(6465,'2008-12-28',1,89,'15.9900',1,'2008-08-25','2009-01-31'),(6466,'2008-12-26',1,90,'15.9900',1,'2008-08-25','2009-01-31'),(6467,'2008-12-27',1,90,'15.9900',1,'2008-08-25','2009-01-31'),(6468,'2008-12-28',1,90,'15.9900',1,'2008-08-25','2009-01-31'),(6469,'2008-12-26',1,91,'15.9900',1,'2008-08-25','2009-01-31'),(6470,'2008-12-27',1,91,'15.9900',1,'2008-08-25','2009-01-31'),(6471,'2008-12-28',1,91,'15.9900',1,'2008-08-25','2009-01-31'),(6472,'2008-12-26',1,92,'15.9900',1,'2008-08-25','2009-01-31'),(6473,'2008-12-27',1,92,'15.9900',1,'2008-08-25','2009-01-31'),(6474,'2008-12-28',1,92,'15.9900',1,'2008-08-25','2009-01-31'),(6475,'2008-12-26',1,93,'134.9900',1,'2008-08-06','2009-08-23'),(6476,'2008-12-27',1,93,'134.9900',1,'2008-08-06','2009-08-23'),(6477,'2008-12-28',1,93,'134.9900',1,'2008-08-06','2009-08-23'),(6478,'2008-12-26',1,94,'134.9900',1,'2008-08-06','2009-08-23'),(6479,'2008-12-27',1,94,'134.9900',1,'2008-08-06','2009-08-23'),(6480,'2008-12-28',1,94,'134.9900',1,'2008-08-06','2009-08-23'),(6481,'2008-12-26',1,95,'134.9900',1,'2008-08-06','2009-08-23'),(6482,'2008-12-27',1,95,'134.9900',1,'2008-08-06','2009-08-23'),(6483,'2008-12-28',1,95,'134.9900',1,'2008-08-06','2009-08-23'),(6484,'2008-12-26',1,96,'134.9900',1,'2008-08-06','2009-08-23'),(6485,'2008-12-27',1,96,'134.9900',1,'2008-08-06','2009-08-23'),(6486,'2008-12-28',1,96,'134.9900',1,'2008-08-06','2009-08-23'),(6487,'2008-12-26',1,97,'134.9900',1,'2008-08-06','2009-08-23'),(6488,'2008-12-27',1,97,'134.9900',1,'2008-08-06','2009-08-23'),(6489,'2008-12-28',1,97,'134.9900',1,'2008-08-06','2009-08-23'),(6490,'2008-12-26',1,98,'160.9900',1,'2008-08-06','2009-08-23'),(6491,'2008-12-27',1,98,'160.9900',1,'2008-08-06','2009-08-23'),(6492,'2008-12-28',1,98,'160.9900',1,'2008-08-06','2009-08-23'),(6493,'2008-12-26',1,99,'160.9900',1,'2008-08-06','2009-08-23'),(6494,'2008-12-27',1,99,'160.9900',1,'2008-08-06','2009-08-23'),(6495,'2008-12-28',1,99,'160.9900',1,'2008-08-06','2009-08-23'),(6496,'2008-12-26',1,100,'160.9900',1,'2008-08-06','2009-08-23'),(6497,'2008-12-27',1,100,'160.9900',1,'2008-08-06','2009-08-23'),(6498,'2008-12-28',1,100,'160.9900',1,'2008-08-06','2009-08-23'),(6499,'2008-12-26',1,101,'160.9900',1,'2008-08-06','2009-08-23'),(6500,'2008-12-27',1,101,'160.9900',1,'2008-08-06','2009-08-23'),(6501,'2008-12-28',1,101,'160.9900',1,'2008-08-06','2009-08-23'),(6502,'2008-12-26',1,102,'160.9900',1,'2008-08-06','2009-08-23'),(6503,'2008-12-27',1,102,'160.9900',1,'2008-08-06','2009-08-23'),(6504,'2008-12-28',1,102,'160.9900',1,'2008-08-06','2009-08-23'),(6505,'2008-12-26',1,103,'69.9900',1,'2008-08-25','2009-01-31'),(6506,'2008-12-27',1,103,'69.9900',1,'2008-08-25','2009-01-31'),(6507,'2008-12-28',1,103,'69.9900',1,'2008-08-25','2009-01-31'),(6508,'2008-12-26',1,104,'69.9900',1,'2008-08-25','2009-01-31'),(6509,'2008-12-27',1,104,'69.9900',1,'2008-08-25','2009-01-31'),(6510,'2008-12-28',1,104,'69.9900',1,'2008-08-25','2009-01-31'),(6511,'2008-12-26',1,105,'69.9900',1,'2008-08-25','2009-01-31'),(6512,'2008-12-27',1,105,'69.9900',1,'2008-08-25','2009-01-31'),(6513,'2008-12-28',1,105,'69.9900',1,'2008-08-25','2009-01-31'),(6514,'2008-12-26',1,106,'69.9900',1,'2008-08-25','2009-01-31'),(6515,'2008-12-27',1,106,'69.9900',1,'2008-08-25','2009-01-31'),(6516,'2008-12-28',1,106,'69.9900',1,'2008-08-25','2009-01-31'),(6517,'2008-12-26',1,107,'69.9900',1,'2008-08-25','2009-01-31'),(6518,'2008-12-27',1,107,'69.9900',1,'2008-08-25','2009-01-31'),(6519,'2008-12-28',1,107,'69.9900',1,'2008-08-25','2009-01-31'),(6520,'2008-12-26',1,108,'89.9900',1,'2008-08-25','2009-01-31'),(6521,'2008-12-27',1,108,'89.9900',1,'2008-08-25','2009-01-31'),(6522,'2008-12-28',1,108,'89.9900',1,'2008-08-25','2009-01-31'),(6523,'2008-12-26',1,109,'89.9900',1,'2008-08-25','2009-01-31'),(6524,'2008-12-27',1,109,'89.9900',1,'2008-08-25','2009-01-31'),(6525,'2008-12-28',1,109,'89.9900',1,'2008-08-25','2009-01-31'),(6526,'2008-12-26',1,110,'89.9900',1,'2008-08-25','2009-01-31'),(6527,'2008-12-27',1,110,'89.9900',1,'2008-08-25','2009-01-31'),(6528,'2008-12-28',1,110,'89.9900',1,'2008-08-25','2009-01-31'),(6529,'2008-12-26',1,111,'89.9900',1,'2008-08-25','2009-01-31'),(6530,'2008-12-27',1,111,'89.9900',1,'2008-08-25','2009-01-31'),(6531,'2008-12-28',1,111,'89.9900',1,'2008-08-25','2009-01-31'),(6532,'2008-12-26',1,112,'159.9900',1,'2008-08-06','2009-08-23'),(6533,'2008-12-27',1,112,'159.9900',1,'2008-08-06','2009-08-23'),(6534,'2008-12-28',1,112,'159.9900',1,'2008-08-06','2009-08-23'),(6535,'2008-12-26',1,113,'159.9900',1,'2008-08-06','2009-08-23'),(6536,'2008-12-27',1,113,'159.9900',1,'2008-08-06','2009-08-23'),(6537,'2008-12-28',1,113,'159.9900',1,'2008-08-06','2009-08-23'),(6538,'2008-12-26',1,114,'159.9900',1,'2008-08-06','2009-08-23'),(6539,'2008-12-27',1,114,'159.9900',1,'2008-08-06','2009-08-23'),(6540,'2008-12-28',1,114,'159.9900',1,'2008-08-06','2009-08-23'),(6541,'2008-12-26',1,115,'159.9900',1,'2008-08-06','2009-08-23'),(6542,'2008-12-27',1,115,'159.9900',1,'2008-08-06','2009-08-23'),(6543,'2008-12-28',1,115,'159.9900',1,'2008-08-06','2009-08-23'),(6544,'2008-12-26',1,117,'15.0000',1,'2008-08-25','2009-01-31'),(6545,'2008-12-27',1,117,'15.0000',1,'2008-08-25','2009-01-31'),(6546,'2008-12-28',1,117,'15.0000',1,'2008-08-25','2009-01-31'),(6547,'2008-12-26',1,118,'15.0000',1,'2008-08-28','2009-01-31'),(6548,'2008-12-27',1,118,'15.0000',1,'2008-08-28','2009-01-31'),(6549,'2008-12-28',1,118,'15.0000',1,'2008-08-28','2009-01-31'),(6550,'2008-12-26',1,119,'15.0000',1,'2008-08-28','2009-01-31'),(6551,'2008-12-27',1,119,'15.0000',1,'2008-08-28','2009-01-31'),(6552,'2008-12-28',1,119,'15.0000',1,'2008-08-28','2009-01-31'),(6553,'2008-12-26',1,120,'22.0000',1,'2008-08-25','2009-01-31'),(6554,'2008-12-27',1,120,'22.0000',1,'2008-08-25','2009-01-31'),(6555,'2008-12-28',1,120,'22.0000',1,'2008-08-25','2009-01-31'),(6556,'2008-12-26',1,121,'22.0000',1,'2008-08-28','2009-01-31'),(6557,'2008-12-27',1,121,'22.0000',1,'2008-08-28','2009-01-31'),(6558,'2008-12-28',1,121,'22.0000',1,'2008-08-28','2009-01-31'),(6559,'2008-12-26',1,122,'22.0000',1,'2008-08-25','2009-01-31'),(6560,'2008-12-27',1,122,'22.0000',1,'2008-08-25','2009-01-31'),(6561,'2008-12-28',1,122,'22.0000',1,'2008-08-25','2009-01-31'),(6562,'2008-12-26',1,123,'100.0000',1,'2008-08-28','2009-01-31'),(6563,'2008-12-27',1,123,'100.0000',1,'2008-08-28','2009-01-31'),(6564,'2008-12-28',1,123,'100.0000',1,'2008-08-28','2009-01-31'),(6565,'2008-12-26',1,124,'15.0000',1,'2008-08-28','2009-01-31'),(6566,'2008-12-27',1,124,'15.0000',1,'2008-08-28','2009-01-31'),(6567,'2008-12-28',1,124,'15.0000',1,'2008-08-28','2009-01-31'),(6568,'2008-12-26',1,125,'15.0000',1,'2008-08-28','2009-01-31'),(6569,'2008-12-27',1,125,'15.0000',1,'2008-08-28','2009-01-31'),(6570,'2008-12-28',1,125,'15.0000',1,'2008-08-28','2009-01-31'),(6571,'2008-12-26',1,126,'13.5000',1,'2008-08-28','2009-01-31'),(6572,'2008-12-27',1,126,'13.5000',1,'2008-08-28','2009-01-31'),(6573,'2008-12-28',1,126,'13.5000',1,'2008-08-28','2009-01-31'),(6574,'2008-12-26',1,127,'13.5000',1,'2008-08-25','2009-01-31'),(6575,'2008-12-27',1,127,'13.5000',1,'2008-08-25','2009-01-31'),(6576,'2008-12-28',1,127,'13.5000',1,'2008-08-25','2009-01-31'),(6577,'2008-12-26',1,128,'13.5000',1,'2008-08-28','2009-01-31'),(6578,'2008-12-27',1,128,'13.5000',1,'2008-08-28','2009-01-31'),(6579,'2008-12-28',1,128,'13.5000',1,'2008-08-28','2009-01-31'),(6580,'2008-12-26',1,129,'13.5000',1,'2008-08-28','2009-01-31'),(6581,'2008-12-27',1,129,'13.5000',1,'2008-08-28','2009-01-31'),(6582,'2008-12-28',1,129,'13.5000',1,'2008-08-28','2009-01-31'),(6583,'2008-12-26',1,130,'13.5000',1,'2008-08-28','2009-01-31'),(6584,'2008-12-27',1,130,'13.5000',1,'2008-08-28','2009-01-31'),(6585,'2008-12-28',1,130,'13.5000',1,'2008-08-28','2009-01-31'),(6586,'2008-12-26',1,131,'13.5000',1,'2008-08-28','2009-01-31'),(6587,'2008-12-27',1,131,'13.5000',1,'2008-08-28','2009-01-31'),(6588,'2008-12-28',1,131,'13.5000',1,'2008-08-28','2009-01-31'),(6589,'2008-12-26',1,132,'99.0000',1,'2008-08-25','2009-01-31'),(6590,'2008-12-27',1,132,'99.0000',1,'2008-08-25','2009-01-31'),(6591,'2008-12-28',1,132,'99.0000',1,'2008-08-25','2009-01-31'),(6592,'2008-12-26',1,133,'34.0000',1,'2008-08-25','2009-01-31'),(6593,'2008-12-27',1,133,'34.0000',1,'2008-08-25','2009-01-31'),(6594,'2008-12-28',1,133,'34.0000',1,'2008-08-25','2009-01-31'),(6595,'2008-12-26',1,134,'19.0000',1,'2008-08-25','2009-01-31'),(6596,'2008-12-27',1,134,'19.0000',1,'2008-08-25','2009-01-31'),(6597,'2008-12-28',1,134,'19.0000',1,'2008-08-25','2009-01-31'),(6598,'2008-12-26',1,135,'41.9500',1,'2008-08-27','2009-08-28'),(6599,'2008-12-27',1,135,'41.9500',1,'2008-08-27','2009-08-28'),(6600,'2008-12-28',1,135,'41.9500',1,'2008-08-27','2009-08-28'),(6601,'2008-12-26',1,137,'13.5000',1,'2008-08-28','2009-01-31'),(6602,'2008-12-27',1,137,'13.5000',1,'2008-08-28','2009-01-31'),(6603,'2008-12-28',1,137,'13.5000',1,'2008-08-28','2009-01-31'),(6604,'2008-12-26',1,138,'150.0000',1,'2008-08-06','2009-08-23'),(6605,'2008-12-27',1,138,'150.0000',1,'2008-08-06','2009-08-23'),(6606,'2008-12-28',1,138,'150.0000',1,'2008-08-06','2009-08-23'),(6607,'2008-12-26',1,139,'199.9900',1,'2008-08-06','2009-08-23'),(6608,'2008-12-27',1,139,'199.9900',1,'2008-08-06','2009-08-23'),(6609,'2008-12-28',1,139,'199.9900',1,'2008-08-06','2009-08-23'),(6610,'2008-12-26',1,142,'150.0000',1,'2008-08-06','2009-08-23'),(6611,'2008-12-27',1,142,'150.0000',1,'2008-08-06','2009-08-23'),(6612,'2008-12-28',1,142,'150.0000',1,'2008-08-06','2009-08-23'),(6613,'2008-12-26',1,144,'250.0000',1,'2008-08-06','2009-08-23'),(6614,'2008-12-27',1,144,'250.0000',1,'2008-08-06','2009-08-23'),(6615,'2008-12-28',1,144,'250.0000',1,'2008-08-06','2009-08-23'),(6616,'2008-12-26',1,146,'325.0000',1,'2008-08-06','2009-08-23'),(6617,'2008-12-27',1,146,'325.0000',1,'2008-08-06','2009-08-23'),(6618,'2008-12-28',1,146,'325.0000',1,'2008-08-06','2009-08-23'),(6619,'2008-12-26',1,164,'4999.9500',1,'2008-08-06','2009-08-23'),(6620,'2008-12-27',1,164,'4999.9500',1,'2008-08-06','2009-08-23'),(6621,'2008-12-28',1,164,'4999.9500',1,'2008-08-06','2009-08-23'),(6622,'2008-12-26',2,16,'149.9900',1,'2008-08-06','2009-08-23'),(6623,'2008-12-27',2,16,'149.9900',1,'2008-08-06','2009-08-23'),(6624,'2008-12-28',2,16,'149.9900',1,'2008-08-06','2009-08-23'),(6625,'2008-12-26',2,17,'349.9900',1,'2008-08-06','2009-08-23'),(6626,'2008-12-27',2,17,'349.9900',1,'2008-08-06','2009-08-23'),(6627,'2008-12-28',2,17,'349.9900',1,'2008-08-06','2009-08-23'),(6628,'2008-12-26',2,18,'399.9900',1,'2008-08-06','2009-08-23'),(6629,'2008-12-27',2,18,'399.9900',1,'2008-08-06','2009-08-23'),(6630,'2008-12-28',2,18,'399.9900',1,'2008-08-06','2009-08-23'),(6631,'2008-12-26',2,19,'199.9900',1,'2008-08-06','2009-08-23'),(6632,'2008-12-27',2,19,'199.9900',1,'2008-08-06','2009-08-23'),(6633,'2008-12-28',2,19,'199.9900',1,'2008-08-06','2009-08-23'),(6634,'2008-12-26',2,20,'150.0000',1,'2008-08-06','2009-08-23'),(6635,'2008-12-27',2,20,'150.0000',1,'2008-08-06','2009-08-23'),(6636,'2008-12-28',2,20,'150.0000',1,'2008-08-06','2009-08-23'),(6637,'2008-12-26',2,25,'2299.9900',1,'2008-08-06','2009-08-23'),(6638,'2008-12-27',2,25,'2299.9900',1,'2008-08-06','2009-08-23'),(6639,'2008-12-28',2,25,'2299.9900',1,'2008-08-06','2009-08-23'),(6640,'2008-12-26',2,26,'1799.9900',1,'2008-08-06','2009-08-23'),(6641,'2008-12-27',2,26,'1799.9900',1,'2008-08-06','2009-08-23'),(6642,'2008-12-28',2,26,'1799.9900',1,'2008-08-06','2009-08-23'),(6643,'2008-12-26',2,27,'2699.9900',1,'2008-08-06','2009-08-23'),(6644,'2008-12-27',2,27,'2699.9900',1,'2008-08-06','2009-08-23'),(6645,'2008-12-28',2,27,'2699.9900',1,'2008-08-06','2009-08-23'),(6646,'2008-12-26',2,28,'1599.9900',1,'2008-08-06','2009-08-23'),(6647,'2008-12-27',2,28,'1599.9900',1,'2008-08-06','2009-08-23'),(6648,'2008-12-28',2,28,'1599.9900',1,'2008-08-06','2009-08-23'),(6649,'2008-12-26',2,29,'15.9900',1,'2008-08-25','2009-01-31'),(6650,'2008-12-27',2,29,'15.9900',1,'2008-08-25','2009-01-31'),(6651,'2008-12-28',2,29,'15.9900',1,'2008-08-25','2009-01-31'),(6652,'2008-12-26',2,30,'134.9900',1,'2008-08-06','2009-08-23'),(6653,'2008-12-27',2,30,'134.9900',1,'2008-08-06','2009-08-23'),(6654,'2008-12-28',2,30,'134.9900',1,'2008-08-06','2009-08-23'),(6655,'2008-12-26',2,31,'69.9900',1,'2008-08-25','2009-01-31'),(6656,'2008-12-27',2,31,'69.9900',1,'2008-08-25','2009-01-31'),(6657,'2008-12-28',2,31,'69.9900',1,'2008-08-25','2009-01-31'),(6658,'2008-12-26',2,32,'89.9900',1,'2008-08-25','2009-01-31'),(6659,'2008-12-27',2,32,'89.9900',1,'2008-08-25','2009-01-31'),(6660,'2008-12-28',2,32,'89.9900',1,'2008-08-25','2009-01-31'),(6661,'2008-12-26',2,33,'159.9900',1,'2008-08-06','2009-08-23'),(6662,'2008-12-27',2,33,'159.9900',1,'2008-08-06','2009-08-23'),(6663,'2008-12-28',2,33,'159.9900',1,'2008-08-06','2009-08-23'),(6664,'2008-12-26',2,34,'160.9900',1,'2008-08-06','2009-08-23'),(6665,'2008-12-27',2,34,'160.9900',1,'2008-08-06','2009-08-23'),(6666,'2008-12-28',2,34,'160.9900',1,'2008-08-06','2009-08-23'),(6667,'2008-12-26',2,35,'15.0000',1,'2008-08-28','2009-01-31'),(6668,'2008-12-27',2,35,'15.0000',1,'2008-08-28','2009-01-31'),(6669,'2008-12-28',2,35,'15.0000',1,'2008-08-28','2009-01-31'),(6670,'2008-12-26',2,36,'22.0000',1,'2008-08-28','2009-01-31'),(6671,'2008-12-27',2,36,'22.0000',1,'2008-08-28','2009-01-31'),(6672,'2008-12-28',2,36,'22.0000',1,'2008-08-28','2009-01-31'),(6673,'2008-12-26',2,37,'15.0000',1,'2008-08-25','2009-01-31'),(6674,'2008-12-27',2,37,'15.0000',1,'2008-08-25','2009-01-31'),(6675,'2008-12-28',2,37,'15.0000',1,'2008-08-25','2009-01-31'),(6676,'2008-12-26',2,38,'13.5000',1,'2008-08-28','2009-01-31'),(6677,'2008-12-27',2,38,'13.5000',1,'2008-08-28','2009-01-31'),(6678,'2008-12-28',2,38,'13.5000',1,'2008-08-28','2009-01-31'),(6679,'2008-12-26',2,39,'30.0000',1,'2008-08-28','2009-01-31'),(6680,'2008-12-27',2,39,'30.0000',1,'2008-08-28','2009-01-31'),(6681,'2008-12-28',2,39,'30.0000',1,'2008-08-28','2009-01-31'),(6682,'2008-12-26',2,41,'399.9900',1,'2008-08-24','2009-09-28'),(6683,'2008-12-27',2,41,'399.9900',1,'2008-08-24','2009-09-28'),(6684,'2008-12-28',2,41,'399.9900',1,'2008-08-24','2009-09-28'),(6685,'2008-12-26',2,42,'2299.0000',1,'2008-08-06','2009-08-23'),(6686,'2008-12-27',2,42,'2299.0000',1,'2008-08-06','2009-08-23'),(6687,'2008-12-28',2,42,'2299.0000',1,'2008-08-06','2009-08-23'),(6688,'2008-12-26',2,44,'550.0000',1,'2008-08-06','2009-08-23'),(6689,'2008-12-27',2,44,'550.0000',1,'2008-08-06','2009-08-23'),(6690,'2008-12-28',2,44,'550.0000',1,'2008-08-06','2009-08-23'),(6691,'2008-12-26',2,45,'37.4900',1,'2008-08-25','2009-01-31'),(6692,'2008-12-27',2,45,'37.4900',1,'2008-08-25','2009-01-31'),(6693,'2008-12-28',2,45,'37.4900',1,'2008-08-25','2009-01-31'),(6694,'2008-12-26',2,46,'161.9400',1,'2008-08-06','2009-08-23'),(6695,'2008-12-27',2,46,'161.9400',1,'2008-08-06','2009-08-23'),(6696,'2008-12-28',2,46,'161.9400',1,'2008-08-06','2009-08-23'),(6697,'2008-12-26',2,47,'329.9900',1,'2008-08-06','2009-08-23'),(6698,'2008-12-27',2,47,'329.9900',1,'2008-08-06','2009-08-23'),(6699,'2008-12-28',2,47,'329.9900',1,'2008-08-06','2009-08-23'),(6700,'2008-12-26',2,48,'199.9900',1,'2008-08-06','2009-08-23'),(6701,'2008-12-27',2,48,'199.9900',1,'2008-08-06','2009-08-23'),(6702,'2008-12-28',2,48,'199.9900',1,'2008-08-06','2009-08-23'),(6703,'2008-12-26',2,49,'41.9500',1,'2008-08-25','2009-01-31'),(6704,'2008-12-27',2,49,'41.9500',1,'2008-08-25','2009-01-31'),(6705,'2008-12-28',2,49,'41.9500',1,'2008-08-25','2009-01-31'),(6706,'2008-12-26',2,51,'299.9900',1,'2008-08-06','2009-08-23'),(6707,'2008-12-27',2,51,'299.9900',1,'2008-08-06','2009-08-23'),(6708,'2008-12-28',2,51,'299.9900',1,'2008-08-06','2009-08-23'),(6709,'2008-12-26',2,52,'129.9900',1,'2008-08-24','2009-09-28'),(6710,'2008-12-27',2,52,'129.9900',1,'2008-08-24','2009-09-28'),(6711,'2008-12-28',2,52,'129.9900',1,'2008-08-24','2009-09-28'),(6712,'2008-12-26',2,53,'599.9900',1,'2008-08-06','2009-08-23'),(6713,'2008-12-27',2,53,'599.9900',1,'2008-08-06','2009-08-23'),(6714,'2008-12-28',2,53,'599.9900',1,'2008-08-06','2009-08-23'),(6715,'2008-12-26',2,54,'699.9900',1,'2008-08-06','2009-08-23'),(6716,'2008-12-27',2,54,'699.9900',1,'2008-08-06','2009-08-23'),(6717,'2008-12-28',2,54,'699.9900',1,'2008-08-06','2009-08-23'),(6718,'2008-12-26',2,74,'41.9500',1,'2008-08-25','2009-01-31'),(6719,'2008-12-27',2,74,'41.9500',1,'2008-08-25','2009-01-31'),(6720,'2008-12-28',2,74,'41.9500',1,'2008-08-25','2009-01-31'),(6721,'2008-12-26',2,75,'41.9500',1,'2008-08-25','2009-01-31'),(6722,'2008-12-27',2,75,'41.9500',1,'2008-08-25','2009-01-31'),(6723,'2008-12-28',2,75,'41.9500',1,'2008-08-25','2009-01-31'),(6724,'2008-12-26',2,79,'41.9500',1,'2008-08-25','2009-01-31'),(6725,'2008-12-27',2,79,'41.9500',1,'2008-08-25','2009-01-31'),(6726,'2008-12-28',2,79,'41.9500',1,'2008-08-25','2009-01-31'),(6727,'2008-12-26',2,80,'41.9500',1,'2008-08-25','2009-01-31'),(6728,'2008-12-27',2,80,'41.9500',1,'2008-08-25','2009-01-31'),(6729,'2008-12-28',2,80,'41.9500',1,'2008-08-25','2009-01-31'),(6730,'2008-12-26',2,81,'41.9500',1,'2008-08-25','2009-01-31'),(6731,'2008-12-27',2,81,'41.9500',1,'2008-08-25','2009-01-31'),(6732,'2008-12-28',2,81,'41.9500',1,'2008-08-25','2009-01-31'),(6733,'2008-12-26',2,82,'41.9500',1,'2008-08-25','2009-01-31'),(6734,'2008-12-27',2,82,'41.9500',1,'2008-08-25','2009-01-31'),(6735,'2008-12-28',2,82,'41.9500',1,'2008-08-25','2009-01-31'),(6736,'2008-12-26',2,83,'15.9900',1,'2008-08-25','2009-01-31'),(6737,'2008-12-27',2,83,'15.9900',1,'2008-08-25','2009-01-31'),(6738,'2008-12-28',2,83,'15.9900',1,'2008-08-25','2009-01-31'),(6739,'2008-12-26',2,84,'15.9900',1,'2008-08-25','2009-01-31'),(6740,'2008-12-27',2,84,'15.9900',1,'2008-08-25','2009-01-31'),(6741,'2008-12-28',2,84,'15.9900',1,'2008-08-25','2009-01-31'),(6742,'2008-12-26',2,85,'15.9900',1,'2008-08-25','2009-01-31'),(6743,'2008-12-27',2,85,'15.9900',1,'2008-08-25','2009-01-31'),(6744,'2008-12-28',2,85,'15.9900',1,'2008-08-25','2009-01-31'),(6748,'2008-12-26',2,86,'15.9900',1,'2008-08-25','2009-01-31'),(6749,'2008-12-27',2,86,'15.9900',1,'2008-08-25','2009-01-31'),(6750,'2008-12-28',2,86,'15.9900',1,'2008-08-25','2009-01-31'),(6751,'2008-12-26',2,87,'15.9900',1,'2008-08-25','2009-01-31'),(6752,'2008-12-27',2,87,'15.9900',1,'2008-08-25','2009-01-31'),(6753,'2008-12-28',2,87,'15.9900',1,'2008-08-25','2009-01-31'),(6754,'2008-12-26',2,88,'15.9900',1,'2008-08-25','2009-01-31'),(6755,'2008-12-27',2,88,'15.9900',1,'2008-08-25','2009-01-31'),(6756,'2008-12-28',2,88,'15.9900',1,'2008-08-25','2009-01-31'),(6757,'2008-12-26',2,89,'15.9900',1,'2008-08-25','2009-01-31'),(6758,'2008-12-27',2,89,'15.9900',1,'2008-08-25','2009-01-31'),(6759,'2008-12-28',2,89,'15.9900',1,'2008-08-25','2009-01-31'),(6760,'2008-12-26',2,90,'15.9900',1,'2008-08-25','2009-01-31'),(6761,'2008-12-27',2,90,'15.9900',1,'2008-08-25','2009-01-31'),(6762,'2008-12-28',2,90,'15.9900',1,'2008-08-25','2009-01-31'),(6763,'2008-12-26',2,91,'15.9900',1,'2008-08-25','2009-01-31'),(6764,'2008-12-27',2,91,'15.9900',1,'2008-08-25','2009-01-31'),(6765,'2008-12-28',2,91,'15.9900',1,'2008-08-25','2009-01-31'),(6766,'2008-12-26',2,92,'15.9900',1,'2008-08-25','2009-01-31'),(6767,'2008-12-27',2,92,'15.9900',1,'2008-08-25','2009-01-31'),(6768,'2008-12-28',2,92,'15.9900',1,'2008-08-25','2009-01-31'),(6769,'2008-12-26',2,93,'134.9900',1,'2008-08-06','2009-08-23'),(6770,'2008-12-27',2,93,'134.9900',1,'2008-08-06','2009-08-23'),(6771,'2008-12-28',2,93,'134.9900',1,'2008-08-06','2009-08-23'),(6772,'2008-12-26',2,94,'134.9900',1,'2008-08-06','2009-08-23'),(6773,'2008-12-27',2,94,'134.9900',1,'2008-08-06','2009-08-23'),(6774,'2008-12-28',2,94,'134.9900',1,'2008-08-06','2009-08-23'),(6775,'2008-12-26',2,95,'134.9900',1,'2008-08-06','2009-08-23'),(6776,'2008-12-27',2,95,'134.9900',1,'2008-08-06','2009-08-23'),(6777,'2008-12-28',2,95,'134.9900',1,'2008-08-06','2009-08-23'),(6778,'2008-12-26',2,96,'134.9900',1,'2008-08-06','2009-08-23'),(6779,'2008-12-27',2,96,'134.9900',1,'2008-08-06','2009-08-23'),(6780,'2008-12-28',2,96,'134.9900',1,'2008-08-06','2009-08-23'),(6781,'2008-12-26',2,97,'134.9900',1,'2008-08-06','2009-08-23'),(6782,'2008-12-27',2,97,'134.9900',1,'2008-08-06','2009-08-23'),(6783,'2008-12-28',2,97,'134.9900',1,'2008-08-06','2009-08-23'),(6784,'2008-12-26',2,98,'160.9900',1,'2008-08-06','2009-08-23'),(6785,'2008-12-27',2,98,'160.9900',1,'2008-08-06','2009-08-23'),(6786,'2008-12-28',2,98,'160.9900',1,'2008-08-06','2009-08-23'),(6787,'2008-12-26',2,99,'160.9900',1,'2008-08-06','2009-08-23'),(6788,'2008-12-27',2,99,'160.9900',1,'2008-08-06','2009-08-23'),(6789,'2008-12-28',2,99,'160.9900',1,'2008-08-06','2009-08-23'),(6790,'2008-12-26',2,100,'160.9900',1,'2008-08-06','2009-08-23'),(6791,'2008-12-27',2,100,'160.9900',1,'2008-08-06','2009-08-23'),(6792,'2008-12-28',2,100,'160.9900',1,'2008-08-06','2009-08-23'),(6793,'2008-12-26',2,101,'160.9900',1,'2008-08-06','2009-08-23'),(6794,'2008-12-27',2,101,'160.9900',1,'2008-08-06','2009-08-23'),(6795,'2008-12-28',2,101,'160.9900',1,'2008-08-06','2009-08-23'),(6796,'2008-12-26',2,102,'160.9900',1,'2008-08-06','2009-08-23'),(6797,'2008-12-27',2,102,'160.9900',1,'2008-08-06','2009-08-23'),(6798,'2008-12-28',2,102,'160.9900',1,'2008-08-06','2009-08-23'),(6799,'2008-12-26',2,103,'69.9900',1,'2008-08-25','2009-01-31'),(6800,'2008-12-27',2,103,'69.9900',1,'2008-08-25','2009-01-31'),(6801,'2008-12-28',2,103,'69.9900',1,'2008-08-25','2009-01-31'),(6802,'2008-12-26',2,104,'69.9900',1,'2008-08-25','2009-01-31'),(6803,'2008-12-27',2,104,'69.9900',1,'2008-08-25','2009-01-31'),(6804,'2008-12-28',2,104,'69.9900',1,'2008-08-25','2009-01-31'),(6805,'2008-12-26',2,105,'69.9900',1,'2008-08-25','2009-01-31'),(6806,'2008-12-27',2,105,'69.9900',1,'2008-08-25','2009-01-31'),(6807,'2008-12-28',2,105,'69.9900',1,'2008-08-25','2009-01-31'),(6808,'2008-12-26',2,106,'69.9900',1,'2008-08-25','2009-01-31'),(6809,'2008-12-27',2,106,'69.9900',1,'2008-08-25','2009-01-31'),(6810,'2008-12-28',2,106,'69.9900',1,'2008-08-25','2009-01-31'),(6811,'2008-12-26',2,107,'69.9900',1,'2008-08-25','2009-01-31'),(6812,'2008-12-27',2,107,'69.9900',1,'2008-08-25','2009-01-31'),(6813,'2008-12-28',2,107,'69.9900',1,'2008-08-25','2009-01-31'),(6814,'2008-12-26',2,108,'89.9900',1,'2008-08-25','2009-01-31'),(6815,'2008-12-27',2,108,'89.9900',1,'2008-08-25','2009-01-31'),(6816,'2008-12-28',2,108,'89.9900',1,'2008-08-25','2009-01-31'),(6817,'2008-12-26',2,109,'89.9900',1,'2008-08-25','2009-01-31'),(6818,'2008-12-27',2,109,'89.9900',1,'2008-08-25','2009-01-31'),(6819,'2008-12-28',2,109,'89.9900',1,'2008-08-25','2009-01-31'),(6820,'2008-12-26',2,110,'89.9900',1,'2008-08-25','2009-01-31'),(6821,'2008-12-27',2,110,'89.9900',1,'2008-08-25','2009-01-31'),(6822,'2008-12-28',2,110,'89.9900',1,'2008-08-25','2009-01-31'),(6823,'2008-12-26',2,111,'89.9900',1,'2008-08-25','2009-01-31'),(6824,'2008-12-27',2,111,'89.9900',1,'2008-08-25','2009-01-31'),(6825,'2008-12-28',2,111,'89.9900',1,'2008-08-25','2009-01-31'),(6826,'2008-12-26',2,112,'159.9900',1,'2008-08-06','2009-08-23'),(6827,'2008-12-27',2,112,'159.9900',1,'2008-08-06','2009-08-23'),(6828,'2008-12-28',2,112,'159.9900',1,'2008-08-06','2009-08-23'),(6829,'2008-12-26',2,113,'159.9900',1,'2008-08-06','2009-08-23'),(6830,'2008-12-27',2,113,'159.9900',1,'2008-08-06','2009-08-23'),(6831,'2008-12-28',2,113,'159.9900',1,'2008-08-06','2009-08-23'),(6832,'2008-12-26',2,114,'159.9900',1,'2008-08-06','2009-08-23'),(6833,'2008-12-27',2,114,'159.9900',1,'2008-08-06','2009-08-23'),(6834,'2008-12-28',2,114,'159.9900',1,'2008-08-06','2009-08-23'),(6835,'2008-12-26',2,115,'159.9900',1,'2008-08-06','2009-08-23'),(6836,'2008-12-27',2,115,'159.9900',1,'2008-08-06','2009-08-23'),(6837,'2008-12-28',2,115,'159.9900',1,'2008-08-06','2009-08-23'),(6838,'2008-12-26',2,117,'15.0000',1,'2008-08-25','2009-01-31'),(6839,'2008-12-27',2,117,'15.0000',1,'2008-08-25','2009-01-31'),(6840,'2008-12-28',2,117,'15.0000',1,'2008-08-25','2009-01-31'),(6841,'2008-12-26',2,118,'15.0000',1,'2008-08-28','2009-01-31'),(6842,'2008-12-27',2,118,'15.0000',1,'2008-08-28','2009-01-31'),(6843,'2008-12-28',2,118,'15.0000',1,'2008-08-28','2009-01-31'),(6844,'2008-12-26',2,119,'15.0000',1,'2008-08-25','2009-01-31'),(6845,'2008-12-27',2,119,'15.0000',1,'2008-08-25','2009-01-31'),(6846,'2008-12-28',2,119,'15.0000',1,'2008-08-25','2009-01-31'),(6850,'2008-12-26',2,120,'22.0000',1,'2008-08-25','2009-01-31'),(6851,'2008-12-27',2,120,'22.0000',1,'2008-08-25','2009-01-31'),(6852,'2008-12-28',2,120,'22.0000',1,'2008-08-25','2009-01-31'),(6853,'2008-12-26',2,121,'22.0000',1,'2008-08-28','2009-01-31'),(6854,'2008-12-27',2,121,'22.0000',1,'2008-08-28','2009-01-31'),(6855,'2008-12-28',2,121,'22.0000',1,'2008-08-28','2009-01-31'),(6856,'2008-12-26',2,122,'22.0000',1,'2008-08-28','2009-01-31'),(6857,'2008-12-27',2,122,'22.0000',1,'2008-08-28','2009-01-31'),(6858,'2008-12-28',2,122,'22.0000',1,'2008-08-28','2009-01-31'),(6859,'2008-12-26',2,123,'100.0000',1,'2008-08-28','2009-01-31'),(6860,'2008-12-27',2,123,'100.0000',1,'2008-08-28','2009-01-31'),(6861,'2008-12-28',2,123,'100.0000',1,'2008-08-28','2009-01-31'),(6862,'2008-12-26',2,124,'15.0000',1,'2008-08-25','2009-01-31'),(6863,'2008-12-27',2,124,'15.0000',1,'2008-08-25','2009-01-31'),(6864,'2008-12-28',2,124,'15.0000',1,'2008-08-25','2009-01-31'),(6865,'2008-12-26',2,125,'15.0000',1,'2008-08-28','2009-01-31'),(6866,'2008-12-27',2,125,'15.0000',1,'2008-08-28','2009-01-31'),(6867,'2008-12-28',2,125,'15.0000',1,'2008-08-28','2009-01-31'),(6868,'2008-12-26',2,126,'13.5000',1,'2008-08-28','2009-01-31'),(6869,'2008-12-27',2,126,'13.5000',1,'2008-08-28','2009-01-31'),(6870,'2008-12-28',2,126,'13.5000',1,'2008-08-28','2009-01-31'),(6871,'2008-12-26',2,127,'13.5000',1,'2008-08-28','2009-01-31'),(6872,'2008-12-27',2,127,'13.5000',1,'2008-08-28','2009-01-31'),(6873,'2008-12-28',2,127,'13.5000',1,'2008-08-28','2009-01-31'),(6874,'2008-12-26',2,128,'13.5000',1,'2008-08-28','2009-01-31'),(6875,'2008-12-27',2,128,'13.5000',1,'2008-08-28','2009-01-31'),(6876,'2008-12-28',2,128,'13.5000',1,'2008-08-28','2009-01-31'),(6877,'2008-12-26',2,129,'13.5000',1,'2008-08-25','2009-01-31'),(6878,'2008-12-27',2,129,'13.5000',1,'2008-08-25','2009-01-31'),(6879,'2008-12-28',2,129,'13.5000',1,'2008-08-25','2009-01-31'),(6880,'2008-12-26',2,130,'13.5000',1,'2008-08-28','2009-01-31'),(6881,'2008-12-27',2,130,'13.5000',1,'2008-08-28','2009-01-31'),(6882,'2008-12-28',2,130,'13.5000',1,'2008-08-28','2009-01-31'),(6883,'2008-12-26',2,131,'13.5000',1,'2008-08-28','2009-01-31'),(6884,'2008-12-27',2,131,'13.5000',1,'2008-08-28','2009-01-31'),(6885,'2008-12-28',2,131,'13.5000',1,'2008-08-28','2009-01-31'),(6886,'2008-12-26',2,132,'99.0000',1,'2008-08-25','2009-01-31'),(6887,'2008-12-27',2,132,'99.0000',1,'2008-08-25','2009-01-31'),(6888,'2008-12-28',2,132,'99.0000',1,'2008-08-25','2009-01-31'),(6889,'2008-12-26',2,133,'34.0000',1,'2008-08-25','2009-01-31'),(6890,'2008-12-27',2,133,'34.0000',1,'2008-08-25','2009-01-31'),(6891,'2008-12-28',2,133,'34.0000',1,'2008-08-25','2009-01-31'),(6892,'2008-12-26',2,134,'19.0000',1,'2008-08-25','2009-01-31'),(6893,'2008-12-27',2,134,'19.0000',1,'2008-08-25','2009-01-31'),(6894,'2008-12-28',2,134,'19.0000',1,'2008-08-25','2009-01-31'),(6895,'2008-12-26',2,135,'41.9500',1,'2008-08-27','2009-08-28'),(6896,'2008-12-27',2,135,'41.9500',1,'2008-08-27','2009-08-28'),(6897,'2008-12-28',2,135,'41.9500',1,'2008-08-27','2009-08-28'),(6898,'2008-12-26',2,137,'13.5000',1,'2008-08-25','2009-01-31'),(6899,'2008-12-27',2,137,'13.5000',1,'2008-08-25','2009-01-31'),(6900,'2008-12-28',2,137,'13.5000',1,'2008-08-25','2009-01-31'),(6901,'2008-12-26',2,138,'150.0000',1,'2008-08-06','2009-08-23'),(6902,'2008-12-27',2,138,'150.0000',1,'2008-08-06','2009-08-23'),(6903,'2008-12-28',2,138,'150.0000',1,'2008-08-06','2009-08-23'),(6904,'2008-12-26',2,139,'199.9900',1,'2008-08-06','2009-08-23'),(6905,'2008-12-27',2,139,'199.9900',1,'2008-08-06','2009-08-23'),(6906,'2008-12-28',2,139,'199.9900',1,'2008-08-06','2009-08-23'),(6907,'2008-12-26',2,142,'150.0000',1,'2008-08-06','2009-08-23'),(6908,'2008-12-27',2,142,'150.0000',1,'2008-08-06','2009-08-23'),(6909,'2008-12-28',2,142,'150.0000',1,'2008-08-06','2009-08-23'),(6910,'2008-12-26',2,144,'250.0000',1,'2008-08-06','2009-08-23'),(6911,'2008-12-27',2,144,'250.0000',1,'2008-08-06','2009-08-23'),(6912,'2008-12-28',2,144,'250.0000',1,'2008-08-06','2009-08-23'),(6913,'2008-12-26',2,146,'325.0000',1,'2008-08-06','2009-08-23'),(6914,'2008-12-27',2,146,'325.0000',1,'2008-08-06','2009-08-23'),(6915,'2008-12-28',2,146,'325.0000',1,'2008-08-06','2009-08-23'),(6916,'2008-12-26',2,164,'4999.9500',1,'2008-08-06','2009-08-23'),(6917,'2008-12-27',2,164,'4999.9500',1,'2008-08-06','2009-08-23'),(6918,'2008-12-28',2,164,'4999.9500',1,'2008-08-06','2009-08-23'),(6919,'2008-12-26',3,29,'15.9900',1,'2008-08-25','2009-01-31'),(6920,'2008-12-27',3,29,'15.9900',1,'2008-08-25','2009-01-31'),(6921,'2008-12-28',3,29,'15.9900',1,'2008-08-25','2009-01-31'),(6922,'2008-12-26',3,31,'69.9900',1,'2008-08-25','2009-01-31'),(6923,'2008-12-27',3,31,'69.9900',1,'2008-08-25','2009-01-31'),(6924,'2008-12-28',3,31,'69.9900',1,'2008-08-25','2009-01-31'),(6925,'2008-12-26',3,32,'89.9900',1,'2008-08-25','2009-01-31'),(6926,'2008-12-27',3,32,'89.9900',1,'2008-08-25','2009-01-31'),(6927,'2008-12-28',3,32,'89.9900',1,'2008-08-25','2009-01-31'),(6928,'2008-12-26',3,35,'15.0000',1,'2008-08-25','2009-01-31'),(6929,'2008-12-27',3,35,'15.0000',1,'2008-08-25','2009-01-31'),(6930,'2008-12-28',3,35,'15.0000',1,'2008-08-25','2009-01-31'),(6931,'2008-12-26',3,36,'22.0000',1,'2008-08-25','2009-01-31'),(6932,'2008-12-27',3,36,'22.0000',1,'2008-08-25','2009-01-31'),(6933,'2008-12-28',3,36,'22.0000',1,'2008-08-25','2009-01-31'),(6934,'2008-12-26',3,37,'15.0000',1,'2008-08-25','2009-01-31'),(6935,'2008-12-27',3,37,'15.0000',1,'2008-08-25','2009-01-31'),(6936,'2008-12-28',3,37,'15.0000',1,'2008-08-25','2009-01-31'),(6937,'2008-12-26',3,38,'13.5000',1,'2008-08-25','2009-01-31'),(6938,'2008-12-27',3,38,'13.5000',1,'2008-08-25','2009-01-31'),(6939,'2008-12-28',3,38,'13.5000',1,'2008-08-25','2009-01-31'),(6940,'2008-12-26',3,39,'30.0000',1,'2008-08-25','2009-01-31'),(6941,'2008-12-27',3,39,'30.0000',1,'2008-08-25','2009-01-31'),(6942,'2008-12-28',3,39,'30.0000',1,'2008-08-25','2009-01-31'),(6943,'2008-12-26',3,45,'37.4900',1,'2008-08-25','2009-01-31'),(6944,'2008-12-27',3,45,'37.4900',1,'2008-08-25','2009-01-31'),(6945,'2008-12-28',3,45,'37.4900',1,'2008-08-25','2009-01-31'),(6946,'2008-12-26',3,49,'41.9500',1,'2008-08-25','2009-01-31'),(6947,'2008-12-27',3,49,'41.9500',1,'2008-08-25','2009-01-31'),(6948,'2008-12-28',3,49,'41.9500',1,'2008-08-25','2009-01-31'),(6949,'2008-12-26',3,74,'41.9500',1,'2008-08-25','2009-01-31'),(6950,'2008-12-27',3,74,'41.9500',1,'2008-08-25','2009-01-31'),(6951,'2008-12-28',3,74,'41.9500',1,'2008-08-25','2009-01-31'),(6952,'2008-12-26',3,75,'41.9500',1,'2008-08-25','2009-01-31'),(6953,'2008-12-27',3,75,'41.9500',1,'2008-08-25','2009-01-31'),(6954,'2008-12-28',3,75,'41.9500',1,'2008-08-25','2009-01-31'),(6955,'2008-12-26',3,79,'41.9500',1,'2008-08-25','2009-01-31'),(6956,'2008-12-27',3,79,'41.9500',1,'2008-08-25','2009-01-31'),(6957,'2008-12-28',3,79,'41.9500',1,'2008-08-25','2009-01-31'),(6958,'2008-12-26',3,80,'41.9500',1,'2008-08-25','2009-01-31'),(6959,'2008-12-27',3,80,'41.9500',1,'2008-08-25','2009-01-31'),(6960,'2008-12-28',3,80,'41.9500',1,'2008-08-25','2009-01-31'),(6961,'2008-12-26',3,81,'41.9500',1,'2008-08-25','2009-01-31'),(6962,'2008-12-27',3,81,'41.9500',1,'2008-08-25','2009-01-31'),(6963,'2008-12-28',3,81,'41.9500',1,'2008-08-25','2009-01-31'),(6964,'2008-12-26',3,82,'41.9500',1,'2008-08-25','2009-01-31'),(6965,'2008-12-27',3,82,'41.9500',1,'2008-08-25','2009-01-31'),(6966,'2008-12-28',3,82,'41.9500',1,'2008-08-25','2009-01-31'),(6967,'2008-12-26',3,83,'15.9900',1,'2008-08-25','2009-01-31'),(6968,'2008-12-27',3,83,'15.9900',1,'2008-08-25','2009-01-31'),(6969,'2008-12-28',3,83,'15.9900',1,'2008-08-25','2009-01-31'),(6970,'2008-12-26',3,84,'15.9900',1,'2008-08-25','2009-01-31'),(6971,'2008-12-27',3,84,'15.9900',1,'2008-08-25','2009-01-31'),(6972,'2008-12-28',3,84,'15.9900',1,'2008-08-25','2009-01-31'),(6973,'2008-12-26',3,85,'15.9900',1,'2008-08-25','2009-01-31'),(6974,'2008-12-27',3,85,'15.9900',1,'2008-08-25','2009-01-31'),(6975,'2008-12-28',3,85,'15.9900',1,'2008-08-25','2009-01-31'),(6976,'2008-12-26',3,86,'15.9900',1,'2008-08-25','2009-01-31'),(6977,'2008-12-27',3,86,'15.9900',1,'2008-08-25','2009-01-31'),(6978,'2008-12-28',3,86,'15.9900',1,'2008-08-25','2009-01-31'),(6979,'2008-12-26',3,87,'15.9900',1,'2008-08-25','2009-01-31'),(6980,'2008-12-27',3,87,'15.9900',1,'2008-08-25','2009-01-31'),(6981,'2008-12-28',3,87,'15.9900',1,'2008-08-25','2009-01-31'),(6982,'2008-12-26',3,88,'15.9900',1,'2008-08-25','2009-01-31'),(6983,'2008-12-27',3,88,'15.9900',1,'2008-08-25','2009-01-31'),(6984,'2008-12-28',3,88,'15.9900',1,'2008-08-25','2009-01-31'),(6985,'2008-12-26',3,89,'15.9900',1,'2008-08-25','2009-01-31'),(6986,'2008-12-27',3,89,'15.9900',1,'2008-08-25','2009-01-31'),(6987,'2008-12-28',3,89,'15.9900',1,'2008-08-25','2009-01-31'),(6988,'2008-12-26',3,90,'15.9900',1,'2008-08-25','2009-01-31'),(6989,'2008-12-27',3,90,'15.9900',1,'2008-08-25','2009-01-31'),(6990,'2008-12-28',3,90,'15.9900',1,'2008-08-25','2009-01-31'),(6991,'2008-12-26',3,91,'15.9900',1,'2008-08-25','2009-01-31'),(6992,'2008-12-27',3,91,'15.9900',1,'2008-08-25','2009-01-31'),(6993,'2008-12-28',3,91,'15.9900',1,'2008-08-25','2009-01-31'),(6994,'2008-12-26',3,92,'15.9900',1,'2008-08-25','2009-01-31'),(6995,'2008-12-27',3,92,'15.9900',1,'2008-08-25','2009-01-31'),(6996,'2008-12-28',3,92,'15.9900',1,'2008-08-25','2009-01-31'),(6997,'2008-12-26',3,103,'69.9900',1,'2008-08-25','2009-01-31'),(6998,'2008-12-27',3,103,'69.9900',1,'2008-08-25','2009-01-31'),(6999,'2008-12-28',3,103,'69.9900',1,'2008-08-25','2009-01-31'),(7000,'2008-12-26',3,104,'69.9900',1,'2008-08-25','2009-01-31'),(7001,'2008-12-27',3,104,'69.9900',1,'2008-08-25','2009-01-31'),(7002,'2008-12-28',3,104,'69.9900',1,'2008-08-25','2009-01-31'),(7003,'2008-12-26',3,105,'69.9900',1,'2008-08-25','2009-01-31'),(7004,'2008-12-27',3,105,'69.9900',1,'2008-08-25','2009-01-31'),(7005,'2008-12-28',3,105,'69.9900',1,'2008-08-25','2009-01-31'),(7006,'2008-12-26',3,106,'69.9900',1,'2008-08-25','2009-01-31'),(7007,'2008-12-27',3,106,'69.9900',1,'2008-08-25','2009-01-31'),(7008,'2008-12-28',3,106,'69.9900',1,'2008-08-25','2009-01-31'),(7009,'2008-12-26',3,107,'69.9900',1,'2008-08-25','2009-01-31'),(7010,'2008-12-27',3,107,'69.9900',1,'2008-08-25','2009-01-31'),(7011,'2008-12-28',3,107,'69.9900',1,'2008-08-25','2009-01-31'),(7012,'2008-12-26',3,108,'89.9900',1,'2008-08-25','2009-01-31'),(7013,'2008-12-27',3,108,'89.9900',1,'2008-08-25','2009-01-31'),(7014,'2008-12-28',3,108,'89.9900',1,'2008-08-25','2009-01-31'),(7015,'2008-12-26',3,109,'89.9900',1,'2008-08-25','2009-01-31'),(7016,'2008-12-27',3,109,'89.9900',1,'2008-08-25','2009-01-31'),(7017,'2008-12-28',3,109,'89.9900',1,'2008-08-25','2009-01-31'),(7018,'2008-12-26',3,110,'89.9900',1,'2008-08-25','2009-01-31'),(7019,'2008-12-27',3,110,'89.9900',1,'2008-08-25','2009-01-31'),(7020,'2008-12-28',3,110,'89.9900',1,'2008-08-25','2009-01-31'),(7021,'2008-12-26',3,111,'89.9900',1,'2008-08-25','2009-01-31'),(7022,'2008-12-27',3,111,'89.9900',1,'2008-08-25','2009-01-31'),(7023,'2008-12-28',3,111,'89.9900',1,'2008-08-25','2009-01-31'),(7024,'2008-12-26',3,117,'15.0000',1,'2008-08-25','2009-01-31'),(7025,'2008-12-27',3,117,'15.0000',1,'2008-08-25','2009-01-31'),(7026,'2008-12-28',3,117,'15.0000',1,'2008-08-25','2009-01-31'),(7027,'2008-12-26',3,118,'15.0000',1,'2008-08-25','2009-01-31'),(7028,'2008-12-27',3,118,'15.0000',1,'2008-08-25','2009-01-31'),(7029,'2008-12-28',3,118,'15.0000',1,'2008-08-25','2009-01-31'),(7030,'2008-12-26',3,119,'15.0000',1,'2008-08-25','2009-01-31'),(7031,'2008-12-27',3,119,'15.0000',1,'2008-08-25','2009-01-31'),(7032,'2008-12-28',3,119,'15.0000',1,'2008-08-25','2009-01-31'),(7033,'2008-12-26',3,120,'22.0000',1,'2008-08-25','2009-01-31'),(7034,'2008-12-27',3,120,'22.0000',1,'2008-08-25','2009-01-31'),(7035,'2008-12-28',3,120,'22.0000',1,'2008-08-25','2009-01-31'),(7036,'2008-12-26',3,121,'22.0000',1,'2008-08-25','2009-01-31'),(7037,'2008-12-27',3,121,'22.0000',1,'2008-08-25','2009-01-31'),(7038,'2008-12-28',3,121,'22.0000',1,'2008-08-25','2009-01-31'),(7039,'2008-12-26',3,122,'22.0000',1,'2008-08-25','2009-01-31'),(7040,'2008-12-27',3,122,'22.0000',1,'2008-08-25','2009-01-31'),(7041,'2008-12-28',3,122,'22.0000',1,'2008-08-25','2009-01-31'),(7042,'2008-12-26',3,123,'100.0000',1,'2008-08-25','2009-01-31'),(7043,'2008-12-27',3,123,'100.0000',1,'2008-08-25','2009-01-31'),(7044,'2008-12-28',3,123,'100.0000',1,'2008-08-25','2009-01-31'),(7045,'2008-12-26',3,124,'15.0000',1,'2008-08-25','2009-01-31'),(7046,'2008-12-27',3,124,'15.0000',1,'2008-08-25','2009-01-31'),(7047,'2008-12-28',3,124,'15.0000',1,'2008-08-25','2009-01-31'),(7048,'2008-12-26',3,125,'15.0000',1,'2008-08-25','2009-01-31'),(7049,'2008-12-27',3,125,'15.0000',1,'2008-08-25','2009-01-31'),(7050,'2008-12-28',3,125,'15.0000',1,'2008-08-25','2009-01-31'),(7051,'2008-12-26',3,126,'13.5000',1,'2008-08-25','2009-01-31'),(7052,'2008-12-27',3,126,'13.5000',1,'2008-08-25','2009-01-31'),(7053,'2008-12-28',3,126,'13.5000',1,'2008-08-25','2009-01-31'),(7054,'2008-12-26',3,127,'13.5000',1,'2008-08-25','2009-01-31'),(7055,'2008-12-27',3,127,'13.5000',1,'2008-08-25','2009-01-31'),(7056,'2008-12-28',3,127,'13.5000',1,'2008-08-25','2009-01-31'),(7057,'2008-12-26',3,128,'13.5000',1,'2008-08-25','2009-01-31'),(7058,'2008-12-27',3,128,'13.5000',1,'2008-08-25','2009-01-31'),(7059,'2008-12-28',3,128,'13.5000',1,'2008-08-25','2009-01-31'),(7060,'2008-12-26',3,129,'13.5000',1,'2008-08-25','2009-01-31'),(7061,'2008-12-27',3,129,'13.5000',1,'2008-08-25','2009-01-31'),(7062,'2008-12-28',3,129,'13.5000',1,'2008-08-25','2009-01-31'),(7063,'2008-12-26',3,130,'13.5000',1,'2008-08-25','2009-01-31'),(7064,'2008-12-27',3,130,'13.5000',1,'2008-08-25','2009-01-31'),(7065,'2008-12-28',3,130,'13.5000',1,'2008-08-25','2009-01-31'),(7066,'2008-12-26',3,131,'13.5000',1,'2008-08-25','2009-01-31'),(7067,'2008-12-27',3,131,'13.5000',1,'2008-08-25','2009-01-31'),(7068,'2008-12-28',3,131,'13.5000',1,'2008-08-25','2009-01-31'),(7069,'2008-12-26',3,132,'99.0000',1,'2008-08-25','2009-01-31'),(7070,'2008-12-27',3,132,'99.0000',1,'2008-08-25','2009-01-31'),(7071,'2008-12-28',3,132,'99.0000',1,'2008-08-25','2009-01-31'),(7072,'2008-12-26',3,133,'34.0000',1,'2008-08-25','2009-01-31'),(7073,'2008-12-27',3,133,'34.0000',1,'2008-08-25','2009-01-31'),(7074,'2008-12-28',3,133,'34.0000',1,'2008-08-25','2009-01-31'),(7075,'2008-12-26',3,134,'19.0000',1,'2008-08-25','2009-01-31'),(7076,'2008-12-27',3,134,'19.0000',1,'2008-08-25','2009-01-31'),(7077,'2008-12-28',3,134,'19.0000',1,'2008-08-25','2009-01-31'),(7078,'2008-12-26',3,135,'41.9500',1,'2008-08-25','2009-01-31'),(7079,'2008-12-27',3,135,'41.9500',1,'2008-08-25','2009-01-31'),(7080,'2008-12-28',3,135,'41.9500',1,'2008-08-25','2009-01-31'),(7081,'2008-12-26',3,137,'13.5000',1,'2008-08-25','2009-01-31'),(7082,'2008-12-27',3,137,'13.5000',1,'2008-08-25','2009-01-31'),(7083,'2008-12-28',3,137,'13.5000',1,'2008-08-25','2009-01-31'),(7084,'2008-12-26',4,16,'149.9900',1,'2008-08-06','2009-08-23'),(7085,'2008-12-27',4,16,'149.9900',1,'2008-08-06','2009-08-23'),(7086,'2008-12-28',4,16,'149.9900',1,'2008-08-06','2009-08-23'),(7087,'2008-12-26',4,17,'349.9900',1,'2008-08-06','2009-08-23'),(7088,'2008-12-27',4,17,'349.9900',1,'2008-08-06','2009-08-23'),(7089,'2008-12-28',4,17,'349.9900',1,'2008-08-06','2009-08-23'),(7090,'2008-12-26',4,18,'399.9900',1,'2008-08-06','2009-08-23'),(7091,'2008-12-27',4,18,'399.9900',1,'2008-08-06','2009-08-23'),(7092,'2008-12-28',4,18,'399.9900',1,'2008-08-06','2009-08-23'),(7093,'2008-12-26',4,19,'199.9900',1,'2008-08-06','2009-08-23'),(7094,'2008-12-27',4,19,'199.9900',1,'2008-08-06','2009-08-23'),(7095,'2008-12-28',4,19,'199.9900',1,'2008-08-06','2009-08-23'),(7096,'2008-12-26',4,20,'150.0000',1,'2008-08-06','2009-08-23'),(7097,'2008-12-27',4,20,'150.0000',1,'2008-08-06','2009-08-23'),(7098,'2008-12-28',4,20,'150.0000',1,'2008-08-06','2009-08-23'),(7099,'2008-12-26',4,25,'2299.9900',1,'2008-08-06','2009-08-23'),(7100,'2008-12-27',4,25,'2299.9900',1,'2008-08-06','2009-08-23'),(7101,'2008-12-28',4,25,'2299.9900',1,'2008-08-06','2009-08-23'),(7102,'2008-12-26',4,26,'1799.9900',1,'2008-08-06','2009-08-23'),(7103,'2008-12-27',4,26,'1799.9900',1,'2008-08-06','2009-08-23'),(7104,'2008-12-28',4,26,'1799.9900',1,'2008-08-06','2009-08-23'),(7105,'2008-12-26',4,27,'2699.9900',1,'2008-08-06','2009-08-23'),(7106,'2008-12-27',4,27,'2699.9900',1,'2008-08-06','2009-08-23'),(7107,'2008-12-28',4,27,'2699.9900',1,'2008-08-06','2009-08-23'),(7108,'2008-12-26',4,28,'1599.9900',1,'2008-08-06','2009-08-23'),(7109,'2008-12-27',4,28,'1599.9900',1,'2008-08-06','2009-08-23'),(7110,'2008-12-28',4,28,'1599.9900',1,'2008-08-06','2009-08-23'),(7111,'2008-12-26',4,29,'15.9900',1,'2008-08-06','2009-08-23'),(7112,'2008-12-27',4,29,'15.9900',1,'2008-08-06','2009-08-23'),(7113,'2008-12-28',4,29,'15.9900',1,'2008-08-06','2009-08-23'),(7114,'2008-12-26',4,30,'134.9900',1,'2008-08-06','2009-08-23'),(7115,'2008-12-27',4,30,'134.9900',1,'2008-08-06','2009-08-23'),(7116,'2008-12-28',4,30,'134.9900',1,'2008-08-06','2009-08-23'),(7117,'2008-12-26',4,31,'69.9900',1,'2008-08-06','2009-08-23'),(7118,'2008-12-27',4,31,'69.9900',1,'2008-08-06','2009-08-23'),(7119,'2008-12-28',4,31,'69.9900',1,'2008-08-06','2009-08-23'),(7120,'2008-12-26',4,32,'89.9900',1,'2008-08-06','2009-08-23'),(7121,'2008-12-27',4,32,'89.9900',1,'2008-08-06','2009-08-23'),(7122,'2008-12-28',4,32,'89.9900',1,'2008-08-06','2009-08-23'),(7123,'2008-12-26',4,33,'159.9900',1,'2008-08-06','2009-08-23'),(7124,'2008-12-27',4,33,'159.9900',1,'2008-08-06','2009-08-23'),(7125,'2008-12-28',4,33,'159.9900',1,'2008-08-06','2009-08-23'),(7126,'2008-12-26',4,34,'160.9900',1,'2008-08-06','2009-08-23'),(7127,'2008-12-27',4,34,'160.9900',1,'2008-08-06','2009-08-23'),(7128,'2008-12-28',4,34,'160.9900',1,'2008-08-06','2009-08-23'),(7129,'2008-12-26',4,35,'15.0000',1,'2008-08-06','2009-08-23'),(7130,'2008-12-27',4,35,'15.0000',1,'2008-08-06','2009-08-23'),(7131,'2008-12-28',4,35,'15.0000',1,'2008-08-06','2009-08-23'),(7132,'2008-12-26',4,36,'22.0000',1,'2008-08-06','2009-08-23'),(7133,'2008-12-27',4,36,'22.0000',1,'2008-08-06','2009-08-23'),(7134,'2008-12-28',4,36,'22.0000',1,'2008-08-06','2009-08-23'),(7135,'2008-12-26',4,37,'15.0000',1,'2008-08-06','2009-08-23'),(7136,'2008-12-27',4,37,'15.0000',1,'2008-08-06','2009-08-23'),(7137,'2008-12-28',4,37,'15.0000',1,'2008-08-06','2009-08-23'),(7138,'2008-12-26',4,38,'13.5000',1,'2008-08-06','2009-08-23'),(7139,'2008-12-27',4,38,'13.5000',1,'2008-08-06','2009-08-23'),(7140,'2008-12-28',4,38,'13.5000',1,'2008-08-06','2009-08-23'),(7141,'2008-12-26',4,39,'30.0000',1,'2008-08-06','2009-08-23'),(7142,'2008-12-27',4,39,'30.0000',1,'2008-08-06','2009-08-23'),(7143,'2008-12-28',4,39,'30.0000',1,'2008-08-06','2009-08-23'),(7144,'2008-12-26',4,41,'399.9900',1,'2008-08-24','2009-09-28'),(7145,'2008-12-27',4,41,'399.9900',1,'2008-08-24','2009-09-28'),(7146,'2008-12-28',4,41,'399.9900',1,'2008-08-24','2009-09-28'),(7147,'2008-12-26',4,42,'2299.0000',1,'2008-08-06','2009-08-23'),(7148,'2008-12-27',4,42,'2299.0000',1,'2008-08-06','2009-08-23'),(7149,'2008-12-28',4,42,'2299.0000',1,'2008-08-06','2009-08-23'),(7150,'2008-12-26',4,44,'550.0000',1,'2008-08-06','2009-08-23'),(7151,'2008-12-27',4,44,'550.0000',1,'2008-08-06','2009-08-23'),(7152,'2008-12-28',4,44,'550.0000',1,'2008-08-06','2009-08-23'),(7153,'2008-12-26',4,45,'37.4900',1,'2008-08-06','2009-08-23'),(7154,'2008-12-27',4,45,'37.4900',1,'2008-08-06','2009-08-23'),(7155,'2008-12-28',4,45,'37.4900',1,'2008-08-06','2009-08-23'),(7156,'2008-12-26',4,46,'161.9400',1,'2008-08-06','2009-08-23'),(7157,'2008-12-27',4,46,'161.9400',1,'2008-08-06','2009-08-23'),(7158,'2008-12-28',4,46,'161.9400',1,'2008-08-06','2009-08-23'),(7159,'2008-12-26',4,47,'329.9900',1,'2008-08-06','2009-08-23'),(7160,'2008-12-27',4,47,'329.9900',1,'2008-08-06','2009-08-23'),(7161,'2008-12-28',4,47,'329.9900',1,'2008-08-06','2009-08-23'),(7162,'2008-12-26',4,48,'199.9900',1,'2008-08-06','2009-08-23'),(7163,'2008-12-27',4,48,'199.9900',1,'2008-08-06','2009-08-23'),(7164,'2008-12-28',4,48,'199.9900',1,'2008-08-06','2009-08-23'),(7165,'2008-12-26',4,49,'41.9500',1,'2008-08-06','2009-08-23'),(7166,'2008-12-27',4,49,'41.9500',1,'2008-08-06','2009-08-23'),(7167,'2008-12-28',4,49,'41.9500',1,'2008-08-06','2009-08-23'),(7168,'2008-12-26',4,51,'299.9900',1,'2008-08-06','2009-08-23'),(7169,'2008-12-27',4,51,'299.9900',1,'2008-08-06','2009-08-23'),(7170,'2008-12-28',4,51,'299.9900',1,'2008-08-06','2009-08-23'),(7171,'2008-12-26',4,52,'129.9900',1,'2008-08-24','2009-09-28'),(7172,'2008-12-27',4,52,'129.9900',1,'2008-08-24','2009-09-28'),(7173,'2008-12-28',4,52,'129.9900',1,'2008-08-24','2009-09-28'),(7174,'2008-12-26',4,53,'599.9900',1,'2008-08-06','2009-08-23'),(7175,'2008-12-27',4,53,'599.9900',1,'2008-08-06','2009-08-23'),(7176,'2008-12-28',4,53,'599.9900',1,'2008-08-06','2009-08-23'),(7177,'2008-12-26',4,54,'699.9900',1,'2008-08-06','2009-08-23'),(7178,'2008-12-27',4,54,'699.9900',1,'2008-08-06','2009-08-23'),(7179,'2008-12-28',4,54,'699.9900',1,'2008-08-06','2009-08-23'),(7180,'2008-12-26',4,74,'41.9500',1,'2008-08-06','2009-08-23'),(7181,'2008-12-27',4,74,'41.9500',1,'2008-08-06','2009-08-23'),(7182,'2008-12-28',4,74,'41.9500',1,'2008-08-06','2009-08-23'),(7183,'2008-12-26',4,75,'41.9500',1,'2008-08-06','2009-08-23'),(7184,'2008-12-27',4,75,'41.9500',1,'2008-08-06','2009-08-23'),(7185,'2008-12-28',4,75,'41.9500',1,'2008-08-06','2009-08-23'),(7186,'2008-12-26',4,79,'41.9500',1,'2008-08-06','2009-08-23'),(7187,'2008-12-27',4,79,'41.9500',1,'2008-08-06','2009-08-23'),(7188,'2008-12-28',4,79,'41.9500',1,'2008-08-06','2009-08-23'),(7189,'2008-12-26',4,80,'41.9500',1,'2008-08-06','2009-08-23'),(7190,'2008-12-27',4,80,'41.9500',1,'2008-08-06','2009-08-23'),(7191,'2008-12-28',4,80,'41.9500',1,'2008-08-06','2009-08-23'),(7192,'2008-12-26',4,81,'41.9500',1,'2008-08-06','2009-08-23'),(7193,'2008-12-27',4,81,'41.9500',1,'2008-08-06','2009-08-23'),(7194,'2008-12-28',4,81,'41.9500',1,'2008-08-06','2009-08-23'),(7195,'2008-12-26',4,82,'41.9500',1,'2008-08-06','2009-08-23'),(7196,'2008-12-27',4,82,'41.9500',1,'2008-08-06','2009-08-23'),(7197,'2008-12-28',4,82,'41.9500',1,'2008-08-06','2009-08-23'),(7198,'2008-12-26',4,83,'15.9900',1,'2008-08-06','2009-08-23'),(7199,'2008-12-27',4,83,'15.9900',1,'2008-08-06','2009-08-23'),(7200,'2008-12-28',4,83,'15.9900',1,'2008-08-06','2009-08-23'),(7201,'2008-12-26',4,84,'15.9900',1,'2008-08-06','2009-08-23'),(7202,'2008-12-27',4,84,'15.9900',1,'2008-08-06','2009-08-23'),(7203,'2008-12-28',4,84,'15.9900',1,'2008-08-06','2009-08-23'),(7204,'2008-12-26',4,85,'15.9900',1,'2008-08-06','2009-08-23'),(7205,'2008-12-27',4,85,'15.9900',1,'2008-08-06','2009-08-23'),(7206,'2008-12-28',4,85,'15.9900',1,'2008-08-06','2009-08-23'),(7207,'2008-12-26',4,86,'15.9900',1,'2008-08-06','2009-08-23'),(7208,'2008-12-27',4,86,'15.9900',1,'2008-08-06','2009-08-23'),(7209,'2008-12-28',4,86,'15.9900',1,'2008-08-06','2009-08-23'),(7210,'2008-12-26',4,87,'15.9900',1,'2008-08-06','2009-08-23'),(7211,'2008-12-27',4,87,'15.9900',1,'2008-08-06','2009-08-23'),(7212,'2008-12-28',4,87,'15.9900',1,'2008-08-06','2009-08-23'),(7213,'2008-12-26',4,88,'15.9900',1,'2008-08-06','2009-08-23'),(7214,'2008-12-27',4,88,'15.9900',1,'2008-08-06','2009-08-23'),(7215,'2008-12-28',4,88,'15.9900',1,'2008-08-06','2009-08-23'),(7216,'2008-12-26',4,89,'15.9900',1,'2008-08-06','2009-08-23'),(7217,'2008-12-27',4,89,'15.9900',1,'2008-08-06','2009-08-23'),(7218,'2008-12-28',4,89,'15.9900',1,'2008-08-06','2009-08-23'),(7219,'2008-12-26',4,90,'15.9900',1,'2008-08-06','2009-08-23'),(7220,'2008-12-27',4,90,'15.9900',1,'2008-08-06','2009-08-23'),(7221,'2008-12-28',4,90,'15.9900',1,'2008-08-06','2009-08-23'),(7222,'2008-12-26',4,91,'15.9900',1,'2008-08-06','2009-08-23'),(7223,'2008-12-27',4,91,'15.9900',1,'2008-08-06','2009-08-23'),(7224,'2008-12-28',4,91,'15.9900',1,'2008-08-06','2009-08-23'),(7225,'2008-12-26',4,92,'15.9900',1,'2008-08-06','2009-08-23'),(7226,'2008-12-27',4,92,'15.9900',1,'2008-08-06','2009-08-23'),(7227,'2008-12-28',4,92,'15.9900',1,'2008-08-06','2009-08-23'),(7228,'2008-12-26',4,93,'134.9900',1,'2008-08-06','2009-08-23'),(7229,'2008-12-27',4,93,'134.9900',1,'2008-08-06','2009-08-23'),(7230,'2008-12-28',4,93,'134.9900',1,'2008-08-06','2009-08-23'),(7231,'2008-12-26',4,94,'134.9900',1,'2008-08-06','2009-08-23'),(7232,'2008-12-27',4,94,'134.9900',1,'2008-08-06','2009-08-23'),(7233,'2008-12-28',4,94,'134.9900',1,'2008-08-06','2009-08-23'),(7234,'2008-12-26',4,95,'134.9900',1,'2008-08-06','2009-08-23'),(7235,'2008-12-27',4,95,'134.9900',1,'2008-08-06','2009-08-23'),(7236,'2008-12-28',4,95,'134.9900',1,'2008-08-06','2009-08-23'),(7237,'2008-12-26',4,96,'134.9900',1,'2008-08-06','2009-08-23'),(7238,'2008-12-27',4,96,'134.9900',1,'2008-08-06','2009-08-23'),(7239,'2008-12-28',4,96,'134.9900',1,'2008-08-06','2009-08-23'),(7240,'2008-12-26',4,97,'134.9900',1,'2008-08-06','2009-08-23'),(7241,'2008-12-27',4,97,'134.9900',1,'2008-08-06','2009-08-23'),(7242,'2008-12-28',4,97,'134.9900',1,'2008-08-06','2009-08-23'),(7243,'2008-12-26',4,98,'160.9900',1,'2008-08-06','2009-08-23'),(7244,'2008-12-27',4,98,'160.9900',1,'2008-08-06','2009-08-23'),(7245,'2008-12-28',4,98,'160.9900',1,'2008-08-06','2009-08-23'),(7246,'2008-12-26',4,99,'160.9900',1,'2008-08-06','2009-08-23'),(7247,'2008-12-27',4,99,'160.9900',1,'2008-08-06','2009-08-23'),(7248,'2008-12-28',4,99,'160.9900',1,'2008-08-06','2009-08-23'),(7249,'2008-12-26',4,100,'160.9900',1,'2008-08-06','2009-08-23'),(7250,'2008-12-27',4,100,'160.9900',1,'2008-08-06','2009-08-23'),(7251,'2008-12-28',4,100,'160.9900',1,'2008-08-06','2009-08-23'),(7252,'2008-12-26',4,101,'160.9900',1,'2008-08-06','2009-08-23'),(7253,'2008-12-27',4,101,'160.9900',1,'2008-08-06','2009-08-23'),(7254,'2008-12-28',4,101,'160.9900',1,'2008-08-06','2009-08-23'),(7255,'2008-12-26',4,102,'160.9900',1,'2008-08-06','2009-08-23'),(7256,'2008-12-27',4,102,'160.9900',1,'2008-08-06','2009-08-23'),(7257,'2008-12-28',4,102,'160.9900',1,'2008-08-06','2009-08-23'),(7258,'2008-12-26',4,103,'69.9900',1,'2008-08-06','2009-08-23'),(7259,'2008-12-27',4,103,'69.9900',1,'2008-08-06','2009-08-23'),(7260,'2008-12-28',4,103,'69.9900',1,'2008-08-06','2009-08-23'),(7261,'2008-12-26',4,104,'69.9900',1,'2008-08-06','2009-08-23'),(7262,'2008-12-27',4,104,'69.9900',1,'2008-08-06','2009-08-23'),(7263,'2008-12-28',4,104,'69.9900',1,'2008-08-06','2009-08-23'),(7264,'2008-12-26',4,105,'69.9900',1,'2008-08-06','2009-08-23'),(7265,'2008-12-27',4,105,'69.9900',1,'2008-08-06','2009-08-23'),(7266,'2008-12-28',4,105,'69.9900',1,'2008-08-06','2009-08-23'),(7267,'2008-12-26',4,106,'69.9900',1,'2008-08-06','2009-08-23'),(7268,'2008-12-27',4,106,'69.9900',1,'2008-08-06','2009-08-23'),(7269,'2008-12-28',4,106,'69.9900',1,'2008-08-06','2009-08-23'),(7270,'2008-12-26',4,107,'69.9900',1,'2008-08-06','2009-08-23'),(7271,'2008-12-27',4,107,'69.9900',1,'2008-08-06','2009-08-23'),(7272,'2008-12-28',4,107,'69.9900',1,'2008-08-06','2009-08-23'),(7273,'2008-12-26',4,108,'89.9900',1,'2008-08-06','2009-08-23'),(7274,'2008-12-27',4,108,'89.9900',1,'2008-08-06','2009-08-23'),(7275,'2008-12-28',4,108,'89.9900',1,'2008-08-06','2009-08-23'),(7276,'2008-12-26',4,109,'89.9900',1,'2008-08-06','2009-08-23'),(7277,'2008-12-27',4,109,'89.9900',1,'2008-08-06','2009-08-23'),(7278,'2008-12-28',4,109,'89.9900',1,'2008-08-06','2009-08-23'),(7279,'2008-12-26',4,110,'89.9900',1,'2008-08-06','2009-08-23'),(7280,'2008-12-27',4,110,'89.9900',1,'2008-08-06','2009-08-23'),(7281,'2008-12-28',4,110,'89.9900',1,'2008-08-06','2009-08-23'),(7282,'2008-12-26',4,111,'89.9900',1,'2008-08-06','2009-08-23'),(7283,'2008-12-27',4,111,'89.9900',1,'2008-08-06','2009-08-23'),(7284,'2008-12-28',4,111,'89.9900',1,'2008-08-06','2009-08-23'),(7285,'2008-12-26',4,112,'159.9900',1,'2008-08-06','2009-08-23'),(7286,'2008-12-27',4,112,'159.9900',1,'2008-08-06','2009-08-23'),(7287,'2008-12-28',4,112,'159.9900',1,'2008-08-06','2009-08-23'),(7288,'2008-12-26',4,113,'159.9900',1,'2008-08-06','2009-08-23'),(7289,'2008-12-27',4,113,'159.9900',1,'2008-08-06','2009-08-23'),(7290,'2008-12-28',4,113,'159.9900',1,'2008-08-06','2009-08-23'),(7291,'2008-12-26',4,114,'159.9900',1,'2008-08-06','2009-08-23'),(7292,'2008-12-27',4,114,'159.9900',1,'2008-08-06','2009-08-23'),(7293,'2008-12-28',4,114,'159.9900',1,'2008-08-06','2009-08-23'),(7294,'2008-12-26',4,115,'159.9900',1,'2008-08-06','2009-08-23'),(7295,'2008-12-27',4,115,'159.9900',1,'2008-08-06','2009-08-23'),(7296,'2008-12-28',4,115,'159.9900',1,'2008-08-06','2009-08-23'),(7297,'2008-12-26',4,117,'15.0000',1,'2008-08-06','2009-08-23'),(7298,'2008-12-27',4,117,'15.0000',1,'2008-08-06','2009-08-23'),(7299,'2008-12-28',4,117,'15.0000',1,'2008-08-06','2009-08-23'),(7300,'2008-12-26',4,118,'15.0000',1,'2008-08-06','2009-08-23'),(7301,'2008-12-27',4,118,'15.0000',1,'2008-08-06','2009-08-23'),(7302,'2008-12-28',4,118,'15.0000',1,'2008-08-06','2009-08-23'),(7303,'2008-12-26',4,119,'15.0000',1,'2008-08-06','2009-08-23'),(7304,'2008-12-27',4,119,'15.0000',1,'2008-08-06','2009-08-23'),(7305,'2008-12-28',4,119,'15.0000',1,'2008-08-06','2009-08-23'),(7306,'2008-12-26',4,120,'22.0000',1,'2008-08-06','2009-08-23'),(7307,'2008-12-27',4,120,'22.0000',1,'2008-08-06','2009-08-23'),(7308,'2008-12-28',4,120,'22.0000',1,'2008-08-06','2009-08-23'),(7309,'2008-12-26',4,121,'22.0000',1,'2008-08-06','2009-08-23'),(7310,'2008-12-27',4,121,'22.0000',1,'2008-08-06','2009-08-23'),(7311,'2008-12-28',4,121,'22.0000',1,'2008-08-06','2009-08-23'),(7312,'2008-12-26',4,122,'22.0000',1,'2008-08-06','2009-08-23'),(7313,'2008-12-27',4,122,'22.0000',1,'2008-08-06','2009-08-23'),(7314,'2008-12-28',4,122,'22.0000',1,'2008-08-06','2009-08-23'),(7315,'2008-12-26',4,123,'100.0000',1,'2008-08-06','2009-08-23'),(7316,'2008-12-27',4,123,'100.0000',1,'2008-08-06','2009-08-23'),(7317,'2008-12-28',4,123,'100.0000',1,'2008-08-06','2009-08-23'),(7318,'2008-12-26',4,124,'15.0000',1,'2008-08-06','2009-08-23'),(7319,'2008-12-27',4,124,'15.0000',1,'2008-08-06','2009-08-23'),(7320,'2008-12-28',4,124,'15.0000',1,'2008-08-06','2009-08-23'),(7321,'2008-12-26',4,125,'15.0000',1,'2008-08-06','2009-08-23'),(7322,'2008-12-27',4,125,'15.0000',1,'2008-08-06','2009-08-23'),(7323,'2008-12-28',4,125,'15.0000',1,'2008-08-06','2009-08-23'),(7324,'2008-12-26',4,126,'13.5000',1,'2008-08-06','2009-08-23'),(7325,'2008-12-27',4,126,'13.5000',1,'2008-08-06','2009-08-23'),(7326,'2008-12-28',4,126,'13.5000',1,'2008-08-06','2009-08-23'),(7327,'2008-12-26',4,127,'13.5000',1,'2008-08-06','2009-08-23'),(7328,'2008-12-27',4,127,'13.5000',1,'2008-08-06','2009-08-23'),(7329,'2008-12-28',4,127,'13.5000',1,'2008-08-06','2009-08-23'),(7330,'2008-12-26',4,128,'13.5000',1,'2008-08-06','2009-08-23'),(7331,'2008-12-27',4,128,'13.5000',1,'2008-08-06','2009-08-23'),(7332,'2008-12-28',4,128,'13.5000',1,'2008-08-06','2009-08-23'),(7333,'2008-12-26',4,129,'13.5000',1,'2008-08-06','2009-08-23'),(7334,'2008-12-27',4,129,'13.5000',1,'2008-08-06','2009-08-23'),(7335,'2008-12-28',4,129,'13.5000',1,'2008-08-06','2009-08-23'),(7336,'2008-12-26',4,130,'13.5000',1,'2008-08-06','2009-08-23'),(7337,'2008-12-27',4,130,'13.5000',1,'2008-08-06','2009-08-23'),(7338,'2008-12-28',4,130,'13.5000',1,'2008-08-06','2009-08-23'),(7339,'2008-12-26',4,131,'13.5000',1,'2008-08-06','2009-08-23'),(7340,'2008-12-27',4,131,'13.5000',1,'2008-08-06','2009-08-23'),(7341,'2008-12-28',4,131,'13.5000',1,'2008-08-06','2009-08-23'),(7342,'2008-12-26',4,132,'99.0000',1,'2008-08-06','2009-08-23'),(7343,'2008-12-27',4,132,'99.0000',1,'2008-08-06','2009-08-23'),(7344,'2008-12-28',4,132,'99.0000',1,'2008-08-06','2009-08-23'),(7345,'2008-12-26',4,133,'34.0000',1,'2008-08-06','2009-08-23'),(7346,'2008-12-27',4,133,'34.0000',1,'2008-08-06','2009-08-23'),(7347,'2008-12-28',4,133,'34.0000',1,'2008-08-06','2009-08-23'),(7348,'2008-12-26',4,134,'19.0000',1,'2008-08-06','2009-08-23'),(7349,'2008-12-27',4,134,'19.0000',1,'2008-08-06','2009-08-23'),(7350,'2008-12-28',4,134,'19.0000',1,'2008-08-06','2009-08-23'),(7351,'2008-12-26',4,135,'41.9500',1,'2008-08-27','2009-08-28'),(7352,'2008-12-27',4,135,'41.9500',1,'2008-08-27','2009-08-28'),(7353,'2008-12-28',4,135,'41.9500',1,'2008-08-27','2009-08-28'),(7354,'2008-12-26',4,137,'13.5000',1,'2008-08-06','2009-08-23'),(7355,'2008-12-27',4,137,'13.5000',1,'2008-08-06','2009-08-23'),(7356,'2008-12-28',4,137,'13.5000',1,'2008-08-06','2009-08-23'),(7357,'2008-12-26',4,138,'150.0000',1,'2008-08-06','2009-08-23'),(7358,'2008-12-27',4,138,'150.0000',1,'2008-08-06','2009-08-23'),(7359,'2008-12-28',4,138,'150.0000',1,'2008-08-06','2009-08-23'),(7360,'2008-12-26',4,139,'199.9900',1,'2008-08-06','2009-08-23'),(7361,'2008-12-27',4,139,'199.9900',1,'2008-08-06','2009-08-23'),(7362,'2008-12-28',4,139,'199.9900',1,'2008-08-06','2009-08-23'),(7363,'2008-12-26',4,142,'150.0000',1,'2008-08-06','2009-08-23'),(7364,'2008-12-27',4,142,'150.0000',1,'2008-08-06','2009-08-23'),(7365,'2008-12-28',4,142,'150.0000',1,'2008-08-06','2009-08-23'),(7366,'2008-12-26',4,144,'250.0000',1,'2008-08-06','2009-08-23'),(7367,'2008-12-27',4,144,'250.0000',1,'2008-08-06','2009-08-23'),(7368,'2008-12-28',4,144,'250.0000',1,'2008-08-06','2009-08-23'),(7369,'2008-12-26',4,146,'325.0000',1,'2008-08-06','2009-08-23'),(7370,'2008-12-27',4,146,'325.0000',1,'2008-08-06','2009-08-23'),(7371,'2008-12-28',4,146,'325.0000',1,'2008-08-06','2009-08-23'),(7372,'2008-12-26',4,164,'4999.9500',1,'2008-08-06','2009-08-23'),(7373,'2008-12-27',4,164,'4999.9500',1,'2008-08-06','2009-08-23'),(7374,'2008-12-28',4,164,'4999.9500',1,'2008-08-06','2009-08-23');
/*!40000 ALTER TABLE `catalogrule_product_price` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalogsearch_fulltext`
--
DROP TABLE IF EXISTS `catalogsearch_fulltext`;
CREATE TABLE `catalogsearch_fulltext` (
  `product_id` int(10) unsigned NOT NULL,
  `store_id` smallint(5) unsigned NOT NULL,
  `data_index` longtext NOT NULL,
  PRIMARY KEY  (`product_id`,`store_id`),
  FULLTEXT KEY `data_index` (`data_index`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalogsearch_fulltext`
--
LOCK TABLES `catalogsearch_fulltext` WRITE;
/*!40000 ALTER TABLE `catalogsearch_fulltext` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogsearch_fulltext` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalogsearch_query`
--
DROP TABLE IF EXISTS `catalogsearch_query`;
CREATE TABLE `catalogsearch_query` (
  `query_id` int(10) unsigned NOT NULL auto_increment,
  `query_text` varchar(255) NOT NULL default '',
  `num_results` int(10) unsigned NOT NULL default '0',
  `popularity` int(10) unsigned NOT NULL default '0',
  `redirect` varchar(255) NOT NULL default '',
  `synonim_for` varchar(255) NOT NULL default '',
  `store_id` smallint(5) unsigned NOT NULL default '0',
  `display_in_terms` tinyint(1) NOT NULL default '1',
  `is_active` tinyint(1) default '1',
  `is_processed` tinyint(1) default '0',
  `updated_at` datetime NOT NULL,
  PRIMARY KEY  (`query_id`),
  KEY `FK_CATALOGSEARCH_QUERY_STORE` (`store_id`),
  KEY `IDX_SEARCH_QUERY` (`query_text`,`store_id`,`popularity`),
  CONSTRAINT `FK_CATALOGSEARCH_QUERY_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalogsearch_query`
--
LOCK TABLES `catalogsearch_query` WRITE;
/*!40000 ALTER TABLE `catalogsearch_query` DISABLE KEYS */;
INSERT INTO `catalogsearch_query` VALUES (1,'Test',8,654,'','',1,1,1,0,'2008-08-05 22:33:02'),(2,'acer',1,394,'','',1,1,1,0,'2008-08-05 23:53:34'),(3,'couch',2,367,'','',1,1,1,0,'2008-08-05 13:05:23'),(4,'Shirts',3,410,'','',1,1,1,0,'2008-08-05 23:08:53'),(5,'APPLE',2,511,'','',1,1,1,0,'2008-08-05 23:54:26'),(6,'phone',6,462,'','',1,1,1,0,'2008-08-06 07:35:05'),(7,'Nokia',1,366,'','',1,1,1,0,'2008-08-05 17:59:32'),(8,'sony',3,1092,'','',1,1,1,0,'2008-08-06 08:06:44'),(9,'clogs',1,391,'http://demo.magentocommerce.com/cn-clogs-beach-garden-clog-1.html','',1,1,1,0,'2008-08-06 09:57:22'),(10,'canon',2,341,'','',1,1,1,0,'2008-08-05 14:22:37'),(11,'red',20,596,'','',1,1,1,0,'2008-08-05 21:01:37'),(12,'ferrari',1,284,'','',1,1,1,0,'2008-08-05 22:44:46'),(13,'shirt',5,444,'','',1,1,1,0,'2008-08-05 16:33:30'),(14,'computer',10,2032,'','',1,1,1,0,'2008-08-06 00:30:46'),(15,'samsung',3,381,'','',1,1,1,0,'2008-08-05 14:00:38'),(16,'ipod',1,435,'','',1,1,1,0,'2008-08-05 14:10:35'),(17,'Mac',2,381,'','',3,1,1,0,'2008-08-06 00:29:06'),(18,'rebel',1,280,'','',1,1,1,0,'2008-08-06 07:38:22'),(19,'camera',13,1322,'','',1,1,1,0,'2008-08-05 20:38:13'),(20,'Anashria Womens Premier Leather Sandal',1,332,'','',1,1,1,0,'2008-08-06 04:21:08'),(21,'west',6,395,'','',1,1,1,0,'2008-08-05 16:42:11'),(22,'mens',11,352,'','',1,1,1,0,'2008-08-04 02:37:27'),(23,'design',19,826,'','',1,1,1,0,'2008-08-05 10:18:45'),(24,'coalesce',1,385,'','',1,1,1,0,'2008-08-05 16:36:34'),(25,'nine west',1,22,'','',1,1,1,0,'2008-08-06 08:53:59'),(26,'Zolof The Rock And Roll Destroyer',1,22,'','',1,1,1,0,'2008-08-05 02:23:42'),(27,'T-Shirt',4,394,'','',1,1,1,0,'2008-08-05 18:10:27'),(28,'children',1,377,'','',1,1,1,0,'2008-08-04 00:23:21'),(29,'Cameras',1,453,'','',1,1,1,0,'2008-08-05 01:17:52'),(30,'Sony VAIO',2,458,'','',1,1,1,0,'2008-08-06 05:46:44'),(31,'camera case',1,443,'','',1,1,1,0,'2008-08-05 16:07:18'),(32,'lucero',1,269,'','',1,1,1,0,'2008-08-05 14:16:58'),(33,'clog',1,367,'','',1,1,1,0,'2008-08-05 08:12:31'),(34,'apparel',3,353,'','',1,1,1,0,'2008-08-01 10:36:56'),(35,'comp',23,36,'','',1,1,1,0,'2008-08-03 22:43:00'),(36,'black',11,21,'','',1,1,1,0,'2008-08-04 23:07:15'),(37,'laptop',6,300,'','notebook',1,1,1,0,'2008-08-05 23:41:19'),(38,'photo',11,44,'','',1,1,1,0,'2008-08-02 21:18:17'),(39,'ottoman',2,189,'','',1,1,1,0,'2008-08-05 04:38:40');
/*!40000 ALTER TABLE `catalogsearch_query` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalogsearch_result`
--
DROP TABLE IF EXISTS `catalogsearch_result`;
CREATE TABLE `catalogsearch_result` (
  `query_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `relevance` decimal(6,4) NOT NULL default '0.0000',
  PRIMARY KEY  (`query_id`,`product_id`),
  KEY `IDX_QUERY` (`query_id`),
  KEY `IDX_PRODUCT` (`product_id`),
  KEY `IDX_RELEVANCE` (`query_id`,`relevance`),
  CONSTRAINT `FK_CATALOGSEARCH_RESULT_QUERY` FOREIGN KEY (`query_id`) REFERENCES `catalogsearch_query` (`query_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CATALOGSEARCH_RESULT_CATALOG_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `catalogsearch_result`
--
LOCK TABLES `catalogsearch_result` WRITE;
/*!40000 ALTER TABLE `catalogsearch_result` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogsearch_result` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `checkout_agreement`
--
DROP TABLE IF EXISTS `checkout_agreement`;
CREATE TABLE `checkout_agreement` (
  `agreement_id` int(10) unsigned NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `content` text NOT NULL,
  `content_height` varchar(25) default NULL,
  `checkbox_text` text NOT NULL,
  `is_active` tinyint(4) NOT NULL default '0',
  `is_html` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`agreement_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- 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`;
CREATE TABLE `checkout_agreement_store` (
  `agreement_id` int(10) unsigned NOT NULL,
  `store_id` smallint(5) unsigned NOT NULL,
  UNIQUE KEY `agreement_id` (`agreement_id`,`store_id`),
  KEY `FK_CHECKOUT_AGREEMENT_STORE` (`store_id`),
  CONSTRAINT `FK_CHECKOUT_AGREEMENT` FOREIGN KEY (`agreement_id`) REFERENCES `checkout_agreement` (`agreement_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CHECKOUT_AGREEMENT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- 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 `chronopay_api_debug`
--
DROP TABLE IF EXISTS `chronopay_api_debug`;
CREATE TABLE `chronopay_api_debug` (
  `debug_id` int(10) unsigned NOT NULL auto_increment,
  `debug_at` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  `request_body` text,
  `response_body` text,
  PRIMARY KEY  (`debug_id`),
  KEY `debug_at` (`debug_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `chronopay_api_debug`
--
LOCK TABLES `chronopay_api_debug` WRITE;
/*!40000 ALTER TABLE `chronopay_api_debug` DISABLE KEYS */;
/*!40000 ALTER TABLE `chronopay_api_debug` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cms_block`
--
DROP TABLE IF EXISTS `cms_block`;
CREATE TABLE `cms_block` (
  `block_id` smallint(6) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `identifier` varchar(255) NOT NULL default '',
  `content` text,
  `creation_time` datetime default NULL,
  `update_time` datetime default NULL,
  `is_active` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`block_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='CMS Blocks';
--
-- Dumping data for table `cms_block`
--
LOCK TABLES `cms_block` WRITE;
/*!40000 ALTER TABLE `cms_block` DISABLE KEYS */;
INSERT INTO `cms_block` VALUES (3,'Electronics Landing','electronics-landing','<div class=\"left\" style=\"width:284px; margin-right:25px;\">\r\n<h3 style=\"margin-bottom:0;\"><a href=\"{{store direct_url=\"electronics/cell-phones.html\"}}\"><img src=\"{{skin url=\'images/media/head_electronics_cellphones.gif}}\" alt=\"Cell Phones\" style=\"display:block; border:0;\"/></h3>\r\n<p><img src=\"{{skin url=\'images/media/electronics_cellphones.jpg}}\" alt=\"\" usemap=\"#Map\" border=\"0\"/></p>\r\n</div>\r\n<div class=\"left\" style=\"width:284px;\">\r\n<h3 style=\"margin-bottom:0;\"><a href=\"{{store direct_url=\"electronics/cameras/digital-cameras.html\"}}\"><img src=\"{{skin url=\'images/media/head_electronics_digicamera.gif}}\" alt=\"Digital Cameras\" style=\"display:block; border:0;\"/></a></h3>\r\n<p><img src=\"{{skin url=\'images/media/electronics_digitalcameras.jpg}}\" alt=\"\" usemap=\"#Map2\" border=\"0\"/></p>\r\n</div>\r\n<div class=\"right\" style=\"width:284px;\">\r\n<h3 style=\"margin-bottom:0;\"><a href=\"{{store direct_url=\"electronics/computers/laptops.html\"}}\"><img src=\"{{skin url=\'images/media/head_electronics_laptops.gif}}\" alt=\"Laptops\" style=\"display:block; border:0;\"/></a></h3>\r\n<p><img src=\"{{skin url=\'images/media/electronics_laptops.jpg}}\" alt=\"\" usemap=\"#Map3\" border=\"0\"/></p>\r\n</div>\r\n<div class=\"clear\"></div>\r\n\r\n<map name=\"Map\">\r\n  <area shape=\"rect\" coords=\"14,154,78,182\" href=\"{{store direct_url=\"electronics/cell-phones.html?manufacturer=3\"}}\">\r\n  <area shape=\"rect\" coords=\"12,177,80,209\" href=\"{{store direct_url=\"electronics/cell-phones.html?manufacturer=20\"}}\">\r\n  <area shape=\"rect\" coords=\"104,158,167,181\" href=\"{{store direct_url=\"electronics/cell-phones.html?manufacturer=2\"}}\">\r\n  <area shape=\"rect\" coords=\"103,181,179,208\" href=\"{{store direct_url=\"electronics/cell-phones.html?manufacturer=101\"}}\">\r\n <area shape=\"rect\" coords=\"16,203,273,432\" href=\"{{store direct_url=\"electronics/cell-phones/blackberry-8100-pearl.html\"}}\">\r\n</map>\r\n\r\n<map name=\"Map2\">\r\n  <area shape=\"rect\" coords=\"14,152,75,179\" href=\"{{store direct_url=\"electronics/cameras/digital-cameras.html?manufacturer=33\"}}\">\r\n  <area shape=\"rect\" coords=\"109,154,163,183\" href=\"{{store direct_url=\"electronics/cameras/digital-cameras.html?manufacturer=31\"}}\">\r\n  <area shape=\"rect\" coords=\"14,177,73,208\" href=\"{{store direct_url=\"electronics/cameras/digital-cameras.html?manufacturer=32\"}}\">\r\n  <area shape=\"rect\" coords=\"106,180,177,211\" href=\"{{store direct_url=\"electronics/cameras/digital-cameras.html?manufacturer=34\"}}\">\r\n</map>\r\n\r\n\r\n<map name=\"Map3\">\r\n  <area shape=\"rect\" coords=\"15,155,58,179\" href=\"{{store direct_url=\"electronics/computers/laptops?computer_manufacturers=79\"}}\">\r\n  <area shape=\"rect\" coords=\"114,152,159,180\" href=\"{{store direct_url=\"electronics/computers/laptops?computer_manufacturers=76\"}}\">\r\n  <area shape=\"rect\" coords=\"13,178,67,205\" href=\"{{store direct_url=\"electronics/computers/laptops?computer_manufacturers=77\"}}\">\r\n  <area shape=\"rect\" coords=\"114,180,178,205\" href=\"{{store direct_url=\"electronics/computers/laptops?computer_manufacturers=74\"}}\">\r\n  <area shape=\"rect\" coords=\"13,310,154,434\" href=\"{{store direct_url=\"electronics/computers/laptops/acer-ferrari-3200-notebook-computer-pc.html\"}}\">\r\n  <area shape=\"rect\" coords=\"167,310,279,440\" href=\"{{store direct_url=\"electronics/computers/laptops/toshiba-satellite-a135-s4527-155-4-notebook-pc-intel-pentium-dual-core-processor-t2080-1-gb-ram-120-gb-hard-drive-supermulti-dvd-drive-vista-premium.html\"}}\">\r\n</map>','2007-08-28 14:33:10','2008-08-08 13:08:37',1),(4,'Cellphones Landing','cellphones-landing','<a href=\"{{store direct_url=\"electronics/cell-phones/sony-ericsson-w810i.html\"}}\"><img src=\"{{skin url=\'images/media/cell_phone_landing_banner1.jpg}}\" alt=\"\"/></a>','2007-08-28 14:59:44','2008-08-08 13:07:55',1),(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>','2007-08-30 14:01:52','2007-08-30 14:02:43',1);
/*!40000 ALTER TABLE `cms_block` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cms_block_store`
--
DROP TABLE IF EXISTS `cms_block_store`;
CREATE TABLE `cms_block_store` (
  `block_id` smallint(6) NOT NULL,
  `store_id` smallint(5) unsigned NOT NULL,
  PRIMARY KEY  (`block_id`,`store_id`),
  KEY `FK_CMS_BLOCK_STORE_STORE` (`store_id`),
  CONSTRAINT `FK_CMS_BLOCK_STORE_BLOCK` FOREIGN KEY (`block_id`) REFERENCES `cms_block` (`block_id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `FK_CMS_BLOCK_STORE_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Blocks to Stores';
--
-- 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 (3,0),(4,0),(5,0);
/*!40000 ALTER TABLE `cms_block_store` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cms_page`
--
DROP TABLE IF EXISTS `cms_page`;
CREATE TABLE `cms_page` (
  `page_id` smallint(6) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `root_template` varchar(255) NOT NULL default '',
  `meta_keywords` text NOT NULL,
  `meta_description` text NOT NULL,
  `identifier` varchar(100) NOT NULL default '',
  `content` text,
  `creation_time` datetime default NULL,
  `update_time` datetime default NULL,
  `is_active` tinyint(1) NOT NULL default '1',
  `sort_order` tinyint(4) NOT NULL default '0',
  `layout_update_xml` text,
  `custom_theme` varchar(100) default NULL,
  `custom_theme_from` date default NULL,
  `custom_theme_to` date default NULL,
  PRIMARY KEY  (`page_id`),
  KEY `identifier` (`identifier`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='CMS pages';
--
-- 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-head-alt\"><h3>Whoops, our bad...</h3></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<br/>\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 Demo Store.</dd>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li><a href=\"#\" onclick=\"history.go(-1);\">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><br/><a href=\"{{store url=\"customer/account\"}}\">My Account</a></li></ul></dd></dl><br/>\r\n<p><img src=\"{{skin url=\'images/media/404_callout1.jpg\'}}\" style=\"margin-right:15px;\"/><img src=\"{{skin url=\'images/media/404_callout2.jpg\'}}\" /></p>','2007-06-20 18:38:32','2007-08-26 19:11:13',1,0,NULL,NULL,NULL,NULL),(2,'Home page','two_columns_right','','','home','<div class=\"col-left side-col\">\r\n<p class=\"home-callout\">\r\n<a href=\"{{store direct_url=\"apparel/shoes/womens/anashria-womens-premier-leather-sandal.html\"}}\"><img src=\"{{skin url=\'images/ph_callout_left_top.gif\'}}\" border=\"0\" /></a>\r\n</p>\r\n<p class=\"home-callout\">\r\n<img src=\"{{skin url=\'images/ph_callout_left_rebel.jpg\'}}\" border=\"0\" />\r\n</p>\r\n{{block type=\"tag/popular\" template=\"tag/popular.phtml\"}}\r\n</div>\r\n<div class=\"home-spot\">\r\n<p class=\"home-callout\">\r\n<img src=\"{{skin url=\'images/home_main_callout.jpg\'}}\" border=\"0\" width=\"470\" />\r\n</p>\r\n<p class=\"home-callout\">\r\n<img src=\"{{skin url=\'images/free_shipping_callout.jpg\'}}\" border=\"0\" width=\"470\" />\r\n</p>\r\n<div class=\"box best-selling\">\r\n<h3>Best Selling Products</h3>\r\n<table border=\"0\" cellspacing=\"0\">\r\n	<tbody>\r\n		<tr class=\"odd\">\r\n			<td><a href=\"{{store direct_url=\"sony-vaio-vgn-txn27n-b-11-1-notebook-pc.html\"}}\"><img class=\"product-img\" src=\"{{skin url=\'images/media/best_selling_img01.jpg\'}}\" border=\"0\" width=\"95\" /></a>\r\n			<div class=\"product-description\">\r\n			<p><a href=\"{{store direct_url=\"sony-vaio-vgn-txn27n-b-11-1-notebook-pc.html\"}}\">Sony VAIO VGN-TXN27N/B 11.1\" Notebook PC</a></p>\r\n			<p>\r\n			See all <a href=\"{{store direct_url=\"electronics/computers/laptops.html\"}}\">Laptops</a>\r\n			</p>\r\n			</div>\r\n			</td>\r\n			<td><a href=\"{{store direct_url=\"nine-west-women-s-lucero-pump.html\"}}\"><img class=\"product-img\" src=\"{{skin url=\'images/media/best_selling_img02.jpg\'}}\" border=\"0\" width=\"95\" /></a>\r\n			<div class=\"product-description\">\r\n			<p><a href=\"{{store direct_url=\"nine-west-women-s-lucero-pump.html\"}}\">Nine West Women\'s Lucero Pump</a></p>\r\n			<p>\r\n			See all <a href=\"{{store direct_url=\"apparel/shoes.html\"}}\">Shoes</a>\r\n			</p>\r\n			</div>\r\n			</td>\r\n		</tr>\r\n		<tr class=\"even\">\r\n			<td><a href=\"{{store direct_url=\"olympus-stylus-750-7-1mp-digital-camera.html\"}}\"><img class=\"product-img\" src=\"{{skin url=\'images/media/best_selling_img03.jpg\'}}\" border=\"0\" width=\"95\" /></a>\r\n			<div class=\"product-description\">\r\n			<p>\r\n			<a href=\"{{store direct_url=\"olympus-stylus-750-7-1mp-digital-camera.html\"}}\">Olympus Stylus 750 7.1MP Digital Camera</a>\r\n			</p>\r\n			<p>\r\n			See all <a href=\"{{store direct_url=\"electronics/cameras/digital-cameras.html\"}}\">Digital Cameras</a>\r\n			</p>\r\n			</div>\r\n			</td>\r\n			<td><a href=\"{{store direct_url=\"acer-ferrari-3200-notebook-computer-pc.html\"}}\"><img class=\"product-img\" src=\"{{skin url=\'images/media/best_selling_img04.jpg\'}}\" border=\"0\" width=\"95\" /></a>\r\n			<div class=\"product-description\">\r\n			<p>\r\n			<a href=\"{{store direct_url=\"acer-ferrari-3200-notebook-computer-pc.html\"}}\">Acer Ferrari 3200 Notebook Computer PC</a>\r\n			</p>\r\n			<p>\r\n			See all <a href=\"{{store direct_url=\"electronics/computers/laptops.html\"}}\">Laptops</a>\r\n			</p>\r\n			</div>\r\n			</td>\r\n		</tr>\r\n		<tr class=\"odd\">\r\n			<td><a href=\"{{store direct_url=\"asics-men-s-gel-kayano-xii.html\"}}\"><img class=\"product-img\" src=\"{{skin url=\'images/media/best_selling_img05.jpg\'}}\" border=\"0\" width=\"95\" /></a>\r\n			<div class=\"product-description\">\r\n			<p><a href=\"{{store direct_url=\"asics-men-s-gel-kayano-xii.html\"}}\">ASICS&reg; Men\'s GEL-Kayano&reg; XII</a></p>\r\n			<p>See all <a href=\"{{store direct_url=\"apparel/shoes.html\"}}\">Shoes</a></p>\r\n			</div>\r\n			</td>\r\n			<td><a href=\"{{store direct_url=\"coalesce-functioning-on-impatience-t-shirt.html\"}}\"><img class=\"product-img\" src=\"{{skin url=\'images/media/best_selling_img06.jpg\'}}\" border=\"0\" width=\"95\" /></a>\r\n			<div class=\"product-description\">\r\n			<p>\r\n			<a href=\"{{store direct_url=\"coalesce-functioning-on-impatience-t-shirt.html\"}}\">Coalesce: Functioning On Impatience T-Shirt</a>\r\n			</p>\r\n			<p>\r\n			See all <a href=\"{{store direct_url=\"apparel/shirts.html\"}}\">Shirts</a>\r\n			</p>\r\n			</div>\r\n			</td>\r\n		</tr>\r\n	</tbody>\r\n</table>\r\n</div>\r\n</div>','2007-08-23 10:03:25','2008-08-08 13:29:35',1,0,'<!--<reference name=\"content\">\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><reference name=\"right\">\r\n<action method=\"unsetChild\"><alias>right.reports.product.viewed</alias></action>\r\n<action method=\"unsetChild\"><alias>right.reports.product.compared</alias></action>\r\n</reference>-->','',NULL,NULL),(3,'About  Us','one_column','','','about-magento-demo-store','<div class=\"page-head\">\r\n<h3>About Magento  Demo Store</h3>\r\n</div>\r\n<div class=\"col3-set\">\r\n<div class=\"col-1\"><p><img src=\"http://var-dev.varien.com:81/dev/minu/magento/skin/frontend/default/default/images/media/about_us_img.jpg\" alt=\"Varien office pic\"/></p><p style=\"line-height:1.2em;\"><small>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede.</small></p>\r\n<p style=\"color:#888; font:1.2em/1.4em georgia, serif;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta.</p></div>\r\n<div class=\"col-2\">\r\n<p><strong style=\"color:#de036f;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit.</strong></p>\r\n<p>Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo. </p>\r\n<p>Maecenas ullamcorper, odio vel tempus egestas, dui orci faucibus orci, sit amet aliquet lectus dolor et quam. Pellentesque consequat luctus purus. Nunc et risus. Etiam a nibh. Phasellus dignissim metus eget nisi. Vestibulum sapien dolor, aliquet nec, porta ac, malesuada a, libero. Praesent feugiat purus eget est. Nulla facilisi. Vestibulum tincidunt sapien eu velit. Mauris purus. Maecenas eget mauris eu orci accumsan feugiat. Pellentesque eget velit. Nunc tincidunt.</p></div>\r\n<div class=\"col-3\">\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper </p>\r\n<p><strong style=\"color:#de036f;\">Maecenas ullamcorper, odio vel tempus egestas, dui orci faucibus orci, sit amet aliquet lectus dolor et quam. Pellentesque consequat luctus purus.</strong></p>\r\n<p>Nunc et risus. Etiam a nibh. Phasellus dignissim metus eget nisi.</p>\r\n<div class=\"divider\"></div>\r\n<p>To all of you, from all of us at Magento Demo Store - Thank you and Happy eCommerce!</p>\r\n<p style=\"line-height:1.2em;\"><strong style=\"font:italic 2em Georgia, serif;\">John Doe</strong><br/><small>Some important guy</small></p></div>\r\n</div>','2007-08-30 14:01:18','2007-08-30 14:01:18',1,0,NULL,NULL,NULL,NULL),(4,'Customer Service','three_columns','','','customer-service','<div class=\"page-head\">\r\n<h3>Customer Service</h3>\r\n</div>\r\n<ul class=\"disc\" style=\"margin-bottom:15px;\">\r\n<li><a href=\"#answer1\">Shipping & Delivery</a></li>\r\n<li><a href=\"#answer2\">Privacy & Security</a></li>\r\n<li><a href=\"#answer3\">Returns & Replacements</a></li>\r\n<li><a href=\"#answer4\">Ordering</a></li>\r\n<li><a href=\"#answer5\">Payment, Pricing & Promotions</a></li>\r\n<li><a href=\"#answer6\">Viewing Orders</a></li>\r\n<li><a href=\"#answer7\">Updating Account Information</a></li>\r\n</ul>\r\n<dl>\r\n<dt id=\"answer1\">Shipping & Delivery</dt>\r\n<dd style=\"margin-bottom:10px;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.</dd>\r\n<dt id=\"answer2\">Privacy & Security</dt>\r\n<dd style=\"margin-bottom:10px;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.</dd>\r\n<dt id=\"answer3\">Returns & Replacements</dt>\r\n<dd style=\"margin-bottom:10px;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.</dd>\r\n<dt id=\"answer4\">Ordering</dt>\r\n<dd style=\"margin-bottom:10px;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis a