-- MySQL dump 10.11 -- -- Host: localhost Database: isw_development -- ------------------------------------------------------ -- Server version 5.0.77 /*!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 `addresses` -- DROP TABLE IF EXISTS `addresses`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `addresses` ( `id` int(11) NOT NULL auto_increment, `customer_id` int(11) default NULL, `label` varchar(255) default NULL, `street1` varchar(255) default NULL, `street2` varchar(255) default NULL, `city` varchar(255) default NULL, `province` varchar(255) default NULL, `postal` varchar(255) default NULL, `country` varchar(255) default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `addresses` -- LOCK TABLES `addresses` WRITE; /*!40000 ALTER TABLE `addresses` DISABLE KEYS */; INSERT INTO `addresses` VALUES (1,1,'Home','606 Bradley Drive','','Whitby','ON','L1N 6W3','Canada','2010-07-26 01:17:39','2010-07-26 01:17:39'),(4,2,'Home','606 Bradley Drive','','Whitby','ON','l1n 6W3','CA','2010-07-26 15:28:15','2010-07-26 15:28:15'); /*!40000 ALTER TABLE `addresses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `carts` -- DROP TABLE IF EXISTS `carts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `carts` ( `id` int(11) NOT NULL auto_increment, `order_id` int(11) default NULL, `product` int(11) default NULL, `colour` int(11) default NULL, `size` varchar(255) default NULL, `quantity` int(11) default NULL, `subtotal` float default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `carts` -- LOCK TABLES `carts` WRITE; /*!40000 ALTER TABLE `carts` DISABLE KEYS */; INSERT INTO `carts` VALUES (1,NULL,1027,NULL,'19701',1,34.95,'2010-07-29 17:17:11','2010-07-29 17:17:11'),(2,2,1027,NULL,'19701',1,34.95,'2010-07-29 17:18:59','2010-07-29 17:18:59'),(3,3,1027,NULL,'19701',1,34.95,'2010-07-29 17:31:10','2010-07-29 17:31:10'),(4,4,1027,NULL,'19701',1,34.95,'2010-07-29 17:31:51','2010-07-29 17:31:51'),(5,5,26,NULL,'17547',5,199.75,'2010-07-29 17:35:24','2010-07-29 17:35:24'),(6,6,26,NULL,'17547',5,199.75,'2010-07-29 17:40:32','2010-07-29 17:40:32'),(7,7,26,NULL,'17547',5,199.75,'2010-07-29 17:44:10','2010-07-29 17:44:10'),(8,8,26,NULL,'17547',5,199.75,'2010-07-29 17:44:19','2010-07-29 17:44:19'),(9,9,26,NULL,'17547',5,199.75,'2010-07-29 17:44:38','2010-07-29 17:44:38'),(10,10,26,NULL,'17547',5,199.75,'2010-07-29 17:44:43','2010-07-29 17:44:43'),(11,11,26,NULL,'17547',5,199.75,'2010-07-29 17:45:15','2010-07-29 17:45:15'),(12,11,1100,NULL,'20265',1,29.95,'2010-07-29 17:45:15','2010-07-29 17:45:15'),(13,12,26,NULL,'17547',5,199.75,'2010-07-29 17:51:29','2010-07-29 17:51:29'),(14,12,1100,NULL,'20265',1,29.95,'2010-07-29 17:51:29','2010-07-29 17:51:29'),(15,13,626,NULL,'17384',1,4.95,'2010-07-29 17:55:27','2010-07-29 17:55:27'),(16,14,626,NULL,'17384',1,4.95,'2010-07-29 17:58:58','2010-07-29 17:58:58'); /*!40000 ALTER TABLE `carts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customers` -- DROP TABLE IF EXISTS `customers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customers` ( `id` int(11) NOT NULL auto_increment, `email` varchar(255) default NULL, `password` varchar(255) default NULL, `company` varchar(255) default NULL, `firstname` varchar(255) default NULL, `lastname` varchar(255) default NULL, `optin` varchar(255) default NULL, `phone` varchar(255) default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customers` -- LOCK TABLES `customers` WRITE; /*!40000 ALTER TABLE `customers` DISABLE KEYS */; INSERT INTO `customers` VALUES (2,'aaron@vegh.ca','cor318',NULL,'Aaron','Vegh',NULL,'905 666-1944','2010-07-26 02:33:27','2010-07-26 02:33:27'); /*!40000 ALTER TABLE `customers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customers_schools` -- DROP TABLE IF EXISTS `customers_schools`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customers_schools` ( `customer_id` int(11) default NULL, `school_id` int(11) default NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customers_schools` -- LOCK TABLES `customers_schools` WRITE; /*!40000 ALTER TABLE `customers_schools` DISABLE KEYS */; INSERT INTO `customers_schools` VALUES (2,37),(2,67); /*!40000 ALTER TABLE `customers_schools` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `departments` -- DROP TABLE IF EXISTS `departments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `departments` ( `id` int(11) NOT NULL auto_increment, `department_name` varchar(255) default NULL, `discount_pct` int(11) default NULL, `sort_order` int(11) default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `departments` -- LOCK TABLES `departments` WRITE; /*!40000 ALTER TABLE `departments` DISABLE KEYS */; INSERT INTO `departments` VALUES (37,'Sweaters',NULL,NULL,'2010-07-30 00:33:58','2010-07-30 00:33:58'),(38,'Pants',NULL,NULL,'2010-07-30 00:34:03','2010-07-30 00:34:03'),(39,'Polos',NULL,NULL,'2010-07-30 00:34:39','2010-07-30 00:34:39'),(40,'Casual Tops',NULL,NULL,'2010-07-30 00:34:46','2010-07-30 00:34:46'),(41,'Shirts',NULL,NULL,'2010-07-30 00:34:51','2010-07-30 00:34:51'),(42,'Blouses',NULL,NULL,'2010-07-30 00:35:01','2010-07-30 00:35:01'),(43,'Dresses and Skirts',NULL,NULL,'2010-07-30 00:35:16','2010-07-30 00:35:16'),(45,'Activewear',NULL,NULL,'2010-07-30 00:35:37','2010-07-30 00:35:37'),(46,'Outerwear',NULL,NULL,'2010-07-30 00:35:47','2010-07-30 00:35:47'),(47,'Accessories',NULL,NULL,'2010-07-30 00:35:56','2010-07-30 00:35:56'),(48,'Shoes',NULL,NULL,'2010-07-30 00:36:05','2010-07-30 00:36:05'),(49,'Packages',NULL,NULL,'2010-07-30 00:36:13','2010-07-30 00:36:13'); /*!40000 ALTER TABLE `departments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders` -- DROP TABLE IF EXISTS `orders`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `orders` ( `id` int(11) NOT NULL auto_increment, `billing_address` int(11) default NULL, `delivery_address` int(11) default NULL, `payment_method` varchar(255) default NULL, `total` float default NULL, `status` varchar(255) default NULL, `customer_id` int(11) default NULL, `ship_method` varchar(255) default NULL, `ship_cost` float default NULL, `taxes` float default NULL, `gift` varchar(255) default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `orders` -- LOCK TABLES `orders` WRITE; /*!40000 ALTER TABLE `orders` DISABLE KEYS */; INSERT INTO `orders` VALUES (1,4,4,'visa',6209,'Paid',2,'delivery',20,7.1435,NULL,'2010-07-29 17:17:11','2010-07-29 17:17:11'),(2,4,4,'visa',6209,'Paid',2,'delivery',20,7.1435,NULL,'2010-07-29 17:18:59','2010-07-29 17:18:59'),(3,4,4,'visa',6209,'Paid',2,'delivery',20,7.1435,NULL,'2010-07-29 17:31:10','2010-07-29 17:31:10'),(4,4,4,'visa',6209,'Paid',2,'delivery',20,7.1435,NULL,'2010-07-29 17:31:51','2010-07-29 17:31:51'),(14,4,NULL,'visa',559,'Paid',2,'pickup',0,0.6435,NULL,'2010-07-29 17:58:58','2010-07-29 17:58:58'); /*!40000 ALTER TABLE `orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products` -- DROP TABLE IF EXISTS `products`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products` ( `id` int(11) NOT NULL auto_increment, `product_name` varchar(255) default NULL, `department_id` int(11) default NULL, `gender` varchar(255) default NULL, `product_code` varchar(255) default NULL, `style` varchar(255) default NULL, `stylecode` varchar(255) default NULL, `schoolcode` varchar(255) default NULL, `description` text, `product_image_file_name` varchar(255) default NULL, `product_image_content_type` varchar(255) default NULL, `product_image_file_size` int(11) default NULL, `product_image_updated_at` datetime default NULL, `product_crest_file_name` varchar(255) default NULL, `product_crest_content_type` varchar(255) default NULL, `product_crest_file_size` int(11) default NULL, `product_crest_updated_at` datetime default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, `sku` varchar(255) default NULL, `fabric_content` varchar(255) default NULL, `status` varchar(255) default NULL, `product_lifestyle_image_file_name` varchar(255) default NULL, `product_lifestyle_image_content_type` varchar(255) default NULL, `product_lifestyle_image_file_size` int(11) default NULL, `lifestyle_banner_file_name` varchar(255) default NULL, `lifestyle_banner_content_type` varchar(255) default NULL, `lifestyle_banner_file_size` int(11) default NULL, `new_flag` varchar(255) default NULL, `feature_flag` varchar(255) default NULL, `brand` varchar(255) default NULL, `sizechart_file_name` varchar(255) default NULL, `sizechart_file_size` int(11) default NULL, `sizechart_content_type` varchar(255) default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1437 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products` -- LOCK TABLES `products` WRITE; /*!40000 ALTER TABLE `products` DISABLE KEYS */; INSERT INTO `products` VALUES (1323,'Sweatshirt Cardigan',37,'Unisex','','Navy ','',NULL,'-Comfy fleece two pocket botton front cardigan with raglan sleeves\r\n-Acrylic/Cotton blend for low shringage and easy care\r\n-Colourfast','DSC_4676.jpg','image/jpeg',234908,'2010-07-30 15:43:03',NULL,NULL,NULL,NULL,'2010-07-30 15:43:03','2010-08-03 12:19:00','7515','Acrylic/Cotton/Poly/ Mixed Fibres 45/30/15/10',NULL,'DSC_3910.jpg','image/jpeg',556771,NULL,NULL,NULL,NULL,NULL,'Value','Markdown_Cheat_Sheet.pdf',131678,'application/pdf'),(1324,' V-Neck Vest',37,'Unisex','','Navy','',NULL,'-Soft durable easy care v-neck vest \r\n-Rib-knit neck, arm hole, and hem guarntees shape\r\n-Pil resistant\r\n-Colour fast\r\n-Machine washable\r\n-Made in Canada','DSC_4680.jpg','image/jpeg',202880,'2010-07-30 15:43:05',NULL,NULL,NULL,NULL,'2010-07-30 15:43:05','2010-08-03 12:15:43','7920','100% Acrylic',NULL,'DSC_3910.jpg','image/jpeg',556771,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1325,' V-Neck Sweater',37,'Unisex','','Navy','',NULL,'-Soft, durable easy care v-neck sweater with raglan sleeves\r\n-Rib- nit neck, cuff and hem guarantees to hold shape\r\n-Pil resistant\r\n-Colour fast\r\n-Machine washable \r\n-Made in Canada','DSC_4686.jpg','image/jpeg',238712,'2010-07-30 15:43:06',NULL,NULL,NULL,NULL,'2010-07-30 15:43:06','2010-08-03 12:21:12','7520','100% Acrylic',NULL,'DSC_3910.jpg','image/jpeg',556771,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1326,'Cardigan',37,'Unisex','','Navy','',NULL,'-Soft, durable easy care three botton front cardigan with raglan sleeves\r\n-Rib- knit front, cuff, and hem guarantees to keep shape\r\n-Pil resistant\r\n-Colour fast\r\n-Machine washable\r\n-Made in Canada','DSC_4692.jpg','image/jpeg',246385,'2010-07-30 15:43:07',NULL,NULL,NULL,NULL,'2010-07-30 15:43:07','2010-08-03 12:25:00','7500','100% Acrylic',NULL,'DSC_3910.jpg','image/jpeg',556771,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1327,'Full Elastic Pant',38,'Unisex','','Navy','',NULL,'-The perfect pull on pant\r\n-Full elastic waist for perfect fit and easy on and off \r\n-Two front pockets and permanent hem \r\n-Easy care wash and wear fabric\r\n-Colourfast \r\n-Made in Canada ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:07','2010-08-03 12:27:03','2042','Poly/Cotton 65/35',NULL,'DSC_3848.jpg','image/jpeg',662121,NULL,NULL,NULL,'NEW',NULL,'NWW',NULL,NULL,NULL),(1328,'Mock Fly Pant',38,'Boys','','Navy','',NULL,'-Flat front mock fly pull on pant\r\n-Full elastic back waist for easy on and off\r\n-Stain resistantfabric for easy care \r\n-Machine washable\r\n-Additional fabric patch included','DSC_4708.jpg','image/jpeg',182973,'2010-07-30 15:43:08',NULL,NULL,NULL,NULL,'2010-07-30 15:43:08','2010-08-03 12:34:06','2040',' Poly/Viscose 65/35',NULL,'DSC_3797.jpg','image/jpeg',541641,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1329,' Cargo Pant ',38,'Unisex','','Navy','',NULL,'-Casual comfort Cargo pant with two large side cargo pockets\r\n-Adjustable waist for perfect fit \r\n-Made in Canada ','DSC_4784.jpg','image/jpeg',239870,'2010-07-30 15:43:09',NULL,NULL,NULL,NULL,'2010-07-30 15:43:09','2010-08-03 12:38:57','2010','Poly/Cotton 65/35',NULL,'DSC_3797.jpg','image/jpeg',541641,NULL,NULL,NULL,'NEW','on','NWW',NULL,NULL,NULL),(1330,'Chino Pant',38,'Boys','','Navy','',NULL,'-Flat front Cotton blend Classic Chino\r\n-Soft brushed finish \r\n-Inside adjustable waist for perfect fit\r\n-Reinforced knee for rough and tumble play\r\n-Two side pockets and two back slit pockets\r\n-Made in Canada','DSC_5716.jpg','image/jpeg',196703,'2010-07-30 15:43:10',NULL,NULL,NULL,NULL,'2010-07-30 15:43:10','2010-08-03 12:44:03','2032','Poly/Cotton 65/35',NULL,'DSC_3848.jpg','image/jpeg',662121,NULL,NULL,NULL,'NEW',NULL,'NWW',NULL,NULL,NULL),(1331,'1/2 Elastic Pant',38,'Boys','','Navy','',NULL,'Teflon Coated\r\nEasy care fabric\r\nFlat front pant with two side pockets\r\nElasticated back for comfort fit and hook fastening','DSC_4715.jpg','image/jpeg',234171,'2010-07-30 15:43:11',NULL,NULL,NULL,NULL,'2010-07-30 15:43:11','2010-08-03 15:08:25','2000',' Poly/Viscose 65/35',NULL,'DSC_3797.jpg','image/jpeg',541641,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1332,' Adjustable Pant',38,'Boys','','Navy','',NULL,'Stain resistant easy care fabric\r\n,flat front pant with two side pockets, one back pocket and a concealed security pocket, belt, hook fastening, and adjustable waist.','DSC_4719.jpg','image/jpeg',246175,'2010-07-30 15:43:13',NULL,NULL,NULL,NULL,'2010-07-30 15:43:12','2010-08-03 02:30:42','2030',' Poly/Viscose 65/35',NULL,'DSC_3848.jpg','image/jpeg',662121,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1333,' 1/2 Elastic Cargo Short',38,'Boys','','Navy ','',NULL,'Long short with one front pleat, elastic back for comfort fit and two side cargo pockets. Stain resistant colour fast fabric for easy care.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:14','2010-08-03 02:41:17','3055','Poly/Viscose 65/35',NULL,'DSC_3797.jpg','image/jpeg',541641,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1334,'Adjustable Cargo Short ',38,'Unisex',NULL,'Navy','',NULL,'Long short with flat front, adjustable waist for perfect fit and two large side cargo pockets.Durable easy care fabric, machine washable. Made in Canada','DSC_5705.jpg','image/jpeg',218830,'2010-07-30 15:43:16',NULL,NULL,NULL,NULL,'2010-07-30 15:43:15','2010-08-03 02:47:21','3060','Poly/Cotton 65/35',NULL,'DSC_3848.jpg','image/jpeg',662121,NULL,NULL,NULL,'NEW','on','NWW',NULL,NULL,NULL),(1335,'Bootleg Heart Pant ',38,'Girls',NULL,'Navy ','',NULL,'Bootleg pants with two side pockets, heart detail, and elastic waist to fine tune the fit','DSC_4723.jpg','image/jpeg',183955,'2010-07-30 15:43:17',NULL,NULL,NULL,NULL,'2010-07-30 15:43:17','2010-08-03 02:55:38','2085','100% Polyester',NULL,'DSC_3797.jpg','image/jpeg',541641,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1336,' Two Way Stretch Bootcut Pant',38,'Girls',NULL,'Navy ','',NULL,'Two way stretch modern cut senior girls pant with two false front pockets, two buttondown rear pockets, and added button detail on rear waist band.','DSC_5726.jpg','image/jpeg',141737,'2010-07-30 15:43:18',NULL,NULL,NULL,NULL,'2010-07-30 15:43:18','2010-08-03 02:57:58','2082',' Poly/Viscose/Spandex 65/32/3',NULL,'DSC_3848.jpg','image/jpeg',662121,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1337,'Adjustable Pant',38,'Girls',NULL,'Navy','',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:18','2010-08-03 03:09:26','2084','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NWW',NULL,NULL,NULL),(1338,'Favorite Yoga Pant',38,'Girls',NULL,'Navy','',NULL,'Stretchy cotton/lycra/spandex blend follows every bend. Fold over wide band knit waist for comfort and fit.','DSC_4731.jpg','image/jpeg',193626,'2010-07-30 15:43:18',NULL,NULL,NULL,NULL,'2010-07-30 15:43:18','2010-08-03 03:11:36','7016','',NULL,'DSC_3848.jpg','image/jpeg',662121,NULL,NULL,NULL,'NEW',NULL,'NWW',NULL,NULL,NULL),(1339,'Adjustable Pant',38,'Girls',NULL,'Navy','',NULL,'Modern design pant with lycra for added comfort. Internal waist adjuster for perfect fit. Made in Canada','DSC_4735.jpg','image/jpeg',205843,'2010-07-30 15:43:19',NULL,NULL,NULL,NULL,'2010-07-30 15:43:19','2010-08-03 03:17:16','2080',' Poly/Viscose/Lycra 64/34/2',NULL,'DSC_3797.jpg','image/jpeg',541641,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1340,'Short Sleeve Classic Polo Shirt',39,'Unisex',NULL,'White','',NULL,'-Classic short sleeve polo shirt \r\n-Knit collar open sleeve and three button placket front \r\n-Poly/Cotton blend for easy care \r\n-Low shrinkage\r\n-Low pil fininish','DSC_4768.jpg','image/jpeg',218394,'2010-07-30 15:43:20',NULL,NULL,NULL,NULL,'2010-07-30 15:43:20','2010-08-03 12:54:16','4022','Poly/Cotton 65/35',NULL,'DSC_3818.jpg','image/jpeg',722948,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1341,'Short Sleeve Penthouse Polo Shirt',39,'Unisex',NULL,'Navy, White, White w/Navy Trim','',NULL,'-Unbeatably durable\r\n-Robustly pil free \r\n-210gms super tight knit polo\r\n-Ribbed cuffs\r\n-Two mock horn button closure at neck\r\n-Easy care fabric','DSC_4771.jpg','image/jpeg',239532,'2010-07-30 15:43:21',NULL,NULL,NULL,NULL,'2010-07-30 15:43:21','2010-08-03 12:57:52','4024','Poly/Cotton 65/35',NULL,'DSC_3693.jpg','image/jpeg',725672,NULL,NULL,NULL,NULL,NULL,'Penthouse',NULL,NULL,NULL),(1342,'Short Sleeve Cotton Jersey Polo Shirt',39,'Unisex',NULL,'White, Navy, White w/ Navy Trim','',NULL,'-Our #1 Pre-shrunk super soft 16oz cotton rich short sleeve polo\r\n-Two button closure at neck\r\n-Knit collar and cuff\r\n-Made in Canada','DSC_4758.jpg','image/jpeg',241247,'2010-07-30 15:43:21',NULL,NULL,NULL,NULL,'2010-07-30 15:43:21','2010-08-03 13:05:52','4020','16oz Cotton Jersey ',NULL,'DSC_3818.jpg','image/jpeg',722948,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1343,'Long Sleeve Classic Polo Shirt',39,'Unisex',NULL,'White','',NULL,'-Classic long sleeve polo with knit collar and cuffs\r\n-Three button placket front\r\n-Poly/Cotton blend for easy care \r\n-Low shrinkage, low pill, and stain resistance','DSC_4788.jpg','image/jpeg',168553,'2010-07-30 15:43:23',NULL,NULL,NULL,NULL,'2010-07-30 15:43:22','2010-08-03 13:07:42','4002','Poly/Cotton 65/35',NULL,'DSC_3693.jpg','image/jpeg',725672,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1344,'Long Sleeve Cotton Jersey Polo Shirt',39,'Unisex',NULL,'White, Navy, White w/ Navy Trim','',NULL,'-Our #1 Pre-shrunk super soft 16oz cotton rich long sleeve polo \r\n-Two button closure\r\n-Knit collar and cuff \r\n-Made in Canada','DSC_5692.jpg','image/jpeg',179622,'2010-07-30 15:43:24',NULL,NULL,NULL,NULL,'2010-07-30 15:43:23','2010-08-03 13:13:23','4000','16oz Cotton Jersey ',NULL,'DSC_3693.jpg','image/jpeg',725672,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1345,' Long Sleeve T-Shirt',40,'Unisex',NULL,'White, Navy','',NULL,'-100% Comfy Cotton \r\n-Pre-shrunk long sleeve T\r\n-Knit wrists\r\n-Made in Canada \r\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:24','2010-08-03 13:16:04','3520','100% Cotton',NULL,'DSC_3946.jpg','image/jpeg',606397,NULL,NULL,NULL,NULL,NULL,'Value',NULL,NULL,NULL),(1346,' Rugby Shirt ',40,'Unisex',NULL,'Navy','',NULL,'-Rough and tumble 100% Cotton Rugby Shirt\r\n-Authentic neckline with rubber buttons and continuous placket\r\n-Double sitched seams\r\n-Reinforced shoulders and underarms for added durability','DSC_5021.jpg','image/jpeg',229401,'2010-07-30 15:43:25',NULL,NULL,NULL,NULL,'2010-07-30 15:43:25','2010-08-03 13:09:48','4510','100% Cotton',NULL,'DSC_3946.jpg','image/jpeg',606397,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1347,'Cotton Jersey Turtleneck',40,'Unisex',NULL,'White/Navy','',NULL,'-Pre-shrunk easy care cotton jersey turtlenck\r\n-Maximized softness and minimized shrinkage\r\n-Perfect knit neck allows for easy on and off and holds shape \r\n-Made in Canada','DSC_5687.jpg','image/jpeg',202188,'2010-07-30 15:43:25',NULL,NULL,NULL,NULL,'2010-07-30 15:43:25','2010-08-03 13:18:39','4500','16oz Cotton Jersey ',NULL,'DSC_3946.jpg','image/jpeg',606397,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1348,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:26','2010-07-30 15:43:26','4520',NULL,NULL,'DSC_3946.jpg','image/jpeg',606397,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1349,'Non-buttondown Long Sleeve Shirt Twin Pack',41,'Boys',NULL,'White','',NULL,'Easy-care non-iron Poly/Cotton 65/35 Long sleeve shirt with breast pocket Tailored cuff for comfort \r\nTop stiching for added strength \r\nFully fused placket front with pearlized buttons \r\nTwo peice collar\r\nSave $9.95 with purchase of twin pack on all Youth sizes\r\nSave $8.95 on all Men\'s sizes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:26','2010-08-03 16:27:16','5040','Poly/Cotton 65/35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1350,'Non-buttondown Short Sleeve Shirt Twin Pack',41,'Boys',NULL,'White','',NULL,'Easy-care non-iron 65/35% Poly/Cotton Short sleeve shirt with breast pocket Tailored cuff for comfort\r\nTop stiching for added strength seams Fully fused placket front with pearlized buttons\r\nTwo peice collar\r\nSave $9.95 with purchase of twin pack on all Youth sizes\r\nSave $8.95 with purchase of twin pack on all Men\'s sizes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:27','2010-08-03 16:28:58','5060','Poly/Cotton 65/35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1351,'Classic Buttondown Long Sleeve Oxford Shirt ',41,'Unisex',NULL,'White','',NULL,'Easy-care wrinkle and stain resistant fabric\r\nCotton/Poly 60/40 blend \r\nTraditional long sleeve fit \r\nTailored bottom \r\nSingle breast pocket \r\nButtondown collar\r\nDouble stiched placket front and cuffs \r\nPearlized buttons\r\nSave $8.95 with purchase of twin pack for all Youth sizes\r\nSave $9.95 with purchase of twin pack on all Men\'s sizes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:27','2010-08-03 16:26:33','5000','Cotton/Poly 60/40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1352,'Classic Buttondown Short Sleeve Oxford Shirt ',41,'Unisex',NULL,'White',NULL,NULL,'Easy -care wrinkle and stain resistant fabric, 60/40% Cotton/Poly blend, traditional short sleeve fit with tailored bottom, single breast pocket, buttondown collar, double stiched placket on front and cuffs with peralized buttons.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:27','2010-07-30 15:43:27','5020','Cotton/Poly 60/40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1353,'Lace Collar Blouse LS',42,'Girls',NULL,'White','',NULL,'Pretty Lace Collar Blouse\r\nSmooth and soft Poly/cotton 65/35 blend \r\nEasy care fabric\r\nLong sleeve with button cuffs.','DSC_5663.jpg','image/jpeg',147731,'2010-07-30 15:43:27',NULL,NULL,NULL,NULL,'2010-07-30 15:43:27','2010-08-03 16:47:02','6042','Poly/Cotton 65/35',NULL,'DSC_3660.jpg','image/jpeg',622963,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1354,'Lace Collar Blouse SS',42,'Girls',NULL,'White','',NULL,'Pretty Lace Collar Blouse \r\nSmooth and soft poly/cotton 65/35 blend\r\nEasy care fabric\r\nShort sleeves with button cuffs','DSC_5672.jpg','image/jpeg',195423,'2010-07-30 15:43:28',NULL,NULL,NULL,NULL,'2010-07-30 15:43:28','2010-08-03 16:45:17','6052','Poly/Cotton 65/35',NULL,'DSC_3660.jpg','image/jpeg',622963,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1355,'Non-buttondown Long Sleeve Shirt Twin Pack',42,'Girls',NULL,'White','',NULL,'Easy-care non-iron Poly/Cotton 65/35 blend long sleeve shirt\r\nTailored feminine fit and cuffs \r\nTop stiching for added strength \r\nFully fused front placket with pearlized buttons \r\nTwo peice collar for extra comfort fit \r\nSave $9.95 with purchase of twin pack on all Youth sizes\r\nSave $8.95 with purchase of twin Pack on all Ladies sizes ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:28','2010-08-03 16:54:17','6020','Poly/Cotton 65/35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1356,'Non-buttondown Short Sleeve Shirt Twin Pack',42,'Girls',NULL,'White','',NULL,'Easy-care non-iron Poly/Cotton65/35 Short sleeve shirt\r\nTailored feminine fit and cuffs\r\nTop stiching for added strength \r\nFully fused front placket \r\nPearlized buttons\r\nTwo peice collar for extra comfort fit \r\nSave $9.95 with purchase of twin pack on all Youth sizes\r\nSave $8.95 with purchase of twin pack on Ladies sizes ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:28','2010-08-03 17:00:32','6030','Poly/Cotton 65/35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1357,'Revere Collar Blouse LS',42,'Girls',NULL,'White',NULL,NULL,'Fashionable easy-care non-iron cotton/polyester blend fitted blouse with 2 buuton cuff, soft collar, side slits for outer wear, sized by chest measurement for perfect feminine fit, superior quality. ','DSC_5625.jpg','image/jpeg',178878,'2010-07-30 15:43:29',NULL,NULL,NULL,NULL,'2010-07-30 15:43:29','2010-07-30 15:43:29','6095','Poly/Cotton 65/35',NULL,'DSC_3660.jpg','image/jpeg',622963,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1358,'Revere Collar Blouse SS',42,'Girls',NULL,'White',NULL,NULL,'Fashionable easy-care non-iron cotton/polyester blend fitted blouse with short sleeve, soft collar, and two side slits for outer wear.Sized by chest measurement for perfect feminine fit, superior quality. ','DSC_5627.jpg','image/jpeg',190521,'2010-07-30 15:43:29',NULL,NULL,NULL,NULL,'2010-07-30 15:43:29','2010-07-30 15:43:30','6090','Poly/Cotton 65/35',NULL,'DSC_3660.jpg','image/jpeg',622963,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1359,'3/4 Sleeve Blouse',42,'Girls',NULL,'White',NULL,NULL,'Breathable easy care non- iron Cotton/ Polyester/ Elastane fabric, slightly tapered for a more feminine fit, 3/4 Sleeve length, with straight button to collar placket front. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:30','2010-07-30 15:43:30','6072','Cotton/Poly 60/40',NULL,'DSC_3660.jpg','image/jpeg',622963,NULL,NULL,NULL,NULL,NULL,'Value',NULL,NULL,NULL),(1360,'Ladies Classic Buttondown Long Sleeve Oxford Shirt ',41,'Ladies',NULL,'White',NULL,NULL,'Easy -care wrinkle and stain resistant fabric, 60/40% Cotton/Poly blend, traditional long sleeve fit with tailored bottom, single breast pocket, buttondown collar, double stiched placket on front and cuffs with peralized buttons.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:30','2010-07-30 15:43:30','6000','Cotton/Poly 60/40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1361,'Buttondown Classic Oxford Shirt SS ',41,'Ladies',NULL,'White',NULL,NULL,'Easy -care wrinkle and stain resistant fabric, 60/40% Cotton/Poly blend, traditional short sleeve fit with tailored bottom, single breast pocket, buttondown collar, double stiched placket on front and cuffs with peralized buttons.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:31','2010-07-30 15:43:31','6010','Cotton/Poly 60/41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1362,'Katie Collar Blouse LS ',42,'Girls',NULL,'White or White with Navy Trimed Collar',NULL,NULL,'Katie collar long sleeve blouse for that real schoolgirl look! Two piece rounded edge stiched collar and cuff with clean classic details, pearlized buttons, and straight cut hem. 60/40% Cotton/Poly blend for easy care. Made in Canada','DSC_5658.jpg','image/jpeg',196177,'2010-07-30 15:43:31',NULL,NULL,NULL,NULL,'2010-07-30 15:43:31','2010-07-30 15:43:31','6040','Cotton/Poly 60/40',NULL,'DSC_3660.jpg','image/jpeg',622963,NULL,NULL,NULL,'NEW','on','ISW',NULL,NULL,NULL),(1363,'Katie Collar Blouse SS',42,'Girls',NULL,'White or White with Navy Trimed Collar',NULL,NULL,'Katie collar short sleeve blouse for that real schoolgirl look! Two piece rounded edge stiched collar and cuff with clean classic details, pearlized buttons, and straight cut hem. 60/40% Cotton/Poly blend for easy care. Made in Canada',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:31','2010-07-30 15:43:32','6050','Cotton/Poly 60/40',NULL,'DSC_3660.jpg','image/jpeg',622963,NULL,NULL,NULL,'NEW',NULL,'ISW',NULL,NULL,NULL),(1364,'Flower Embroidery Tunic & Scrunchie ',43,'Girls',NULL,'Navy ',NULL,NULL,'Easy wear zip front tunic with stitch down pleats, flower embroidered pocket and bonus scrunchie.','DSC_4834.jpg','image/jpeg',204725,'2010-07-30 15:43:32',NULL,NULL,NULL,NULL,'2010-07-30 15:43:32','2010-07-30 15:43:32','2915','Poly/Viscose/Elastane 63/32/5',NULL,'DSC_3686.jpg','image/jpeg',652981,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1365,'Heart Embroidery Tunic & Scrunchie',43,'Girls',NULL,'Navy ',NULL,NULL,'Easy wear zip front tunic with heart pull, stitched down pleats, heart embroidered pocket and bonus scrunchie.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:32','2010-07-30 15:43:32','2916','Poly/Viscose/Elastane 63/32/5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1366,'Side Pleated Tunic & Scrunchie',43,'Girls',NULL,'Navy ',NULL,NULL,'Updated tunic with two side pleats, smooth lined body, side zipper for greater independence while taking on and off, single side tissue pocket, permanent hem and bonus hair scrunchie attached. Easy care colour fast stain resistant fabric maximizes durability and minimizes care. Made in Canada','DSC_4870.jpg','image/jpeg',207558,'2010-07-30 15:43:32',NULL,NULL,NULL,NULL,'2010-07-30 15:43:32','2010-07-30 15:43:33','2912','Poly/Viscose 65/35',NULL,'DSC_3686.jpg','image/jpeg',652981,NULL,NULL,NULL,'NEW',NULL,'NWW',NULL,NULL,NULL),(1367,'Samantha A- Line Dress',43,'Girls',NULL,'Navy',NULL,NULL,'Cute as a button Samantha Dress with trimmed front slit pockets and neckline. Back zipper and permanent hem. Made in Canada','DSC_4843.jpg','image/jpeg',228104,'2010-07-30 15:43:33',NULL,NULL,NULL,NULL,'2010-07-30 15:43:33','2010-07-30 15:43:33','2932','Poly/Viscose 65/35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NEW',NULL,'NWW',NULL,NULL,NULL),(1368,'Cosy Fleece Dress',43,'Girls',NULL,'Navy',NULL,NULL,'16oz Pre-shrunk cosy fleece pull over dress. Colour fast easy-care fabric Made in Canada','DSC_4906.jpg','image/jpeg',250893,'2010-07-30 15:43:34',NULL,NULL,NULL,NULL,'2010-07-30 15:43:33','2010-07-30 15:43:34','2930','Cotton/Poly 50/50',NULL,'DSC_3686.jpg','image/jpeg',652981,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1369,'Full Pleated Tunic',43,'Girls',NULL,'Navy',NULL,NULL,'Timeless tradition full pleated tunic with separate 2 button belt and attached single side pocket. High quality stain resistant fabric for easy care with permanent hem and permanent pleating','DSC_4861.jpg','image/jpeg',206369,'2010-07-30 15:43:34',NULL,NULL,NULL,NULL,'2010-07-30 15:43:34','2010-07-30 15:43:34','2900','Poly/Wool 65/35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1370,'Drop Waist Pleated Tunic',43,'Girls',NULL,'Navy',NULL,NULL,'Smooth front bodice with drop waist and knife pleated skirt. Back zipper for easy on and off. Easy care pil and stain resistant resistant fabric. Made in Canada ','DSC_4840.jpg','image/jpeg',218699,'2010-07-30 15:43:35',NULL,NULL,NULL,NULL,'2010-07-30 15:43:35','2010-07-30 15:43:35','2920','Poly/Wool 65/35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1371,'Classic Skort',43,'Girls',NULL,'Navy',NULL,NULL,'The ultimate in style and comfort! Offers appeal of a skirt with the freedom and flexiblity of shorts. Front wrap panel with side zipper and single button closure at hip for easy on and off. Single side pocket for handy use. Internal adjustable waist for perfect fit. Easy - care fabric. Made in Canada','DSC_4991.jpg','image/jpeg',288536,'2010-07-30 15:43:35',NULL,NULL,NULL,NULL,'2010-07-30 15:43:35','2010-07-30 15:43:35','2532','Poly/Viscose 65/35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NEW',NULL,'NNW',NULL,NULL,NULL),(1372,'Sporty Skort',43,'Girls',NULL,'Navy',NULL,NULL,'Find flexibility and durability in our new sporty skort. Full elastic waist with front and back pannels gives the impression of a skirt but soft comfort shorts are underneath. Pull on design for easy on and off. Made in Canada','DSC_4962.jpg','image/jpeg',289748,'2010-07-30 15:43:35',NULL,NULL,NULL,NULL,'2010-07-30 15:43:35','2010-07-30 15:43:36','2536','Polyester/Spandex 92/8',NULL,'DSC_3686.jpg','image/jpeg',652981,NULL,NULL,NULL,'NEW',NULL,'ISW',NULL,NULL,NULL),(1373,'Lycra Heart Skirt',43,'Girls',NULL,'Navy ',NULL,NULL,'Simple and smart lycra heart skirt! Half elastic waist for perfect fit in smaller sizes, zipper back in sizes 9/10 and up. Easy-care, non-iron, colourfast fabric.','DSC_4949.jpg','image/jpeg',238253,'2010-07-30 15:43:36',NULL,NULL,NULL,NULL,'2010-07-30 15:43:36','2010-07-30 15:43:37','2560','Poly/Viscose/Lycra 58/39/3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1374,'Lycra Pleated Skirt ',43,'Girls',NULL,'Navy ',NULL,NULL,'Drop waist lycra pleated skirt with elastic back for perfect fit on smaller sizes. Zipper back on sizes 9/10 and up. Easy-care non iron, colourfast fabric ','DSC_4972.jpg','image/jpeg',244017,'2010-07-30 15:43:37',NULL,NULL,NULL,NULL,'2010-07-30 15:43:37','2010-07-30 15:43:37','2565','Poly/Viscose/Elastane 58/38/4',NULL,'DSC_3686.jpg','image/jpeg',652981,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1375,'Pleated Bengaline Skirt',43,'Girls',NULL,'Navy',NULL,NULL,'Pleated skirt with elastic back for perfect fit on smaller sizes. Zipper back on sizes 9/10 and up. Easy care fabric.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:37','2010-07-30 15:43:37','2570','Poly/Viscose/Elastane 23/73/4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1376,' Lycra Senior Skirt',43,'Girls',NULL,'Navy',NULL,NULL,'Neat lycra skirt with invisible front zip pocket and jet slit waist pocket. Back zipper and single button closure. Unique fabric blend resists fading and wrinkles, lets you skip ironing!','DSC_5563.jpg','image/jpeg',214667,'2010-07-30 15:43:37',NULL,NULL,NULL,NULL,'2010-07-30 15:43:37','2010-07-30 15:43:38','2580','Poly/Lycra 97%/3%',NULL,'DSC_3686.jpg','image/jpeg',652981,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1377,'Kilt Skirt',43,'Girls',NULL,'Navy',NULL,NULL,'No muss no fuss easy wear wrapover knife pleated skirt with pin. Colourfast',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:38','2010-07-30 15:43:38','2502','100% Polyester',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1378,'4 Button Wrap Skirt',43,'Girls',NULL,'Navy',NULL,NULL,'Cotton casual 4 button wrap skirt. This cotton blend maintains colour and minimizes shrinkage. ','DSC_4935.jpg','image/jpeg',237973,'2010-07-30 15:43:38',NULL,NULL,NULL,NULL,'2010-07-30 15:43:38','2010-07-30 15:43:39','2595','Poly/Cotton 65/35',NULL,'DSC_3686.jpg','image/jpeg',652981,NULL,NULL,NULL,'NEW',NULL,'NWW',NULL,NULL,NULL),(1379,'Box Pleated Skirt',43,'Girls',NULL,'Navy',NULL,NULL,'Traditional box pleated skirt with internal waist adjuster for customized fit. Stain resistant easy care fabric.','DSC_4958.jpg','image/jpeg',240918,'2010-07-30 15:43:39',NULL,NULL,NULL,NULL,'2010-07-30 15:43:39','2010-07-30 15:43:39','2550','Poly/Viscose 65/35',NULL,'DSC_3686.jpg','image/jpeg',652981,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1380,'Crew Neck T-shirt',40,'Unisex',NULL,'White',NULL,NULL,'100% Cotton heavy weight Crew neck t-shirt with lycra neck','DSC_5678.jpg','image/jpeg',190299,'2010-07-30 15:43:39',NULL,NULL,NULL,NULL,'2010-07-30 15:43:39','2010-07-30 15:43:40','3500','100% Cotton ',NULL,'DSC_3946.jpg','image/jpeg',606397,NULL,NULL,NULL,'NEW',NULL,'ISW',NULL,NULL,NULL),(1381,'Crew Neck T-Shirt TWIN PACK ',40,'Unisex',NULL,'White',NULL,NULL,'100% Cotton heavy weight Crew neck t-shirt with lycra neck. Save 6.95 with twin pack purchase','DSC_5678.jpg','image/jpeg',190299,'2010-07-30 15:43:40',NULL,NULL,NULL,NULL,'2010-07-30 15:43:40','2010-07-30 15:43:41','3502','100% Cotton',NULL,'DSC_3946.jpg','image/jpeg',606397,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1382,'High Performance L/S Athletic Top ',40,'Unisex',NULL,'White OR Navy',NULL,NULL,'Super feel high performance MaxtechTM moisture wicking athletic shirt with mesh side panels and white piping.','DSC_5540.jpg','image/jpeg',251204,'2010-07-30 15:43:41',NULL,NULL,NULL,NULL,'2010-07-30 15:43:41','2010-07-30 15:43:41','3506','100% Wicken Polyester',NULL,'DSC_3946.jpg','image/jpeg',606397,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1383,'Athletic Short ',45,'Unisex','','Navy ','',NULL,'Shadow stripe shorts with drawstring waist for perfect fit.','DSC_5032.jpg','image/jpeg',366867,'2010-07-30 15:43:41',NULL,NULL,NULL,NULL,'2010-07-30 15:43:41','2010-08-03 01:46:44','3005','100% Polyester',NULL,'DSC_4297.jpg','image/jpeg',805115,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1384,'Dazzle Short',45,'Unisex','','Navy or Navy w/White Stripe','',NULL,'-Draw string waist for perfect fit\r\n-Generous cut and longer leg legth\r\n-Made in Canada','DSC_5434.jpg','image/jpeg',284283,'2010-07-30 15:43:42',NULL,NULL,NULL,NULL,'2010-07-30 15:43:42','2010-08-03 01:55:13','3010','100% Polyester',NULL,'DSC_4283.jpg','image/jpeg',827846,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1385,'Coolmax Short',45,'Unisex','','Navy or Navy w/White Stripe','',NULL,'-Breathable mesh fabric wicks moisture away\r\n-Draw string waist for perfect fit\r\n-Generous cut and longer leg length\r\n-Made in Canada','DSC_5556.jpg','image/jpeg',331364,'2010-07-30 15:43:43',NULL,NULL,NULL,NULL,'2010-07-30 15:43:43','2010-08-03 02:00:10','3000','100% Polyester',NULL,'DSC_4283.jpg','image/jpeg',827846,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1386,'Classic Crew Neck Sweatshirt',45,'Unisex','','Navy','',NULL,'-Durable cotton/poly fabric\r\n-Brushed for softness \r\n-Rib-knit neck, wrists, and waist retain their shape.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:44','2010-08-03 02:08:42','7032','Acrylic/Cotton/Poly/ 45/30/25%',NULL,'DSC_4297.jpg','image/jpeg',805115,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1387,'Classic V-Neck Sweatshirt',45,'Unisex','','Navy','',NULL,'-Durable cotton/poly fabric\r\n-Brushed for softness\r\n-Rib-knit neck, wrists, and waist retain their shape.','DSC_5515.jpg','image/jpeg',271023,'2010-07-30 15:43:44',NULL,NULL,NULL,NULL,'2010-07-30 15:43:44','2010-08-03 02:11:02','7072','Cotton/Poly 50/50',NULL,'DSC_4283.jpg','image/jpeg',827846,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1388,'Hoodie ',45,'Unisex','','Navy','',NULL,'-Trendy 2 ply hooded sweatshirt\r\n-In set sleeves with scalloped armhole\r\n-Kangaroo pouch pocket\r\n-Rib-knit cuffs and waist hold their shape ','DSC_5020.jpg','image/jpeg',227326,'2010-07-30 15:43:45',NULL,NULL,NULL,NULL,'2010-07-30 15:43:45','2010-08-03 02:13:56','7065','Cotton/Poly 50/50',NULL,'DSC_4297.jpg','image/jpeg',805115,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1389,'Full Zip Hoodie',45,'Unisex','','Navy or Navy w/White Stripe','',NULL,'-16 oz Pre-shrunk Full Zip Hoodie\r\n-Colourfast fabric\r\n-Zipper allows for easy on and off\r\n-Rib-knit waist and cuffs holds their shape\r\n-Made in Canada ','DSC_5545.jpg','image/jpeg',221545,'2010-07-30 15:43:46',NULL,NULL,NULL,NULL,'2010-07-30 15:43:46','2010-08-03 02:20:14','7050','Cotton/Poly 50/50',NULL,'DSC_4297.jpg','image/jpeg',805115,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1390,'1/4 Zip Sweatshirt',45,'Unisex','','Navy','',NULL,'-16 oz Preshrunk Fleece\r\n-Maximizes softness and minimizes shrinkage\r\n-1/4 Zip for easy on and off\r\n-Rib-knit waist and cuffs holds their shape\r\n-Made in Canada','DSC_5005.jpg','image/jpeg',279543,'2010-07-30 15:43:47',NULL,NULL,NULL,NULL,'2010-07-30 15:43:47','2010-08-03 02:24:45','7020','Cotton/Poly 50/50',NULL,'DSC_4297.jpg','image/jpeg',805115,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1391,'Windsuit ',45,'Unisex','','Navy/Navy/ White','',NULL,'-2pc Track Suit (Jacket and Pant)\r\n-Wind and water resistant jacket with adjustable cuffs, two zippered side pockets,and draw cord hem.\r\n-Wind and water resistant coordinating bottom with zippered pant leg,and comfort elastic waist for perfect fit','DSC_5504.jpg','image/jpeg',217635,'2010-07-30 15:43:47',NULL,NULL,NULL,NULL,'2010-07-30 15:43:47','2010-08-03 02:33:56','8940','100% Nylon',NULL,'DSC_4297.jpg','image/jpeg',805115,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1392,'Junior Sweatpant',45,'Unisex','','Navy','',NULL,'-16oz cosy, soft, preshrunk fleece \r\n-Pull on style for easy on and off\r\n-Elastic waist for perfect fit\r\n-Two front pockets\r\n-Colourfast\r\n-Made in Canada','DSC_5486.jpg','image/jpeg',183870,'2010-07-30 15:43:48',NULL,NULL,NULL,NULL,'2010-07-30 15:43:48','2010-08-03 03:02:00','7005','Cotton/Poly 50/50',NULL,'DSC_4283.jpg','image/jpeg',827846,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1393,'Sweatpant-cuffed',45,'Unisex',NULL,'Navy or Navy w/White Stripe','',NULL,'-16 oz cosy, soft, pre-shrunk fleece\r\n-Elastic waist for perfect fit \r\n-Two side pockets \r\n-Cuffed bottom allows for maximizing growth sizes 2 - 10\r\n-Open bottom sizes 12-AXL\r\n-Colourfast\r\n-Made in Canada','DSC_5525.jpg','image/jpeg',173851,'2010-07-30 15:43:49',NULL,NULL,NULL,NULL,'2010-07-30 15:43:49','2010-08-03 03:24:34','7000','Cotton/Poly 50/50',NULL,'DSC_4297.jpg','image/jpeg',805115,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1394,'Bootcut Sweatpant',45,'Girls',NULL,'Navy or Navy w/White Stripe','',NULL,'-16oz cosy, soft pre-shrunk fleece\r\n-Femine cut with comfort elastic waist\r\n-Open hemmed bottom\r\n-Made in Canada\r\n-Available solid Navy or with white stripe on outter leg ','DSC_5535.jpg','image/jpeg',187385,'2010-07-30 15:43:50',NULL,NULL,NULL,NULL,'2010-07-30 15:43:50','2010-08-03 03:14:25','7010','Cotton/Poly 50/50',NULL,'DSC_4297.jpg','image/jpeg',805115,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1395,' Classic Fit Blazer',46,'Boys',NULL,'Navy ','',NULL,'-Makes getting dressed up easy!\r\n-Easy care machine washable\r\n-Two button front closure with three patch pockets (upper left chest and two front)\r\n-Two back vents for comfort fit\r\n-Made in Canada','DSC_5718.jpg','image/jpeg',220461,'2010-07-30 15:43:51',NULL,NULL,NULL,NULL,'2010-07-30 15:43:51','2010-08-03 04:05:49','1022','100% Polyester',NULL,'DSC_4227.jpg','image/jpeg',648929,NULL,NULL,NULL,NULL,NULL,'Value',NULL,NULL,NULL),(1396,' Classic Fit Blazer',46,'Girls',NULL,'Navy','',NULL,'-Updated Classic School Blazer\r\n-Easy care machine washable\r\n-Two button front closure with three patch pockets (upper left chest and two front)\r\n-Made in Canada','DSC_4699.jpg','image/jpeg',266324,'2010-07-30 15:43:53',NULL,NULL,NULL,NULL,'2010-07-30 15:43:53','2010-08-03 04:09:36','1042','100% Polyester',NULL,'DSC_4227.jpg','image/jpeg',648929,NULL,NULL,NULL,NULL,NULL,'Value',NULL,NULL,NULL),(1397,'1/4 Zip Micro Fleece',46,'Unisex',NULL,'Navy','',NULL,'-Light weight micro fleece adds warmth not weight\r\n- 1/4 zip for easy overhead on and off\r\n-Two side pockets \r\n-Pil resistant finish ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:54','2010-08-03 04:14:41','7022','100% Polyester',NULL,'DSC_4227.jpg','image/jpeg',648929,NULL,NULL,NULL,NULL,NULL,'Value',NULL,NULL,NULL),(1398,'Polar Fleece Jacket ',46,'Unisex',NULL,'Navy','',NULL,'-Wonderfully warm and terrifically priced! \r\n-Smart cut with raised front seam and half moon yoke on back\r\n-Elasticated cuffs\r\n-Adjustable drawcord for added warmth\r\n-Two side zip pockets','DSC_5510.jpg','image/jpeg',258356,'2010-07-30 15:43:55',NULL,NULL,NULL,NULL,'2010-07-30 15:43:54','2010-08-03 04:19:48','8956','100% Polyester',NULL,'DSC_4227.jpg','image/jpeg',648929,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1399,'Micro Fleece Vest',46,'Unisex',NULL,'Navy','',NULL,'\r\n-The perfect choice for layering!\r\n-Light weight micro fleece adds warmth not weight\r\n-Full zip front for easy on and off \r\n-Two side pockets \r\n-Made in Canada ','DSC_5521.jpg','image/jpeg',212913,'2010-07-30 15:43:56',NULL,NULL,NULL,NULL,'2010-07-30 15:43:55','2010-08-03 04:24:07','7900','100% Polyester',NULL,'DSC_4227.jpg','image/jpeg',648929,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1400,'Micro Fleece Jacket',46,'Unisex',NULL,'Navy','',NULL,'-Wear to and fro and even on weekends!\r\n-Light weight micro fleece adds warmth not weight\r\n-Full zip front for easy on and off\r\n-Two side zip pockets\r\n-Made in Canada','DSC_5412.jpg','image/jpeg',288623,'2010-07-30 15:43:56',NULL,NULL,NULL,NULL,'2010-07-30 15:43:56','2010-08-03 04:27:21','8955','100% Polyester',NULL,'DSC_4227.jpg','image/jpeg',648929,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1401,'Soft Shell Jacket',46,'Unisex',NULL,'Navy','',NULL,'-Exceptional value performance wear!\r\n-Water repellent soft shell technology\r\n-Microfleece inner layer for added warmth\r\n-Two side zip pockets\r\n-Handy security chest pocket\r\n-Adjustable velcro cuffs for added wether proofing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:43:57','2010-08-03 04:32:36','8902','Poly/Spandex 94/6',NULL,'DSC_4227.jpg','image/jpeg',648929,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1402,'Mistral Jacket ',46,'Unisex',NULL,'Navy','',NULL,'Talk about Value!\r\n-Flexibility and warmth without the bulk \r\n-Fully reversible 2- in-1 jacketwith polar fleece one side the other weatherproof rip stop nylon\r\n-Zipped pockets inside and out\r\n-Phone pocket\r\n-Elastic cuffs for storm proofing \r\n-Zip away hood with reflective triangles on youth sizes\r\n-Generous sizing','DSC_5491.jpg','image/jpeg',325518,'2010-07-30 15:43:58',NULL,NULL,NULL,NULL,'2010-07-30 15:43:58','2010-08-03 04:38:15','8900','Outer shell-100% Nylon Inner shell- 100% Polyester',NULL,'DSC_4227.jpg','image/jpeg',648929,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1403,'Snowgoose Jacket',46,'Unisex',NULL,'Navy','',NULL,'-Substanially warm and weather resistant\r\n-Fully reversible\r\n-Fold away hood\r\n-Microfleece inner for added warmth\r\n- Full size range available; children, youth, and adults\r\n\r\n','DSC_4933.jpg','image/jpeg',286099,'2010-07-30 15:43:59',NULL,NULL,NULL,NULL,'2010-07-30 15:43:59','2010-08-03 04:43:32','8905','Outer shell - 100% Nylon Inner shell- 100% Polyester',NULL,'DSC_4227.jpg','image/jpeg',648929,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1404,'Full Length Insulated Quilted Coat',46,'Girls',NULL,'Navy ','',NULL,'- Get your now while quanities last!\r\n-Girl\'s full length insulated quiletd coat \r\n-Detachable hood for added warmth\r\n-Full front zipper with storm proof snaps\r\n-Two side zip pockets','DSC_4917.jpg','image/jpeg',307514,'2010-07-30 15:44:00',NULL,NULL,NULL,NULL,'2010-07-30 15:44:00','2010-08-03 04:45:58','8980','100% Polyester',NULL,'DSC_4227.jpg','image/jpeg',648929,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1405,'Under Shorts Twin Pack',47,'Girls',NULL,'Navy ','',NULL,'Don\'t be playground shy!\r\n- Comfortable and breathable undershorts in value 2pk\r\n-The perfect choice for wearing under skirts,kilts,and dresses \r\n-Made in Canada','DSC_5555.jpg','image/jpeg',243869,'2010-07-30 15:44:01',NULL,NULL,NULL,NULL,'2010-07-30 15:44:01','2010-08-03 04:52:36','3022',' Cotton/ Spandex 92/8%',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,'NEW',NULL,'NWW',NULL,NULL,NULL),(1406,' Gingham Ankle Socks 3pk',47,'Girls',NULL,'Navy','',NULL,'The perfect finishing touch!\r\n-Smooth toed Gingham check trimmed ankle socks\r\n-Three pack for added value','DSC_5732.jpg','image/jpeg',267229,'2010-07-30 15:44:01',NULL,NULL,NULL,NULL,'2010-07-30 15:44:01','2010-08-03 04:56:49','8004','Cotton/Nylon/Elastane 65/32/5',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1407,'Smooth Knit Ankle Socks 5pk ',47,'Unisex',NULL,'Navy','',NULL,'-Great for Everyday!\r\n-Smooth knit ankle socks \r\n-Value 5 pack',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:44:02','2010-08-03 04:59:33','8002','Cotton/Nylon/Lycra 75/20/5',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,'NEW','on','Value',NULL,NULL,NULL),(1408,'Pelerine Ankle Socks 3pk',47,'Gilrs',NULL,'White','',NULL,'-For girls only! \r\n-Pretty lace ankle socks \r\n-Value 3 pack',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:44:03','2010-08-03 05:01:15','8006','Cotton /Nylon 83/17',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1409,'Pereline Knee Socks 3pk',47,'Gilrs',NULL,'White','',NULL,'-For girls only! \r\n-Pretty lace knee socks \r\n-Value 3 pack',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:44:03','2010-08-03 05:02:48','8012','Cotton /Nylon 83/17',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,'NEW',NULL,'Value',NULL,NULL,NULL),(1410,' Knee High Socks',47,'Girls',NULL,'Navy','',NULL,'-Trimfit knee socks tried and true\r\n-No seams for added comfort\r\n-Unbeatable quality\r\n-Full size range to fit every foot',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:44:04','2010-08-03 05:08:48','8010','Cotton/Nylon/Spandex 75/20/5',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Trimfit',NULL,NULL,NULL),(1411,'Ribbed Socks',47,'Unisex',NULL,'Navy','',NULL,'-Trimfit tried and true\r\n-Everyday wear ribbed socks \r\n-No seams for added comfort\r\n-Perfect choice for pants and shorts\r\n-Full size range to fit every foot',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:44:04','2010-08-03 05:12:49','8020','Cotton/Nylon/Spandex 75/20/5',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Trimfit',NULL,NULL,NULL),(1412,' Ankle Socks',47,'Girls',NULL,'White','',NULL,'-Trimfit tried and true!\r\n-Fold over ankle socks\r\n-Smooth toed for added comfort fit ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:44:05','2010-08-03 05:15:20','8000','Cotton/Nylon/Spandex 75/20/5',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Trimfit',NULL,NULL,NULL),(1413,'Sport Socks',47,'Unisex',NULL,'White',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:44:05','2010-07-30 15:44:05','8030',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Trimfit',NULL,NULL,NULL),(1414,'Girl\'s Tights (Mondor)',47,'Girls',NULL,'Navy',NULL,NULL,'Flat lock seam, knitted comfort waist band',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:33','2010-07-30 15:46:33','8520','Cotton/Acryllic/Nylon/ Spandex 45/45/8/2',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Mondore',NULL,NULL,NULL),(1415,'Ladies Tights (Mondor)',47,'Girls',NULL,'Navy',NULL,NULL,'Flat lock seam, knitted comfort waist band',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:33','2010-07-30 15:46:33','8510','Cotton/Acryllic/Nylon/ Spandex 45/45/8/2',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Mondore',NULL,NULL,NULL),(1416,'Girl\'s Tights (Trimfit)',47,'Girls',NULL,'Navy',NULL,NULL,'Flat lock seam, knitted comfort waist band',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:34','2010-07-30 15:46:34','8515','Cotton Spandex',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Trimfit',NULL,NULL,NULL),(1417,'Leather Belt',47,'Boys',NULL,'Black',NULL,NULL,'Classic Leather belt with buckle','DSC_5441.jpg','image/jpeg',127180,'2010-07-30 15:46:34',NULL,NULL,NULL,NULL,'2010-07-30 15:46:34','2010-07-30 15:46:35','9800','100% Leather',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1418,'Stretch Headband (solid)',47,'Girls',NULL,'Navy/White ',NULL,NULL,'Bow shaped strechey jersey for comfort fit','DSC_5744.jpg','image/jpeg',234227,'2010-07-30 15:46:35',NULL,NULL,NULL,NULL,'2010-07-30 15:46:35','2010-07-30 15:46:35','9920',' Cotton/ Spandex 92/8%',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1419,'Poni Bag ',47,'Girls',NULL,'Navy',NULL,NULL,'Carry case with 24 smooth and decorative hair elastics','DSC_5819.jpg','image/jpeg',313275,'2010-07-30 15:46:35',NULL,NULL,NULL,NULL,'2010-07-30 15:46:35','2010-07-30 15:46:36','9902',NULL,NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Value',NULL,NULL,NULL),(1420,'Alice Headband Set',47,'Girls',NULL,'Navy',NULL,NULL,'Assorted hair pack: One slim hard headband with two barrets, six clips, and six elastic bands.','DSC_5808.jpg','image/jpeg',254631,'2010-07-30 15:46:36',NULL,NULL,NULL,NULL,'2010-07-30 15:46:36','2010-07-30 15:46:37','9904',NULL,NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Value',NULL,NULL,NULL),(1421,'Alice Headband Gingham',47,'Girls',NULL,'Navy',NULL,NULL,'Wide padded gingham check headband with inside grip for added comfort and fit.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:37','2010-07-30 15:46:37','9912',NULL,NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Value',NULL,NULL,NULL),(1422,'Scrunchies (solid)',47,'Girls',NULL,'Navy/White',NULL,NULL,'Cover your pony with our jersey scrunchie! Made in Canada',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:37','2010-07-30 15:46:38','9900','Various',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1423,'Microfleece Scarf',47,'Unisex',NULL,'Navy and White',NULL,NULL,' Light weight ultra soft microfleece scarf with anti pill finish. Made in Canada',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:38','2010-07-30 15:46:38','9980','100% Polyester',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'NWW',NULL,NULL,NULL),(1424,'Striped Microfleece Scarf',47,'Unisex',NULL,'Navy/White',NULL,NULL,' Light weight ultra soft microfleece scarf with anti pill finish. Assorted stripes. Made in Canada',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:38','2010-07-30 15:46:38','9982','100% Polyester',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'NNW',NULL,NULL,NULL),(1425,'Microfleece Neckwarmer',47,'Unisex',NULL,'Navy and White',NULL,NULL,'Easier than a scarf! microfleece classic style neckwarmer with pill resistant finish. Made in Canada',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:38','2010-07-30 15:46:39','9985','100% Polyester',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'NWW',NULL,NULL,NULL),(1426,'Microfleece Hat',47,'Unisex',NULL,'Navy/White',NULL,NULL,'Keep your ears warm with our light weight fun designed microfleece hats. Made in Canada',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:39','2010-07-30 15:46:39','9930','100% Polyester',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'NNW',NULL,NULL,NULL),(1427,'Borrow a Bookbag',47,'Unisex',NULL,'Navy',NULL,NULL,'Junior light weight nylon bookbag with velcro closure and handy carry handle. Personalize with your name , class, and school.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:39','2010-07-30 15:46:39','9972','100% Nylon',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Value',NULL,NULL,NULL),(1428,'Value Gymbag',47,'Unisex',NULL,'Navy',NULL,NULL,'Gym bag with drawstring',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:39','2010-07-30 15:46:40','9955','100% Nylon',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'Value',NULL,NULL,NULL),(1429,' Small Gym bag ',47,'Unisex',NULL,'Navy',NULL,NULL,'Heavy quality nylon small gym bag with drwastring. Made in Canada',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2010-07-30 15:46:40','2010-07-30 15:46:40','9950','100% Nylon',NULL,'DSC_3907.jpg','image/jpeg',776161,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1430,'Winner',48,'Unisex',NULL,'Black','',NULL,'Our # 1 classic unisex velcro front shoe. With 100% Leather uppers and lining. Removeable leather insole and Non marking TPR sole. Waste no time easy on and off!','winner.JPG','image/jpeg',31929,'2010-08-03 16:35:10',NULL,NULL,NULL,NULL,'2010-07-30 15:46:40','2010-08-03 16:35:10','9050','100% Leather Uppers and lining, with non -marking sole.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1431,'Wanted',48,'Boys',NULL,'Black','',NULL,'Our # 1 classic boys Slip-on shoe. With 100% Leather uppers and lining. Removeable leather insole and Non marking TPR sole. Waste no time easy on and off!','Wanted.JPG','image/jpeg',25705,'2010-08-03 16:34:52',NULL,NULL,NULL,NULL,'2010-07-30 15:46:40','2010-08-03 16:34:52','9015','100% Leather Uppers and lining, with non -marking sole.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1432,'Wilbert',48,'Unisex',NULL,'Black','',NULL,'Our # 1 classic lace up Oxford. 100% Leather uppers and lining with removeable leather insole and non -marking TPR sole.','Wilbert.JPG','image/jpeg',28887,'2010-08-03 16:34:02',NULL,NULL,NULL,NULL,'2010-07-30 15:46:40','2010-08-03 16:34:02','9060','100% Leather Uppers and lining, with non -marking sole.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1433,'Wilma',48,'Junior girls',NULL,'Black','',NULL,'Our # 1 classic comfy Mary Jane with velcro strap for easy on and off. 100% Leather uppers and lining. Removeable leather insole and Non- marking TPR sole.','Wilma.JPG','image/jpeg',28098,'2010-08-03 16:33:38',NULL,NULL,NULL,NULL,'2010-07-30 15:46:40','2010-08-03 16:33:38','9040','100% Leather Uppers and lining, with non -marking sole.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ISW',NULL,NULL,NULL),(1434,'Dancer',48,'Girls',NULL,'Black','',NULL,'Fashionable Ballet Flat with elastic back for easy on and off and stiched quilted toe with bow for added detail.100% Leather uppers and lining. Removeable leather insole and Non- marking TPR sole.','Dancer2.JPG','image/jpeg',45380,'2010-08-03 16:33:11',NULL,NULL,NULL,NULL,'2010-07-30 15:46:41','2010-08-03 16:33:11','9095','100% Leather Uppers and lining, with non -marking sole.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'NEW',NULL,'ISW',NULL,NULL,NULL),(1435,'Boys Package',49,'Boys',NULL,'Navy/White','',NULL,'This is a package of items consisting of:\r\n2 - Long Sleeve Polos\r\n1 - Short Sleeve Polo\r\n2 - Pants\r\n1 - Hoodie\r\nBuy this package and save 20%!','packageb.jpg','image/jpeg',18829,'2010-08-03 16:57:11',NULL,NULL,NULL,NULL,'2010-08-03 16:54:47','2010-08-03 16:57:11','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1436,'Girls Package',49,'Girls',NULL,'Navy/White','',NULL,'This package contains the following items:\r\n2 - Long Sleeve Polos\r\n1 - Short Sleeve Polo\r\n1 - Pants\r\n1 - Tunic Combo\r\n1 - Sweat Shirt Cardigan\r\nSave 20% when you buy this package!','packageg.jpg','image/jpeg',22160,'2010-08-03 16:58:09',NULL,NULL,NULL,NULL,'2010-08-03 16:58:09','2010-08-03 16:58:09','','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products_schools` -- DROP TABLE IF EXISTS `products_schools`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `products_schools` ( `product_id` int(11) default NULL, `school_id` int(11) default NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `products_schools` -- LOCK TABLES `products_schools` WRITE; /*!40000 ALTER TABLE `products_schools` DISABLE KEYS */; INSERT INTO `products_schools` VALUES (280,1),(280,20); /*!40000 ALTER TABLE `products_schools` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productsizes` -- DROP TABLE IF EXISTS `productsizes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `productsizes` ( `id` int(11) NOT NULL auto_increment, `size` varchar(255) default NULL, `code` varchar(255) default NULL, `price` float default NULL, `product_id` int(11) default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=23232 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `productsizes` -- LOCK TABLES `productsizes` WRITE; /*!40000 ALTER TABLE `productsizes` DISABLE KEYS */; INSERT INTO `productsizes` VALUES (22263,'24\"C','',29.95,1323,'2010-07-30 15:43:03','2010-08-03 12:19:00'),(22264,'26\"C','',29.95,1323,'2010-07-30 15:43:03','2010-08-03 12:19:00'),(22265,'28\"C','',29.95,1323,'2010-07-30 15:43:03','2010-08-03 12:19:00'),(22266,'30\"C','',29.95,1323,'2010-07-30 15:43:03','2010-08-03 12:19:00'),(22267,'32\"C','',29.95,1323,'2010-07-30 15:43:03','2010-08-03 12:19:00'),(22268,'34\"C','',29.95,1323,'2010-07-30 15:43:03','2010-08-03 12:19:00'),(22269,'36\"C','',29.95,1323,'2010-07-30 15:43:03','2010-08-03 12:19:00'),(22270,'22\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22271,'24\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22272,'26\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22273,'28\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22274,'30\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22275,'32\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22276,'34\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22277,'36\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22278,'38\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22279,'40\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22280,'42\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22281,'44\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22282,'46\"C','',39.95,1324,'2010-07-30 15:43:05','2010-08-03 12:15:43'),(22283,'22\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22284,'24\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22285,'26\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22286,'28\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22287,'30\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22288,'32\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22289,'34\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22290,'36\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22291,'38\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22292,'40\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22293,'42\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22294,'44\"C','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22295,'46\"C ','',44.95,1325,'2010-07-30 15:43:06','2010-08-03 12:21:12'),(22296,'22\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:00'),(22297,'24\'\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:00'),(22298,'26\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:01'),(22299,'28\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:01'),(22300,'30\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:01'),(22301,'32\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:00'),(22302,'34\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:00'),(22303,'36\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:00'),(22304,'38\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:00'),(22305,'40\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:00'),(22306,'42\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:00'),(22307,'44\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:00'),(22308,'46\"C','',49.95,1326,'2010-07-30 15:43:07','2010-08-03 12:25:01'),(22309,'2','',19.95,1327,'2010-07-30 15:43:07','2010-08-03 01:45:58'),(22310,'4','',19.95,1327,'2010-07-30 15:43:07','2010-08-03 01:45:58'),(22311,'6','',19.95,1327,'2010-07-30 15:43:07','2010-08-03 01:45:58'),(22312,'8','',19.95,1327,'2010-07-30 15:43:07','2010-08-03 01:45:58'),(22313,'10','',19.95,1327,'2010-07-30 15:43:07','2010-08-03 01:45:58'),(22316,'18\"W','',39.95,1328,'2010-07-30 15:43:08','2010-08-03 12:34:06'),(22317,'20\"W','',39.95,1328,'2010-07-30 15:43:08','2010-08-03 12:34:06'),(22318,'22\"W','',39.95,1328,'2010-07-30 15:43:08','2010-08-03 12:34:06'),(22319,'23\"W','',39.95,1328,'2010-07-30 15:43:08','2010-08-03 12:34:06'),(22320,'23L\"W','',39.95,1328,'2010-07-30 15:43:08','2010-08-03 12:34:06'),(22321,'24\"W','',39.95,1328,'2010-07-30 15:43:08','2010-08-03 12:34:06'),(22323,'22\"W','',29.95,1329,'2010-07-30 15:43:09','2010-08-03 12:38:57'),(22324,'23\"W','',29.95,1329,'2010-07-30 15:43:09','2010-08-03 12:38:57'),(22325,'24\"W','',29.95,1329,'2010-07-30 15:43:09','2010-08-03 12:38:57'),(22326,'26\"W','',29.95,1329,'2010-07-30 15:43:09','2010-08-03 12:38:57'),(22327,'28\"W','',29.95,1329,'2010-07-30 15:43:09','2010-08-03 12:38:57'),(22328,'30\"W','',29.95,1329,'2010-07-30 15:43:09','2010-08-03 12:38:57'),(22329,'32\"W','',29.95,1329,'2010-07-30 15:43:09','2010-08-03 12:38:57'),(22330,'34\"W','',29.95,1329,'2010-07-30 15:43:09','2010-08-03 12:38:57'),(22331,'24\"W','',29.95,1330,'2010-07-30 15:43:10','2010-08-03 12:44:03'),(22332,'26\"W','',29.95,1330,'2010-07-30 15:43:10','2010-08-03 12:44:03'),(22333,'28\"W','',29.95,1330,'2010-07-30 15:43:10','2010-08-03 12:44:03'),(22334,'30\"W','',29.95,1330,'2010-07-30 15:43:10','2010-08-03 12:44:03'),(22335,'32\"W','',29.95,1330,'2010-07-30 15:43:10','2010-08-03 12:44:03'),(22336,'34\"W','',29.95,1330,'2010-07-30 15:43:10','2010-08-03 12:44:03'),(22337,'36\"W','',29.95,1330,'2010-07-30 15:43:10','2010-08-03 12:44:03'),(22338,'38\"W','',29.95,1330,'2010-07-30 15:43:10','2010-08-03 12:44:03'),(22339,'40\"W','',29.95,1330,'2010-07-30 15:43:10','2010-08-03 12:44:03'),(22343,'21w','',39.95,1331,'2010-07-30 15:43:11','2010-08-03 02:18:09'),(22344,'22w','',39.95,1331,'2010-07-30 15:43:11','2010-08-03 02:18:09'),(22345,'23w','',39.95,1331,'2010-07-30 15:43:11','2010-08-03 02:18:09'),(22346,'23Lw','',39.95,1331,'2010-07-30 15:43:11','2010-08-03 02:18:09'),(22347,'24w','',39.95,1331,'2010-07-30 15:43:11','2010-08-03 02:18:09'),(22348,'25w','',39.95,1331,'2010-07-30 15:43:11','2010-08-03 02:18:09'),(22349,'26w','',39.95,1331,'2010-07-30 15:43:11','2010-08-03 02:18:09'),(22350,'27w','',39.95,1331,'2010-07-30 15:43:11','2010-08-03 02:18:09'),(22354,'24w','',45.95,1332,'2010-07-30 15:43:12','2010-08-03 02:30:42'),(22355,'25w','',45.95,1332,'2010-07-30 15:43:12','2010-08-03 02:30:42'),(22356,'26w','',45.95,1332,'2010-07-30 15:43:12','2010-08-03 02:30:42'),(22357,'27w','',45.95,1332,'2010-07-30 15:43:12','2010-08-03 02:30:42'),(22358,'28w','',45.95,1332,'2010-07-30 15:43:12','2010-08-03 02:30:42'),(22359,'30w','',45.95,1332,'2010-07-30 15:43:12','2010-08-03 02:30:42'),(22360,'31w','',45.95,1332,'2010-07-30 15:43:12','2010-08-03 02:30:42'),(22361,'age 3/4','',24.95,1333,'2010-07-30 15:43:14','2010-08-03 02:41:18'),(22362,'age 4/5','',24.95,1333,'2010-07-30 15:43:14','2010-08-03 02:41:18'),(22363,'age 5/6','',24.95,1333,'2010-07-30 15:43:14','2010-08-03 02:41:18'),(22364,'age 6/7','',24.95,1333,'2010-07-30 15:43:14','2010-08-03 02:41:18'),(22365,'age 7/8','',24.95,1333,'2010-07-30 15:43:14','2010-08-03 02:41:18'),(22366,'age 8/9','',24.95,1333,'2010-07-30 15:43:14','2010-08-03 02:41:18'),(22367,'age 9/10','',24.95,1333,'2010-07-30 15:43:14','2010-08-03 02:41:17'),(22368,'age 10/11','',24.95,1333,'2010-07-30 15:43:14','2010-08-03 02:41:18'),(22369,'age 11/12','',24.95,1333,'2010-07-30 15:43:14','2010-08-03 02:41:18'),(22370,'age 13','',24.95,1333,'2010-07-30 15:43:14','2010-08-03 02:41:18'),(22371,'22w','',24.95,1334,'2010-07-30 15:43:15','2010-08-03 02:47:21'),(22372,'24w','',24.95,1334,'2010-07-30 15:43:15','2010-08-03 02:47:21'),(22373,'26w','',24.95,1334,'2010-07-30 15:43:15','2010-08-03 02:47:21'),(22374,'28w','',24.95,1334,'2010-07-30 15:43:15','2010-08-03 02:47:21'),(22375,'30w','',24.95,1334,'2010-07-30 15:43:16','2010-08-03 02:47:21'),(22376,'32w','',24.95,1334,'2010-07-30 15:43:16','2010-08-03 02:47:21'),(22377,'34w','',24.95,1334,'2010-07-30 15:43:16','2010-08-03 02:47:21'),(22378,'36w','',24.95,1334,'2010-07-30 15:43:16','2010-08-03 02:47:21'),(22379,'age 2/3','',26.95,1335,'2010-07-30 15:43:17','2010-08-03 02:55:38'),(22380,'age 3/4','',26.95,1335,'2010-07-30 15:43:17','2010-08-03 02:55:38'),(22381,'age 4/5','',26.95,1335,'2010-07-30 15:43:17','2010-08-03 02:55:38'),(22382,'age 5/6','',26.95,1335,'2010-07-30 15:43:17','2010-08-03 02:55:38'),(22383,'age 7/8','',26.95,1335,'2010-07-30 15:43:17','2010-08-03 02:55:38'),(22384,'age 8/9','',26.95,1335,'2010-07-30 15:43:17','2010-08-03 02:55:38'),(22385,'age 9/10','',26.95,1335,'2010-07-30 15:43:17','2010-08-03 02:55:38'),(22386,'age 11/12','',26.95,1335,'2010-07-30 15:43:17','2010-08-03 02:55:38'),(22387,'age 13','',26.95,1335,'2010-07-30 15:43:17','2010-08-03 02:55:38'),(22388,'age 15/16','',26.95,1335,'2010-07-30 15:43:17','2010-08-03 02:55:38'),(22389,'22w','',29.95,1336,'2010-07-30 15:43:18','2010-08-03 02:57:58'),(22390,'24w','',29.95,1336,'2010-07-30 15:43:18','2010-08-03 02:57:58'),(22391,'26w','',29.95,1336,'2010-07-30 15:43:18','2010-08-03 02:57:58'),(22392,'28w','',29.95,1336,'2010-07-30 15:43:18','2010-08-03 02:57:58'),(22398,'','',34.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22399,'','',34.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22400,'','',34.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22401,'','',34.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22402,'','',34.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22403,'','',34.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22404,'','',34.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22405,'','',39.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22406,'','',39.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22407,'','',39.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22408,'','',39.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22409,'','',39.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22410,'','',39.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22411,'','',39.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22412,'','',39.95,1337,'2010-07-30 15:43:18','2010-08-03 03:09:26'),(22413,'4','',16.95,1338,'2010-07-30 15:43:18','2010-08-03 03:11:36'),(22414,'6','',16.95,1338,'2010-07-30 15:43:18','2010-08-03 03:11:36'),(22415,'8','',16.95,1338,'2010-07-30 15:43:18','2010-08-03 03:11:36'),(22416,'10','',16.95,1338,'2010-07-30 15:43:18','2010-08-03 03:11:36'),(22417,'12','',16.95,1338,'2010-07-30 15:43:18','2010-08-03 03:11:36'),(22418,'14','',16.95,1338,'2010-07-30 15:43:18','2010-08-03 03:11:36'),(22419,'AS','',16.95,1338,'2010-07-30 15:43:18','2010-08-03 03:11:36'),(22420,'AM','',16.95,1338,'2010-07-30 15:43:18','2010-08-03 03:11:36'),(22425,'age 4','',45.95,1339,'2010-07-30 15:43:19','2010-08-03 03:17:16'),(22426,'age 6','',45.95,1339,'2010-07-30 15:43:19','2010-08-03 03:17:16'),(22427,'age 8','',45.95,1339,'2010-07-30 15:43:19','2010-08-03 03:17:16'),(22428,'age 10','',45.95,1339,'2010-07-30 15:43:19','2010-08-03 03:17:16'),(22429,'age 12','',45.95,1339,'2010-07-30 15:43:19','2010-08-03 03:17:16'),(22430,'age 14','',45.95,1339,'2010-07-30 15:43:19','2010-08-03 03:17:16'),(22431,'age 16','',45.95,1339,'2010-07-30 15:43:19','2010-08-03 03:17:16'),(22432,'26w','',54.95,1339,'2010-07-30 15:43:20','2010-08-03 03:17:16'),(22433,'28w','',54.95,1339,'2010-07-30 15:43:20','2010-08-03 03:17:16'),(22434,'30w','',54.95,1339,'2010-07-30 15:43:20','2010-08-03 03:17:16'),(22435,'32w','',54.95,1339,'2010-07-30 15:43:20','2010-08-03 03:17:16'),(22436,'34w','',54.95,1339,'2010-07-30 15:43:20','2010-08-03 03:17:16'),(22437,'36w','',54.95,1339,'2010-07-30 15:43:20','2010-08-03 03:17:16'),(22438,'38w','',54.95,1339,'2010-07-30 15:43:20','2010-08-03 03:17:16'),(22439,'40w','',54.95,1339,'2010-07-30 15:43:20','2010-08-03 03:17:16'),(22440,'22\"C','',16.95,1340,'2010-07-30 15:43:20','2010-08-03 12:53:24'),(22441,'24\"C','',16.95,1340,'2010-07-30 15:43:20','2010-08-03 12:53:24'),(22442,'26\"C','',16.95,1340,'2010-07-30 15:43:20','2010-08-03 12:53:24'),(22443,'28\"C','',16.95,1340,'2010-07-30 15:43:20','2010-08-03 12:53:24'),(22444,'30\"C','',16.95,1340,'2010-07-30 15:43:20','2010-08-03 12:53:24'),(22445,'32\"C','',16.95,1340,'2010-07-30 15:43:20','2010-08-03 12:53:24'),(22446,'34\"C','',16.95,1340,'2010-07-30 15:43:20','2010-08-03 12:53:24'),(22447,'36\"C','',16.95,1340,'2010-07-30 15:43:20','2010-08-03 12:53:24'),(22448,'38\"C','',16.95,1340,'2010-07-30 15:43:20','2010-08-03 12:53:24'),(22449,'40\"C','',16.95,1340,'2010-07-30 15:43:20','2010-08-03 12:53:24'),(22450,'2/3','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 12:57:52'),(22451,'3/4','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 12:57:52'),(22452,'5/6','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 12:57:52'),(22453,'7/8','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 12:57:52'),(22454,'9/10','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 12:57:52'),(22455,'11/12','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 12:57:52'),(22456,'13','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 12:57:52'),(22457,'AS','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 03:25:40'),(22458,'AM','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 03:25:40'),(22459,'AL','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 03:25:40'),(22460,'AXL','',24.95,1341,'2010-07-30 15:43:21','2010-08-03 03:25:40'),(22461,'2','',24.95,1342,'2010-07-30 15:43:21','2010-08-03 13:05:52'),(22462,'4','',24.95,1342,'2010-07-30 15:43:21','2010-08-03 13:05:52'),(22463,'6','',29.95,1342,'2010-07-30 15:43:22','2010-08-03 13:05:52'),(22464,'8','',29.95,1342,'2010-07-30 15:43:22','2010-08-03 13:05:52'),(22465,'10','',29.95,1342,'2010-07-30 15:43:22','2010-08-03 13:05:52'),(22466,'12','',29.95,1342,'2010-07-30 15:43:22','2010-08-03 13:05:52'),(22467,'14','',29.95,1342,'2010-07-30 15:43:22','2010-08-03 13:05:52'),(22468,'AS','',34.95,1342,'2010-07-30 15:43:22','2010-08-03 03:30:08'),(22469,'AM','',34.95,1342,'2010-07-30 15:43:22','2010-08-03 03:30:08'),(22470,'AL','',34.95,1342,'2010-07-30 15:43:22','2010-08-03 03:30:08'),(22471,'AXL','',34.95,1342,'2010-07-30 15:43:22','2010-08-03 03:30:08'),(22472,'22\'C','',19.95,1343,'2010-07-30 15:43:22','2010-08-03 13:07:42'),(22473,'24\"C','',19.95,1343,'2010-07-30 15:43:22','2010-08-03 13:07:42'),(22474,'26\"C','',19.95,1343,'2010-07-30 15:43:22','2010-08-03 13:07:42'),(22475,'28\"C','',19.95,1343,'2010-07-30 15:43:22','2010-08-03 13:07:42'),(22476,'30\"C','',19.95,1343,'2010-07-30 15:43:22','2010-08-03 13:07:42'),(22477,'32\"C','',19.95,1343,'2010-07-30 15:43:22','2010-08-03 13:07:42'),(22478,'34\"C','',19.95,1343,'2010-07-30 15:43:22','2010-08-03 13:07:42'),(22479,'32\"C','',19.95,1343,'2010-07-30 15:43:22','2010-08-03 13:07:42'),(22480,'34\"C','',19.95,1343,'2010-07-30 15:43:23','2010-08-03 13:07:42'),(22481,'36\"C','',19.95,1343,'2010-07-30 15:43:23','2010-08-03 13:07:42'),(22488,'2','',27.95,1344,'2010-07-30 15:43:23','2010-08-03 13:13:23'),(22489,'4','',27.95,1344,'2010-07-30 15:43:23','2010-08-03 13:13:23'),(22490,'6','',32.95,1344,'2010-07-30 15:43:24','2010-08-03 13:13:23'),(22491,'8','',32.95,1344,'2010-07-30 15:43:24','2010-08-03 13:13:23'),(22492,'10 age 10 ','',32.95,1344,'2010-07-30 15:43:24','2010-08-03 13:13:23'),(22493,'12','',32.95,1344,'2010-07-30 15:43:24','2010-08-03 13:13:23'),(22494,'14','',32.95,1344,'2010-07-30 15:43:24','2010-08-03 13:13:23'),(22495,'AS','',36.95,1344,'2010-07-30 15:43:24','2010-08-03 04:28:23'),(22496,'AM','',36.95,1344,'2010-07-30 15:43:24','2010-08-03 04:28:23'),(22497,'AL','',36.95,1344,'2010-07-30 15:43:24','2010-08-03 04:28:23'),(22498,'AXL','',36.95,1344,'2010-07-30 15:43:24','2010-08-03 04:28:23'),(22499,'YS','',17.95,1345,'2010-07-30 15:43:24','2010-08-03 13:16:04'),(22500,'YM','',17.95,1345,'2010-07-30 15:43:24','2010-08-03 13:16:04'),(22501,'YL','',17.95,1345,'2010-07-30 15:43:24','2010-08-03 13:16:04'),(22502,'YXL','',17.95,1345,'2010-07-30 15:43:24','2010-08-03 13:16:04'),(22503,'AS','',17.95,1345,'2010-07-30 15:43:24','2010-08-03 04:34:20'),(22504,'AM','',17.95,1345,'2010-07-30 15:43:24','2010-08-03 04:34:20'),(22505,'AL','',17.95,1345,'2010-07-30 15:43:24','2010-08-03 04:34:20'),(22506,'AXL','',17.95,1345,'2010-07-30 15:43:24','2010-08-03 04:34:20'),(22507,'28\'C','',29.95,1346,'2010-07-30 15:43:25','2010-08-03 13:09:48'),(22508,'30\"C','',29.95,1346,'2010-07-30 15:43:25','2010-08-03 13:09:48'),(22509,'32\"C','',29.95,1346,'2010-07-30 15:43:25','2010-08-03 13:09:48'),(22510,'34\"C','',29.95,1346,'2010-07-30 15:43:25','2010-08-03 13:09:48'),(22511,'36\"C','',29.95,1346,'2010-07-30 15:43:25','2010-08-03 13:09:48'),(22512,'38\"C','',29.95,1346,'2010-07-30 15:43:25','2010-08-03 13:09:48'),(22513,'2','',19.95,1347,'2010-07-30 15:43:25','2010-08-03 13:18:40'),(22514,'4','',19.95,1347,'2010-07-30 15:43:25','2010-08-03 13:18:40'),(22515,'6','',19.95,1347,'2010-07-30 15:43:25','2010-08-03 13:18:40'),(22516,'8','',19.95,1347,'2010-07-30 15:43:25','2010-08-03 13:18:40'),(22517,'10','',24.95,1347,'2010-07-30 15:43:26','2010-08-03 13:18:40'),(22518,'12','',24.95,1347,'2010-07-30 15:43:26','2010-08-03 13:18:40'),(22519,'14','',24.95,1347,'2010-07-30 15:43:26','2010-08-03 13:18:40'),(22520,'AS','',29.95,1347,'2010-07-30 15:43:26','2010-08-03 04:39:04'),(22521,'AM','',29.95,1347,'2010-07-30 15:43:26','2010-08-03 04:39:03'),(22522,'AL','',29.95,1347,'2010-07-30 15:43:26','2010-08-03 04:39:03'),(22523,'AXL','',29.95,1347,'2010-07-30 15:43:26','2010-08-03 04:39:03'),(22524,'54',NULL,24.95,1348,'2010-07-30 15:43:26','2010-07-30 15:43:26'),(22525,'32',NULL,24.95,1348,'2010-07-30 15:43:26','2010-07-30 15:43:26'),(22526,'32',NULL,24.95,1348,'2010-07-30 15:43:26','2010-07-30 15:43:26'),(22527,'32',NULL,24.95,1348,'2010-07-30 15:43:26','2010-07-30 15:43:26'),(22528,'49',NULL,29.95,1348,'2010-07-30 15:43:26','2010-07-30 15:43:26'),(22529,'32',NULL,29.95,1348,'2010-07-30 15:43:26','2010-07-30 15:43:26'),(22530,'32',NULL,29.95,1348,'2010-07-30 15:43:26','2010-07-30 15:43:26'),(22531,'32',NULL,29.95,1348,'2010-07-30 15:43:26','2010-07-30 15:43:26'),(22532,'32',NULL,29.95,1348,'2010-07-30 15:43:26','2010-07-30 15:43:26'),(22533,'11','',39.95,1349,'2010-07-30 15:43:26','2010-08-03 15:30:54'),(22534,'11.5','',39.95,1349,'2010-07-30 15:43:26','2010-08-03 15:30:54'),(22535,'12','',39.95,1349,'2010-07-30 15:43:26','2010-08-03 15:30:54'),(22536,'12.5','',39.95,1349,'2010-07-30 15:43:26','2010-08-03 15:30:54'),(22537,'13','',39.95,1349,'2010-07-30 15:43:26','2010-08-03 15:30:54'),(22538,'13.5','',39.95,1349,'2010-07-30 15:43:26','2010-08-03 15:30:54'),(22539,'14','',44.95,1349,'2010-07-30 15:43:27','2010-08-03 15:30:54'),(22540,'14.5','',44.95,1349,'2010-07-30 15:43:27','2010-08-03 15:30:54'),(22541,'15','',44.95,1349,'2010-07-30 15:43:27','2010-08-03 15:30:54'),(22542,'15.5','',44.95,1349,'2010-07-30 15:43:27','2010-08-03 15:30:54'),(22543,'16','',44.95,1349,'2010-07-30 15:43:27','2010-08-03 15:30:54'),(22544,'16.5','',44.95,1349,'2010-07-30 15:43:27','2010-08-03 15:30:54'),(22545,'17','',44.95,1349,'2010-07-30 15:43:27','2010-08-03 15:30:54'),(22546,'11','',24.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22547,'11.5','',24.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22548,'12','',24.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22549,'12.5','',24.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22550,'13','',24.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22551,'13.5','',24.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22552,'14','',26.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22553,'14.5','',26.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22554,'15','',26.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22555,'15.5','',26.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22556,'16','',26.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22557,'16.5','',26.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22558,'17','',26.95,1349,'2010-07-30 15:43:27','2010-08-03 16:17:55'),(22559,'11','',39.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22560,'11.5','',39.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22561,'12','',39.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22562,'12.5','',39.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:37'),(22563,'13','',39.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:37'),(22564,'13.5','',39.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:37'),(22565,'14','',44.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22566,'14.5','',44.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22567,'15','',44.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22568,'15.5','',44.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22569,'16','',44.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22570,'16.5','',44.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22571,'17','',44.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22572,'11','',24.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:37'),(22573,'11.5','',24.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:37'),(22574,'12','',24.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:37'),(22575,'12.5','',24.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:37'),(22576,'13','',24.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22577,'13.5','',24.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22578,'14','',26.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22579,'14.5','',26.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22580,'15','',26.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22581,'15.5','',26.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22582,'16','',26.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:36'),(22583,'16.5','',26.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:37'),(22584,'17','',26.95,1350,'2010-07-30 15:43:27','2010-08-03 16:11:37'),(22585,'4','',26.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22586,'6','',26.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22587,'8','',26.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22588,'10','',26.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22589,'12','',26.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22590,'14','',26.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22591,'16','',26.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22592,'18','',26.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22593,'20','',26.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22594,'AS','',29.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22595,'AM','',29.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22596,'AL','',29.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22597,'AXL','',29.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22598,'2','',44.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22599,'4','',44.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22600,'6','',44.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22601,'8','',44.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22602,'10','',44.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22603,'12','',44.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22604,'14','',44.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22605,'16','',44.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22606,'18','',44.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22607,'20','',44.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22608,'AS','',49.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:34'),(22609,'AM','',49.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22610,'AL','',49.95,1351,'2010-07-30 15:43:27','2010-08-03 16:26:33'),(22611,'52',NULL,26.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22612,'32',NULL,26.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22613,'32',NULL,26.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22614,'32',NULL,26.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22615,'32',NULL,26.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22616,'32',NULL,26.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22617,'32',NULL,26.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22618,'32',NULL,26.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22619,'32',NULL,26.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22620,'65',NULL,29.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22621,'32',NULL,29.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22622,'32',NULL,29.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22623,'32',NULL,29.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22624,'52',NULL,44.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22625,'32',NULL,44.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22626,'32',NULL,44.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22627,'32',NULL,44.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22628,'32',NULL,44.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22629,'32',NULL,44.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22630,'32',NULL,44.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22631,'32',NULL,44.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22632,'32',NULL,44.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22633,'65',NULL,49.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22634,'32',NULL,49.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22635,'32',NULL,49.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22636,'32',NULL,49.95,1352,'2010-07-30 15:43:27','2010-07-30 15:43:27'),(22637,'24\"C','',19.95,1353,'2010-07-30 15:43:27','2010-08-03 16:42:03'),(22638,'26\"C','',19.95,1353,'2010-07-30 15:43:27','2010-08-03 16:42:03'),(22639,'28\"C','',19.95,1353,'2010-07-30 15:43:27','2010-08-03 16:42:03'),(22640,'30\"C','',19.95,1353,'2010-07-30 15:43:27','2010-08-03 16:42:03'),(22641,'32\"C','',19.95,1353,'2010-07-30 15:43:27','2010-08-03 16:42:03'),(22642,'36\"C','',19.95,1353,'2010-07-30 15:43:27','2010-08-03 16:42:03'),(22643,'24\"C','',19.95,1354,'2010-07-30 15:43:28','2010-08-03 16:45:17'),(22644,'26\"C','',19.95,1354,'2010-07-30 15:43:28','2010-08-03 16:45:17'),(22645,'28\"C','',19.95,1354,'2010-07-30 15:43:28','2010-08-03 16:45:17'),(22646,'30\"C','',19.95,1354,'2010-07-30 15:43:28','2010-08-03 16:45:17'),(22647,'32\"C','',19.95,1354,'2010-07-30 15:43:28','2010-08-03 16:45:17'),(22648,'34\"C','',19.95,1354,'2010-07-30 15:43:28','2010-08-03 16:45:17'),(22649,'22\"C','',39.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22650,'24\"C','',39.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22651,'26\"C','',39.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22652,'28\"C','',39.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22653,'30\"C','',39.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22654,'32\"C','',44.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22655,'34\"C','',44.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22656,'36\"C','',44.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22657,'38\"C','',44.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22658,'40\"C','',44.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22659,'22\"C','',24.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22660,'24\"C','',24.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22661,'26\"C','',24.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22662,'28\"C','',24.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22663,'30\"C','',24.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22664,'32\"C','',26.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22665,'34\"C','',26.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22666,'36\"C','',26.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22667,'38\"C','',26.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22668,'40\"C','',26.95,1355,'2010-07-30 15:43:28','2010-08-03 16:54:17'),(22669,'22\"C','',39.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22670,'24\"C','',39.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22671,'26\"C','',39.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22672,'28\"C','',39.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22673,'30\"C','',39.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22674,'32\"C','',44.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22675,'34\"C','',44.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22676,'36\"C','',44.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22677,'38\"C','',44.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22678,'40\"C','',44.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22679,'22\"C','',24.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22680,'24\"C','',24.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22681,'26\"C','',24.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22682,'28\"C','',24.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22683,'30\"C','',26.95,1356,'2010-07-30 15:43:28','2010-08-03 17:00:32'),(22684,'32\"C','',26.95,1356,'2010-07-30 15:43:29','2010-08-03 17:00:32'),(22685,'34\"C','',26.95,1356,'2010-07-30 15:43:29','2010-08-03 17:00:32'),(22686,'36\"C','',26.95,1356,'2010-07-30 15:43:29','2010-08-03 17:00:32'),(22687,'38\"C','',26.95,1356,'2010-07-30 15:43:29','2010-08-03 17:00:32'),(22688,'40\"C','',26.95,1356,'2010-07-30 15:43:29','2010-08-03 17:00:32'),(22689,'50',NULL,24.95,1357,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22690,'32',NULL,24.95,1357,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22691,'32',NULL,24.95,1357,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22692,'51',NULL,26.95,1357,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22693,'32',NULL,26.95,1357,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22694,'32',NULL,26.95,1357,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22695,'32',NULL,26.95,1357,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22696,'32',NULL,26.95,1357,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22697,'32',NULL,26.95,1357,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22698,'50',NULL,22.95,1358,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22699,'32',NULL,22.95,1358,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22700,'32',NULL,22.95,1358,'2010-07-30 15:43:29','2010-07-30 15:43:29'),(22701,'51',NULL,24.95,1358,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22702,'32',NULL,24.95,1358,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22703,'32',NULL,24.95,1358,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22704,'32',NULL,24.95,1358,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22705,'32',NULL,24.95,1358,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22706,'32',NULL,24.95,1358,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22707,'50',NULL,24.95,1359,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22708,'32',NULL,24.95,1359,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22709,'32',NULL,24.95,1359,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22710,'32',NULL,24.95,1359,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22711,'32',NULL,24.95,1359,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22712,'32',NULL,24.95,1359,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22713,'32',NULL,24.95,1359,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22714,'32',NULL,24.95,1359,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22715,'65',NULL,29.95,1360,'2010-07-30 15:43:30','2010-07-30 15:43:30'),(22716,'32',NULL,29.95,1360,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22717,'32',NULL,29.95,1360,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22718,'32',NULL,29.95,1360,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22719,'32',NULL,29.95,1360,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22720,'65',NULL,49.95,1360,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22721,'32',NULL,49.95,1360,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22722,'32',NULL,49.95,1360,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22723,'32',NULL,49.95,1360,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22724,'32',NULL,49.95,1360,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22725,'65',NULL,29.95,1361,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22726,'32',NULL,29.95,1361,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22727,'32',NULL,29.95,1361,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22728,'32',NULL,29.95,1361,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22729,'32',NULL,29.95,1361,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22730,'65',NULL,49.95,1361,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22731,'32',NULL,49.95,1361,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22732,'32',NULL,49.95,1361,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22733,'32',NULL,49.95,1361,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22734,'32',NULL,49.95,1361,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22735,'50',NULL,32.95,1362,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22736,'32',NULL,32.95,1362,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22737,'32',NULL,32.95,1362,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22738,'32',NULL,32.95,1362,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22739,'32',NULL,32.95,1362,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22740,'32',NULL,32.95,1362,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22741,'50',NULL,28.95,1363,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22742,'32',NULL,28.95,1363,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22743,'32',NULL,28.95,1363,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22744,'32',NULL,28.95,1363,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22745,'32',NULL,28.95,1363,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22746,'32',NULL,28.95,1363,'2010-07-30 15:43:31','2010-07-30 15:43:31'),(22747,'50',NULL,24.95,1364,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22748,'32',NULL,24.95,1364,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22749,'32',NULL,24.95,1364,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22750,'32',NULL,24.95,1364,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22751,'32',NULL,24.95,1364,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22752,'32',NULL,24.95,1364,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22753,'32',NULL,24.95,1364,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22754,'50',NULL,24.95,1365,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22755,'32',NULL,24.95,1365,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22756,'32',NULL,24.95,1365,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22757,'32',NULL,24.95,1365,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22758,'32',NULL,24.95,1365,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22759,'32',NULL,24.95,1365,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22760,'32',NULL,24.95,1365,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22761,'50',NULL,45.95,1366,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22762,'32',NULL,45.95,1366,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22763,'32',NULL,45.95,1366,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22764,'32',NULL,45.95,1366,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22765,'32',NULL,45.95,1366,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22766,'32',NULL,45.95,1366,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22767,'49',NULL,45.95,1366,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22768,'32',NULL,45.95,1366,'2010-07-30 15:43:32','2010-07-30 15:43:32'),(22769,'50',NULL,24.95,1367,'2010-07-30 15:43:33','2010-07-30 15:43:33'),(22770,'32',NULL,24.95,1367,'2010-07-30 15:43:33','2010-07-30 15:43:33'),(22771,'32',NULL,24.95,1367,'2010-07-30 15:43:33','2010-07-30 15:43:33'),(22772,'32',NULL,24.95,1367,'2010-07-30 15:43:33','2010-07-30 15:43:33'),(22773,'49',NULL,24.95,1368,'2010-07-30 15:43:33','2010-07-30 15:43:33'),(22774,'32',NULL,24.95,1368,'2010-07-30 15:43:33','2010-07-30 15:43:33'),(22775,'32',NULL,24.95,1368,'2010-07-30 15:43:33','2010-07-30 15:43:33'),(22776,'32',NULL,24.95,1368,'2010-07-30 15:43:34','2010-07-30 15:43:34'),(22777,'32',NULL,24.95,1368,'2010-07-30 15:43:34','2010-07-30 15:43:34'),(22778,'50',NULL,54.95,1369,'2010-07-30 15:43:34','2010-07-30 15:43:34'),(22779,'32',NULL,54.95,1369,'2010-07-30 15:43:34','2010-07-30 15:43:34'),(22780,'54',NULL,54.95,1369,'2010-07-30 15:43:34','2010-07-30 15:43:34'),(22781,'56',NULL,64.95,1369,'2010-07-30 15:43:34','2010-07-30 15:43:34'),(22782,'32',NULL,64.95,1369,'2010-07-30 15:43:34','2010-07-30 15:43:34'),(22783,'52',NULL,59.95,1370,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22784,'32',NULL,59.95,1370,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22785,'56',NULL,64.95,1370,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22786,'32',NULL,64.95,1370,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22787,'50',NULL,29.95,1371,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22788,'32',NULL,29.95,1371,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22789,'32',NULL,29.95,1371,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22790,'32',NULL,29.95,1371,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22791,'32',NULL,29.95,1371,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22792,'32',NULL,29.95,1371,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22793,'32',NULL,29.95,1371,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22794,'32',NULL,29.95,1371,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22795,'32',NULL,29.95,1371,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22796,'50',NULL,19.95,1372,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22797,'32',NULL,19.95,1372,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22798,'32',NULL,19.95,1372,'2010-07-30 15:43:35','2010-07-30 15:43:35'),(22799,'56',NULL,24.95,1372,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22800,'32',NULL,24.95,1372,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22801,'32',NULL,24.95,1372,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22802,'32',NULL,24.95,1372,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22803,'65',NULL,29.95,1372,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22804,'32',NULL,29.95,1372,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22805,'32',NULL,29.95,1372,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22806,'32',NULL,29.95,1372,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22807,'32',NULL,29.95,1372,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22808,'51',NULL,24.95,1373,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22809,'32',NULL,24.95,1373,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22810,'32',NULL,24.95,1373,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22811,'32',NULL,24.95,1373,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22812,'32',NULL,24.95,1373,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22813,'32',NULL,24.95,1373,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22814,'32',NULL,24.95,1373,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22815,'32',NULL,24.95,1373,'2010-07-30 15:43:36','2010-07-30 15:43:36'),(22816,'53',NULL,29.95,1374,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22817,'32',NULL,29.95,1374,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22818,'32',NULL,29.95,1374,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22819,'32',NULL,29.95,1374,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22820,'32',NULL,29.95,1374,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22821,'32',NULL,29.95,1374,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22822,'57',NULL,22.95,1375,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22823,'32',NULL,22.95,1375,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22824,'32',NULL,22.95,1375,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22825,'57',NULL,32.95,1376,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22826,'32',NULL,32.95,1376,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22827,'32',NULL,32.95,1376,'2010-07-30 15:43:37','2010-07-30 15:43:37'),(22828,'51',NULL,39.95,1377,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22829,'32',NULL,39.95,1377,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22830,'32',NULL,39.95,1377,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22831,'32',NULL,39.95,1377,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22832,'32',NULL,39.95,1377,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22833,'32',NULL,39.95,1377,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22834,'32',NULL,39.95,1377,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22835,'32',NULL,39.95,1377,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22836,'52',NULL,24.95,1378,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22837,'32',NULL,24.95,1378,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22838,'32',NULL,24.95,1378,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22839,'32',NULL,24.95,1378,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22840,'32',NULL,24.95,1378,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22841,'32',NULL,24.95,1378,'2010-07-30 15:43:38','2010-07-30 15:43:38'),(22842,'65',NULL,26.95,1378,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22843,'32',NULL,26.95,1378,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22844,'32',NULL,26.95,1378,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22845,'32',NULL,26.95,1378,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22846,'52',NULL,45.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22847,'32',NULL,45.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22848,'32',NULL,45.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22849,'32',NULL,45.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22850,'49',NULL,45.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22851,'32',NULL,45.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22852,'32',NULL,45.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22853,'32',NULL,45.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22854,'65',NULL,49.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22855,'32',NULL,49.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22856,'32',NULL,49.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22857,'32',NULL,49.95,1379,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22858,'50',NULL,9.95,1380,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22859,'32',NULL,9.95,1380,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22860,'32',NULL,9.95,1380,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22861,'32',NULL,9.95,1380,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22862,'32',NULL,9.95,1380,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22863,'32',NULL,9.95,1380,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22864,'32',NULL,9.95,1380,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22865,'32',NULL,9.95,1380,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22866,'32',NULL,9.95,1380,'2010-07-30 15:43:39','2010-07-30 15:43:39'),(22867,'50',NULL,12.95,1381,'2010-07-30 15:43:40','2010-07-30 15:43:40'),(22868,'32',NULL,12.95,1381,'2010-07-30 15:43:40','2010-07-30 15:43:40'),(22869,'32',NULL,12.95,1381,'2010-07-30 15:43:40','2010-07-30 15:43:40'),(22870,'32',NULL,12.95,1381,'2010-07-30 15:43:40','2010-07-30 15:43:40'),(22871,'32',NULL,12.95,1381,'2010-07-30 15:43:40','2010-07-30 15:43:40'),(22872,'32',NULL,12.95,1381,'2010-07-30 15:43:40','2010-07-30 15:43:40'),(22873,'32',NULL,12.95,1381,'2010-07-30 15:43:40','2010-07-30 15:43:40'),(22874,'32',NULL,12.95,1381,'2010-07-30 15:43:40','2010-07-30 15:43:40'),(22875,'32',NULL,12.95,1381,'2010-07-30 15:43:40','2010-07-30 15:43:40'),(22876,'32',NULL,12.95,1381,'2010-07-30 15:43:40','2010-07-30 15:43:40'),(22877,'50',NULL,24.95,1382,'2010-07-30 15:43:41','2010-07-30 15:43:41'),(22878,'32',NULL,24.95,1382,'2010-07-30 15:43:41','2010-07-30 15:43:41'),(22879,'32',NULL,24.95,1382,'2010-07-30 15:43:41','2010-07-30 15:43:41'),(22880,'32',NULL,24.95,1382,'2010-07-30 15:43:41','2010-07-30 15:43:41'),(22881,'2/3','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22882,'3/4','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22883,'4/5','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22884,'5/6','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22885,'7/8','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22886,'9/10','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22887,'11/12','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22888,'13','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22889,'AS','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22890,'AM','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22891,'AL','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22892,'AXL','',14.95,1383,'2010-07-30 15:43:41','2010-08-03 01:42:04'),(22893,'2','',23.95,1384,'2010-07-30 15:43:42','2010-08-03 01:55:13'),(22894,'4','',23.95,1384,'2010-07-30 15:43:42','2010-08-03 01:55:13'),(22895,'6','',23.95,1384,'2010-07-30 15:43:42','2010-08-03 01:55:13'),(22896,'8','',23.95,1384,'2010-07-30 15:43:42','2010-08-03 01:55:13'),(22897,'10','',23.95,1384,'2010-07-30 15:43:42','2010-08-03 01:55:13'),(22898,'12','',28.95,1384,'2010-07-30 15:43:42','2010-08-03 01:55:13'),(22899,'14','',28.95,1384,'2010-07-30 15:43:43','2010-08-03 01:55:13'),(22900,'AS','',28.95,1384,'2010-07-30 15:43:43','2010-08-03 01:55:13'),(22901,'AM','',28.95,1384,'2010-07-30 15:43:43','2010-08-03 01:55:13'),(22902,'AL','',28.95,1384,'2010-07-30 15:43:43','2010-08-03 01:55:13'),(22903,'AXL','',28.95,1384,'2010-07-30 15:43:43','2010-08-03 01:55:13'),(22904,'','',28.95,1384,'2010-07-30 15:43:43','2010-08-03 01:55:13'),(22905,'2','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22906,'4','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22907,'6','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22908,'8','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22909,'10','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22910,'12','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22911,'14','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22912,'AS','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22913,'AM','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22914,'AL','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22915,'AXL','',24.95,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22916,'','',NULL,1385,'2010-07-30 15:43:43','2010-08-03 02:00:10'),(22917,'2','',16.95,1386,'2010-07-30 15:43:44','2010-08-03 02:08:42'),(22918,'4','',16.95,1386,'2010-07-30 15:43:44','2010-08-03 02:08:42'),(22919,'6','',16.95,1386,'2010-07-30 15:43:44','2010-08-03 02:08:42'),(22920,'8','',16.95,1386,'2010-07-30 15:43:44','2010-08-03 02:08:42'),(22921,'10','',16.95,1386,'2010-07-30 15:43:44','2010-08-03 02:08:42'),(22922,'12','',16.95,1386,'2010-07-30 15:43:44','2010-08-03 02:08:42'),(22923,'14','',16.95,1386,'2010-07-30 15:43:44','2010-08-03 02:08:42'),(22924,'2','',16.95,1387,'2010-07-30 15:43:44','2010-08-03 02:11:03'),(22925,'4','',16.95,1387,'2010-07-30 15:43:44','2010-08-03 02:11:03'),(22926,'6','',16.95,1387,'2010-07-30 15:43:44','2010-08-03 02:11:03'),(22927,'8','',16.95,1387,'2010-07-30 15:43:44','2010-08-03 02:11:03'),(22928,'10','',16.95,1387,'2010-07-30 15:43:44','2010-08-03 02:11:03'),(22929,'12','',16.95,1387,'2010-07-30 15:43:44','2010-08-03 02:11:03'),(22930,'14','',16.95,1387,'2010-07-30 15:43:44','2010-08-03 02:11:03'),(22931,'2/3','',24.95,1388,'2010-07-30 15:43:45','2010-08-03 02:13:56'),(22932,'4/5','',24.95,1388,'2010-07-30 15:43:45','2010-08-03 02:13:56'),(22933,'5/6','',24.95,1388,'2010-07-30 15:43:45','2010-08-03 02:13:56'),(22934,'7/8','',24.95,1388,'2010-07-30 15:43:45','2010-08-03 02:13:56'),(22935,'9/10','',24.95,1388,'2010-07-30 15:43:45','2010-08-03 02:13:56'),(22936,'11/12','',24.95,1388,'2010-07-30 15:43:45','2010-08-03 02:13:56'),(22937,'13','',29.95,1388,'2010-07-30 15:43:46','2010-08-03 02:13:56'),(22938,'AS','',29.95,1388,'2010-07-30 15:43:46','2010-08-03 02:13:56'),(22939,'AM','',29.95,1388,'2010-07-30 15:43:46','2010-08-03 02:13:56'),(22940,'AL','',29.95,1388,'2010-07-30 15:43:46','2010-08-03 02:13:56'),(22941,'AXL','',29.95,1388,'2010-07-30 15:43:46','2010-08-03 02:13:56'),(22942,'2','',49.95,1389,'2010-07-30 15:43:46','2010-08-03 02:20:14'),(22943,'4','',49.95,1389,'2010-07-30 15:43:46','2010-08-03 02:20:14'),(22944,'6','',49.95,1389,'2010-07-30 15:43:46','2010-08-03 02:20:14'),(22945,'8','',54.95,1389,'2010-07-30 15:43:47','2010-08-03 02:20:14'),(22946,'10','',54.95,1389,'2010-07-30 15:43:47','2010-08-03 02:20:14'),(22947,'12','',54.95,1389,'2010-07-30 15:43:47','2010-08-03 02:20:14'),(22948,'14','',54.95,1389,'2010-07-30 15:43:47','2010-08-03 02:20:14'),(22949,'2','',36.95,1390,'2010-07-30 15:43:47','2010-08-03 02:24:45'),(22950,'4','',36.95,1390,'2010-07-30 15:43:47','2010-08-03 02:24:45'),(22951,'6','',36.95,1390,'2010-07-30 15:43:47','2010-08-03 02:24:45'),(22952,'8','',39.95,1390,'2010-07-30 15:43:47','2010-08-03 02:24:45'),(22953,'10','',39.95,1390,'2010-07-30 15:43:47','2010-08-03 02:24:45'),(22954,'12','',39.95,1390,'2010-07-30 15:43:47','2010-08-03 02:24:45'),(22955,'14','',39.95,1390,'2010-07-30 15:43:47','2010-08-03 02:24:45'),(22956,'YS','',69.95,1391,'2010-07-30 15:43:47','2010-08-03 02:33:56'),(22957,'YM','',69.95,1391,'2010-07-30 15:43:47','2010-08-03 02:33:56'),(22958,'YL','',69.95,1391,'2010-07-30 15:43:47','2010-08-03 02:33:56'),(22959,'YXL','',69.95,1391,'2010-07-30 15:43:47','2010-08-03 02:33:56'),(22960,'2','',24.95,1392,'2010-07-30 15:43:48','2010-08-03 03:01:08'),(22961,'4','',24.95,1392,'2010-07-30 15:43:48','2010-08-03 03:01:08'),(22962,'6','',24.95,1392,'2010-07-30 15:43:48','2010-08-03 03:01:08'),(22963,'8','',24.95,1392,'2010-07-30 15:43:48','2010-08-03 03:01:08'),(22964,'10','',24.95,1392,'2010-07-30 15:43:48','2010-08-03 03:01:08'),(22965,'2','',24.95,1393,'2010-07-30 15:43:49','2010-08-03 03:08:36'),(22966,'4','',24.95,1393,'2010-07-30 15:43:49','2010-08-03 03:08:36'),(22967,'6','',24.95,1393,'2010-07-30 15:43:49','2010-08-03 03:08:36'),(22968,'8','',29.95,1393,'2010-07-30 15:43:50','2010-08-03 03:08:36'),(22969,'10','',29.95,1393,'2010-07-30 15:43:50','2010-08-03 03:08:36'),(22970,'12','',29.95,1393,'2010-07-30 15:43:50','2010-08-03 03:24:34'),(22971,'14','',29.95,1393,'2010-07-30 15:43:50','2010-08-03 03:24:34'),(22972,'AS','',34.95,1393,'2010-07-30 15:43:50','2010-08-03 03:24:34'),(22973,'AM','',34.95,1393,'2010-07-30 15:43:50','2010-08-03 03:24:34'),(22974,'AL','',34.95,1393,'2010-07-30 15:43:50','2010-08-03 03:24:34'),(22975,'AXL','',34.95,1393,'2010-07-30 15:43:50','2010-08-03 03:24:34'),(22976,'2','',24.95,1394,'2010-07-30 15:43:50','2010-08-03 03:14:25'),(22977,'4','',24.95,1394,'2010-07-30 15:43:50','2010-08-03 03:14:25'),(22978,'6','',24.95,1394,'2010-07-30 15:43:50','2010-08-03 03:14:25'),(22979,'8','',29.95,1394,'2010-07-30 15:43:51','2010-08-03 03:14:25'),(22980,'10','',29.95,1394,'2010-07-30 15:43:51','2010-08-03 03:14:25'),(22981,'12','',29.95,1394,'2010-07-30 15:43:51','2010-08-03 03:14:25'),(22982,'14','',29.95,1394,'2010-07-30 15:43:51','2010-08-03 03:14:25'),(22983,'AS','',34.95,1394,'2010-07-30 15:43:51','2010-08-03 03:14:25'),(22984,'AM','',34.95,1394,'2010-07-30 15:43:51','2010-08-03 03:14:25'),(22985,'AL','',34.95,1394,'2010-07-30 15:43:51','2010-08-03 03:14:25'),(22986,'AXL','',34.95,1394,'2010-07-30 15:43:51','2010-08-03 03:14:25'),(22987,'24\"C','',99.95,1395,'2010-07-30 15:43:51','2010-08-03 04:05:50'),(22988,'26\"C','',99.95,1395,'2010-07-30 15:43:51','2010-08-03 04:05:50'),(22989,'28\"C','',99.95,1395,'2010-07-30 15:43:51','2010-08-03 04:05:50'),(22990,'30\"C','',99.95,1395,'2010-07-30 15:43:51','2010-08-03 04:05:50'),(22991,'32\"C','',99.95,1395,'2010-07-30 15:43:51','2010-08-03 04:05:50'),(22992,'34\"C','',99.95,1395,'2010-07-30 15:43:51','2010-08-03 04:05:50'),(22993,'36\"C','',99.95,1395,'2010-07-30 15:43:51','2010-08-03 04:05:50'),(22994,'38\"C','',99.95,1395,'2010-07-30 15:43:51','2010-08-03 04:05:50'),(22995,'24\"C','',99.95,1396,'2010-07-30 15:43:53','2010-08-03 04:09:36'),(22996,'26\"C','',99.95,1396,'2010-07-30 15:43:53','2010-08-03 04:09:36'),(22997,'28\"C','',99.95,1396,'2010-07-30 15:43:53','2010-08-03 04:09:36'),(22998,'30\"C','',99.95,1396,'2010-07-30 15:43:53','2010-08-03 04:09:36'),(22999,'32\"C','',99.95,1396,'2010-07-30 15:43:53','2010-08-03 04:09:36'),(23000,'34\"C','',99.95,1396,'2010-07-30 15:43:53','2010-08-03 04:09:36'),(23001,'36\"C','',99.95,1396,'2010-07-30 15:43:53','2010-08-03 04:09:36'),(23002,'38\"C','',99.95,1396,'2010-07-30 15:43:53','2010-08-03 04:09:36'),(23003,'3/4','',24.95,1397,'2010-07-30 15:43:54','2010-08-03 04:14:41'),(23004,'5/6','',24.95,1397,'2010-07-30 15:43:54','2010-08-03 04:14:41'),(23005,'7/8','',24.95,1397,'2010-07-30 15:43:54','2010-08-03 04:14:41'),(23006,'9/10','',24.95,1397,'2010-07-30 15:43:54','2010-08-03 04:14:41'),(23007,'11/12','',24.95,1397,'2010-07-30 15:43:54','2010-08-03 04:14:41'),(23008,'13','',24.95,1397,'2010-07-30 15:43:54','2010-08-03 04:14:41'),(23009,'3/4','',29.95,1398,'2010-07-30 15:43:54','2010-08-03 04:19:48'),(23010,'5/6','',29.95,1398,'2010-07-30 15:43:54','2010-08-03 04:19:48'),(23011,'7/8','',29.95,1398,'2010-07-30 15:43:54','2010-08-03 04:19:48'),(23012,'9/10','',29.95,1398,'2010-07-30 15:43:54','2010-08-03 04:19:48'),(23013,'11/12','',29.95,1398,'2010-07-30 15:43:54','2010-08-03 04:19:48'),(23014,'13','',29.95,1398,'2010-07-30 15:43:54','2010-08-03 04:19:48'),(23015,'AS','',29.95,1398,'2010-07-30 15:43:54','2010-08-03 04:19:48'),(23016,'AM','',29.95,1398,'2010-07-30 15:43:54','2010-08-03 04:19:48'),(23017,'AL','',29.95,1398,'2010-07-30 15:43:54','2010-08-03 04:19:48'),(23018,'2','',39.95,1399,'2010-07-30 15:43:55','2010-08-03 04:22:34'),(23019,'4','',39.95,1399,'2010-07-30 15:43:55','2010-08-03 04:22:34'),(23020,'6','',39.95,1399,'2010-07-30 15:43:55','2010-08-03 04:22:34'),(23021,'8','',39.95,1399,'2010-07-30 15:43:55','2010-08-03 04:22:34'),(23022,'10','',39.95,1399,'2010-07-30 15:43:55','2010-08-03 04:22:34'),(23023,'12','',39.95,1399,'2010-07-30 15:43:55','2010-08-03 04:22:34'),(23024,'14','',39.95,1399,'2010-07-30 15:43:55','2010-08-03 04:22:34'),(23025,'AS','',39.95,1399,'2010-07-30 15:43:56','2010-08-03 04:22:34'),(23026,'AM','',39.95,1399,'2010-07-30 15:43:56','2010-08-03 04:22:34'),(23027,'AL','',39.95,1399,'2010-07-30 15:43:56','2010-08-03 04:22:34'),(23028,'AXL','',39.95,1399,'2010-07-30 15:43:56','2010-08-03 04:22:34'),(23029,'2','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23030,'4','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23031,'6','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23032,'8','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23033,'10','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23034,'12','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23035,'14','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23036,'AS','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23037,'AM','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23038,'AL','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23039,'AXL','',49.95,1400,'2010-07-30 15:43:56','2010-08-03 04:27:21'),(23040,'4/5','',49.95,1401,'2010-07-30 15:43:57','2010-08-03 04:32:36'),(23041,'5/6','',49.95,1401,'2010-07-30 15:43:57','2010-08-03 04:32:37'),(23042,'7/8','',49.95,1401,'2010-07-30 15:43:57','2010-08-03 04:32:37'),(23043,'9/10','',49.95,1401,'2010-07-30 15:43:57','2010-08-03 04:32:37'),(23044,'11/12','',49.95,1401,'2010-07-30 15:43:57','2010-08-03 04:32:37'),(23045,'13','',59.95,1401,'2010-07-30 15:43:57','2010-08-03 04:32:37'),(23046,'AS','',59.95,1401,'2010-07-30 15:43:58','2010-08-03 04:32:37'),(23047,'AM','',59.95,1401,'2010-07-30 15:43:58','2010-08-03 04:32:37'),(23048,'AL','',59.95,1401,'2010-07-30 15:43:58','2010-08-03 04:32:37'),(23049,'AXL','',59.95,1401,'2010-07-30 15:43:58','2010-08-03 04:32:36'),(23050,'','',NULL,1401,'2010-07-30 15:43:58','2010-08-03 04:32:36'),(23051,'3/4','',29.95,1402,'2010-07-30 15:43:58','2010-08-03 04:38:16'),(23052,'5/6','',29.95,1402,'2010-07-30 15:43:58','2010-08-03 04:38:16'),(23053,'7/8','',29.95,1402,'2010-07-30 15:43:58','2010-08-03 04:38:16'),(23054,'9/10','',29.95,1402,'2010-07-30 15:43:58','2010-08-03 04:38:16'),(23055,'11/12','',29.95,1402,'2010-07-30 15:43:58','2010-08-03 04:38:16'),(23056,'13','',29.95,1402,'2010-07-30 15:43:58','2010-08-03 04:38:16'),(23057,'2/3','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:33'),(23058,'4/5','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:33'),(23059,'6/7','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:33'),(23060,'7/8','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:32'),(23061,'9/10','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:32'),(23062,'11/12','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:32'),(23063,'13','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:32'),(23064,'AS','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:33'),(23065,'AM','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:33'),(23066,'AL','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:33'),(23067,'AXL','',49.95,1403,'2010-07-30 15:43:59','2010-08-03 04:43:33'),(23068,'3/4','',39.95,1404,'2010-07-30 15:44:00','2010-08-03 04:45:59'),(23069,'5/6','',39.95,1404,'2010-07-30 15:44:00','2010-08-03 04:45:59'),(23070,'7/8','',39.95,1404,'2010-07-30 15:44:00','2010-08-03 04:45:59'),(23071,'9/10','',39.95,1404,'2010-07-30 15:44:00','2010-08-03 04:45:59'),(23072,'11/12','',39.95,1404,'2010-07-30 15:44:00','2010-08-03 04:45:59'),(23073,'13','',39.95,1404,'2010-07-30 15:44:00','2010-08-03 04:45:59'),(23074,'YS','',18.95,1405,'2010-07-30 15:44:01','2010-08-03 04:52:36'),(23075,'YM','',18.95,1405,'2010-07-30 15:44:01','2010-08-03 04:52:36'),(23076,'YL','',18.95,1405,'2010-07-30 15:44:01','2010-08-03 04:52:36'),(23077,'AS','',18.95,1405,'2010-07-30 15:44:01','2010-08-03 04:52:36'),(23078,'AM','',18.95,1405,'2010-07-30 15:44:01','2010-08-03 04:52:36'),(23079,'AL','',18.95,1405,'2010-07-30 15:44:01','2010-08-03 04:52:36'),(23080,'6-81/2','',12.95,1406,'2010-07-30 15:44:01','2010-08-03 04:56:49'),(23081,'9-12','',12.95,1406,'2010-07-30 15:44:01','2010-08-03 04:56:49'),(23082,'121/2 - 31/2','',12.95,1406,'2010-07-30 15:44:01','2010-08-03 04:56:49'),(23083,'6-81/2','',11.95,1407,'2010-07-30 15:44:02','2010-08-03 04:59:33'),(23084,'9-11','',11.95,1407,'2010-07-30 15:44:02','2010-08-03 04:59:33'),(23085,'121/2-31/2','',11.95,1407,'2010-07-30 15:44:02','2010-08-03 04:59:33'),(23086,'4-6','',11.95,1407,'2010-07-30 15:44:02','2010-08-03 04:59:33'),(23087,'6-81/2','',11.95,1408,'2010-07-30 15:44:03','2010-08-03 05:01:15'),(23088,'9-11','',11.95,1408,'2010-07-30 15:44:03','2010-08-03 05:01:15'),(23089,'121/2- 31/2','',11.95,1408,'2010-07-30 15:44:03','2010-08-03 05:01:15'),(23090,'4-6','',11.95,1408,'2010-07-30 15:44:03','2010-08-03 05:01:16'),(23091,'6-81/2','',12.95,1409,'2010-07-30 15:44:03','2010-08-03 05:02:49'),(23092,'9-11','',12.95,1409,'2010-07-30 15:44:03','2010-08-03 05:02:49'),(23093,'121/2-31/2','',12.95,1409,'2010-07-30 15:44:03','2010-08-03 05:02:48'),(23094,'4-6','',12.95,1409,'2010-07-30 15:44:03','2010-08-03 05:02:49'),(23095,'7-81/2','',6.5,1410,'2010-07-30 15:44:04','2010-08-03 05:08:48'),(23096,'8-91/2','',6.5,1410,'2010-07-30 15:44:04','2010-08-03 05:08:48'),(23097,'9-11','',6.5,1410,'2010-07-30 15:44:04','2010-08-03 05:08:48'),(23098,'10-13','',6.5,1410,'2010-07-30 15:44:04','2010-08-03 05:08:48'),(23099,'7-8/12','',4.95,1411,'2010-07-30 15:44:04','2010-08-03 05:12:49'),(23100,'8-91/2','',4.95,1411,'2010-07-30 15:44:04','2010-08-03 05:12:49'),(23101,'9-11','',4.95,1411,'2010-07-30 15:44:04','2010-08-03 05:12:49'),(23102,'10-13','',4.95,1411,'2010-07-30 15:44:04','2010-08-03 05:12:49'),(23103,'7-8/12','',4.95,1412,'2010-07-30 15:44:05','2010-08-03 05:15:20'),(23104,'8-9/12','',4.95,1412,'2010-07-30 15:44:05','2010-08-03 05:15:20'),(23105,'9-11','',4.95,1412,'2010-07-30 15:44:05','2010-08-03 05:15:59'),(23106,'10-13','',4.95,1412,'2010-07-30 15:44:05','2010-08-03 05:15:59'),(23107,'50',NULL,14.95,1414,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23108,'32',NULL,14.95,1414,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23109,'32',NULL,14.95,1414,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23110,'32',NULL,14.95,1414,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23111,'32',NULL,14.95,1414,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23112,'32',NULL,14.95,1414,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23113,'65',NULL,19.95,1415,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23114,'32',NULL,19.95,1415,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23115,'32',NULL,19.95,1415,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23116,'32',NULL,19.95,1415,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23117,'32',NULL,19.95,1415,'2010-07-30 15:46:33','2010-07-30 15:46:33'),(23118,'50',NULL,7.95,1416,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23119,'32',NULL,7.95,1416,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23120,'32',NULL,7.95,1416,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23121,'32',NULL,7.95,1416,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23122,'32',NULL,7.95,1416,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23123,'32',NULL,7.95,1416,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23124,'50',NULL,27.95,1417,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23125,'32',NULL,27.95,1417,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23126,'32',NULL,27.95,1417,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23127,'32',NULL,27.95,1417,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23128,'32',NULL,27.95,1417,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23129,'32',NULL,27.95,1417,'2010-07-30 15:46:34','2010-07-30 15:46:34'),(23130,'79',NULL,4.95,1418,'2010-07-30 15:46:35','2010-07-30 15:46:35'),(23131,'79',NULL,7.95,1419,'2010-07-30 15:46:35','2010-07-30 15:46:35'),(23132,'79',NULL,7.95,1420,'2010-07-30 15:46:36','2010-07-30 15:46:36'),(23133,'79',NULL,7.95,1421,'2010-07-30 15:46:37','2010-07-30 15:46:37'),(23134,'79',NULL,5.95,1422,'2010-07-30 15:46:37','2010-07-30 15:46:37'),(23135,'111',NULL,12.95,1423,'2010-07-30 15:46:38','2010-07-30 15:46:38'),(23136,'111',NULL,14.95,1424,'2010-07-30 15:46:38','2010-07-30 15:46:38'),(23137,'111',NULL,12.95,1425,'2010-07-30 15:46:38','2010-07-30 15:46:38'),(23138,'111',NULL,16.95,1426,'2010-07-30 15:46:39','2010-07-30 15:46:39'),(23139,'79',NULL,10.95,1427,'2010-07-30 15:46:39','2010-07-30 15:46:39'),(23140,'79',NULL,7.95,1428,'2010-07-30 15:46:39','2010-07-30 15:46:39'),(23141,'68',NULL,12.95,1429,'2010-07-30 15:46:40','2010-07-30 15:46:40'),(23142,'68',NULL,19.95,1429,'2010-07-30 15:46:40','2010-07-30 15:46:40'),(23143,'50','',69.95,1430,'2010-07-30 15:46:40','2010-08-03 16:35:10'),(23144,'32','',69.95,1430,'2010-07-30 15:46:40','2010-08-03 16:35:10'),(23145,'32','',69.95,1430,'2010-07-30 15:46:40','2010-08-03 16:35:10'),(23146,'32','',69.95,1430,'2010-07-30 15:46:40','2010-08-03 16:35:10'),(23147,'32','',69.95,1430,'2010-07-30 15:46:40','2010-08-03 16:35:10'),(23148,'32','',69.95,1430,'2010-07-30 15:46:40','2010-08-03 16:35:10'),(23149,'32','',69.95,1430,'2010-07-30 15:46:40','2010-08-03 16:35:10'),(23150,'32','',69.95,1430,'2010-07-30 15:46:40','2010-08-03 16:35:10'),(23151,'32','',69.95,1430,'2010-07-30 15:46:40','2010-08-03 16:35:10'),(23152,'32','',69.95,1430,'2010-07-30 15:46:40','2010-08-03 16:35:10'),(23153,'51','',74.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23154,'32','',74.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23155,'32','',74.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23156,'32','',74.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23157,'52','',86.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23158,'32','',86.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23159,'32','',86.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23160,'32','',86.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23161,'32','',86.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23162,'32','',86.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23163,'32','',86.95,1431,'2010-07-30 15:46:40','2010-08-03 16:34:52'),(23164,'51','',69.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23165,'32','',69.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23166,'32','',69.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23167,'32','',69.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23168,'51','',74.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23169,'32','',74.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23170,'32','',74.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23171,'32','',74.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23172,'52','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23173,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23174,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23175,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23176,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23177,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23178,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23179,'51','',69.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23180,'32','',69.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23181,'32','',69.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23182,'32','',69.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23183,'32','',69.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23184,'32','',69.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23185,'51','',74.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23186,'32','',74.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23187,'32','',74.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23188,'32','',74.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23189,'52','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23190,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23191,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:03'),(23192,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23193,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23194,'32','',86.95,1432,'2010-07-30 15:46:40','2010-08-03 16:34:02'),(23195,'50','',69.95,1433,'2010-07-30 15:46:40','2010-08-03 16:33:38'),(23196,'32','',69.95,1433,'2010-07-30 15:46:40','2010-08-03 16:33:38'),(23197,'32','',69.95,1433,'2010-07-30 15:46:40','2010-08-03 16:33:38'),(23198,'32','',69.95,1433,'2010-07-30 15:46:40','2010-08-03 16:33:38'),(23199,'32','',69.95,1433,'2010-07-30 15:46:40','2010-08-03 16:33:38'),(23200,'32','',69.95,1433,'2010-07-30 15:46:40','2010-08-03 16:33:38'),(23201,'32','',69.95,1433,'2010-07-30 15:46:40','2010-08-03 16:33:38'),(23202,'32','',69.95,1433,'2010-07-30 15:46:41','2010-08-03 16:33:38'),(23203,'32','',69.95,1433,'2010-07-30 15:46:41','2010-08-03 16:33:38'),(23204,'32','',69.95,1433,'2010-07-30 15:46:41','2010-08-03 16:33:38'),(23205,'51','',69.95,1434,'2010-07-30 15:46:41','2010-08-03 16:28:36'),(23206,'32','',69.95,1434,'2010-07-30 15:46:41','2010-08-03 16:28:36'),(23207,'32','',69.95,1434,'2010-07-30 15:46:41','2010-08-03 16:28:36'),(23208,'32','',69.95,1434,'2010-07-30 15:46:41','2010-08-03 16:28:36'),(23209,'32','',69.95,1434,'2010-07-30 15:46:41','2010-08-03 16:28:36'),(23210,'32','',69.95,1434,'2010-07-30 15:46:41','2010-08-03 16:28:36'),(23221,NULL,NULL,NULL,NULL,'2010-08-03 16:40:59','2010-08-03 16:40:59'),(23222,NULL,NULL,NULL,NULL,'2010-08-03 16:41:07','2010-08-03 16:41:07'),(23223,NULL,NULL,NULL,NULL,'2010-08-03 16:43:39','2010-08-03 16:43:39'),(23224,NULL,NULL,NULL,NULL,'2010-08-03 16:43:41','2010-08-03 16:43:41'),(23225,NULL,NULL,NULL,NULL,'2010-08-03 16:43:41','2010-08-03 16:43:41'),(23226,NULL,NULL,NULL,NULL,'2010-08-03 16:43:41','2010-08-03 16:43:41'),(23227,NULL,NULL,NULL,NULL,'2010-08-03 16:43:41','2010-08-03 16:43:41'),(23228,NULL,NULL,NULL,NULL,'2010-08-03 16:43:41','2010-08-03 16:43:41'),(23229,NULL,NULL,NULL,NULL,'2010-08-03 16:43:41','2010-08-03 16:43:41'),(23230,'M','',110.2,1435,'2010-08-03 16:54:59','2010-08-03 16:55:24'),(23231,'M','',107.8,1436,'2010-08-03 16:58:51','2010-08-03 16:59:00'); /*!40000 ALTER TABLE `productsizes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `schema_migrations` -- DROP TABLE IF EXISTS `schema_migrations`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `schema_migrations` ( `version` varchar(255) NOT NULL, UNIQUE KEY `unique_schema_migrations` (`version`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `schema_migrations` -- LOCK TABLES `schema_migrations` WRITE; /*!40000 ALTER TABLE `schema_migrations` DISABLE KEYS */; INSERT INTO `schema_migrations` VALUES ('20100709173539'),('20100709173549'),('20100709173604'),('20100709174256'),('20100712140858'),('20100714191821'),('20100725024529'),('20100725025914'),('20100725031434'),('20100725031446'),('20100725031455'),('20100725031511'),('20100725031523'),('20100726194111'),('20100726194700'),('20100730004104'),('20100803000015'); /*!40000 ALTER TABLE `schema_migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `schools` -- DROP TABLE IF EXISTS `schools`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `schools` ( `id` int(11) NOT NULL auto_increment, `school_name` varchar(255) default NULL, `address` varchar(255) default NULL, `phone` varchar(255) default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=204 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `schools` -- LOCK TABLES `schools` WRITE; /*!40000 ALTER TABLE `schools` DISABLE KEYS */; INSERT INTO `schools` VALUES (1,'All Saints (elementary)','1435 Royal York Rd. M9P 3A7','393-5290','2010-07-25 03:06:21','2010-07-25 03:06:21'),(2,'Annunciation (elementary)','65 Avonwick Gate M3A 2M8','393-5299','2010-07-25 03:06:21','2010-07-25 03:06:21'),(3,'Archbishop Romero (secondary)','99 Humber Blvd. M6N 2H4','393-5555','2010-07-25 03:06:21','2010-07-25 03:06:21'),(4,'St. Agatha (elementary)','49 Cathedral Bluffs Dr. M1M 2T6','393-5302','2010-07-25 03:06:21','2010-07-25 03:06:21'),(5,'St. Agnes (elementary)','280 Otonabee Ave. M2M 2T2','393-5345','2010-07-25 03:06:21','2010-07-25 03:06:21'),(6,'St. Aidan (elementary)','3521 Finch Ave. E. M1W 2S2','393-5350','2010-07-25 03:06:21','2010-07-25 03:06:21'),(7,'St. Albert (elementary)','1125 Midland Ave. M1K 4H2','393-5335','2010-07-25 03:06:21','2010-07-25 03:06:21'),(8,'St. Alphonsus (elementary)','60 Atlas Ave. M6C 3N9','393-5326','2010-07-25 03:06:21','2010-07-25 03:06:21'),(9,'St. Ambrose (elementary)','20 Coules Crt. M8W 2N9','393-5259','2010-07-25 03:06:21','2010-07-25 03:06:21'),(10,'St. Andrew (elementary)','2533 Kipling Ave. M9V 3A8','393-5295','2010-07-25 03:06:21','2010-07-25 03:06:21'),(11,'St. Angela (elementary)','220 Mount Olive Dr. M9V 3Z5','393-5361','2010-07-25 03:06:21','2010-07-25 03:06:21'),(12,'St. Anselm (elementary)','182 Bessborough Dr. M4G 3J9','393-5243','2010-07-25 03:06:21','2010-07-25 03:06:21'),(13,'St. Anthony (elementary)','130 Shanly St. M6H 1L9','393-5210','2010-07-25 03:06:21','2010-07-25 03:06:21'),(14,'St. Antoine Daniel (elementary)','160 Finch Ave. W. M2N 2J2','393-5339','2010-07-25 03:06:21','2010-07-25 03:06:21'),(15,'St. Augustine (elementary)','98 Shoreham Dr. M3N 1S9','393-5328','2010-07-25 03:06:21','2010-07-25 03:06:21'),(16,'Bishop Allen (secondary)','721 Royal York Rd. M8Y 2T3','393-5549','2010-07-25 03:06:21','2010-07-25 03:06:21'),(17,'Bishop Marrocco/Thomas Merton (secondary)','1515 Bloor St. W. M6P 1A3','393-5545','2010-07-25 03:06:21','2010-07-25 03:06:21'),(18,'Blessed John XXIII (elementary)','175 Grenoble Dr. M3C 3E7','393-5348','2010-07-25 03:06:21','2010-07-25 03:06:21'),(19,'Blessed Kateri Tekakwitha (elementary)','70 Margaret Ave. M2J 4C5','393-5393','2010-07-25 03:06:21','2010-07-25 03:06:21'),(20,'Blessed Margherita of Cittá di Castello (elementary)','108 Spenvalley Dr. M3L 1Z5','393-5409','2010-07-25 03:06:21','2010-07-25 03:06:21'),(21,'Blessed Mother Teresa (secondary)','40 Sewells Rd. M1B 3G5','393-5538','2010-07-25 03:06:21','2010-07-25 03:06:21'),(22,'Blessed Sacrament (elementary)','24 Bedford Park Ave. M5M 1H9','393-5226','2010-07-25 03:06:21','2010-07-25 03:06:21'),(23,'Blessed Trinity (elementary)','3205 Bayview Ave. M2K 1G3','393-5289','2010-07-25 03:06:21','2010-07-25 03:06:21'),(24,'Brebeuf (secondary)','211 Steeles Ave. E. M2M 3Y6','393-5508','2010-07-25 03:06:21','2010-07-25 03:06:21'),(25,'St. Barbara (elementary)','25 Janray Dr. M1G 1Y2','393-5274','2010-07-25 03:06:21','2010-07-25 03:06:21'),(26,'St. Barnabas (elementary)','30 Washburn Way M1B 1H3','393-5351','2010-07-25 03:06:21','2010-07-25 03:06:21'),(27,'St. Bartholomew (elementary)','51 Heather Rd. M1S 2E2','393-5334','2010-07-25 03:06:21','2010-07-25 03:06:21'),(28,'St. Basil-the-Great (secondary)','20 Starview Lane M9M 3B2','393-5513','2010-07-25 03:06:21','2010-07-25 03:06:21'),(29,'St. Bede (elementary)','521 Sewells Rd. M1B 5H3','393-5425','2010-07-25 03:06:21','2010-07-25 03:06:21'),(30,'St. Benedict (elementary)','2202 Kipling Ave. M9W 4K9','393-5267','2010-07-25 03:06:21','2010-07-25 03:06:21'),(31,'St. Bernard (elementary)','12 Duckworth St. M6M 4W4','393-5261','2010-07-25 03:06:21','2010-07-25 03:06:21'),(32,'St. Bonaventure (elementary)','1340 Leslie St. M3C 2K9','393-5263','2010-07-25 03:06:21','2010-07-25 03:06:21'),(33,'St. Boniface (elementary)','20 Markanna Dr. M1M 2J1','393-5277','2010-07-25 03:06:21','2010-07-25 03:06:21'),(34,'St. Brendan (elementary)','186 Centennial Rd. M1C 1Z9','393-5359','2010-07-25 03:06:21','2010-07-25 03:06:21'),(35,'St. Brigid (elementary)','50 Woodmount Ave. M4C 3X9','393-5235','2010-07-25 03:06:21','2010-07-25 03:06:21'),(36,'St. Bruno (elementary)','402 Melita Cres. M6G 3X6','393-5376','2010-07-25 03:06:21','2010-07-25 03:06:21'),(37,'Canadian Martyrs (elementary)','520 Plains Rd. M4C 2Z1','393-5251','2010-07-25 03:06:21','2010-07-25 03:06:21'),(38,'Cardinal Carter (secondary)','36 Greenfield Ave. M2N 3C8','393-5556','2010-07-25 03:06:21','2010-07-25 03:06:21'),(39,'Cardinal Leger (elementary)','600 Morrish Rd. M1C 4Y1','393-5419','2010-07-25 03:06:21','2010-07-25 03:06:21'),(40,'Cardinal Newman (secondary)','100 Brimley Rd. S. M1M 3X4','393-5519','2010-07-25 03:06:21','2010-07-25 03:06:21'),(41,'Chaminade (secondary)','490 Queen\'s Dr. M6L 1M8','393-5509','2010-07-25 03:06:21','2010-07-25 03:06:21'),(42,'Christ the King (elementary)','3672 Lake Shore Blvd. W. M8W 1N6','393-5257','2010-07-25 03:06:21','2010-07-25 03:06:21'),(43,'St. Catherine (elementary)','30 Roanoke Rd. M3A 1E9','393-5316','2010-07-25 03:06:21','2010-07-25 03:06:21'),(44,'St. Cecilia (elementary)','355 Annette St. M6P 1R3','393-5218','2010-07-25 03:06:21','2010-07-25 03:06:21'),(45,'St. Charles (elementary)','50 Claver Ave. M6B 2W1','393-5250','2010-07-25 03:06:21','2010-07-25 03:06:21'),(46,'St. Charles Garnier (elementary)','20 Stong Crt. M3N 2X9','393-5363','2010-07-25 03:06:21','2010-07-25 03:06:21'),(47,'St. Clare (elementary)','124 Northcliffe Blvd. M6E 3K4','393-5214','2010-07-25 03:06:21','2010-07-25 03:06:21'),(48,'St. Clement (elementary)','4319 Bloor St. W. M9C 2A2','393-5307','2010-07-25 03:06:21','2010-07-25 03:06:21'),(49,'St. Columba (elementary)','10 John Tabor Trail M1B 1M9','393-5380','2010-07-25 03:06:21','2010-07-25 03:06:21'),(50,'St. Conrad (elementary)','610 Roding St. M3M 2A5','393-5396','2010-07-25 03:06:21','2010-07-25 03:06:21'),(51,'Sts. Cosmas and Damian (elementary)','111 Danesbury Ave. M6B 3L3','393-5398','2010-07-25 03:06:21','2010-07-25 03:06:21'),(52,'St. Cyril (elementary)','18 Kempford Blvd. M2N 2B9','393-5270','2010-07-25 03:06:21','2010-07-25 03:06:21'),(53,'Dante Alighieri (secondary)','60 Playfair Ave. M6B 2P9 393-5522',NULL,'2010-07-25 03:06:21','2010-07-25 03:06:21'),(54,'D\'Arcy McGee (elementary)','20 Bansley Ave. M6E 2A2','393-5318','2010-07-25 03:06:21','2010-07-25 03:06:21'),(55,'Don Bosco (secondary)','2 St. Andrew\'s Blvd. M9R 1V8','393-5525','2010-07-25 03:06:21','2010-07-25 03:06:21'),(56,'St. Demetrius (elementary)','125 La Rose Ave. M9P 1A6','393-5384','2010-07-25 03:06:21','2010-07-25 03:06:21'),(57,'St. Denis (elementary)','67 Balsam Ave. M4E 3B8','393-5310','2010-07-25 03:06:21','2010-07-25 03:06:21'),(58,'St. Dominic Savio (elementary)','50 Tideswell Blvd. M1B 5X3','393-5467','2010-07-25 03:06:21','2010-07-25 03:06:21'),(59,'St. Dorothy (elementary)','155 John Garland Blvd. M9V 1N7','393-5341','2010-07-25 03:06:21','2010-07-25 03:06:21'),(60,'St. Dunstan (elementary)','14 Pharmacy Ave. M1L 3E4','393-5241','2010-07-25 03:06:21','2010-07-25 03:06:21'),(61,'Epiphany of Our Lord (elementary)','3150 Pharmacy Ave. M1W 1J5','393-5378','2010-07-25 03:06:21','2010-07-25 03:06:21'),(62,'St. Edmund Campion (elementary)','30 Highcastle Rd. M1E 4N1','393-5356','2010-07-25 03:06:21','2010-07-25 03:06:21'),(63,'St. Edward (elementary)','21 Eddfield Ave. M2N 2M5','393-5255','2010-07-25 03:06:21','2010-07-25 03:06:21'),(64,'St. Elizabeth (elementary)','5 Redcar Ave. M9B 1J8','393-5278','2010-07-25 03:06:21','2010-07-25 03:06:21'),(65,'St. Elizabeth Seton (elementary)','25 Havenview Rd. M1S 3A4','393-5386','2010-07-25 03:06:21','2010-07-25 03:06:21'),(66,'St. Eugene (elementary)','30 Westroyal Rd. M9P 2C3','393-5337','2010-07-25 03:06:21','2010-07-25 03:06:21'),(67,'Father Henry Carr (secondary)','1760 Martin Grove M9V 3S4','393-5521','2010-07-25 03:06:21','2010-07-25 03:06:21'),(68,'Father John Redmond (secondary)','28 Colonel Samuel Smith Park Dr. M8V 4B7','393-5540','2010-07-25 03:06:21','2010-07-25 03:06:21'),(69,'Father Serra (elementary)','111 Sun Row Dr. M9P 3J3','393-5391','2010-07-25 03:06:21','2010-07-25 03:06:21'),(70,'Francis Libermann (secondary)','4640 Finch Ave. E. M1S 4G2','393-5524','2010-07-25 03:06:21','2010-07-25 03:06:21'),(71,'St. Fidelis (elementary)','9 Bannerman St. M6L 2S5','393-5358','2010-07-25 03:06:21','2010-07-25 03:06:21'),(72,'St. Florence (elementary)','101 Murison Blvd. M1B 2L6','393-5385','2010-07-25 03:06:21','2010-07-25 03:06:21'),(73,'St. Francis de Sales (elementary)','333 Firgrove Cres. M3N 1K9','393-5366','2010-07-25 03:06:21','2010-07-25 03:06:21'),(74,'St. Francis of Assisi (elementary)','80 Clinton Street M6G 2Y3','393-5206','2010-07-25 03:06:21','2010-07-25 03:06:21'),(75,'St. Francis Xavier (elementary)','53 Gracefield Ave. M6L 1L3','393-5271','2010-07-25 03:06:21','2010-07-25 03:06:21'),(76,'St. Gabriel (elementary)','396 Spring Garden Ave. M2N 3H5','393-5256','2010-07-25 03:06:21','2010-07-25 03:06:21'),(77,'St. Gabriel Lalemant (elementary)','160 Crow Trail M1B 1Y3','393-5377','2010-07-25 03:06:21','2010-07-25 03:06:21'),(78,'St. Gerald (elementary)','200 Old Sheppard Ave. M2J 3L9','393-5319','2010-07-25 03:06:21','2010-07-25 03:06:21'),(79,'St. Gerard Majella (elementary)','35 Heavitree Dr. M3L 1K5','393-5346','2010-07-25 03:06:21','2010-07-25 03:06:21'),(80,'St. Gregory (elementary)','126 Rathburn Rd. M9B 2K6','393-5262','2010-07-25 03:06:21','2010-07-25 03:06:21'),(81,'Holy Angels (elementary)','65 Jutland Rd. M8Z 2G6','393-5329','2010-07-25 03:06:21','2010-07-25 03:06:21'),(82,'Holy Child (elementary)','850 Humberwood Blvd. M9W 7A6','393-5433','2010-07-25 03:06:21','2010-07-25 03:06:21'),(83,'Holy Cross (elementary)','299A Donlands Ave. M4J 3R7','393-5242','2010-07-25 03:06:21','2010-07-25 03:06:21'),(84,'Holy Family (elementary)','141 Close Ave. M6K 2V6','393-5212','2010-07-25 03:06:21','2010-07-25 03:06:21'),(85,'Holy Name (elementary)','690 Carlaw Ave. M4K 3K9','393-5215','2010-07-25 03:06:21','2010-07-25 03:06:21'),(86,'Holy Redeemer (elementary)','111 Aspenwood Dr. M2H 2G2','393-5353','2010-07-25 03:06:21','2010-07-25 03:06:21'),(87,'Holy Rosary (elementary)','308 Tweedsmuir Ave. M5P 2Y1','393-5225','2010-07-25 03:06:21','2010-07-25 03:06:21'),(88,'Holy Spirit (elementary)','3530 Sheppard Ave. E. M1T 3K7','393-5282','2010-07-25 03:06:21','2010-07-25 03:06:21'),(89,'St. Helen (elementary)','1196 College St. M6H 1B8','393-5208','2010-07-25 03:06:21','2010-07-25 03:06:21'),(90,'St. Henry (elementary)','100 Bamburgh Circ. M1W 3R3','393-5395','2010-07-25 03:06:21','2010-07-25 03:06:21'),(91,'Immaculate Conception (elementary)','23 Comay Rd. M6M 2K9','393-5281','2010-07-25 03:06:21','2010-07-25 03:06:21'),(92,'Immaculate Heart of Mary (elementary)','101 Birchmount Rd. M1N 3J7','393-5272','2010-07-25 03:06:21','2010-07-25 03:06:21'),(93,'St. Ignatius of Loyola (elementary)','2350 McCowan Rd. M1S 4B4','393-5365','2010-07-25 03:06:21','2010-07-25 03:06:21'),(94,'St. Isaac Jogues (elementary)','1330 York Mills Rd. M3A 1Z8','393-5315','2010-07-25 03:06:21','2010-07-25 03:06:21'),(95,'James Cardinal McGuigan (secondary)','1440 Finch Ave. W. M3J 3G3','393-5527','2010-07-25 03:06:21','2010-07-25 03:06:21'),(96,'James Culnan (elementary)','605 Willard Ave. M6S 3S1','393-5325','2010-07-25 03:06:22','2010-07-25 03:06:22'),(97,'Jean Vanier (secondary)','959 Midland Ave. M1K 4G4','393-5554','2010-07-25 03:06:22','2010-07-25 03:06:22'),(98,'Josyf Cardinal Slipyj (elementary)','35 West Deane Park Dr. M9B 2R5','393-5413','2010-07-25 03:06:22','2010-07-25 03:06:22'),(99,'St. James (elementary)','230 Humbercrest Blvd. M6S 4L3','393-5275','2010-07-25 03:06:22','2010-07-25 03:06:22'),(100,'St. Jane Frances (elementary)','2745 Jane St. M3L 2E8','393-5296','2010-07-25 03:06:22','2010-07-25 03:06:22'),(101,'St. Jean de Brebeuf (elementary)','101 Dean Park Rd. M1B 2X2','393-5394','2010-07-25 03:06:22','2010-07-25 03:06:22'),(102,'St. Jerome (elementary)','111 Sharpecroft Blvd. M3J 1P5','393-5294','2010-07-25 03:06:22','2010-07-25 03:06:22'),(103,'St. Joachim (elementary)','3395 St. Clair Ave. E. M1L 1W3','393-5292','2010-07-25 03:06:22','2010-07-25 03:06:22'),(104,'St. John (elementary)','780 Kingston Rd. M4E 1R7','393-5220','2010-07-25 03:06:22','2010-07-25 03:06:22'),(105,'St. John Bosco (elementary kindergarten-grade 6)','75 Holmesdale Rd. M6E 1Y2','393-5305','2010-07-25 03:06:22','2010-07-25 03:06:22'),(106,'St. John the Evangelist (elementary)','23 George St. M9N 2B4','393-5244','2010-07-25 03:06:22','2010-07-25 03:06:22'),(107,'St. John Vianney (elementary)','105 Thistle Down Blvd. M9V 1J5','393-5392','2010-07-25 03:06:22','2010-07-25 03:06:22'),(108,'St. Josaphat (elementary)','55 Pelham Ave. M6N 1A5','393-5291','2010-07-25 03:06:22','2010-07-25 03:06:22'),(109,'St. Joseph (elementary)','176 Leslie St. M4M 3C7','393-5209','2010-07-25 03:06:22','2010-07-25 03:06:22'),(110,'St. Joseph\'s College (secondary)','74 Wellesley St. W. M5S 1C4','393-5514','2010-07-25 03:06:22','2010-07-25 03:06:22'),(111,'St. Joseph\'s Morrow Park (secondary)','3379 Bayview Ave. M2M 3S4','393-5516','2010-07-25 03:06:22','2010-07-25 03:06:22'),(112,'St. Jude (elementary)','3251 Weston Rd. M9M 2T9','393-5279','2010-07-25 03:06:22','2010-07-25 03:06:22'),(113,'St. Kevin (elementary)','15 Murray Glen Dr. M1R 3J6','393-5300','2010-07-25 03:06:22','2010-07-25 03:06:22'),(114,'Loretto Abbey (secondary)','101 Mason Blvd. M5M 3E2','393-5510','2010-07-25 03:06:22','2010-07-25 03:06:22'),(115,'Loretto College (secondary)','151 Rosemount Ave. M6H 2N1','393-5511','2010-07-25 03:06:22','2010-07-25 03:06:22'),(116,'St. Lawrence (elementary)','2216 Lawrence Ave. E. M1P 2P9','393-5264','2010-07-25 03:06:22','2010-07-25 03:06:22'),(117,'St. Leo (elementary)','165 Stanley Ave. M8V 1P1','393-5333','2010-07-25 03:06:22','2010-07-25 03:06:22'),(118,'St. Louis (elementary)','11 Morgan Ave. M8Y 2Z7','393-5331','2010-07-25 03:06:22','2010-07-25 03:06:22'),(119,'St. Luigi (elementary)','2 Ruskin Ave. M6P 3P8','393-5370','2010-07-25 03:06:22','2010-07-25 03:06:22'),(120,'St. Luke (elementary)','319 Ossington Ave. M6J 3A6','393-5347','2010-07-25 03:06:22','2010-07-25 03:06:22'),(121,'Madonna (secondary)','20 Dubray Ave. M3K 1V5','393-5506','2010-07-25 03:06:22','2010-07-25 03:06:22'),(122,'Marshall McLuhan (secondary)','1107 Avenue Road M5N 3B1','393-5561','2010-07-25 03:06:22','2010-07-25 03:06:22'),(123,'Mary Ward (secondary)','3200 Kennedy Road M1V 3S8','393-5544','2010-07-25 03:06:22','2010-07-25 03:06:22'),(124,'Michael Power/St. Joseph (secondary)','105 Eringate Dr. M9C 3Z7','393-5529','2010-07-25 03:06:22','2010-07-25 03:06:22'),(125,'Mother Cabrini (elementary)','720 Renforth Dr. M9C 2N9','393-5340','2010-07-25 03:06:22','2010-07-25 03:06:22'),(126,'Msgr. Fraser (Northwest Campus) (secondary)','45 Norfinch Dr. M3N 1W8','393-5558','2010-07-25 03:06:22','2010-07-25 03:06:22'),(127,'Msgr. Fraser (Midland Campus) (secondary)','2900 Midland Avenue M1K 3K8','393-5532','2010-07-25 03:06:22','2010-07-25 03:06:22'),(128,'Msgr. Fraser (Isabella Campus) (secondary)','146 Isabella St. M4Y 1P6','393-5533','2010-07-25 03:06:22','2010-07-25 03:06:22'),(129,'Msgr. John Corrigan (elementary)','100 Royalcrest Rd. M9V 5B4','393-5399','2010-07-25 03:06:22','2010-07-25 03:06:22'),(130,'Msgr. Percy Johnson (secondary)','2170 Kipling Ave. M9W 4K9','393-5535','2010-07-25 03:06:22','2010-07-25 03:06:22'),(131,'St. Malachy (elementary)','80 Bennett Rd. M1E 3Y3','393-5336','2010-07-25 03:06:22','2010-07-25 03:06:22'),(132,'St. Marcellus (elementary)','15 Denfield St. M9R 3H2','393-5311','2010-07-25 03:06:22','2010-07-25 03:06:22'),(133,'St. Margaret (elementary)','85 Carmichael Ave. M5M 2X1','393-5249','2010-07-25 03:06:22','2010-07-25 03:06:22'),(134,'St. Marguerite Bourgeoys (elementary)','75 Alexmuir Blvd. M1V 1H6','393-5381','2010-07-25 03:06:22','2010-07-25 03:06:22'),(135,'St. Maria Goretti (elementary)','21 Kenmark Blvd. M1K 3N8','393-5260','2010-07-25 03:06:22','2010-07-25 03:06:22'),(136,'St. Mark (elementary)','45 Cloverhill Rd. M8Y 1T4','393-5332','2010-07-25 03:06:22','2010-07-25 03:06:22'),(137,'St. Martha (elementary)','1865 Sheppard Ave. W. M3L 1Y5','393-5344','2010-07-25 03:06:22','2010-07-25 03:06:22'),(138,'St. Martin de Porres (elementary)','230 Morningside Ave. M1E 3E1','393-5286','2010-07-25 03:06:22','2010-07-25 03:06:22'),(139,'St. Mary (elementary)','20 Portugal Square M6J 3P2','393-5205','2010-07-25 03:06:22','2010-07-25 03:06:22'),(140,'St. Mary\'s (secondary)','66 Dufferin Park Ave. M6H 1J6','393-5528','2010-07-25 03:06:22','2010-07-25 03:06:22'),(141,'St. Mary of the Angels (elementary)','1477 Dufferin St. M6H 4C7','393-5228','2010-07-25 03:06:22','2010-07-25 03:06:22'),(142,'St. Matthew (elementary)','18 Lavender Rd. M6N 2B5','393-5240','2010-07-25 03:06:22','2010-07-25 03:06:22'),(143,'St. Matthias (elementary)','101 Van Horne Ave. M2J 2S8','393-5357','2010-07-25 03:06:22','2010-07-25 03:06:22'),(144,'St. Maurice (elementary)','45 Kingsview Blvd. M9R 1T7','393-5379','2010-07-25 03:06:22','2010-07-25 03:06:22'),(145,'St. Maximilian Kolbe (elementary)','100 Fundy Bay Blvd. M1W 3G1','393-5412','2010-07-25 03:06:22','2010-07-25 03:06:22'),(146,'St. Michael (elementary)','50 George St. S. M5A 4B2','393-5387','2010-07-25 03:06:22','2010-07-25 03:06:22'),(147,'St. Michael \'s Choir (elementary & secondary)','67-69 Bond St. M5B 1X2','393-5217 and 393-5518','2010-07-25 03:06:22','2010-07-25 03:06:22'),(148,'St. Monica (elementary)','14 Broadway Ave. M4P 1T4','393-5224','2010-07-25 03:06:22','2010-07-25 03:06:22'),(149,'Nativity of Our Lord (elementary)','35 Saffron Cres. M9C 3T8','393-5288','2010-07-25 03:06:22','2010-07-25 03:06:22'),(150,'Neil McNeil (secondary)','127 Victoria Park Ave. M4E 3S2','393-5502','2010-07-25 03:06:22','2010-07-25 03:06:22'),(151,'Notre Dame (secondary)','12 Malvern Ave. M4E 3E1','393-5501','2010-07-25 03:06:22','2010-07-25 03:06:22'),(152,'St. Nicholas (elementary)','33 Amarillo Dr. M1J 2P7','393-5308','2010-07-25 03:06:22','2010-07-25 03:06:22'),(153,'St. Nicholas of Bari (elementary)','363 Rogers Rd. M6E 1R6','393-5355','2010-07-25 03:06:22','2010-07-25 03:06:22'),(154,'St. Norbert (elementary)','60 Maniza Rd. M3K 1R6','393-5309','2010-07-25 03:06:22','2010-07-25 03:06:22'),(155,'Our Lady of Fatima (elementary)','3176 St. Clair Ave. E. M1L 1V6','393-5252','2010-07-25 03:06:22','2010-07-25 03:06:22'),(156,'Our Lady of Grace (elementary)','121 Brimwood Blvd. M1V 1E5','393-5372','2010-07-25 03:06:22','2010-07-25 03:06:22'),(157,'Our Lady of Guadalupe (elementary)','3105 Don Mills Rd. M2J 3C2','393-5342','2010-07-25 03:06:22','2010-07-25 03:06:22'),(158,'Our Lady of Lourdes (elementary)','444 Sherbourne St. M4X 1K2','393-5221','2010-07-25 03:06:22','2010-07-25 03:06:22'),(159,'Our Lady of Peace (elementary)','70 Mattice Ave. M9B 1T6','393-5253','2010-07-25 03:06:22','2010-07-25 03:06:22'),(160,'Our Lady of Perpetual Help (elementary)','1-1/2 Garfield Ave. M4T 1E6','393-5239','2010-07-25 03:06:22','2010-07-25 03:06:22'),(161,'Our Lady of Sorrows (elementary)','32 Montgomery Rd. M8X 1Z4','393-5246','2010-07-25 03:06:22','2010-07-25 03:06:22'),(162,'Our Lady of the Assumption (elementary)','125 Glenmount Ave. M6B 3C2','393-5265','2010-07-25 03:06:22','2010-07-25 03:06:22'),(163,'Our Lady of Victory (elementary)','70 Guestville Avenue M6N 4N3','393-5247','2010-07-25 03:06:22','2010-07-25 03:06:22'),(164,'Our Lady of Wisdom (elementary)','10 Japonica Rd. M1R 4R7','393-5273','2010-07-25 03:06:22','2010-07-25 03:06:22'),(165,'Pope John Paul II (secondary)','685 Military Trail M1E 4P6','393-5531','2010-07-25 03:06:22','2010-07-25 03:06:22'),(166,'Pope Paul (elementary)','270 Laughton Ave. M6N 2X5','393-5374','2010-07-25 03:06:22','2010-07-25 03:06:22'),(167,'Precious Blood (elementary)','1035 Pharmacy Ave. M1R 2G8','393-5258','2010-07-25 03:06:22','2010-07-25 03:06:22'),(168,'Prince of Peace (elementary)','255 Alton Towers Circ. M1V 4E7','393-5416','2010-07-25 03:06:22','2010-07-25 03:06:22'),(169,'St. Paschal Baylon (elementary)','15 St. Paschal Crt. M2M 1X6','393-5283','2010-07-25 03:06:22','2010-07-25 03:06:22'),(170,'St. Patrick (secondary)','49 Felstead Ave. M4J 1G3','393-5546','2010-07-25 03:06:22','2010-07-25 03:06:22'),(171,'St. Paul (elementary)','80 Sackville St. M5A 3E5','393-5204','2010-07-25 03:06:22','2010-07-25 03:06:22'),(172,'St. Philip Neri (elementary)','20 Beverley Hills Dr. M3L 1A1','393-5254','2010-07-25 03:06:22','2010-07-25 03:06:22'),(173,'St. Pius X (elementary)','71 Jane St. M6S 3Y3','393-5237','2010-07-25 03:06:22','2010-07-25 03:06:22'),(174,'Regina Mundi (elementary)','70 Playfair Ave. M6B 2P9','393-5362','2010-07-25 03:06:22','2010-07-25 03:06:22'),(175,'St. Raphael (elementary)','3 Gade Dr. M3M 2K2','393-5285','2010-07-25 03:06:22','2010-07-25 03:06:22'),(176,'St. Raymond (elementary)','270 Barton Ave. M6G 1R4','393-5293','2010-07-25 03:06:22','2010-07-25 03:06:22'),(177,'St. Rene Goupil (elementary)','44 Port Royal Trail M1V 2G8','393-5408','2010-07-25 03:06:22','2010-07-25 03:06:22'),(178,'St. Richard (elementary)','960 Bellamy Rd. N. M1H 1H1','393-5301','2010-07-25 03:06:22','2010-07-25 03:06:22'),(179,'St. Rita (elementary)','178 Edwin Ave. M6P 3Z9','393-5216','2010-07-25 03:06:22','2010-07-25 03:06:22'),(180,'St. Robert (elementary)','70 Bainbridge Ave. M3H 2K2','393-5297','2010-07-25 03:06:22','2010-07-25 03:06:22'),(181,'St. Roch (elementary)','174 Duncanwoods Dr. M9L 2E3','393-5320','2010-07-25 03:06:22','2010-07-25 03:06:22'),(182,'St. Rose of Lima (elementary)','3220 Lawrence Ave. E. M1H 1A4','393-5269','2010-07-25 03:06:22','2010-07-25 03:06:22'),(183,'Sacred Heart (elementary)','75 Hupfield Trail M1B 4S3','393-5415','2010-07-25 03:06:22','2010-07-25 03:06:22'),(184,'Santa Maria (elementary)','25 Avon Ave. M6N 4X8','393-5368','2010-07-25 03:06:22','2010-07-25 03:06:22'),(185,'Senator O\'Connor (secondary)','60 Rowena Drive M3A 2M5','393-5505','2010-07-25 03:06:22','2010-07-25 03:06:22'),(186,'Senhor Santo Cristo (elementary)','30 Humbert St. M6J 1M5','393-5367','2010-07-25 03:06:22','2010-07-25 03:06:22'),(187,'Stella Maris (elementary)','31 Ascot Ave. M6E 1E6','393-5371','2010-07-25 03:06:22','2010-07-25 03:06:22'),(188,'St. Sebastian (elementary)','717 Brock Ave. M6H 3P1','393-5354','2010-07-25 03:06:22','2010-07-25 03:06:22'),(189,'St. Simon (elementary)','20 Wallasey Ave. M9M 1E2','393-5383','2010-07-25 03:06:22','2010-07-25 03:06:22'),(190,'St. Stephen (elementary)','55 Golfdown Dr. M9W 2H8','393-5284','2010-07-25 03:06:22','2010-07-25 03:06:22'),(191,'St. Sylvester (elementary)','260 Silver Springs Blvd. M1V 1S4','393-5373','2010-07-25 03:06:22','2010-07-25 03:06:22'),(192,'The Divine Infant (elementary)','30 Ingleton Blvd. M1V 3H7','393-5414','2010-07-25 03:06:22','2010-07-25 03:06:22'),(193,'Transfiguration (elementary)','55 Ludstone Dr. M9R 2J2','393-5276','2010-07-25 03:06:22','2010-07-25 03:06:22'),(194,'St. Teresa (elementary)','110 Tenth St. M8V 3G1','393-5266','2010-07-25 03:06:22','2010-07-25 03:06:22'),(195,'St. Theresa Shrine (elementary)','2665 Kingston Rd. M1M 1M2','393-5248','2010-07-25 03:06:22','2010-07-25 03:06:22'),(196,'St. Thomas Aquinas (elementary)','636 Glenholme Ave. M6E 3G9','393-5236','2010-07-25 03:06:22','2010-07-25 03:06:22'),(197,'St. Thomas More (elementary)','2300 Ellesmere Rd. M1G 3M7','393-5322','2010-07-25 03:06:22','2010-07-25 03:06:22'),(198,'St. Timothy (elementary)','25 Rochelle Cres. M2J 1Y3','393-5298','2010-07-25 03:06:22','2010-07-25 03:06:22'),(199,'St. Ursula (elementary)','215 Livingston Rd. M1E 1L8','393-5306','2010-07-25 03:06:22','2010-07-25 03:06:22'),(200,'Ven. John Merlini (elementary)','123 Whitfield Ave. M9L 1G9','393-5397','2010-07-25 03:06:22','2010-07-25 03:06:22'),(201,'St. Victor (elementary)','20 Bernadine St. M1P 4M2','393-5338','2010-07-25 03:06:22','2010-07-25 03:06:22'),(202,'St. Vincent de Paul (elementary)','116 Fermanagh Ave. M6R 1M2','393-5227','2010-07-25 03:06:22','2010-07-25 03:06:22'),(203,'St. Wilfrid (elementary)','1685 Finch Ave. W. M3J 2G8','393-5313','2010-07-25 03:06:22','2010-07-25 03:06:22'); /*!40000 ALTER TABLE `schools` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stores` -- DROP TABLE IF EXISTS `stores`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `stores` ( `id` int(11) NOT NULL auto_increment, `storename` varchar(255) default NULL, `address` varchar(255) default NULL, `city` varchar(255) default NULL, `province` varchar(255) default NULL, `postal` varchar(255) default NULL, `phone` varchar(255) default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `stores` -- LOCK TABLES `stores` WRITE; /*!40000 ALTER TABLE `stores` DISABLE KEYS */; INSERT INTO `stores` VALUES (1,'Richmond Hill','12 Address St.','Richmond Hill','ON','M1D 2D0','416-444-4444','2010-07-12 13:51:33','2010-07-12 13:52:28'),(2,'Mississauga','13 Main St.','Mississauga','ON','','905-444-3343','2010-07-27 18:26:46','2010-07-27 18:26:46'); /*!40000 ALTER TABLE `stores` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transactions` -- DROP TABLE IF EXISTS `transactions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `transactions` ( `id` int(11) NOT NULL auto_increment, `order_id` int(11) default NULL, `xml_request` text, `server_response` text, `customer_id` int(11) default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `transactions` -- LOCK TABLES `transactions` WRITE; /*!40000 ALTER TABLE `transactions` DISABLE KEYS */; INSERT INTO `transactions` VALUES (1,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000002;62.09;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsMessage\"=Address Verification not performed for this transaction.\"avsAddrMatch\"0\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000002\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD18051280423558\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\"\n62.09\"\rcardType\"VI\" trnDate\"7/29/2010 1:12:39 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:12:39','2010-07-29 17:12:39'),(2,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000003;62.09;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsMessage\"=Address Verification not performed for this transaction.\"avsAddrMatch\"0\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000003\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD53421280423748\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\"\n62.09\"\rcardType\"VI\" trnDate\"7/29/2010 1:15:49 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:15:49','2010-07-29 17:15:49'),(3,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000004;62.09;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000004\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD47521280423829\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\"\n62.09\"\rcardType\"VI\" trnDate\"7/29/2010 1:17:11 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:17:11','2010-07-29 17:17:11'),(4,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000005;62.09;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000005\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD72131280423938\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\"\n62.09\"\rcardType\"VI\" trnDate\"7/29/2010 1:18:59 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:18:59','2010-07-29 17:18:59'),(5,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000006;62.09;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000006\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD39821280424668\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\"\n62.09\"\rcardType\"VI\" trnDate\"7/29/2010 1:31:10 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:31:10','2010-07-29 17:31:10'),(6,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000007;62.09;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000007\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD61211280424709\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\"\n62.09\"\rcardType\"VI\" trnDate\"7/29/2010 1:31:50 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:31:51','2010-07-29 17:31:51'),(7,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000008;199.75;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000008\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD39771280424923\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\" 199.75\"\rcardType\"MC\" trnDate\"7/29/2010 1:35:24 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:35:24','2010-07-29 17:35:24'),(8,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000009;199.75;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000009\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD63921280425231\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\" 199.75\"\rcardType\"MC\" trnDate\"7/29/2010 1:40:32 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:40:32','2010-07-29 17:40:32'),(9,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000010;199.75;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000010\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD18621280425449\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\" 199.75\"\rcardType\"MC\" trnDate\"7/29/2010 1:44:10 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:44:10','2010-07-29 17:44:10'),(10,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000011;199.75;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000011\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD79101280425458\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\" 199.75\"\rcardType\"MC\" trnDate\"7/29/2010 1:44:19 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:44:19','2010-07-29 17:44:19'),(11,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000012;199.75;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000012\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD92661280425477\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\" 199.75\"\rcardType\"MC\" trnDate\"7/29/2010 1:44:38 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:44:38','2010-07-29 17:44:38'),(12,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000013;199.75;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000013\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD35441280425482\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\" 199.75\"\rcardType\"MC\" trnDate\"7/29/2010 1:44:43 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:44:43','2010-07-29 17:44:43'),(13,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000014;229.70;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000014\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD50961280425514\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\" 229.70\"\rcardType\"VI\" trnDate\"7/29/2010 1:45:15 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:45:15','2010-07-29 17:45:15'),(14,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000015;229.70;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000015\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD39561280425888\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\" 229.70\"\rcardType\"VI\" trnDate\"7/29/2010 1:51:29 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:51:29','2010-07-29 17:51:29'),(15,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000016;4.95;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000016\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD89831280426125\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\" 4.95\"\rcardType\"VI\" trnDate\"7/29/2010 1:55:26 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:55:26','2010-07-29 17:55:26'),(16,NULL,NULL,'o:&ActiveMerchant::Billing::Response\r:@authorization\"10000017;5.59;PA:\r@successT:@cvv_result{\" code\"M\" message\"\nMatch:@fraud_review0: @params{\"avsAddrMatch\"0\"avsMessage\"=Address Verification not performed for this transaction.\"\rauthCode\" TEST\" trnType\"PA\"errorFields0\" ref10\"messageId\"1\" ref20\"\ntrnId\"\r10000017\"errorType\"N\" ref30\"\navsId\"0\" ref40\"\ncvdId\"1\" ref50\"avsPostalMatch\"0\"responseType\"T\"avsResult\"0\"trnOrderNumber\"ORD23151280426337\"paymentMethod\"CC\"avsProcessed\"0\"trnApproved\"1\"messageText\"\rApproved\"trnAmount\" 5.59\"\rcardType\"VI\" trnDate\"7/29/2010 1:58:58 PM:@avs_result{ \" code\"R\"postal_match0\"street_match0\" message\"System unavailable.:\r@message@4:\n@testT',2,'2010-07-29 17:58:58','2010-07-29 17:58:58'); /*!40000 ALTER TABLE `transactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `username` varchar(255) default NULL, `email` varchar(255) default NULL, `crypted_password` varchar(255) default NULL, `password_salt` varchar(255) default NULL, `persistence_token` varchar(255) default NULL, `login_count` int(11) default NULL, `failed_login_count` int(11) default NULL, `last_request_at` datetime default NULL, `current_login_at` datetime default NULL, `last_login_at` datetime default NULL, `current_login_ip` varchar(255) default NULL, `last_login_ip` varchar(255) default NULL, `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'aaron','aaron@innoveghtive.com','520a0feaceb91ffe68e2bffd8e44cf65d766c04edc152a0bf94186f9717e7833001e74526040a69f7ea876207f561d30eca4affca2e41e21266fb045a281878b','n_JqGqnSFiTLt0bHsWu7','f011cd941632f5d6da6731b1568722e061cd920fffa6010c7ca3cf1871903c924c20f5612ccdf19222ed54a7b44d441d0d8b8989ff8b828bbbdedf7fc45ca096',29,0,'2010-08-03 17:31:10','2010-08-03 16:52:52','2010-08-03 16:27:26','173.33.174.216','173.33.174.216','2010-07-09 19:02:23','2010-08-03 17:31:10'),(2,'jane','jkent@inschoolwear.com','07c7bd93bbb19528548452e78dec954ddbf0d0ab2693fae96282ff54805355fb087a0f74b1d07ae50f7e0a79cb0b0f09e7ee46da0616ac431996da5b609f4603','GiLchBDF3VD9H7FT2Z56','ad1fd7d5a51ced21b1e19101ebcb2f0c70a0844f366b97407b9607a082d8b51c9cae309a873a2b6adea5076023b6e07caa270a74abd001db53e45ef8a6d9c712',12,0,'2010-08-03 17:09:03','2010-08-03 14:49:00','2010-08-03 13:20:48','74.198.8.70','74.198.8.70','2010-08-02 21:24:47','2010-08-03 17:09:03'),(3,'kirstin','kbroatch@inschoolwear.com','678d1c2ff19377d3c40ded9f14618863ee64b506159ffe982d7649e5dac97865997377dd330d242df786ce907b8a9a90aa3c5eb0ec99f3424970b63f4faae329','5_YK_8K5sZJYlX6SIQq6','b99cca289f15db676173921c4280787bf47ae179c3ead18c14b2ce3633adc56adb08263ff28cefaf30d7aa73940cd564860fe27d9b387ffb9d7897fc87378207',4,0,'2010-08-03 04:39:22','2010-08-03 04:06:35','2010-08-03 02:25:08','24.150.221.242','24.150.221.242','2010-08-03 02:06:29','2010-08-03 04:39:22'),(4,'helen','hstone@inschoolwear.com','a7fc47ed39c2fe1dab43d362687b060a473a49767dc432efcae5eea1944f30cfc908e0eadee987656bf23771e9bbd5bea2ea5c6be67f590365531ff932bfa850','s_STjrMyMo2-7MFarB0a','fc574a9815b89685db089cba5220e49e3beda36a7ec60e4410fcfd3053d9e9297e92c5eeda28a87a89ee75dd3706361ad19783384ceccb99b65a12c7b1d64d38',2,0,'2010-08-03 17:32:00','2010-08-03 17:18:38','2010-08-03 17:10:16','173.34.187.92','173.34.187.92','2010-08-03 15:10:47','2010-08-03 17:32:00'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2010-08-03 18:52:59