-- MySQL dump 10.13  Distrib 5.7.44, for Linux (x86_64)
--
-- Host: localhost    Database: adironda_zc1
-- ------------------------------------------------------
-- Server version	5.7.44

/*!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 `zen_address_book`
--

DROP TABLE IF EXISTS `zen_address_book`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_address_book` (
  `address_book_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `entry_gender` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_company` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `entry_firstname` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_lastname` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_street_address` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_suburb` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `entry_postcode` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_city` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_state` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `entry_country_id` int(11) NOT NULL DEFAULT '0',
  `entry_zone_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`address_book_id`),
  KEY `idx_address_book_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_address_book`
--

LOCK TABLES `zen_address_book` WRITE;
/*!40000 ALTER TABLE `zen_address_book` DISABLE KEYS */;
INSERT INTO `zen_address_book` VALUES (14,12,'m',NULL,'John','Brake','9079 Pierson Road','','48836','Fowlerville','',223,33),(15,13,'',NULL,'John','Brake','9079 Pierson Rd','','48836','Fowlerville','',223,33),(16,14,'m',NULL,'Johnny','BHuy','1234 E West Street','','33186','Miami','',223,18),(17,15,'f',NULL,'Juanita','Frenita','9125 South North Street Ave','','48239','Lake Wobegone','',223,33),(18,16,'m',NULL,'Juan','freno','9785 B street','','33186','miami','',223,18),(19,17,'m',NULL,'jose','Buyerio','546 n c','','33186','Miami','',223,18),(20,18,'m',NULL,'julia','tuttle','234 F street','','33186','miami','',223,18),(21,19,'m',NULL,'Joe','Von Buynow','12345 West East Street','','33186','Lake Wobegone','',223,18),(22,20,'m',NULL,'nat','Bat','54321 b Street','','33186','mar','',223,18),(23,20,'m',NULL,'Nat','Bat','12361 SW 106 St','','33186','Miami','',223,18),(24,21,'m',NULL,'jb','borer','12361 sw 106 st','','33186','miami','',223,18),(25,22,'m',NULL,'Sam','Orderman','12361 SW 106 St','','33186','Miami','',223,18),(26,23,'f',NULL,'Kathleen','Monteleone','756 Washington Street apt. 8F','','10014','New York','',223,43),(27,24,'m',NULL,'John','Brake','9079 Pierson Rd','','48836','Fowlerville','',223,33),(28,14,'',NULL,'John','Brake','9079 Pierson Rd','','48836','Fowlerville','',223,33),(29,25,'m',NULL,'Mitchell','Vance','26 Burning Tree Road','','92660','Newport Beach','',223,12),(30,25,'m',NULL,'Mitch','Vance','Wolf Creek Ranch Lot 13','2233 N Wolf Creek Ranch Road','84036','Woodland','',223,58);
/*!40000 ALTER TABLE `zen_address_book` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_address_format`
--

DROP TABLE IF EXISTS `zen_address_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_address_format` (
  `address_format_id` int(11) NOT NULL AUTO_INCREMENT,
  `address_format` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `address_summary` varchar(48) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`address_format_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_address_format`
--

LOCK TABLES `zen_address_format` WRITE;
/*!40000 ALTER TABLE `zen_address_format` DISABLE KEYS */;
INSERT INTO `zen_address_format` VALUES (1,'$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country','$city / $country'),(2,'$firstname $lastname$cr$streets$cr$city, $state    $postcode$cr$country','$city, $state / $country'),(3,'$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country','$state / $country'),(4,'$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country','$postcode / $country'),(5,'$firstname $lastname$cr$streets$cr$postcode $city$cr$country','$city / $country'),(6,'$firstname $lastname$cr$streets$cr$city$cr$state$cr$postcode$cr$country','$postcode / $country');
/*!40000 ALTER TABLE `zen_address_format` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_admin`
--

DROP TABLE IF EXISTS `zen_admin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_admin` (
  `admin_id` int(11) NOT NULL AUTO_INCREMENT,
  `admin_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `admin_email` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `admin_pass` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `admin_level` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`admin_id`),
  KEY `idx_admin_name_zen` (`admin_name`),
  KEY `idx_admin_email_zen` (`admin_email`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_admin`
--

LOCK TABLES `zen_admin` WRITE;
/*!40000 ALTER TABLE `zen_admin` DISABLE KEYS */;
INSERT INTO `zen_admin` VALUES (2,'eagle888','admin@adirondakchairs.net','14976cdf297fddfbd36f26373a44f480:b1',0);
/*!40000 ALTER TABLE `zen_admin` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_admin_activity_log`
--

DROP TABLE IF EXISTS `zen_admin_activity_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_admin_activity_log` (
  `log_id` int(15) NOT NULL AUTO_INCREMENT,
  `access_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `admin_id` int(11) NOT NULL DEFAULT '0',
  `page_accessed` varchar(80) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `page_parameters` text COLLATE utf8_unicode_ci,
  `ip_address` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`log_id`),
  KEY `idx_page_accessed_zen` (`page_accessed`),
  KEY `idx_access_date_zen` (`access_date`),
  KEY `idx_ip_zen` (`ip_address`)
) ENGINE=MyISAM AUTO_INCREMENT=4822 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_admin_activity_log`
--

LOCK TABLES `zen_admin_activity_log` WRITE;
/*!40000 ALTER TABLE `zen_admin_activity_log` DISABLE KEYS */;
INSERT INTO `zen_admin_activity_log` VALUES (2846,'2010-01-27 17:43:17',1,'store_manager.php','','76.221.246.255'),(2847,'2010-01-27 17:44:36',1,'store_manager.php','action=optimize_db&','76.221.246.255'),(2848,'2010-01-27 17:44:38',1,'store_manager.php','','76.221.246.255'),(2849,'2010-01-27 17:47:10',1,'store_manager.php','action=update_orders_id&','76.221.246.255'),(2850,'2010-01-27 18:05:09',1,'developers_tool_kit.php','','76.221.246.255'),(2851,'2010-01-27 18:05:26',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(2852,'2010-01-27 18:05:31',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(2853,'2010-01-27 18:05:40',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(2854,'2010-01-27 18:05:45',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(2855,'2010-01-27 18:05:50',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(2856,'2010-01-27 18:06:04',1,'configuration.php','gID=1&','76.221.246.255'),(2857,'2010-01-27 18:06:26',1,'configuration.php','gID=12&','76.221.246.255'),(2858,'2010-01-27 18:06:36',1,'configuration.php','gID=12&cID=264&','76.221.246.255'),(2859,'2010-01-27 18:06:40',1,'configuration.php','gID=12&cID=264&action=edit&','76.221.246.255'),(2860,'2010-01-27 18:07:29',1,'configuration.php','gID=12&cID=264&action=save&','76.221.246.255'),(2861,'2010-01-27 18:07:29',1,'configuration.php','gID=12&cID=264&','76.221.246.255'),(2862,'2010-01-27 18:08:04',1,'configuration.php','gID=12&cID=265&','76.221.246.255'),(2863,'2010-01-27 18:08:07',1,'configuration.php','gID=12&cID=265&action=edit&','76.221.246.255'),(2864,'2010-01-27 18:08:35',1,'configuration.php','gID=12&cID=264&action=edit&','76.221.246.255'),(2865,'2010-01-27 18:08:39',1,'configuration.php','gID=12&cID=264&action=save&','76.221.246.255'),(2866,'2010-01-27 18:08:39',1,'configuration.php','gID=12&cID=264&','76.221.246.255'),(2867,'2010-01-27 18:08:46',1,'configuration.php','gID=12&cID=265&action=edit&','76.221.246.255'),(2868,'2010-01-27 18:09:35',1,'configuration.php','gID=12&cID=265&action=save&','76.221.246.255'),(2869,'2010-01-27 18:09:36',1,'configuration.php','gID=12&cID=265&','76.221.246.255'),(2870,'2010-01-27 18:09:40',1,'configuration.php','gID=12&cID=268&','76.221.246.255'),(2871,'2010-01-27 18:09:45',1,'configuration.php','gID=12&cID=268&action=edit&','76.221.246.255'),(2872,'2010-01-27 18:10:20',1,'configuration.php','gID=12&cID=268&action=save&','76.221.246.255'),(2873,'2010-01-27 18:10:20',1,'configuration.php','gID=12&cID=268&','76.221.246.255'),(2874,'2010-01-27 18:10:27',1,'configuration.php','gID=12&cID=270&','76.221.246.255'),(2875,'2010-01-27 18:10:30',1,'configuration.php','gID=12&cID=270&action=edit&','76.221.246.255'),(2876,'2010-01-27 18:10:45',1,'configuration.php','gID=12&cID=270&action=save&','76.221.246.255'),(2877,'2010-01-27 18:10:45',1,'configuration.php','gID=12&cID=270&','76.221.246.255'),(2878,'2010-01-27 18:10:52',1,'configuration.php','gID=12&cID=272&','76.221.246.255'),(2879,'2010-01-27 18:11:01',1,'configuration.php','gID=12&cID=272&action=edit&','76.221.246.255'),(2880,'2010-01-27 18:11:08',1,'configuration.php','gID=12&cID=272&action=save&','76.221.246.255'),(2881,'2010-01-27 18:11:08',1,'configuration.php','gID=12&cID=272&','76.221.246.255'),(2882,'2010-01-27 18:11:19',1,'configuration.php','gID=12&cID=274&','76.221.246.255'),(2883,'2010-01-27 18:11:23',1,'configuration.php','gID=12&cID=274&action=edit&','76.221.246.255'),(2884,'2010-01-27 18:11:42',1,'configuration.php','gID=12&cID=274&action=save&','76.221.246.255'),(2885,'2010-01-27 18:11:42',1,'configuration.php','gID=12&cID=274&','76.221.246.255'),(2886,'2010-01-27 18:11:54',1,'configuration.php','gID=12&cID=276&','76.221.246.255'),(2887,'2010-01-27 18:11:57',1,'configuration.php','gID=12&cID=276&action=edit&','76.221.246.255'),(2888,'2010-01-27 18:12:12',1,'configuration.php','gID=12&cID=276&action=save&','76.221.246.255'),(2889,'2010-01-27 18:12:12',1,'configuration.php','gID=12&cID=276&','76.221.246.255'),(2890,'2010-01-27 18:12:19',1,'configuration.php','gID=12&cID=278&','76.221.246.255'),(2891,'2010-01-27 18:12:23',1,'configuration.php','gID=12&cID=278&action=edit&','76.221.246.255'),(2892,'2010-01-27 18:12:39',1,'configuration.php','gID=12&cID=278&action=save&','76.221.246.255'),(2893,'2010-01-27 18:12:40',1,'configuration.php','gID=12&cID=278&','76.221.246.255'),(2894,'2010-01-27 18:12:47',1,'configuration.php','gID=12&cID=280&','76.221.246.255'),(2895,'2010-01-27 18:12:50',1,'configuration.php','gID=12&cID=280&action=edit&','76.221.246.255'),(2896,'2010-01-27 18:13:03',1,'configuration.php','gID=12&cID=280&action=save&','76.221.246.255'),(2897,'2010-01-27 18:13:07',1,'configuration.php','gID=12&cID=280&','76.221.246.255'),(2898,'2010-01-27 18:13:13',1,'configuration.php','gID=12&cID=274&','76.221.246.255'),(2899,'2010-01-27 18:13:20',1,'configuration.php','gID=12&cID=274&action=edit&','76.221.246.255'),(2900,'2010-01-27 18:13:26',1,'configuration.php','gID=12&cID=274&action=save&','76.221.246.255'),(2901,'2010-01-27 18:13:26',1,'configuration.php','gID=12&cID=274&','76.221.246.255'),(2902,'2010-01-27 18:13:36',1,'configuration.php','gID=12&cID=282&','76.221.246.255'),(2903,'2010-01-27 18:13:40',1,'configuration.php','gID=12&cID=282&action=edit&','76.221.246.255'),(2904,'2010-01-27 18:14:00',1,'configuration.php','gID=12&cID=282&action=save&','76.221.246.255'),(2905,'2010-01-27 18:14:00',1,'configuration.php','gID=12&cID=282&','76.221.246.255'),(2906,'2010-01-27 18:14:18',1,'configuration.php','gID=12&cID=287&','76.221.246.255'),(2907,'2010-01-27 18:14:21',1,'configuration.php','gID=12&cID=287&action=edit&','76.221.246.255'),(2908,'2010-01-27 18:14:33',1,'configuration.php','gID=12&cID=287&action=save&','76.221.246.255'),(2909,'2010-01-27 18:14:33',1,'configuration.php','gID=12&cID=287&','76.221.246.255'),(2910,'2010-01-27 18:15:29',1,'configuration.php','gID=12&cID=253&','76.221.246.255'),(2911,'2010-01-27 18:15:43',1,'configuration.php','gID=12&cID=253&action=edit&','76.221.246.255'),(2912,'2010-01-27 18:16:03',1,'configuration.php','gID=12&cID=253&action=save&','76.221.246.255'),(2913,'2010-01-27 18:16:07',1,'configuration.php','gID=12&cID=253&','76.221.246.255'),(2914,'2010-01-27 18:16:55',1,'configuration.php','gID=12&cID=254&','76.221.246.255'),(2915,'2010-01-27 18:17:01',1,'configuration.php','gID=12&cID=254&action=edit&','76.221.246.255'),(2916,'2010-01-27 18:17:11',1,'configuration.php','gID=12&cID=254&action=save&','76.221.246.255'),(2917,'2010-01-27 18:17:12',1,'configuration.php','gID=12&cID=254&','76.221.246.255'),(2918,'2010-01-27 18:17:18',1,'configuration.php','gID=12&cID=255&','76.221.246.255'),(2919,'2010-01-27 18:17:21',1,'configuration.php','gID=12&cID=255&action=edit&','76.221.246.255'),(2920,'2010-01-27 18:17:40',1,'configuration.php','gID=12&cID=255&action=save&','76.221.246.255'),(2921,'2010-01-27 18:17:40',1,'configuration.php','gID=12&cID=255&','76.221.246.255'),(2922,'2010-01-27 18:17:48',1,'configuration.php','gID=12&cID=256&','76.221.246.255'),(2923,'2010-01-27 18:17:51',1,'configuration.php','gID=12&cID=256&action=edit&','76.221.246.255'),(2924,'2010-01-27 18:17:59',1,'configuration.php','gID=12&cID=256&action=save&','76.221.246.255'),(2925,'2010-01-27 18:18:00',1,'configuration.php','gID=12&cID=256&','76.221.246.255'),(2926,'2010-01-28 10:54:22',0,'login.php ','','76.221.246.255'),(2927,'2010-01-28 10:54:50',0,'login.php myadiron','','76.221.246.255'),(2928,'2010-01-28 10:55:01',1,'configuration.php','gID=10&','76.221.246.255'),(2929,'2010-01-28 10:55:07',1,'configuration.php','gID=10&cID=250&','76.221.246.255'),(2930,'2010-01-28 10:55:13',1,'configuration.php','gID=10&cID=250&action=edit&','76.221.246.255'),(2931,'2010-01-28 10:55:19',1,'configuration.php','gID=10&cID=250&action=save&','76.221.246.255'),(2932,'2010-01-28 10:55:19',1,'configuration.php','gID=10&cID=250&','76.221.246.255'),(2933,'2010-01-31 11:37:48',0,'login.php ','','76.221.246.255'),(2934,'2010-01-31 11:38:05',0,'login.php wayne1','','76.221.246.255'),(2935,'2010-01-31 11:38:25',0,'login.php wayne1','','76.221.246.255'),(2936,'2010-01-31 11:38:37',0,'login.php wayne1','','76.221.246.255'),(2937,'2010-01-31 11:56:21',0,'login.php wayne1','','76.221.246.255'),(2938,'2010-02-01 12:45:37',0,'login.php ','','76.221.246.255'),(2939,'2010-02-01 15:37:58',0,'login.php ','','76.221.246.255'),(2940,'2010-02-09 07:44:38',0,'login.php ','','67.197.217.52'),(2941,'2010-02-09 07:45:51',0,'login.php myadiron','','67.197.217.53'),(2942,'2010-02-09 07:53:03',1,'configuration.php','gID=19&','67.197.217.53'),(2943,'2010-02-09 07:55:17',1,'developers_tool_kit.php','','67.197.217.52'),(2944,'2010-02-09 07:55:33',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(2945,'2010-02-09 07:55:36',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.52'),(2946,'2010-02-09 07:55:51',1,'developers_tool_kit.php','action=locate_template&','67.197.217.52'),(2947,'2010-02-09 07:56:01',1,'developers_tool_kit.php','action=locate_class&','67.197.217.52'),(2948,'2010-02-09 07:56:07',1,'developers_tool_kit.php','action=locate_function&','67.197.217.52'),(2949,'2010-02-09 07:56:10',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(2950,'2010-02-09 08:01:57',1,'configuration.php','gID=19&','67.197.217.52'),(2951,'2010-02-09 08:02:06',1,'configuration.php','gID=19&cID=425&action=edit&','67.197.217.53'),(2952,'2010-02-09 08:02:24',1,'configuration.php','gID=19&cID=425&','67.197.217.53'),(2953,'2010-02-09 08:04:03',1,'developers_tool_kit.php','','67.197.217.53'),(2954,'2010-02-09 08:04:14',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(2955,'2010-02-09 08:04:19',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(2956,'2010-02-09 08:04:45',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.52'),(2957,'2010-02-09 08:05:47',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(2958,'2010-02-09 08:05:53',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.52'),(2959,'2010-02-09 11:11:25',0,'login.php ','','67.197.217.52'),(2960,'2010-02-09 11:11:38',0,'login.php myadiron','','67.197.217.52'),(2961,'2010-02-09 11:12:22',0,'login.php myadiron','','67.197.217.53'),(2962,'2010-02-09 11:12:36',1,'layout_controller.php','','67.197.217.53'),(2963,'2010-02-09 11:13:20',1,'layout_controller.php','page=&cID=85&action=edit&','67.197.217.52'),(2964,'2010-02-09 11:13:30',1,'layout_controller.php','page=&cID=85&action=save&layout_box_name=featured.php&','67.197.217.52'),(2965,'2010-02-09 11:13:31',1,'layout_controller.php','page=&cID=85&','67.197.217.53'),(2966,'2010-02-09 11:15:07',1,'configuration.php','gID=22&','67.197.217.53'),(2967,'2010-02-09 11:15:13',1,'configuration.php','gID=22&cID=475&action=edit&','67.197.217.52'),(2968,'2010-02-09 11:15:47',1,'configuration.php','gID=22&cID=475&action=save&','67.197.217.53'),(2969,'2010-02-09 11:15:47',1,'configuration.php','gID=22&cID=475&','67.197.217.52'),(2970,'2010-02-09 11:16:12',1,'configuration.php','gID=19&','67.197.217.52'),(2971,'2010-02-09 11:17:46',1,'configuration.php','gID=24&','67.197.217.53'),(2972,'2010-02-09 11:18:13',1,'configuration.php','gID=24&cID=502&','67.197.217.53'),(2973,'2010-02-09 11:18:19',1,'configuration.php','gID=24&cID=502&action=edit&','67.197.217.53'),(2974,'2010-02-09 11:18:32',1,'configuration.php','gID=24&cID=502&action=save&','67.197.217.53'),(2975,'2010-02-09 11:18:32',1,'configuration.php','gID=24&cID=502&','67.197.217.53'),(2976,'2010-02-09 11:19:25',1,'featured.php','','67.197.217.52'),(2977,'2010-02-09 11:19:37',1,'featured.php','page=0&action=new&','67.197.217.52'),(2978,'2010-02-09 11:19:48',1,'featured.php','page=0&action=insert&go_back=&','67.197.217.53'),(2979,'2010-02-09 11:19:48',1,'featured.php','page=0&fID=1&','67.197.217.52'),(2980,'2010-02-09 11:19:51',1,'featured.php','page=1&action=new&','67.197.217.52'),(2981,'2010-02-09 11:19:56',1,'featured.php','page=1&action=insert&go_back=&','67.197.217.53'),(2982,'2010-02-09 11:19:56',1,'featured.php','page=1&fID=2&','67.197.217.52'),(2983,'2010-02-09 11:19:59',1,'featured.php','page=1&action=new&','67.197.217.53'),(2984,'2010-02-09 11:20:02',1,'featured.php','page=1&action=insert&go_back=&','67.197.217.52'),(2985,'2010-02-09 11:20:03',1,'featured.php','page=1&fID=3&','67.197.217.52'),(2986,'2010-02-09 11:20:05',1,'featured.php','page=1&action=new&','67.197.217.53'),(2987,'2010-02-09 11:20:12',1,'featured.php','page=1&action=insert&go_back=&','67.197.217.52'),(2988,'2010-02-09 11:20:12',1,'featured.php','page=1&fID=4&','67.197.217.53'),(2989,'2010-02-09 11:20:15',1,'featured.php','page=1&action=new&','67.197.217.52'),(2990,'2010-02-09 11:20:18',1,'featured.php','page=1&action=insert&go_back=&','67.197.217.52'),(2991,'2010-02-09 11:20:18',1,'featured.php','page=1&fID=5&','67.197.217.52'),(2992,'2010-02-09 11:20:21',1,'featured.php','page=1&action=new&','67.197.217.53'),(2993,'2010-02-09 11:20:25',1,'featured.php','page=1&action=insert&go_back=&','67.197.217.52'),(2994,'2010-02-09 11:20:25',1,'featured.php','page=1&fID=6&','67.197.217.52'),(2995,'2010-02-09 11:20:28',1,'featured.php','page=1&action=new&','67.197.217.53'),(2996,'2010-02-09 11:20:31',1,'featured.php','page=1&action=insert&go_back=&','67.197.217.53'),(2997,'2010-02-09 11:20:32',1,'featured.php','page=1&fID=7&','67.197.217.52'),(2998,'2010-02-09 11:22:38',1,'configuration.php','gID=22&','67.197.217.52'),(2999,'2010-02-09 11:22:52',1,'configuration.php','gID=22&cID=484&','67.197.217.53'),(3000,'2010-02-09 11:22:55',1,'configuration.php','gID=22&cID=484&action=edit&','67.197.217.53'),(3001,'2010-02-09 11:23:13',1,'configuration.php','gID=22&cID=484&action=save&','67.197.217.53'),(3002,'2010-02-09 11:23:14',1,'configuration.php','gID=22&cID=484&','67.197.217.52'),(3003,'2010-02-09 11:23:33',1,'layout_controller.php','','67.197.217.52'),(3004,'2010-02-09 11:23:50',1,'layout_controller.php','page=&cID=85&action=edit&','67.197.217.53'),(3005,'2010-02-09 11:23:56',1,'layout_controller.php','page=&cID=85&action=save&layout_box_name=featured.php&','67.197.217.52'),(3006,'2010-02-09 11:23:56',1,'layout_controller.php','page=&cID=85&','67.197.217.52'),(3007,'2010-02-09 11:41:26',1,'featured.php','','67.197.217.52'),(3008,'2010-02-09 11:41:36',1,'featured.php','page=1&fID=1&action=edit&','67.197.217.53'),(3009,'2010-02-09 11:41:56',1,'featured.php','page=1&action=update&go_back=&','67.197.217.53'),(3010,'2010-02-09 11:41:56',1,'featured.php','page=1&fID=1&','67.197.217.52'),(3011,'2010-02-09 11:42:25',1,'featured.php','page=1&fID=1&action=delete&','67.197.217.52'),(3012,'2010-02-09 11:42:36',1,'featured.php','page=1&fID=1&action=deleteconfirm&','67.197.217.52'),(3013,'2010-02-09 11:42:37',1,'featured.php','page=1&','67.197.217.52'),(3014,'2010-02-09 11:42:42',1,'featured.php','','67.197.217.52'),(3015,'2010-02-09 11:42:46',1,'featured.php','page=1&action=new&','67.197.217.52'),(3016,'2010-02-09 11:42:52',1,'featured.php','page=1&action=insert&go_back=&','67.197.217.52'),(3017,'2010-02-09 11:42:53',1,'featured.php','page=1&fID=&','67.197.217.52'),(3018,'2010-02-09 11:42:58',1,'featured.php','page=1&action=new&','67.197.217.52'),(3019,'2010-02-09 11:43:04',1,'featured.php','page=1&action=insert&go_back=&','67.197.217.52'),(3020,'2010-02-09 11:43:05',1,'featured.php','page=1&fID=8&','67.197.217.52'),(3021,'2010-02-09 11:48:45',1,'featured.php','page=1&fID=8&action=delete&','67.197.217.52'),(3022,'2010-02-09 11:48:47',1,'featured.php','page=1&fID=8&action=deleteconfirm&','67.197.217.52'),(3023,'2010-02-09 11:48:47',1,'featured.php','page=1&','67.197.217.52'),(3024,'2010-02-09 11:51:54',1,'define_pages_editor.php','','67.197.217.52'),(3025,'2010-02-09 11:52:02',1,'define_pages_editor.php','securityToken=a4adde1a161414c0fc4765ede85b2b71&define_it=4&action=new_page&','67.197.217.52'),(3026,'2010-02-09 11:52:53',1,'define_pages_editor.php','lngdir=english&filename=define_main_page.php&action=save&','67.197.217.52'),(3027,'2010-02-09 11:52:53',1,'define_pages_editor.php','','67.197.217.52'),(3028,'2010-02-09 11:53:54',1,'define_pages_editor.php','securityToken=a4adde1a161414c0fc4765ede85b2b71&define_it=4&action=new_page&','67.197.217.52'),(3029,'2010-02-09 12:18:14',1,'developers_tool_kit.php','','67.197.217.52'),(3030,'2010-02-09 12:18:23',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3031,'2010-02-09 12:18:29',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3032,'2010-02-09 12:18:32',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.52'),(3033,'2010-02-09 12:18:48',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3034,'2010-02-09 12:18:53',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.52'),(3035,'2010-02-09 15:33:09',0,'login.php ','','67.197.217.53'),(3036,'2010-02-09 15:33:34',0,'login.php myadiron','','67.197.217.52'),(3037,'2010-02-09 15:33:43',0,'login.php myadiron','','67.197.217.52'),(3038,'2010-02-09 15:34:18',1,'configuration.php','gID=1&','67.197.217.53'),(3039,'2010-02-09 15:34:52',1,'configuration.php','gID=1&cID=23&action=edit&','67.197.217.53'),(3040,'2010-02-09 15:35:16',1,'configuration.php','gID=1&cID=23&action=save&','67.197.217.53'),(3041,'2010-02-09 15:35:16',1,'configuration.php','gID=1&cID=23&','67.197.217.52'),(3042,'2010-02-09 15:35:48',1,'configuration.php','gID=1&','67.197.217.53'),(3043,'2010-02-09 15:36:01',1,'configuration.php','gID=1&cID=23&action=edit&','67.197.217.53'),(3044,'2010-02-09 15:36:04',1,'configuration.php','gID=1&cID=23&action=save&','67.197.217.52'),(3045,'2010-02-09 15:36:04',1,'configuration.php','gID=1&cID=23&','67.197.217.52'),(3046,'2010-02-09 15:39:12',1,'configuration.php','gID=19&','67.197.217.52'),(3047,'2010-02-09 15:39:50',1,'configuration.php','gID=19&cID=423&','67.197.217.53'),(3048,'2010-02-09 15:39:53',1,'configuration.php','gID=19&cID=423&action=edit&','67.197.217.53'),(3049,'2010-02-09 15:39:56',1,'configuration.php','gID=19&cID=423&action=save&','67.197.217.53'),(3050,'2010-02-09 15:39:57',1,'configuration.php','gID=19&cID=423&','67.197.217.53'),(3051,'2010-02-09 17:51:06',0,'login.php ','','67.197.217.53'),(3052,'2010-02-09 17:51:21',0,'login.php myadiron','','67.197.217.52'),(3053,'2010-02-09 17:51:31',1,'banner_manager.php','','67.197.217.53'),(3054,'2010-02-09 17:51:38',1,'banner_manager.php','action=new&','67.197.217.53'),(3055,'2010-02-09 17:54:02',1,'banner_manager.php','action=insert&','67.197.217.52'),(3056,'2010-02-09 17:54:02',1,'banner_manager.php','bID=10&','67.197.217.52'),(3057,'2010-02-09 17:54:26',1,'banner_manager.php','page=1&bID=8&','67.197.217.52'),(3058,'2010-02-09 17:57:00',1,'configuration.php','gID=19&','67.197.217.53'),(3059,'2010-02-09 17:57:20',1,'configuration.php','gID=19&cID=430&','67.197.217.52'),(3060,'2010-02-09 17:57:25',1,'configuration.php','gID=19&cID=430&action=edit&','67.197.217.52'),(3061,'2010-02-09 17:57:38',1,'configuration.php','gID=19&cID=430&action=save&','67.197.217.52'),(3062,'2010-02-09 17:57:39',1,'configuration.php','gID=19&cID=430&','67.197.217.53'),(3063,'2010-02-09 17:58:27',1,'banner_manager.php','','67.197.217.52'),(3064,'2010-02-09 17:58:34',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.52'),(3065,'2010-02-09 17:59:12',1,'banner_manager.php','page=1&action=update&','67.197.217.52'),(3066,'2010-02-09 17:59:12',1,'banner_manager.php','page=1&bID=10&','67.197.217.53'),(3067,'2010-02-09 17:59:46',1,'banner_statistics.php','page=1&bID=10&','67.197.217.53'),(3068,'2010-02-09 17:59:55',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3069,'2010-02-09 18:00:34',1,'banner_manager.php','page=1&action=update&','67.197.217.52'),(3070,'2010-02-09 18:00:34',1,'banner_manager.php','page=1&bID=10&','67.197.217.53'),(3071,'2010-02-09 18:01:25',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.52'),(3072,'2010-02-09 18:01:39',1,'banner_manager.php','page=1&action=update&','67.197.217.52'),(3073,'2010-02-09 18:01:40',1,'banner_manager.php','page=1&bID=10&','67.197.217.52'),(3074,'2010-02-09 18:01:42',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.52'),(3075,'2010-02-09 18:04:10',1,'banner_manager.php','page=1&action=update&','67.197.217.52'),(3076,'2010-02-09 18:04:10',1,'banner_manager.php','page=1&bID=10&','67.197.217.52'),(3077,'2010-02-09 18:04:50',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3078,'2010-02-09 18:05:01',1,'banner_manager.php','page=1&action=update&','67.197.217.52'),(3079,'2010-02-09 18:05:02',1,'banner_manager.php','page=1&bID=10&','67.197.217.52'),(3080,'2010-02-09 18:22:22',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3081,'2010-02-09 18:22:38',1,'banner_manager.php','page=1&action=update&','67.197.217.52'),(3082,'2010-02-09 18:22:38',1,'banner_manager.php','page=1&bID=10&','67.197.217.53'),(3083,'2010-02-09 18:24:53',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3084,'2010-02-09 18:25:01',1,'banner_manager.php','page=1&action=update&','67.197.217.53'),(3085,'2010-02-09 18:25:01',1,'banner_manager.php','page=1&bID=10&','67.197.217.53'),(3086,'2010-02-09 18:25:34',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3087,'2010-02-09 18:26:04',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.52'),(3088,'2010-02-09 21:02:33',0,'login.php ','','67.197.217.53'),(3089,'2010-02-09 21:03:22',0,'login.php myadiron','','67.197.217.53'),(3090,'2010-02-09 21:03:33',1,'banner_manager.php','','67.197.217.52'),(3091,'2010-02-09 21:03:37',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.52'),(3092,'2010-02-09 21:04:37',1,'banner_manager.php','page=1&action=update&','67.197.217.53'),(3093,'2010-02-09 21:04:37',1,'banner_manager.php','page=1&bID=10&','67.197.217.52'),(3094,'2010-02-09 21:04:54',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3095,'2010-02-09 21:05:13',1,'banner_manager.php','page=1&action=update&','67.197.217.53'),(3096,'2010-02-09 21:05:13',1,'banner_manager.php','page=1&bID=10&','67.197.217.53'),(3097,'2010-02-09 21:05:25',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3098,'2010-02-09 21:05:50',1,'banner_manager.php','page=1&action=update&','67.197.217.53'),(3099,'2010-02-09 21:05:50',1,'banner_manager.php','page=1&bID=10&','67.197.217.53'),(3100,'2010-02-09 21:06:09',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3101,'2010-02-09 21:06:29',1,'banner_manager.php','page=1&action=update&','67.197.217.52'),(3102,'2010-02-09 21:06:29',1,'banner_manager.php','page=1&bID=10&','67.197.217.53'),(3103,'2010-02-09 21:06:54',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3104,'2010-02-09 21:07:27',1,'banner_manager.php','page=1&action=update&','67.197.217.53'),(3105,'2010-02-09 21:07:28',1,'banner_manager.php','page=1&bID=10&','67.197.217.53'),(3106,'2010-02-09 21:07:42',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3107,'2010-02-09 21:08:19',1,'banner_manager.php','page=1&action=update&','67.197.217.52'),(3108,'2010-02-09 21:08:19',1,'banner_manager.php','page=1&bID=10&','67.197.217.52'),(3109,'2010-02-09 21:15:02',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.53'),(3110,'2010-02-09 21:15:29',1,'configuration.php','gID=19&','67.197.217.53'),(3111,'2010-02-09 21:16:08',1,'configuration.php','gID=19&cID=430&','67.197.217.53'),(3112,'2010-02-09 21:16:12',1,'configuration.php','gID=19&cID=430&action=edit&','67.197.217.53'),(3113,'2010-02-09 21:16:29',1,'configuration.php','gID=19&cID=430&action=save&','67.197.217.53'),(3114,'2010-02-09 21:16:30',1,'configuration.php','gID=19&cID=430&','67.197.217.53'),(3115,'2010-02-09 21:16:39',1,'configuration.php','gID=19&cID=432&','67.197.217.52'),(3116,'2010-02-09 21:16:42',1,'configuration.php','gID=19&cID=432&action=edit&','67.197.217.53'),(3117,'2010-02-09 21:16:51',1,'configuration.php','gID=19&cID=432&','67.197.217.53'),(3118,'2010-02-09 21:17:00',1,'configuration.php','gID=19&cID=431&','67.197.217.53'),(3119,'2010-02-09 21:17:04',1,'configuration.php','gID=19&cID=431&action=edit&','67.197.217.53'),(3120,'2010-02-09 21:17:10',1,'configuration.php','gID=19&cID=431&action=save&','67.197.217.53'),(3121,'2010-02-09 21:17:11',1,'configuration.php','gID=19&cID=431&','67.197.217.53'),(3122,'2010-02-09 21:18:46',1,'configuration.php','gID=19&cID=431&action=edit&','67.197.217.52'),(3123,'2010-02-09 21:18:53',1,'configuration.php','gID=19&cID=430&','67.197.217.53'),(3124,'2010-02-09 21:18:57',1,'configuration.php','gID=19&cID=430&action=edit&','67.197.217.52'),(3125,'2010-02-09 21:19:05',1,'configuration.php','gID=19&cID=430&action=save&','67.197.217.52'),(3126,'2010-02-09 21:19:05',1,'configuration.php','gID=19&cID=430&','67.197.217.52'),(3127,'2010-02-09 21:19:52',1,'layout_controller.php','','67.197.217.52'),(3128,'2010-02-09 21:20:18',1,'configuration.php','gID=19&cID=430&','67.197.217.53'),(3129,'2010-02-09 21:41:33',1,'configuration.php','gID=19&cID=412&action=edit&','67.197.217.53'),(3130,'2010-02-09 21:41:43',1,'configuration.php','gID=19&cID=431&action=edit&','67.197.217.53'),(3131,'2010-02-09 21:41:49',1,'configuration.php','gID=19&cID=431&action=save&','67.197.217.53'),(3132,'2010-02-09 21:41:49',1,'configuration.php','gID=19&cID=431&','67.197.217.52'),(3133,'2010-02-09 21:50:23',1,'featured.php','','67.197.217.52'),(3134,'2010-02-09 21:50:30',1,'featured.php','page=1&fID=5&action=edit&','67.197.217.52'),(3135,'2010-02-09 21:50:37',1,'featured.php','page=1&fID=5&','67.197.217.52'),(3136,'2010-02-09 21:50:59',1,'categories.php','','67.197.217.52'),(3137,'2010-02-09 21:51:12',1,'categories.php','cPath=&cID=2&action=edit_category&','67.197.217.52'),(3138,'2010-02-09 21:51:26',1,'categories.php','cPath=2&','67.197.217.53'),(3139,'2010-02-09 21:56:59',1,'banner_manager.php','','67.197.217.53'),(3140,'2010-02-09 21:57:04',1,'banner_manager.php','page=1&bID=10&action=new&','67.197.217.52'),(3141,'2010-02-09 21:57:49',1,'banner_manager.php','page=1&action=update&','67.197.217.52'),(3142,'2010-02-09 21:58:29',1,'banner_manager.php','page=1&action=update&','67.197.217.52'),(3143,'2010-02-09 21:58:43',1,'define_pages_editor.php','','67.197.217.52'),(3144,'2010-02-09 21:58:48',1,'define_pages_editor.php','securityToken=c0f211b4f61c87868de2323d981f22f9&define_it=5&action=new_page&','67.197.217.53'),(3145,'2010-02-09 21:59:04',1,'define_pages_editor.php','lngdir=english&filename=define_page_2.php&action=save&','67.197.217.53'),(3146,'2010-02-09 21:59:05',1,'define_pages_editor.php','','67.197.217.53'),(3147,'2010-02-09 22:00:23',1,'define_pages_editor.php','securityToken=c0f211b4f61c87868de2323d981f22f9&define_it=4&action=new_page&','67.197.217.53'),(3148,'2010-02-09 22:00:49',1,'define_pages_editor.php','lngdir=english&filename=define_main_page.php&action=save&','67.197.217.53'),(3149,'2010-02-09 22:00:49',1,'define_pages_editor.php','','67.197.217.52'),(3150,'2010-02-09 22:01:36',1,'banner_manager.php','','67.197.217.52'),(3151,'2010-02-09 22:01:43',1,'banner_manager.php','page=1&bID=10&action=delete&','67.197.217.53'),(3152,'2010-02-09 22:01:46',1,'banner_manager.php','page=1&bID=10&action=deleteconfirm&','67.197.217.53'),(3153,'2010-02-09 22:01:47',1,'banner_manager.php','page=1&','67.197.217.53'),(3154,'2010-02-09 22:04:35',1,'products_expected.php','','67.197.217.52'),(3155,'2010-02-09 22:05:08',1,'manufacturers.php','','67.197.217.53'),(3156,'2010-02-09 22:05:22',1,'configuration.php','gID=21&','67.197.217.52'),(3157,'2010-02-09 22:05:49',1,'configuration.php','gID=25&','67.197.217.53'),(3158,'2010-02-09 22:18:09',1,'define_pages_editor.php','','67.197.217.52'),(3159,'2010-02-09 22:18:17',1,'define_pages_editor.php','securityToken=c0f211b4f61c87868de2323d981f22f9&define_it=4&action=new_page&','67.197.217.53'),(3160,'2010-02-09 22:18:57',1,'define_pages_editor.php','lngdir=english&filename=define_main_page.php&action=save&','67.197.217.53'),(3161,'2010-02-09 22:18:57',1,'define_pages_editor.php','','67.197.217.52'),(3162,'2010-02-09 22:23:23',1,'configuration.php','gID=19&','67.197.217.53'),(3163,'2010-02-09 22:23:56',1,'layout_controller.php','','67.197.217.52'),(3164,'2010-02-09 22:24:17',1,'layout_controller.php','page=&cID=96&action=edit&','67.197.217.53'),(3165,'2010-02-09 22:24:34',1,'layout_controller.php','page=&cID=96&action=save&layout_box_name=search.php&','67.197.217.53'),(3166,'2010-02-09 22:24:34',1,'layout_controller.php','page=&cID=96&','67.197.217.53'),(3167,'2010-02-09 22:24:45',1,'layout_controller.php','page=&cID=87&action=edit&','67.197.217.53'),(3168,'2010-02-09 22:24:55',1,'layout_controller.php','page=&cID=87&action=save&layout_box_name=languages.php&','67.197.217.52'),(3169,'2010-02-09 22:24:55',1,'layout_controller.php','page=&cID=87&','67.197.217.53'),(3170,'2010-02-09 22:26:06',1,'layout_controller.php','page=&cID=87&action=edit&','67.197.217.53'),(3171,'2010-02-09 22:26:22',1,'layout_controller.php','page=&cID=87&action=save&layout_box_name=languages.php&','67.197.217.52'),(3172,'2010-02-09 22:26:23',1,'layout_controller.php','page=&cID=87&','67.197.217.52'),(3173,'2010-02-09 22:26:36',1,'layout_controller.php','page=&cID=96&','67.197.217.52'),(3174,'2010-02-09 22:26:40',1,'layout_controller.php','page=&cID=96&action=edit&','67.197.217.52'),(3175,'2010-02-09 22:26:55',1,'layout_controller.php','page=&cID=96&action=save&layout_box_name=search.php&','67.197.217.52'),(3176,'2010-02-09 22:26:55',1,'layout_controller.php','page=&cID=96&','67.197.217.53'),(3177,'2010-02-09 22:34:58',1,'configuration.php','gID=19&','67.197.217.52'),(3178,'2010-02-09 22:35:27',1,'configuration.php','gID=19&cID=413&','67.197.217.52'),(3179,'2010-02-09 22:35:29',1,'configuration.php','gID=19&cID=413&action=edit&','67.197.217.52'),(3180,'2010-02-09 22:35:37',1,'configuration.php','gID=19&cID=413&action=save&','67.197.217.53'),(3181,'2010-02-09 22:35:40',1,'configuration.php','gID=19&cID=413&','67.197.217.53'),(3182,'2010-02-09 22:37:40',1,'configuration.php','gID=19&cID=399&','67.197.217.53'),(3183,'2010-02-09 22:37:43',1,'configuration.php','gID=19&cID=399&action=edit&','67.197.217.53'),(3184,'2010-02-09 22:37:50',1,'configuration.php','gID=19&cID=399&action=save&','67.197.217.52'),(3185,'2010-02-09 22:37:51',1,'configuration.php','gID=19&cID=399&','67.197.217.53'),(3186,'2010-02-09 22:48:24',1,'configuration.php','gID=19&cID=409&action=edit&','67.197.217.52'),(3187,'2010-02-09 22:48:30',1,'layout_controller.php','','67.197.217.52'),(3188,'2010-02-09 22:48:35',1,'layout_controller.php','page=&cID=96&action=edit&','67.197.217.52'),(3189,'2010-02-09 22:48:43',1,'layout_controller.php','page=&cID=96&action=save&layout_box_name=search.php&','67.197.217.52'),(3190,'2010-02-09 22:48:43',1,'layout_controller.php','page=&cID=96&','67.197.217.52'),(3191,'2010-02-09 22:56:16',1,'define_pages_editor.php','','67.197.217.52'),(3192,'2010-02-09 22:56:26',1,'define_pages_editor.php','securityToken=c0f211b4f61c87868de2323d981f22f9&define_it=4&action=new_page&','67.197.217.52'),(3193,'2010-02-09 22:56:46',1,'define_pages_editor.php','','67.197.217.52'),(3194,'2010-02-09 22:56:51',1,'define_pages_editor.php','securityToken=c0f211b4f61c87868de2323d981f22f9&define_it=6&action=new_page&','67.197.217.52'),(3195,'2010-02-09 22:56:54',1,'define_pages_editor.php','securityToken=c0f211b4f61c87868de2323d981f22f9&define_it=5&action=new_page&','67.197.217.52'),(3196,'2010-02-09 22:57:23',1,'define_pages_editor.php','lngdir=english&filename=define_page_2.php&action=save&','67.197.217.52'),(3197,'2010-02-09 22:57:24',1,'define_pages_editor.php','','67.197.217.52'),(3198,'2010-02-09 23:04:44',1,'configuration.php','gID=10&','67.197.217.52'),(3199,'2010-02-09 23:04:49',1,'configuration.php','gID=10&cID=250&','67.197.217.52'),(3200,'2010-02-09 23:04:52',1,'configuration.php','gID=10&cID=250&action=edit&','67.197.217.52'),(3201,'2010-02-09 23:04:56',1,'configuration.php','gID=10&cID=250&action=save&','67.197.217.52'),(3202,'2010-02-09 23:04:57',1,'configuration.php','gID=10&cID=250&','67.197.217.52'),(3203,'2010-02-09 23:13:08',1,'developers_tool_kit.php','','67.197.217.52'),(3204,'2010-02-09 23:13:23',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3205,'2010-02-09 23:53:00',1,'configuration.php','gID=1&','67.197.217.53'),(3206,'2010-02-09 23:53:22',1,'configuration.php','gID=1&cID=23&','67.197.217.52'),(3207,'2010-02-10 00:10:43',1,'developers_tool_kit.php','','67.197.217.53'),(3208,'2010-02-10 00:10:51',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3209,'2010-02-10 06:22:05',0,'login.php ','','67.197.217.53'),(3210,'2010-02-10 06:22:21',0,'login.php myadiron','','67.197.217.52'),(3211,'2010-02-10 06:22:37',1,'developers_tool_kit.php','','67.197.217.52'),(3212,'2010-02-10 06:22:53',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3213,'2010-02-10 06:29:46',0,'login.php ','','67.197.217.53'),(3214,'2010-02-10 06:30:05',0,'login.php myadiron','','67.197.217.53'),(3215,'2010-02-10 06:46:17',1,'define_pages_editor.php','','67.197.217.52'),(3216,'2010-02-10 06:46:25',1,'define_pages_editor.php','securityToken=eee88443400a3bce4508e65b4222d3ee&define_it=4&action=new_page&','67.197.217.53'),(3217,'2010-02-10 06:47:19',1,'define_pages_editor.php','','67.197.217.52'),(3218,'2010-02-10 06:47:46',1,'developers_tool_kit.php','','67.197.217.53'),(3219,'2010-02-10 06:47:54',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3220,'2010-02-10 06:47:57',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3221,'2010-02-10 07:10:46',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3222,'2010-02-10 07:10:49',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.52'),(3223,'2010-02-10 07:10:52',1,'developers_tool_kit.php','action=locate_template&','67.197.217.53'),(3224,'2010-02-10 07:10:55',1,'developers_tool_kit.php','action=locate_class&','67.197.217.52'),(3225,'2010-02-10 07:10:58',1,'developers_tool_kit.php','action=locate_function&','67.197.217.52'),(3226,'2010-02-10 07:11:01',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3227,'2010-02-10 07:11:03',1,'developers_tool_kit.php','action=locate_function&','67.197.217.53'),(3228,'2010-02-10 07:11:06',1,'developers_tool_kit.php','action=locate_class&','67.197.217.52'),(3229,'2010-02-10 07:11:08',1,'developers_tool_kit.php','action=locate_template&','67.197.217.53'),(3230,'2010-02-10 07:11:11',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3231,'2010-02-10 07:15:43',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3232,'2010-02-10 07:15:46',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3233,'2010-02-10 07:15:54',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3234,'2010-02-10 07:16:00',1,'developers_tool_kit.php','action=locate_template&','67.197.217.53'),(3235,'2010-02-10 12:17:12',0,'login.php ','','67.197.217.53'),(3236,'2010-02-10 12:17:30',0,'login.php myadiron','','67.197.217.53'),(3237,'2010-02-10 12:17:44',1,'developers_tool_kit.php','','67.197.217.52'),(3238,'2010-02-10 12:17:55',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3239,'2010-02-10 16:26:40',0,'login.php ','','67.197.217.53'),(3240,'2010-02-10 16:26:55',0,'login.php myadiron','','67.197.217.53'),(3241,'2010-02-10 16:27:26',1,'languages.php','','67.197.217.52'),(3242,'2010-02-10 16:27:32',1,'languages.php','page=1&lID=1&action=new&','67.197.217.52'),(3243,'2010-02-10 16:38:01',1,'languages.php','page=1&lID=1&action=new&','67.197.217.52'),(3244,'2010-02-10 16:38:28',1,'languages.php','page=1&lID=1&','67.197.217.53'),(3245,'2010-02-10 16:38:51',1,'languages.php','page=1&lID=1&action=new&','67.197.217.53'),(3246,'2010-02-10 16:39:27',1,'languages.php','action=insert&','67.197.217.53'),(3247,'2010-02-10 16:39:36',1,'languages.php','lID=2&','67.197.217.52'),(3248,'2010-02-10 16:40:08',1,'languages.php','page=1&lID=2&action=edit&','67.197.217.53'),(3249,'2010-02-10 16:40:42',1,'languages.php','page=1&lID=2&action=save&','67.197.217.53'),(3250,'2010-02-10 16:40:42',1,'languages.php','page=1&lID=2&','67.197.217.52'),(3251,'2010-02-10 16:40:52',1,'languages.php','page=1&lID=2&action=edit&','67.197.217.53'),(3252,'2010-02-10 16:40:58',1,'languages.php','page=1&lID=2&action=save&','67.197.217.52'),(3253,'2010-02-10 16:40:58',1,'languages.php','page=1&lID=2&','67.197.217.53'),(3254,'2010-02-10 16:41:05',1,'languages.php','page=1&lID=2&action=edit&','67.197.217.52'),(3255,'2010-02-10 16:41:12',1,'languages.php','page=1&lID=2&action=save&','67.197.217.52'),(3256,'2010-02-10 16:41:13',1,'languages.php','page=1&lID=2&','67.197.217.53'),(3257,'2010-02-10 16:59:16',1,'define_pages_editor.php','','67.197.217.53'),(3258,'2010-02-10 16:59:22',1,'define_pages_editor.php','securityToken=3c80471fa5f9b0c6cba875a022c9ceb1&define_it=4&action=new_page&','67.197.217.53'),(3259,'2010-02-10 16:59:37',1,'alt_nav.php','','67.197.217.52'),(3260,'2010-02-10 16:59:41',1,'alt_nav.php','securityToken=3c80471fa5f9b0c6cba875a022c9ceb1&language=sp&','67.197.217.53'),(3261,'2010-02-10 17:00:02',1,'define_pages_editor.php','','67.197.217.53'),(3262,'2010-02-10 17:00:06',1,'define_pages_editor.php','securityToken=3c80471fa5f9b0c6cba875a022c9ceb1&define_it=4&action=new_page&','67.197.217.53'),(3263,'2010-02-10 17:00:14',1,'define_pages_editor.php','lngdir=spanish&filename=define_main_page.php&action=save&','67.197.217.53'),(3264,'2010-02-10 17:00:15',1,'define_pages_editor.php','','67.197.217.52'),(3265,'2010-02-10 17:02:17',1,'define_pages_editor.php','securityToken=3c80471fa5f9b0c6cba875a022c9ceb1&define_it=4&action=new_page&','67.197.217.52'),(3266,'2010-02-10 17:11:58',1,'define_pages_editor.php','lngdir=spanish&filename=define_main_page.php&action=save&','67.197.217.53'),(3267,'2010-02-10 17:11:59',1,'define_pages_editor.php','','67.197.217.52'),(3268,'2010-02-10 17:13:07',1,'define_pages_editor.php','securityToken=3c80471fa5f9b0c6cba875a022c9ceb1&define_it=4&action=new_page&','67.197.217.52'),(3269,'2010-02-10 17:21:41',1,'define_pages_editor.php','lngdir=spanish&filename=define_main_page.php&action=save&','67.197.217.52'),(3270,'2010-02-10 17:21:41',1,'define_pages_editor.php','','67.197.217.52'),(3271,'2010-02-10 17:23:57',1,'define_pages_editor.php','securityToken=3c80471fa5f9b0c6cba875a022c9ceb1&define_it=4&action=new_page&','67.197.217.53'),(3272,'2010-02-10 17:25:09',1,'define_pages_editor.php','lngdir=spanish&filename=define_main_page.php&action=save&','67.197.217.52'),(3273,'2010-02-10 17:25:09',1,'define_pages_editor.php','','67.197.217.52'),(3274,'2010-02-10 17:32:42',1,'define_pages_editor.php','securityToken=3c80471fa5f9b0c6cba875a022c9ceb1&define_it=4&action=new_page&','67.197.217.52'),(3275,'2010-02-10 17:46:24',1,'define_pages_editor.php','lngdir=spanish&filename=define_main_page.php&action=save&','67.197.217.53'),(3276,'2010-02-10 17:46:24',1,'define_pages_editor.php','','67.197.217.53'),(3277,'2010-02-10 21:01:41',0,'login.php ','','67.197.217.52'),(3278,'2010-02-10 21:01:59',0,'login.php myadiron','','67.197.217.52'),(3279,'2010-02-10 21:36:19',1,'define_pages_editor.php','','67.197.217.52'),(3280,'2010-02-10 21:36:24',1,'define_pages_editor.php','securityToken=9aed8b4b5ddc66f8ea9f7d7d37c139fb&define_it=4&action=new_page&','67.197.217.52'),(3281,'2010-02-10 21:42:05',1,'define_pages_editor.php','securityToken=9aed8b4b5ddc66f8ea9f7d7d37c139fb&define_it=5&action=new_page&','67.197.217.53'),(3282,'2010-02-10 21:42:09',1,'define_pages_editor.php','securityToken=9aed8b4b5ddc66f8ea9f7d7d37c139fb&define_it=4&action=new_page&','67.197.217.53'),(3283,'2010-02-10 21:52:06',0,'login.php ','','67.197.217.52'),(3284,'2010-02-10 21:52:20',0,'login.php myadiron','','67.197.217.53'),(3285,'2010-02-10 21:52:30',1,'define_pages_editor.php','','67.197.217.53'),(3286,'2010-02-10 21:52:33',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&define_it=4&action=new_page&','67.197.217.53'),(3287,'2010-02-10 21:53:04',1,'alt_nav.php','','67.197.217.52'),(3288,'2010-02-10 21:53:08',1,'alt_nav.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&language=sp&','67.197.217.53'),(3289,'2010-02-10 21:53:14',1,'define_pages_editor.php','','67.197.217.52'),(3290,'2010-02-10 21:53:18',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&define_it=4&action=new_page&','67.197.217.52'),(3291,'2010-02-10 21:56:18',1,'define_pages_editor.php','lngdir=spanish&filename=define_main_page.php&action=save&','67.197.217.52'),(3292,'2010-02-10 21:56:18',1,'define_pages_editor.php','','67.197.217.53'),(3293,'2010-02-10 21:58:03',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&define_it=4&action=new_page&','67.197.217.52'),(3294,'2010-02-10 21:59:27',1,'define_pages_editor.php','lngdir=spanish&filename=define_main_page.php&action=save&','67.197.217.52'),(3295,'2010-02-10 21:59:28',1,'define_pages_editor.php','','67.197.217.52'),(3296,'2010-02-10 22:12:42',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&language=en&','67.197.217.53'),(3297,'2010-02-10 22:12:51',1,'define_pages_editor.php','','67.197.217.53'),(3298,'2010-02-10 22:13:00',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&define_it=10&action=new_page&','67.197.217.53'),(3299,'2010-02-10 22:26:33',1,'alt_nav.php','','67.197.217.53'),(3300,'2010-02-10 22:26:37',1,'alt_nav.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&language=sp&','67.197.217.52'),(3301,'2010-02-10 22:26:43',1,'define_pages_editor.php','','67.197.217.52'),(3302,'2010-02-10 22:26:50',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&define_it=10&action=new_page&','67.197.217.52'),(3303,'2010-02-10 22:27:34',1,'define_pages_editor.php','lngdir=spanish&filename=define_shippinginfo.php&action=save&','67.197.217.52'),(3304,'2010-02-10 22:27:34',1,'define_pages_editor.php','','67.197.217.52'),(3305,'2010-02-10 22:28:21',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&language=en&','67.197.217.52'),(3306,'2010-02-10 22:28:38',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&define_it=9&action=new_page&','67.197.217.52'),(3307,'2010-02-10 22:33:31',1,'alt_nav.php','','67.197.217.52'),(3308,'2010-02-10 22:33:35',1,'alt_nav.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&language=sp&','67.197.217.52'),(3309,'2010-02-10 22:33:39',1,'define_pages_editor.php','','67.197.217.52'),(3310,'2010-02-10 22:33:44',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&define_it=9&action=new_page&','67.197.217.52'),(3311,'2010-02-10 22:34:00',1,'define_pages_editor.php','lngdir=spanish&filename=define_privacy.php&action=save&','67.197.217.53'),(3312,'2010-02-10 22:34:00',1,'define_pages_editor.php','','67.197.217.53'),(3313,'2010-02-10 22:35:52',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&define_it=1&action=new_page&','67.197.217.52'),(3314,'2010-02-10 22:39:54',1,'define_pages_editor.php','lngdir=spanish&filename=define_conditions.php&action=save&','67.197.217.52'),(3315,'2010-02-10 22:39:54',1,'define_pages_editor.php','','67.197.217.52'),(3316,'2010-02-10 22:41:47',1,'developers_tool_kit.php','','67.197.217.53'),(3317,'2010-02-10 22:41:58',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3318,'2010-02-10 22:42:02',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3319,'2010-02-10 22:42:12',1,'developers_tool_kit.php','action=locate_template&','67.197.217.52'),(3320,'2010-02-10 22:42:18',1,'developers_tool_kit.php','action=locate_class&','67.197.217.53'),(3321,'2010-02-10 22:42:23',1,'developers_tool_kit.php','action=locate_function&','67.197.217.53'),(3322,'2010-02-10 22:42:42',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3323,'2010-02-10 22:42:45',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3324,'2010-02-10 22:43:11',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3325,'2010-02-10 22:49:06',1,'define_pages_editor.php','','67.197.217.53'),(3326,'2010-02-10 22:49:17',1,'define_pages_editor.php','securityToken=fbcf514bf0a5b0d8c451042dcba3a6f1&define_it=3&action=new_page&','67.197.217.53'),(3327,'2010-02-10 22:49:44',1,'define_pages_editor.php','lngdir=spanish&filename=define_discount_coupon.php&action=save&','67.197.217.53'),(3328,'2010-02-10 22:49:44',1,'define_pages_editor.php','','67.197.217.53'),(3329,'2010-02-11 08:23:43',0,'login.php ','','67.197.217.52'),(3330,'2010-02-11 08:24:00',0,'login.php myadiron','','67.197.217.52'),(3331,'2010-02-11 08:50:52',1,'developers_tool_kit.php','','67.197.217.52'),(3332,'2010-02-11 08:51:06',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.52'),(3333,'2010-02-11 08:51:10',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.52'),(3334,'2010-02-11 11:16:12',0,'login.php ','','67.197.217.53'),(3335,'2010-02-11 11:16:32',0,'login.php myadiron','','67.197.217.53'),(3336,'2010-02-11 11:16:38',1,'developers_tool_kit.php','','67.197.217.53'),(3337,'2010-02-11 11:17:15',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3338,'2010-02-11 11:18:59',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3339,'2010-02-11 13:41:22',0,'login.php ','','67.197.217.52'),(3340,'2010-02-11 13:41:55',0,'login.php myadiron','','67.197.217.52'),(3341,'2010-02-11 13:42:17',1,'developers_tool_kit.php','','67.197.217.52'),(3342,'2010-02-11 13:42:45',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3343,'2010-02-11 13:43:17',1,'developers_tool_kit.php','action=locate_template&','67.197.217.52'),(3344,'2010-02-11 13:43:22',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.52'),(3345,'2010-02-11 15:06:21',0,'login.php ','','67.197.217.53'),(3346,'2010-02-11 15:07:07',0,'login.php myadiron','','67.197.217.53'),(3347,'2010-02-11 15:07:15',1,'developers_tool_kit.php','','67.197.217.53'),(3348,'2010-02-11 15:07:31',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3349,'2010-02-11 15:07:35',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.52'),(3350,'2010-02-11 15:32:51',1,'alt_nav.php','','67.197.217.53'),(3351,'2010-02-11 15:32:55',1,'developers_tool_kit.php','','67.197.217.53'),(3352,'2010-02-11 15:33:00',1,'developers_tool_kit.php','securityToken=c843be8ad5135ca0a86608833d4b8132&language=sp&','67.197.217.53'),(3353,'2010-02-11 15:33:07',1,'define_pages_editor.php','','67.197.217.53'),(3354,'2010-02-11 15:33:10',1,'define_pages_editor.php','securityToken=c843be8ad5135ca0a86608833d4b8132&define_it=4&action=new_page&','67.197.217.53'),(3355,'2010-02-11 15:35:25',1,'define_pages_editor.php','lngdir=spanish&filename=define_main_page.php&action=save&','67.197.217.52'),(3356,'2010-02-11 15:35:25',1,'define_pages_editor.php','','67.197.217.53'),(3357,'2010-02-11 16:20:53',1,'define_pages_editor.php','securityToken=c843be8ad5135ca0a86608833d4b8132&language=en&','67.197.217.53'),(3358,'2010-02-11 16:21:01',1,'alt_nav.php','','67.197.217.53'),(3359,'2010-02-11 16:21:05',1,'define_pages_editor.php','','67.197.217.53'),(3360,'2010-02-11 16:21:10',1,'define_pages_editor.php','securityToken=c843be8ad5135ca0a86608833d4b8132&define_it=4&action=new_page&','67.197.217.53'),(3361,'2010-02-11 16:22:26',1,'developers_tool_kit.php','','67.197.217.53'),(3362,'2010-02-11 16:22:37',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3363,'2010-02-11 16:22:40',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3364,'2010-02-11 17:00:36',0,'login.php ','','67.197.217.53'),(3365,'2010-02-11 17:00:49',0,'login.php myadiron','','67.197.217.52'),(3366,'2010-02-11 17:00:54',1,'define_pages_editor.php','','67.197.217.53'),(3367,'2010-02-11 17:01:02',1,'define_pages_editor.php','securityToken=ea0f283eff0c9e1f219b954765b41799&define_it=5&action=new_page&','67.197.217.52'),(3368,'2010-02-11 17:01:34',1,'alt_nav.php','','67.197.217.53'),(3369,'2010-02-11 17:01:45',1,'alt_nav.php','securityToken=ea0f283eff0c9e1f219b954765b41799&language=sp&','67.197.217.53'),(3370,'2010-02-11 17:01:55',1,'define_pages_editor.php','','67.197.217.53'),(3371,'2010-02-11 17:01:59',1,'define_pages_editor.php','securityToken=ea0f283eff0c9e1f219b954765b41799&define_it=5&action=new_page&','67.197.217.52'),(3372,'2010-02-11 17:02:09',1,'define_pages_editor.php','lngdir=spanish&filename=define_page_2.php&action=save&','67.197.217.52'),(3373,'2010-02-11 17:02:09',1,'define_pages_editor.php','','67.197.217.53'),(3374,'2010-02-11 17:02:14',1,'define_pages_editor.php','securityToken=ea0f283eff0c9e1f219b954765b41799&language=en&','67.197.217.53'),(3375,'2010-02-11 17:02:17',1,'define_pages_editor.php','','67.197.217.52'),(3376,'2010-02-11 17:02:20',1,'define_pages_editor.php','securityToken=ea0f283eff0c9e1f219b954765b41799&define_it=6&action=new_page&','67.197.217.53'),(3377,'2010-02-11 17:02:32',1,'configuration.php','gID=1&','67.197.217.53'),(3378,'2010-02-11 17:02:35',1,'configuration.php','securityToken=ea0f283eff0c9e1f219b954765b41799&language=sp&','67.197.217.53'),(3379,'2010-02-11 17:02:38',1,'define_pages_editor.php','','67.197.217.52'),(3380,'2010-02-11 17:02:41',1,'define_pages_editor.php','securityToken=ea0f283eff0c9e1f219b954765b41799&define_it=6&action=new_page&','67.197.217.53'),(3381,'2010-02-11 17:02:51',1,'define_pages_editor.php','lngdir=spanish&filename=define_page_3.php&action=save&','67.197.217.53'),(3382,'2010-02-11 17:02:51',1,'define_pages_editor.php','','67.197.217.53'),(3383,'2010-02-11 17:02:55',1,'alt_nav.php','','67.197.217.52'),(3384,'2010-02-11 17:02:59',1,'alt_nav.php','securityToken=ea0f283eff0c9e1f219b954765b41799&language=en&','67.197.217.52'),(3385,'2010-02-11 17:03:02',1,'define_pages_editor.php','','67.197.217.53'),(3386,'2010-02-11 17:03:06',1,'define_pages_editor.php','securityToken=ea0f283eff0c9e1f219b954765b41799&define_it=7&action=new_page&','67.197.217.53'),(3387,'2010-02-11 17:03:18',1,'alt_nav.php','','67.197.217.53'),(3388,'2010-02-11 17:03:21',1,'alt_nav.php','securityToken=ea0f283eff0c9e1f219b954765b41799&language=sp&','67.197.217.53'),(3389,'2010-02-11 17:03:24',1,'define_pages_editor.php','','67.197.217.53'),(3390,'2010-02-11 17:03:31',1,'define_pages_editor.php','securityToken=ea0f283eff0c9e1f219b954765b41799&define_it=7&action=new_page&','67.197.217.52'),(3391,'2010-02-11 17:03:39',1,'define_pages_editor.php','lngdir=spanish&filename=define_page_4.php&action=save&','67.197.217.53'),(3392,'2010-02-11 17:03:39',1,'define_pages_editor.php','','67.197.217.53'),(3393,'2010-02-11 17:11:29',1,'define_pages_editor.php','securityToken=ea0f283eff0c9e1f219b954765b41799&language=en&','67.197.217.53'),(3394,'2010-02-11 17:11:34',1,'define_pages_editor.php','','67.197.217.52'),(3395,'2010-02-11 17:11:42',1,'developers_tool_kit.php','','67.197.217.52'),(3396,'2010-02-11 17:11:52',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3397,'2010-02-11 17:11:55',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3398,'2010-02-11 17:12:29',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3399,'2010-02-11 17:13:41',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3400,'2010-02-11 21:15:11',0,'login.php ','','67.197.217.53'),(3401,'2010-02-11 21:15:34',0,'login.php myadiron','','67.197.217.53'),(3402,'2010-02-11 21:28:59',1,'define_pages_editor.php','','67.197.217.53'),(3403,'2010-02-11 21:29:04',1,'define_pages_editor.php','securityToken=b9cc99918f4f5357595a4de3b5b6f623&define_it=5&action=new_page&','67.197.217.53'),(3404,'2010-02-11 22:21:10',1,'define_pages_editor.php','securityToken=b9cc99918f4f5357595a4de3b5b6f623&define_it=4&action=new_page&','67.197.217.52'),(3405,'2010-02-11 22:32:48',1,'define_pages_editor.php','','67.197.217.53'),(3406,'2010-02-11 22:32:56',1,'define_pages_editor.php','securityToken=b9cc99918f4f5357595a4de3b5b6f623&language=en&','67.197.217.53'),(3407,'2010-02-11 22:33:04',1,'categories.php','','67.197.217.53'),(3408,'2010-02-11 22:33:09',1,'categories.php','cPath=&cID=2&action=edit_category&','67.197.217.53'),(3409,'2010-02-11 22:33:50',1,'categories.php','action=update_category&cPath=&','67.197.217.52'),(3410,'2010-02-11 22:33:51',1,'categories.php','cPath=&cID=2&','67.197.217.53'),(3411,'2010-02-11 22:33:55',1,'categories.php','cPath=2&','67.197.217.52'),(3412,'2010-02-11 22:34:00',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product&','67.197.217.53'),(3413,'2010-02-11 22:46:55',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview&','67.197.217.52'),(3414,'2010-02-11 22:47:46',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product&','67.197.217.52'),(3415,'2010-02-11 22:48:02',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview&','67.197.217.53'),(3416,'2010-02-11 22:48:06',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product&','67.197.217.53'),(3417,'2010-02-11 22:48:06',1,'categories.php','cPath=2&pID=5&','67.197.217.53'),(3418,'2010-02-11 22:48:22',1,'product.php','cPath=2&product_type=1&pID=6&action=new_product&','67.197.217.52'),(3419,'2010-02-11 22:56:40',1,'product.php','cPath=2&product_type=1&pID=6&action=new_product_preview&','67.197.217.52'),(3420,'2010-02-11 22:57:14',1,'product.php','cPath=2&product_type=1&pID=6&action=update_product&','67.197.217.52'),(3421,'2010-02-11 22:57:15',1,'categories.php','cPath=2&pID=6&','67.197.217.53'),(3422,'2010-02-11 22:59:47',1,'developers_tool_kit.php','','67.197.217.53'),(3423,'2010-02-11 23:00:00',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3424,'2010-02-11 23:00:07',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3425,'2010-02-11 23:14:06',1,'developers_tool_kit.php','action=locate_configuration&','67.197.217.53'),(3426,'2010-02-11 23:14:09',1,'developers_tool_kit.php','action=locate_all_files&','67.197.217.53'),(3427,'2010-02-11 23:17:24',1,'attributes_controller.php','','67.197.217.52'),(3428,'2010-02-11 23:18:02',1,'attributes_controller.php','securityToken=b9cc99918f4f5357595a4de3b5b6f623&language=sp&','67.197.217.53'),(3429,'2010-02-11 23:19:18',1,'attributes_controller.php','securityToken=b9cc99918f4f5357595a4de3b5b6f623&language=en&','67.197.217.53'),(3430,'2010-02-11 23:19:35',1,'options_name_manager.php','','67.197.217.53'),(3431,'2010-02-11 23:20:07',1,'options_name_manager.php','action=update_option&option_id=1&option_order_by=products_options_id&option_page=1&','67.197.217.52'),(3432,'2010-02-11 23:20:58',1,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','67.197.217.53'),(3433,'2010-02-11 23:20:58',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','67.197.217.53'),(3434,'2010-02-11 23:21:04',1,'options_name_manager.php','action=update_option&option_id=2&option_order_by=products_options_id&option_page=1&','67.197.217.53'),(3435,'2010-02-11 23:22:03',1,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','67.197.217.52'),(3436,'2010-02-11 23:22:04',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','67.197.217.52'),(3437,'2010-02-11 23:23:00',1,'options_values_manager.php','','67.197.217.52'),(3438,'2010-02-11 23:23:11',1,'options_values_manager.php','action=update_option_value&value_id=1&value_page=1&','67.197.217.52'),(3439,'2010-02-11 23:23:38',1,'options_values_manager.php','action=update_value&value_page=1&','67.197.217.53'),(3440,'2010-02-11 23:23:38',1,'options_values_manager.php','value_page=1&','67.197.217.53'),(3441,'2010-02-11 23:23:45',1,'options_values_manager.php','action=update_option_value&value_id=2&value_page=1&','67.197.217.53'),(3442,'2010-02-11 23:24:32',1,'options_values_manager.php','action=update_value&value_page=1&','67.197.217.52'),(3443,'2010-02-11 23:24:32',1,'options_values_manager.php','value_page=1&','67.197.217.52'),(3444,'2010-02-11 23:24:36',1,'options_values_manager.php','action=update_option_value&value_id=1&value_page=1&','67.197.217.52'),(3445,'2010-02-11 23:24:41',1,'options_values_manager.php','value_page=1&','67.197.217.53'),(3446,'2010-02-11 23:24:44',1,'options_values_manager.php','action=update_option_value&value_id=1&value_page=1&','67.197.217.52'),(3447,'2010-02-11 23:24:46',1,'options_values_manager.php','value_page=1&','67.197.217.52'),(3448,'2010-02-11 23:24:50',1,'options_values_manager.php','action=update_option_value&value_id=3&value_page=1&','67.197.217.53'),(3449,'2010-02-11 23:25:53',1,'options_values_manager.php','action=update_value&value_page=1&','67.197.217.53'),(3450,'2010-02-11 23:25:54',1,'options_values_manager.php','value_page=1&','67.197.217.53'),(3451,'2010-02-11 23:25:56',1,'options_values_manager.php','action=update_option_value&value_id=1&value_page=1&','67.197.217.52'),(3452,'2010-02-11 23:26:11',1,'options_values_manager.php','action=update_value&value_page=1&','67.197.217.53'),(3453,'2010-02-11 23:26:11',1,'options_values_manager.php','value_page=1&','67.197.217.53'),(3454,'2010-02-11 23:26:14',1,'options_values_manager.php','action=update_option_value&value_id=2&value_page=1&','67.197.217.52'),(3455,'2010-02-11 23:26:19',1,'options_values_manager.php','value_page=1&','67.197.217.52'),(3456,'2010-02-11 23:26:21',1,'options_values_manager.php','action=update_option_value&value_id=1&value_page=1&','67.197.217.52'),(3457,'2010-02-11 23:26:24',1,'options_values_manager.php','value_page=1&','67.197.217.53'),(3458,'2010-02-11 23:26:28',1,'options_values_manager.php','action=update_option_value&value_id=2&value_page=1&','67.197.217.52'),(3459,'2010-02-11 23:26:30',1,'options_values_manager.php','value_page=1&','67.197.217.53'),(3460,'2010-02-11 23:26:33',1,'options_values_manager.php','action=update_option_value&value_id=3&value_page=1&','67.197.217.53'),(3461,'2010-02-11 23:26:37',1,'options_values_manager.php','value_page=1&','67.197.217.52'),(3462,'2010-02-11 23:26:40',1,'options_values_manager.php','action=update_option_value&value_id=4&value_page=1&','67.197.217.52'),(3463,'2010-02-11 23:26:59',1,'options_values_manager.php','action=update_value&value_page=1&','67.197.217.52'),(3464,'2010-02-11 23:26:59',1,'options_values_manager.php','value_page=1&','67.197.217.52'),(3465,'2010-02-11 23:27:53',1,'options_values_manager.php','action=update_option_value&value_id=4&value_page=1&','67.197.217.52'),(3466,'2010-02-11 23:27:58',1,'options_values_manager.php','value_page=1&','67.197.217.52'),(3467,'2010-02-11 23:28:00',1,'options_values_manager.php','action=update_option_value&value_id=3&value_page=1&','67.197.217.52'),(3468,'2010-02-11 23:28:04',1,'options_values_manager.php','value_page=1&','67.197.217.52'),(3469,'2010-02-11 23:28:06',1,'options_values_manager.php','action=update_option_value&value_id=4&value_page=1&','67.197.217.52'),(3470,'2010-02-11 23:28:09',1,'options_values_manager.php','value_page=1&','67.197.217.52'),(3471,'2010-02-11 23:38:42',1,'categories.php','','67.197.217.53'),(3472,'2010-02-11 23:38:48',1,'categories.php','cPath=2&','67.197.217.53'),(3473,'2010-02-11 23:38:55',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product&','67.197.217.53'),(3474,'2010-02-12 23:57:42',0,'login.php ','','76.221.246.255'),(3475,'2010-02-12 23:58:07',0,'login.php myadiron','','76.221.246.255'),(3476,'2010-02-13 13:34:59',0,'login.php ','','76.221.246.255'),(3477,'2010-02-13 13:35:27',0,'login.php myadiron','','76.221.246.255'),(3478,'2010-02-13 13:43:03',1,'product_types.php','','76.221.246.255'),(3479,'2010-02-13 13:43:16',1,'categories.php','','76.221.246.255'),(3480,'2010-02-13 13:43:19',1,'categories.php','cPath=2&','76.221.246.255'),(3481,'2010-02-13 13:43:56',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product&','76.221.246.255'),(3482,'2010-02-13 13:44:06',1,'categories.php','cPath=2&pID=5&','76.221.246.255'),(3483,'2010-02-13 13:44:11',1,'product.php','cPath=2&product_type=1&pID=6&action=new_product&','76.221.246.255'),(3484,'2010-02-13 13:44:20',1,'categories.php','cPath=2&pID=6&','76.221.246.255'),(3485,'2010-02-13 13:44:36',1,'product.php','cPath=2&product_type=1&pID=1&action=new_product&','76.221.246.255'),(3486,'2010-02-13 13:51:38',1,'product.php','cPath=2&product_type=1&pID=1&action=new_product_preview&','76.221.246.255'),(3487,'2010-02-13 13:52:31',1,'product.php','cPath=2&product_type=1&pID=1&action=update_product&','76.221.246.255'),(3488,'2010-02-13 13:52:31',1,'categories.php','cPath=2&pID=1&','76.221.246.255'),(3489,'2010-02-13 13:52:55',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product&','76.221.246.255'),(3490,'2010-02-13 13:54:24',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview&','76.221.246.255'),(3491,'2010-02-13 13:54:33',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product&','76.221.246.255'),(3492,'2010-02-13 13:54:34',1,'categories.php','cPath=2&pID=5&','76.221.246.255'),(3493,'2010-02-13 13:55:51',1,'product.php','cPath=2&product_type=1&pID=3&action=new_product&','76.221.246.255'),(3494,'2010-02-13 14:00:22',1,'product.php','cPath=2&product_type=1&pID=3&action=new_product_preview&','76.221.246.255'),(3495,'2010-02-13 14:00:43',1,'product.php','cPath=2&product_type=1&pID=3&action=update_product&','76.221.246.255'),(3496,'2010-02-13 14:01:24',1,'product.php','cPath=2&product_type=1&pID=3&action=new_product_preview&','76.221.246.255'),(3497,'2010-02-13 14:01:29',1,'product.php','cPath=2&product_type=1&pID=3&action=update_product&','76.221.246.255'),(3498,'2010-02-13 14:01:29',1,'categories.php','cPath=2&pID=3&','76.221.246.255'),(3499,'2010-02-13 14:01:33',1,'product.php','cPath=2&product_type=1&pID=2&action=new_product&','76.221.246.255'),(3500,'2010-02-13 14:05:25',1,'product.php','cPath=2&product_type=1&pID=2&action=new_product_preview&','76.221.246.255'),(3501,'2010-02-13 14:05:36',1,'product.php','cPath=2&product_type=1&pID=2&action=update_product&','76.221.246.255'),(3502,'2010-02-13 14:05:37',1,'categories.php','cPath=2&pID=2&','76.221.246.255'),(3503,'2010-02-13 14:05:43',1,'product.php','cPath=2&product_type=1&pID=7&action=new_product&','76.221.246.255'),(3504,'2010-02-13 14:09:52',1,'product.php','cPath=2&product_type=1&pID=7&action=new_product_preview&','76.221.246.255'),(3505,'2010-02-13 14:10:36',1,'product.php','cPath=2&product_type=1&pID=7&action=update_product&','76.221.246.255'),(3506,'2010-02-13 14:10:55',1,'product.php','cPath=2&product_type=1&pID=7&action=new_product_preview&','76.221.246.255'),(3507,'2010-02-13 14:11:01',1,'product.php','cPath=2&product_type=1&pID=7&action=update_product&','76.221.246.255'),(3508,'2010-02-13 14:11:01',1,'categories.php','cPath=2&pID=7&','76.221.246.255'),(3509,'2010-02-13 14:11:06',1,'product.php','cPath=2&product_type=1&pID=4&action=new_product&','76.221.246.255'),(3510,'2010-02-13 14:12:43',1,'product.php','cPath=2&product_type=1&pID=4&action=new_product_preview&','76.221.246.255'),(3511,'2010-02-13 14:13:16',1,'product.php','cPath=2&product_type=1&pID=4&action=update_product&','76.221.246.255'),(3512,'2010-02-13 14:13:16',1,'categories.php','cPath=2&pID=4&','76.221.246.255'),(3513,'2010-02-13 14:13:25',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3514,'2010-02-13 14:15:08',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3515,'2010-02-13 14:15:39',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product_meta_tags&page=1&','76.221.246.255'),(3516,'2010-02-13 14:23:56',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3517,'2010-02-13 14:24:31',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product_meta_tags&page=1&','76.221.246.255'),(3518,'2010-02-13 14:24:31',1,'categories.php','cPath=2&pID=5&page=1&','76.221.246.255'),(3519,'2010-02-13 14:24:35',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3520,'2010-02-13 14:24:42',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3521,'2010-02-13 14:31:28',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product_meta_tags&page=1&','76.221.246.255'),(3522,'2010-02-13 14:37:27',1,'developers_tool_kit.php','','76.221.246.255'),(3523,'2010-02-13 14:37:37',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3524,'2010-02-13 14:37:53',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3525,'2010-02-13 14:38:07',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3526,'2010-02-13 14:38:10',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3527,'2010-02-13 14:38:16',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(3528,'2010-02-13 14:38:19',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3529,'2010-02-13 14:38:22',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(3530,'2010-02-13 14:38:25',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3531,'2010-02-13 14:38:50',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3532,'2010-02-13 14:44:14',1,'categories.php','','76.221.246.255'),(3533,'2010-02-13 14:44:18',1,'categories.php','cPath=2&','76.221.246.255'),(3534,'2010-02-13 14:44:21',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3535,'2010-02-13 14:44:27',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3536,'2010-02-13 14:56:46',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product_meta_tags&page=1&','76.221.246.255'),(3537,'2010-02-13 14:57:19',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3538,'2010-02-13 14:57:33',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product_meta_tags&page=1&','76.221.246.255'),(3539,'2010-02-13 14:57:33',1,'categories.php','cPath=2&pID=5&page=1&','76.221.246.255'),(3540,'2010-02-13 14:57:37',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product&','76.221.246.255'),(3541,'2010-02-13 14:58:08',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview&','76.221.246.255'),(3542,'2010-02-13 14:58:17',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product&','76.221.246.255'),(3543,'2010-02-13 14:58:17',1,'categories.php','cPath=2&pID=5&','76.221.246.255'),(3544,'2010-02-13 15:04:21',1,'product.php','page=1&product_type=1&cPath=2&pID=6&action=new_product_meta_tags&','76.221.246.255'),(3545,'2010-02-13 15:12:08',1,'product.php','cPath=2&product_type=1&pID=6&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3546,'2010-02-13 15:12:22',1,'product.php','cPath=2&product_type=1&pID=6&action=update_product_meta_tags&page=1&','76.221.246.255'),(3547,'2010-02-13 15:12:22',1,'categories.php','cPath=2&pID=6&page=1&','76.221.246.255'),(3548,'2010-02-13 15:12:27',1,'product.php','page=1&product_type=1&cPath=2&pID=1&action=new_product_meta_tags&','76.221.246.255'),(3549,'2010-02-13 15:15:43',1,'product.php','cPath=2&product_type=1&pID=1&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3550,'2010-02-13 15:16:01',1,'product.php','cPath=2&product_type=1&pID=1&action=update_product_meta_tags&page=1&','76.221.246.255'),(3551,'2010-02-13 15:16:01',1,'categories.php','cPath=2&pID=1&page=1&','76.221.246.255'),(3552,'2010-02-13 15:16:05',1,'product.php','page=1&product_type=1&cPath=2&pID=3&action=new_product_meta_tags&','76.221.246.255'),(3553,'2010-02-13 15:19:33',1,'product.php','cPath=2&product_type=1&pID=3&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3554,'2010-02-13 15:19:42',1,'product.php','cPath=2&product_type=1&pID=3&action=update_product_meta_tags&page=1&','76.221.246.255'),(3555,'2010-02-13 15:19:42',1,'categories.php','cPath=2&pID=3&page=1&','76.221.246.255'),(3556,'2010-02-13 15:20:00',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product_meta_tags&','76.221.246.255'),(3557,'2010-02-13 15:41:13',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product_meta_tags&','76.221.246.255'),(3558,'2010-02-13 15:43:22',1,'product.php','cPath=2&product_type=1&pID=2&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3559,'2010-02-13 15:43:28',1,'categories.php','cPath=2&pID=2&page=1&','76.221.246.255'),(3560,'2010-02-13 15:43:31',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product_meta_tags&','76.221.246.255'),(3561,'2010-02-13 15:50:50',1,'developers_tool_kit.php','','76.221.246.255'),(3562,'2010-02-13 15:50:58',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3563,'2010-02-13 15:51:03',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3564,'2010-02-13 15:51:09',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3565,'2010-02-13 15:51:12',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(3566,'2010-02-13 15:51:15',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3567,'2010-02-13 15:51:19',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(3568,'2010-02-13 15:51:28',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3569,'2010-02-13 15:51:32',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3570,'2010-02-13 15:51:36',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(3571,'2010-02-13 15:51:40',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3572,'2010-02-13 15:51:42',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(3573,'2010-02-13 15:52:08',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3574,'2010-02-13 15:52:18',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(3575,'2010-02-13 15:52:32',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(3576,'2010-02-13 15:52:34',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3577,'2010-02-13 15:52:44',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3578,'2010-02-13 15:52:58',1,'categories.php','','76.221.246.255'),(3579,'2010-02-13 15:53:04',1,'categories.php','cPath=&cID=2&action=edit_category&','76.221.246.255'),(3580,'2010-02-13 15:53:15',1,'categories.php','cPath=&cID=2&','76.221.246.255'),(3581,'2010-02-13 15:53:20',1,'categories.php','cPath=2&','76.221.246.255'),(3582,'2010-02-13 15:53:41',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product_meta_tags&','76.221.246.255'),(3583,'2010-02-13 15:54:09',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product&','76.221.246.255'),(3584,'2010-02-13 15:54:31',1,'developers_tool_kit.php','','76.221.246.255'),(3585,'2010-02-13 15:54:46',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3586,'2010-02-13 15:54:49',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3587,'2010-02-13 15:55:01',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3588,'2010-02-13 16:18:26',1,'categories.php','','76.221.246.255'),(3589,'2010-02-13 16:18:29',1,'categories.php','cPath=2&','76.221.246.255'),(3590,'2010-02-13 16:18:33',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product_meta_tags&','76.221.246.255'),(3591,'2010-02-13 16:30:14',1,'product.php','cPath=2&product_type=1&pID=2&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3592,'2010-02-13 16:30:33',1,'product.php','cPath=2&product_type=1&pID=2&action=update_product_meta_tags&page=1&','76.221.246.255'),(3593,'2010-02-13 16:30:33',1,'categories.php','cPath=2&pID=2&page=1&','76.221.246.255'),(3594,'2010-02-13 16:31:11',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3595,'2010-02-13 16:31:22',1,'developers_tool_kit.php','','76.221.246.255'),(3596,'2010-02-13 16:31:31',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3597,'2010-02-13 16:31:35',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3598,'2010-02-13 16:31:43',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3599,'2010-02-13 16:31:48',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(3600,'2010-02-13 16:31:53',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3601,'2010-02-13 16:31:59',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3602,'2010-02-13 16:32:03',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(3603,'2010-02-13 16:32:11',1,'categories.php','','76.221.246.255'),(3604,'2010-02-13 16:34:15',1,'categories.php','cPath=2&','76.221.246.255'),(3605,'2010-02-13 16:34:18',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3606,'2010-02-13 16:36:56',1,'developers_tool_kit.php','','76.221.246.255'),(3607,'2010-02-13 16:37:04',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3608,'2010-02-13 16:37:07',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3609,'2010-02-13 16:37:12',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3610,'2010-02-13 16:37:18',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(3611,'2010-02-13 16:37:21',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3612,'2010-02-13 16:37:25',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(3613,'2010-02-13 16:37:43',1,'categories.php','','76.221.246.255'),(3614,'2010-02-13 16:37:45',1,'categories.php','cPath=2&','76.221.246.255'),(3615,'2010-02-13 16:37:51',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3616,'2010-02-13 16:38:14',1,'developers_tool_kit.php','','76.221.246.255'),(3617,'2010-02-13 16:38:20',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3618,'2010-02-13 16:38:27',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3619,'2010-02-13 16:38:29',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3620,'2010-02-13 16:38:32',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(3621,'2010-02-13 16:38:35',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3622,'2010-02-13 16:38:39',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3623,'2010-02-13 16:38:41',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(3624,'2010-02-13 16:38:47',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3625,'2010-02-13 16:43:43',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3626,'2010-02-13 16:43:53',1,'categories.php','','76.221.246.255'),(3627,'2010-02-13 16:44:01',1,'categories.php','cPath=2&','76.221.246.255'),(3628,'2010-02-13 16:44:05',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3629,'2010-02-13 16:44:41',1,'developers_tool_kit.php','','76.221.246.255'),(3630,'2010-02-13 16:44:48',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3631,'2010-02-13 16:44:51',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3632,'2010-02-13 17:06:40',1,'categories.php','','76.221.246.255'),(3633,'2010-02-13 17:06:43',1,'categories.php','cPath=2&','76.221.246.255'),(3634,'2010-02-13 17:06:48',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3635,'2010-02-13 17:07:14',1,'developers_tool_kit.php','','76.221.246.255'),(3636,'2010-02-13 17:07:21',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3637,'2010-02-13 17:07:25',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3638,'2010-02-13 17:08:05',1,'categories.php','','76.221.246.255'),(3639,'2010-02-13 17:08:09',1,'categories.php','cPath=2&','76.221.246.255'),(3640,'2010-02-13 17:08:12',1,'categories.php','cID=2&','76.221.246.255'),(3641,'2010-02-13 17:08:14',1,'categories.php','cPath=&cID=2&action=edit_category_meta_tags&','76.221.246.255'),(3642,'2010-02-13 17:12:16',1,'categories.php','action=update_category_meta_tags&cPath=&','76.221.246.255'),(3643,'2010-02-13 17:12:16',1,'categories.php','cPath=&cID=2&','76.221.246.255'),(3644,'2010-02-13 17:12:22',1,'categories.php','cPath=2&','76.221.246.255'),(3645,'2010-02-13 17:12:25',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3646,'2010-02-13 17:13:22',1,'categories.php','cPath=&cID=2&action=edit_category_meta_tags&','76.221.246.255'),(3647,'2010-02-13 17:13:47',1,'categories.php','action=update_category_meta_tags&cPath=&','76.221.246.255'),(3648,'2010-02-13 17:13:48',1,'categories.php','cPath=&cID=2&','76.221.246.255'),(3649,'2010-02-13 17:13:51',1,'categories.php','cPath=2&','76.221.246.255'),(3650,'2010-02-13 17:13:54',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3651,'2010-02-13 17:14:16',1,'categories.php','cPath=&cID=2&action=edit_category_meta_tags&','76.221.246.255'),(3652,'2010-02-13 17:14:46',1,'categories.php','action=update_category_meta_tags&cPath=&','76.221.246.255'),(3653,'2010-02-13 17:14:47',1,'categories.php','cPath=&cID=2&','76.221.246.255'),(3654,'2010-02-13 17:15:00',1,'categories.php','cPath=2&','76.221.246.255'),(3655,'2010-02-13 17:15:04',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3656,'2010-02-13 17:15:27',1,'categories.php','cPath=&cID=2&action=edit_category_meta_tags&','76.221.246.255'),(3657,'2010-02-13 17:15:40',1,'categories.php','cPath=2&','76.221.246.255'),(3658,'2010-02-13 17:15:43',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3659,'2010-02-13 17:16:10',1,'categories.php','cPath=&cID=2&action=edit_category_meta_tags&','76.221.246.255'),(3660,'2010-02-13 17:17:01',1,'categories.php','action=update_category_meta_tags&cPath=&','76.221.246.255'),(3661,'2010-02-13 17:17:01',1,'categories.php','cPath=&cID=2&','76.221.246.255'),(3662,'2010-02-13 17:17:05',1,'categories.php','cPath=2&','76.221.246.255'),(3663,'2010-02-13 17:17:08',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3664,'2010-02-13 17:17:29',1,'categories.php','cPath=&cID=2&action=edit_category_meta_tags&','76.221.246.255'),(3665,'2010-02-13 17:20:41',1,'categories.php','action=update_category_meta_tags&cPath=&','76.221.246.255'),(3666,'2010-02-13 17:20:42',1,'categories.php','cPath=&cID=2&','76.221.246.255'),(3667,'2010-02-13 17:20:46',1,'categories.php','cPath=2&','76.221.246.255'),(3668,'2010-02-13 17:20:50',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product&','76.221.246.255'),(3669,'2010-02-13 17:20:58',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3670,'2010-02-13 18:32:52',0,'login.php ','','76.221.246.255'),(3671,'2010-02-13 18:33:04',0,'login.php myadiron','','76.221.246.255'),(3672,'2010-02-13 18:33:21',1,'categories.php','','76.221.246.255'),(3673,'2010-02-13 18:33:25',1,'categories.php','cPath=2&','76.221.246.255'),(3674,'2010-02-13 18:35:20',1,'product.php','page=1&product_type=1&cPath=2&pID=1&action=new_product_meta_tags&','76.221.246.255'),(3675,'2010-02-13 18:36:59',1,'product.php','page=1&product_type=1&cPath=2&pID=4&action=new_product_meta_tags&','76.221.246.255'),(3676,'2010-02-13 18:37:15',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3677,'2010-02-13 18:37:32',1,'product.php','page=1&product_type=1&cPath=2&pID=1&action=new_product_meta_tags&','76.221.246.255'),(3678,'2010-02-13 18:39:53',1,'product.php','cPath=2&product_type=1&pID=1&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3679,'2010-02-13 18:39:57',1,'product.php','cPath=2&product_type=1&pID=1&action=update_product_meta_tags&page=1&','76.221.246.255'),(3680,'2010-02-13 18:39:57',1,'categories.php','cPath=2&pID=1&page=1&','76.221.246.255'),(3681,'2010-02-13 18:40:54',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3682,'2010-02-13 18:41:06',1,'product.php','cPath=2&product_type=1&pID=7&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3683,'2010-02-13 18:41:09',1,'product.php','cPath=2&product_type=1&pID=7&action=update_product_meta_tags&page=1&','76.221.246.255'),(3684,'2010-02-13 18:41:09',1,'categories.php','cPath=2&pID=7&page=1&','76.221.246.255'),(3685,'2010-02-13 18:41:12',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product_meta_tags&','76.221.246.255'),(3686,'2010-02-13 18:41:21',1,'product.php','cPath=2&product_type=1&pID=2&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3687,'2010-02-13 18:41:23',1,'product.php','cPath=2&product_type=1&pID=2&action=update_product_meta_tags&page=1&','76.221.246.255'),(3688,'2010-02-13 18:41:24',1,'categories.php','cPath=2&pID=2&page=1&','76.221.246.255'),(3689,'2010-02-13 18:41:26',1,'product.php','page=1&product_type=1&cPath=2&pID=3&action=new_product_meta_tags&','76.221.246.255'),(3690,'2010-02-13 18:41:34',1,'product.php','cPath=2&product_type=1&pID=3&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3691,'2010-02-13 18:41:36',1,'product.php','cPath=2&product_type=1&pID=3&action=update_product_meta_tags&page=1&','76.221.246.255'),(3692,'2010-02-13 18:41:37',1,'categories.php','cPath=2&pID=3&page=1&','76.221.246.255'),(3693,'2010-02-13 18:41:39',1,'product.php','page=1&product_type=1&cPath=2&pID=1&action=new_product_meta_tags&','76.221.246.255'),(3694,'2010-02-13 18:41:50',1,'product.php','page=1&product_type=1&cPath=2&pID=6&action=new_product_meta_tags&','76.221.246.255'),(3695,'2010-02-13 18:41:58',1,'product.php','cPath=2&product_type=1&pID=6&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3696,'2010-02-13 18:42:00',1,'product.php','cPath=2&product_type=1&pID=6&action=update_product_meta_tags&page=1&','76.221.246.255'),(3697,'2010-02-13 18:42:01',1,'categories.php','cPath=2&pID=6&page=1&','76.221.246.255'),(3698,'2010-02-13 18:42:04',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3699,'2010-02-13 18:42:11',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3700,'2010-02-13 18:42:14',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product_meta_tags&page=1&','76.221.246.255'),(3701,'2010-02-13 18:42:15',1,'categories.php','cPath=2&pID=5&page=1&','76.221.246.255'),(3702,'2010-02-13 18:42:18',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3703,'2010-02-13 18:42:30',1,'product.php','page=1&product_type=1&cPath=2&pID=1&action=new_product_meta_tags&','76.221.246.255'),(3704,'2010-02-13 18:42:39',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3705,'2010-02-13 18:42:48',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3706,'2010-02-13 18:42:50',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product_meta_tags&page=1&','76.221.246.255'),(3707,'2010-02-13 18:42:51',1,'categories.php','cPath=2&pID=5&page=1&','76.221.246.255'),(3708,'2010-02-13 18:42:53',1,'product.php','page=1&product_type=1&cPath=2&pID=6&action=new_product_meta_tags&','76.221.246.255'),(3709,'2010-02-13 18:43:01',1,'product.php','cPath=2&product_type=1&pID=6&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3710,'2010-02-13 18:43:04',1,'product.php','cPath=2&product_type=1&pID=6&action=update_product_meta_tags&page=1&','76.221.246.255'),(3711,'2010-02-13 18:43:04',1,'categories.php','cPath=2&pID=6&page=1&','76.221.246.255'),(3712,'2010-02-13 18:43:14',1,'product.php','page=1&product_type=1&cPath=2&pID=3&action=new_product_meta_tags&','76.221.246.255'),(3713,'2010-02-13 18:43:22',1,'product.php','cPath=2&product_type=1&pID=3&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3714,'2010-02-13 18:43:24',1,'product.php','cPath=2&product_type=1&pID=3&action=update_product_meta_tags&page=1&','76.221.246.255'),(3715,'2010-02-13 18:43:25',1,'categories.php','cPath=2&pID=3&page=1&','76.221.246.255'),(3716,'2010-02-13 18:43:28',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product_meta_tags&','76.221.246.255'),(3717,'2010-02-13 18:43:35',1,'product.php','cPath=2&product_type=1&pID=2&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3718,'2010-02-13 18:43:38',1,'product.php','cPath=2&product_type=1&pID=2&action=update_product_meta_tags&page=1&','76.221.246.255'),(3719,'2010-02-13 18:43:38',1,'categories.php','cPath=2&pID=2&page=1&','76.221.246.255'),(3720,'2010-02-13 18:43:41',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3721,'2010-02-13 18:44:06',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product_meta_tags&','76.221.246.255'),(3722,'2010-02-13 18:44:23',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3723,'2010-02-13 18:47:07',1,'product.php','cPath=2&product_type=1&pID=7&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3724,'2010-02-13 18:47:13',1,'product.php','cPath=2&product_type=1&pID=7&action=update_product_meta_tags&page=1&','76.221.246.255'),(3725,'2010-02-13 18:47:13',1,'categories.php','cPath=2&pID=7&page=1&','76.221.246.255'),(3726,'2010-02-13 18:47:30',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3727,'2010-02-13 19:05:59',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3728,'2010-02-13 19:06:03',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product_meta_tags&page=1&','76.221.246.255'),(3729,'2010-02-13 19:06:03',1,'categories.php','cPath=2&pID=5&page=1&','76.221.246.255'),(3730,'2010-02-13 19:06:13',1,'alt_nav.php','','76.221.246.255'),(3731,'2010-02-13 19:06:17',1,'developers_tool_kit.php','','76.221.246.255'),(3732,'2010-02-13 19:06:27',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3733,'2010-02-13 19:06:31',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3734,'2010-02-13 19:07:44',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3735,'2010-02-13 19:55:01',0,'login.php ','','76.221.246.255'),(3736,'2010-02-13 19:55:14',0,'login.php myadiron','','76.221.246.255'),(3737,'2010-02-13 19:55:21',1,'sqlpatch.php','','76.221.246.255'),(3738,'2010-02-13 19:55:33',1,'sqlpatch.php','action=execute&','76.221.246.255'),(3739,'2010-02-13 19:56:05',1,'alt_nav.php','','76.221.246.255'),(3740,'2010-02-13 19:57:33',1,'configuration.php','gID=32&','76.221.246.255'),(3741,'2010-02-13 19:58:10',1,'configuration.php','gID=32&','76.221.246.255'),(3742,'2010-02-13 19:59:04',1,'configuration.php','gID=32&cID=855&','76.221.246.255'),(3743,'2010-02-13 19:59:12',1,'configuration.php','gID=32&cID=855&action=edit&','76.221.246.255'),(3744,'2010-02-13 19:59:20',1,'configuration.php','gID=32&cID=855&action=save&','76.221.246.255'),(3745,'2010-02-13 19:59:20',1,'configuration.php','gID=32&cID=855&','76.221.246.255'),(3746,'2010-02-13 20:00:01',1,'configuration.php','gID=32&cID=858&','76.221.246.255'),(3747,'2010-02-13 20:02:49',1,'sitemapxml.php','','76.221.246.255'),(3748,'2010-02-13 21:47:00',0,'login.php ','','76.221.246.255'),(3749,'2010-02-13 21:47:13',0,'login.php myadiron','','76.221.246.255'),(3750,'2010-02-13 21:47:19',1,'developers_tool_kit.php','','76.221.246.255'),(3751,'2010-02-13 21:48:48',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3752,'2010-02-13 21:48:51',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3753,'2010-02-13 21:48:58',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3754,'2010-02-13 21:49:04',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(3755,'2010-02-13 21:49:07',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3756,'2010-02-13 21:49:11',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(3757,'2010-02-13 21:49:13',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3758,'2010-02-13 22:01:35',1,'sitemapxml.php','','76.221.246.255'),(3759,'2010-02-13 22:58:11',1,'sitemapxml.php','','76.221.246.255'),(3760,'2010-02-13 22:59:53',1,'alt_nav.php','','76.221.246.255'),(3761,'2010-02-13 22:59:55',1,'configuration.php','gID=32&','76.221.246.255'),(3762,'2010-02-13 23:00:11',1,'configuration.php','gID=32&cID=849&','76.221.246.255'),(3763,'2010-02-13 23:00:17',1,'configuration.php','gID=32&cID=849&action=edit&','76.221.246.255'),(3764,'2010-02-13 23:23:25',1,'developers_tool_kit.php','','76.221.246.255'),(3765,'2010-02-13 23:23:33',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3766,'2010-02-13 23:23:36',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3767,'2010-02-14 00:23:58',1,'developers_tool_kit.php','','76.221.246.255'),(3768,'2010-02-14 00:24:06',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3769,'2010-02-14 00:24:09',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3770,'2010-02-14 14:19:05',0,'login.php ','','76.221.246.255'),(3771,'2010-02-14 14:19:18',0,'login.php myadiron','','76.221.246.255'),(3772,'2010-02-14 14:19:24',1,'developers_tool_kit.php','','76.221.246.255'),(3773,'2010-02-14 14:19:35',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3774,'2010-02-14 14:19:38',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3775,'2010-02-14 22:05:04',0,'login.php ','','76.221.246.255'),(3776,'2010-02-14 22:05:18',0,'login.php myadiron','','76.221.246.255'),(3777,'2010-02-14 22:05:23',1,'developers_tool_kit.php','','76.221.246.255'),(3778,'2010-02-14 22:05:51',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3779,'2010-02-14 22:05:56',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3780,'2010-02-14 22:10:13',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3781,'2010-02-14 22:13:21',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3782,'2010-02-14 22:13:27',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3783,'2010-02-14 22:29:35',1,'sitemapxml.php','','76.221.246.255'),(3784,'2010-02-15 07:23:31',0,'login.php ','','76.221.246.255'),(3785,'2010-02-15 07:23:48',0,'login.php myadiron','','76.221.246.255'),(3786,'2010-02-15 07:23:59',1,'sitemapxml.php','','76.221.246.255'),(3787,'2010-02-15 09:16:40',0,'login.php ','','76.221.246.255'),(3788,'2010-02-15 09:16:53',0,'login.php myadiron','','76.221.246.255'),(3789,'2010-02-15 09:16:57',1,'developers_tool_kit.php','','76.221.246.255'),(3790,'2010-02-15 09:17:05',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3791,'2010-02-15 09:17:35',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3792,'2010-02-15 09:17:38',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3793,'2010-02-15 09:17:50',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(3794,'2010-02-15 09:17:52',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3795,'2010-02-15 09:17:54',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(3796,'2010-02-15 09:18:03',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3797,'2010-02-15 09:18:09',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3798,'2010-02-15 09:18:12',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3799,'2010-02-15 11:46:07',0,'login.php ','','76.221.246.255'),(3800,'2010-02-15 11:46:24',0,'login.php myadiron','','76.221.246.255'),(3801,'2010-02-15 11:46:43',1,'categories.php','','76.221.246.255'),(3802,'2010-02-15 11:46:46',1,'categories.php','cPath=&cID=2&action=edit_category_meta_tags&','76.221.246.255'),(3803,'2010-02-15 11:47:52',1,'categories.php','','76.221.246.255'),(3804,'2010-02-15 11:47:55',1,'categories.php','cPath=2&','76.221.246.255'),(3805,'2010-02-15 11:48:02',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product_meta_tags&','76.221.246.255'),(3806,'2010-02-15 11:50:59',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3807,'2010-02-15 11:51:02',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product_meta_tags&page=1&','76.221.246.255'),(3808,'2010-02-15 11:51:03',1,'categories.php','cPath=2&pID=5&page=1&','76.221.246.255'),(3809,'2010-02-15 11:54:03',1,'product.php','page=1&product_type=1&cPath=2&pID=6&action=new_product_meta_tags&','76.221.246.255'),(3810,'2010-02-15 12:07:05',1,'product.php','cPath=2&product_type=1&pID=6&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3811,'2010-02-15 12:07:13',1,'product.php','cPath=2&product_type=1&pID=6&action=update_product_meta_tags&page=1&','76.221.246.255'),(3812,'2010-02-15 12:07:13',1,'categories.php','cPath=2&pID=6&page=1&','76.221.246.255'),(3813,'2010-02-15 12:07:18',1,'product.php','page=1&product_type=1&cPath=2&pID=1&action=new_product_meta_tags&','76.221.246.255'),(3814,'2010-02-15 12:07:50',1,'product.php','page=1&product_type=1&cPath=2&pID=3&action=new_product_meta_tags&','76.221.246.255'),(3815,'2010-02-15 12:08:57',1,'product.php','cPath=2&product_type=1&pID=3&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3816,'2010-02-15 12:09:00',1,'product.php','cPath=2&product_type=1&pID=3&action=update_product_meta_tags&page=1&','76.221.246.255'),(3817,'2010-02-15 12:09:00',1,'categories.php','cPath=2&pID=3&page=1&','76.221.246.255'),(3818,'2010-02-15 12:09:04',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product_meta_tags&','76.221.246.255'),(3819,'2010-02-15 12:09:46',1,'product.php','cPath=2&product_type=1&pID=2&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3820,'2010-02-15 12:09:50',1,'product.php','cPath=2&product_type=1&pID=2&action=update_product_meta_tags&page=1&','76.221.246.255'),(3821,'2010-02-15 12:09:50',1,'categories.php','cPath=2&pID=2&page=1&','76.221.246.255'),(3822,'2010-02-15 12:09:53',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3823,'2010-02-15 12:10:22',1,'product.php','cPath=2&product_type=1&pID=7&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3824,'2010-02-15 12:10:25',1,'product.php','cPath=2&product_type=1&pID=7&action=update_product_meta_tags&page=1&','76.221.246.255'),(3825,'2010-02-15 12:10:26',1,'categories.php','cPath=2&pID=7&page=1&','76.221.246.255'),(3826,'2010-02-15 12:10:29',1,'product.php','page=1&product_type=1&cPath=2&pID=4&action=new_product_meta_tags&','76.221.246.255'),(3827,'2010-02-15 12:14:50',1,'product.php','cPath=2&product_type=1&pID=4&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3828,'2010-02-15 12:14:53',1,'product.php','cPath=2&product_type=1&pID=4&action=update_product_meta_tags&page=1&','76.221.246.255'),(3829,'2010-02-15 12:14:54',1,'categories.php','cPath=2&pID=4&page=1&','76.221.246.255'),(3830,'2010-02-15 12:14:56',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product_meta_tags&','76.221.246.255'),(3831,'2010-02-15 12:15:11',1,'categories.php','cPath=2&pID=7&page=1&','76.221.246.255'),(3832,'2010-02-15 12:15:13',1,'product.php','page=1&product_type=1&cPath=2&pID=4&action=new_product_meta_tags&','76.221.246.255'),(3833,'2010-02-15 12:15:40',1,'product.php','cPath=2&product_type=1&pID=4&action=new_product_preview_meta_tags&page=1&','76.221.246.255'),(3834,'2010-02-15 12:15:43',1,'product.php','cPath=2&product_type=1&pID=4&action=update_product_meta_tags&page=1&','76.221.246.255'),(3835,'2010-02-15 12:15:43',1,'categories.php','cPath=2&pID=4&page=1&','76.221.246.255'),(3836,'2010-02-15 14:55:07',0,'login.php ','','76.221.246.255'),(3837,'2010-02-15 14:55:19',0,'login.php myadiron','','76.221.246.255'),(3838,'2010-02-15 14:55:24',1,'categories.php','','76.221.246.255'),(3839,'2010-02-15 14:55:27',1,'categories.php','cPath=2&','76.221.246.255'),(3840,'2010-02-15 14:55:34',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product&','76.221.246.255'),(3841,'2010-02-15 14:55:58',1,'attributes_controller.php','','76.221.246.255'),(3842,'2010-02-15 14:56:16',1,'attributes_controller.php','action=set_products_filter&','76.221.246.255'),(3843,'2010-02-15 14:56:17',1,'attributes_controller.php','products_filter=5&current_category_id=2&','76.221.246.255'),(3844,'2010-02-15 14:56:41',1,'attributes_controller.php','action=update_attribute&attribute_id=4&attribute_page=1&products_filter=5&current_category_id=2&','76.221.246.255'),(3845,'2010-02-15 14:57:20',1,'products_price_manager.php','products_filter=4&current_category_id=2&','76.221.246.255'),(3846,'2010-02-15 14:57:42',1,'attributes_controller.php','products_filter=4&current_category_id=2&','76.221.246.255'),(3847,'2010-02-15 16:08:41',1,'developers_tool_kit.php','','76.221.246.255'),(3848,'2010-02-15 16:08:51',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3849,'2010-02-15 16:08:54',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3850,'2010-02-15 19:13:20',0,'login.php ','','76.221.246.255'),(3851,'2010-02-15 19:13:35',0,'login.php myadiron','','76.221.246.255'),(3852,'2010-02-15 19:13:59',1,'configuration.php','gID=15&','76.221.246.255'),(3853,'2010-02-15 19:57:28',1,'configuration.php','gID=13&','76.221.246.255'),(3854,'2010-02-15 21:12:41',0,'login.php ','','76.221.246.255'),(3855,'2010-02-15 21:12:57',0,'login.php myadiron','','76.221.246.255'),(3856,'2010-02-15 21:15:59',1,'admin.php','','76.221.246.255'),(3857,'2010-02-15 21:18:37',1,'logoff.php','','76.221.246.255'),(3858,'2010-02-15 21:18:38',0,'login.php ','','76.221.246.255'),(3859,'2010-02-15 21:46:47',0,'login.php myadiron','','76.221.246.255'),(3860,'2010-02-15 21:46:58',1,'configuration.php','gID=15&','76.221.246.255'),(3861,'2010-02-15 21:47:04',1,'configuration.php','gID=15&cID=305&action=edit&','76.221.246.255'),(3862,'2010-02-15 21:47:15',1,'configuration.php','gID=15&cID=305&action=save&','76.221.246.255'),(3863,'2010-02-15 21:47:15',1,'configuration.php','gID=15&cID=305&','76.221.246.255'),(3864,'2010-02-15 23:31:44',0,'login.php ','','76.221.246.255'),(3865,'2010-02-15 23:32:17',0,'login.php myadiron','','76.221.246.255'),(3866,'2010-02-15 23:32:36',1,'developers_tool_kit.php','','76.221.246.255'),(3867,'2010-02-15 23:32:50',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3868,'2010-02-15 23:32:56',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3869,'2010-02-15 23:41:08',1,'logoff.php','','76.221.246.255'),(3870,'2010-02-15 23:41:08',0,'login.php ','','76.221.246.255'),(3871,'2010-02-16 08:20:34',0,'login.php ','','76.221.246.255'),(3872,'2010-02-16 08:20:59',0,'login.php myadiron','','76.221.246.255'),(3873,'2010-02-16 08:21:43',1,'languages.php','','76.221.246.255'),(3874,'2010-02-16 08:22:00',1,'languages.php','page=1&lID=1&action=new&','76.221.246.255'),(3875,'2010-02-16 08:22:21',1,'languages.php','action=insert&','76.221.246.255'),(3876,'2010-02-16 08:22:22',1,'languages.php','lID=3&','76.221.246.255'),(3877,'2010-02-16 08:22:37',1,'languages.php','page=1&lID=3&action=edit&','76.221.246.255'),(3878,'2010-02-16 08:22:54',1,'languages.php','page=1&lID=3&action=save&','76.221.246.255'),(3879,'2010-02-16 08:22:54',1,'languages.php','page=1&lID=3&','76.221.246.255'),(3880,'2010-02-16 08:23:06',1,'languages.php','page=1&lID=3&action=edit&','76.221.246.255'),(3881,'2010-02-16 08:23:17',1,'languages.php','page=1&lID=3&action=save&','76.221.246.255'),(3882,'2010-02-16 08:23:18',1,'languages.php','page=1&lID=3&','76.221.246.255'),(3883,'2010-02-16 10:00:41',0,'login.php ','','76.221.246.255'),(3884,'2010-02-16 10:00:55',0,'login.php myadiron','','76.221.246.255'),(3885,'2010-02-16 10:01:06',1,'languages.php','','76.221.246.255'),(3886,'2010-02-16 10:01:09',1,'languages.php','page=1&lID=3&action=edit&','76.221.246.255'),(3887,'2010-02-16 10:01:48',1,'languages.php','page=1&lID=3&action=save&','76.221.246.255'),(3888,'2010-02-16 10:01:49',1,'languages.php','page=1&lID=3&','76.221.246.255'),(3889,'2010-02-16 10:01:58',1,'languages.php','page=1&lID=3&action=delete&','76.221.246.255'),(3890,'2010-02-16 10:02:04',1,'languages.php','page=1&lID=3&action=deleteconfirm&','76.221.246.255'),(3891,'2010-02-16 10:02:04',1,'languages.php','page=1&','76.221.246.255'),(3892,'2010-02-16 13:41:38',0,'login.php ','','76.221.246.255'),(3893,'2010-02-16 13:41:54',0,'login.php myadiron','','76.221.246.255'),(3894,'2010-02-16 13:42:59',1,'configuration.php','gID=15&','76.221.246.255'),(3895,'2010-02-16 13:52:23',1,'logoff.php','','76.221.246.255'),(3896,'2010-02-16 13:52:24',0,'login.php ','','76.221.246.255'),(3897,'2010-02-17 09:49:35',0,'login.php ','','76.221.246.255'),(3898,'2010-02-17 09:49:52',0,'login.php myadiron','','76.221.246.255'),(3899,'2010-02-17 09:50:15',1,'developers_tool_kit.php','','76.221.246.255'),(3900,'2010-02-17 09:50:26',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3901,'2010-02-17 09:50:56',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3902,'2010-02-17 10:19:14',1,'logoff.php','','76.221.246.255'),(3903,'2010-02-17 10:19:15',0,'login.php ','','76.221.246.255'),(3904,'2010-02-18 14:05:06',0,'login.php ','','76.221.246.255'),(3905,'2010-02-18 14:05:20',0,'login.php myadiron','','76.221.246.255'),(3906,'2010-02-18 14:05:26',1,'developers_tool_kit.php','','76.221.246.255'),(3907,'2010-02-18 14:05:34',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3908,'2010-02-18 14:05:38',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3909,'2010-02-18 14:19:42',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3910,'2010-02-18 14:19:48',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3911,'2010-02-18 14:36:55',1,'logoff.php','','76.221.246.255'),(3912,'2010-02-18 14:36:55',0,'login.php ','','76.221.246.255'),(3913,'2010-02-18 15:47:14',0,'login.php myadiron','','76.221.246.255'),(3914,'2010-02-18 15:47:20',1,'developers_tool_kit.php','','76.221.246.255'),(3915,'2010-02-18 15:47:31',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3916,'2010-02-18 15:47:40',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3917,'2010-02-18 15:47:51',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3918,'2010-02-18 15:48:25',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3919,'2010-02-18 15:48:49',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3920,'2010-02-18 15:48:54',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(3921,'2010-02-18 15:48:56',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(3922,'2010-02-18 15:48:58',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(3923,'2010-02-18 16:10:54',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3924,'2010-02-18 20:16:09',0,'login.php ','','76.221.246.255'),(3925,'2010-02-18 22:40:22',0,'login.php myadiron','','76.221.246.255'),(3926,'2010-02-18 22:40:35',0,'login.php myadiron','','76.221.246.255'),(3927,'2010-02-18 22:40:41',1,'developers_tool_kit.php','','76.221.246.255'),(3928,'2010-02-18 22:40:53',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3929,'2010-02-18 22:41:01',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3930,'2010-02-19 21:33:06',0,'login.php ','','76.221.246.255'),(3931,'2010-02-19 21:33:21',0,'login.php myadiron','','76.221.246.255'),(3932,'2010-02-19 21:33:30',1,'categories.php','','76.221.246.255'),(3933,'2010-02-19 21:33:33',1,'categories.php','cPath=2&','76.221.246.255'),(3934,'2010-02-19 21:33:36',1,'product.php','page=1&product_type=1&cPath=2&pID=4&action=new_product&','76.221.246.255'),(3935,'2010-02-19 21:34:05',1,'categories.php','cPath=2&pID=4&page=1&','76.221.246.255'),(3936,'2010-02-19 21:34:10',1,'product.php','cPath=2&product_type=1&pID=4&action=new_product&','76.221.246.255'),(3937,'2010-02-19 21:34:19',1,'product.php','cPath=2&product_type=1&pID=7&action=new_product&','76.221.246.255'),(3938,'2010-02-19 21:42:15',1,'attributes_controller.php','','76.221.246.255'),(3939,'2010-02-20 21:17:56',0,'login.php ','','76.221.246.255'),(3940,'2010-02-20 21:18:11',0,'login.php myadiron','','76.221.246.255'),(3941,'2010-02-20 21:18:16',1,'developers_tool_kit.php','','76.221.246.255'),(3942,'2010-02-20 21:18:40',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(3943,'2010-02-20 21:18:42',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(3944,'2010-02-21 19:39:35',0,'login.php ','','76.221.246.255'),(3945,'2010-02-21 19:39:57',0,'login.php myadiron','','76.221.246.255'),(3946,'2010-02-21 19:40:04',1,'configuration.php','gID=12&','76.221.246.255'),(3947,'2010-02-21 19:42:07',1,'configuration.php','gID=12&cID=252&action=edit&','76.221.246.255'),(3948,'2010-02-21 19:43:53',1,'configuration.php','gID=12&cID=252&action=save&','76.221.246.255'),(3949,'2010-02-21 19:43:54',1,'configuration.php','gID=12&cID=252&','76.221.246.255'),(3950,'2010-02-21 19:46:54',1,'configuration.php','gID=12&cID=252&action=edit&','76.221.246.255'),(3951,'2010-02-21 19:47:10',1,'configuration.php','gID=12&cID=252&action=save&','76.221.246.255'),(3952,'2010-02-21 19:47:11',1,'configuration.php','gID=12&cID=252&','76.221.246.255'),(3953,'2010-02-21 19:52:30',1,'configuration.php','gID=12&cID=259&action=edit&','76.221.246.255'),(3954,'2010-02-21 19:53:03',1,'configuration.php','gID=12&cID=252&action=edit&','76.221.246.255'),(3955,'2010-02-21 19:53:11',1,'configuration.php','gID=12&cID=252&action=save&','76.221.246.255'),(3956,'2010-02-21 19:53:11',1,'configuration.php','gID=12&cID=252&','76.221.246.255'),(3957,'2010-02-21 19:56:12',1,'configuration.php','gID=12&cID=252&action=edit&','76.221.246.255'),(3958,'2010-02-21 19:56:22',1,'configuration.php','gID=12&cID=252&action=save&','76.221.246.255'),(3959,'2010-02-21 19:56:22',1,'configuration.php','gID=12&cID=252&','76.221.246.255'),(3960,'2010-02-21 20:14:42',0,'login.php ','','76.221.246.255'),(3961,'2010-02-21 20:14:57',0,'login.php myadiron','','76.221.246.255'),(3962,'2010-02-21 20:15:14',1,'configuration.php','gID=12&','76.221.246.255'),(3963,'2010-02-21 20:15:18',1,'configuration.php','gID=12&cID=252&action=edit&','76.221.246.255'),(3964,'2010-02-21 20:15:22',1,'configuration.php','gID=12&cID=252&action=save&','76.221.246.255'),(3965,'2010-02-21 20:15:22',1,'configuration.php','gID=12&cID=252&','76.221.246.255'),(3966,'2010-02-22 10:09:07',0,'login.php ','','76.221.246.255'),(3967,'2010-02-22 10:09:21',0,'login.php myadiron','','76.221.246.255'),(3968,'2010-02-22 10:09:42',1,'alt_nav.php','','76.221.246.255'),(3969,'2010-02-22 10:09:51',1,'sitemapxml.php','','76.221.246.255'),(3970,'2010-02-22 10:14:26',1,'sitemapxml.php','','76.221.246.255'),(3971,'2010-02-22 10:19:52',1,'logoff.php','','76.221.246.255'),(3972,'2010-02-22 10:19:52',0,'login.php ','','76.221.246.255'),(3973,'2010-02-26 20:01:53',0,'login.php ','','76.221.246.255'),(3974,'2010-02-26 20:02:28',0,'login.php ','','76.221.246.255'),(3975,'2010-02-26 20:02:49',0,'login.php ','','76.221.246.255'),(3976,'2010-02-27 09:32:17',0,'login.php ','','76.221.246.255'),(3977,'2010-02-27 09:32:33',0,'login.php ','','76.221.246.255'),(3978,'2010-02-27 09:33:41',0,'login.php ','','76.221.246.255'),(3979,'2010-02-27 09:35:12',0,'login.php ','','76.221.246.255'),(3980,'2010-02-27 09:35:19',0,'password_forgotten.php ','','76.221.246.255'),(3981,'2010-02-27 09:35:32',0,'password_forgotten.php ','','76.221.246.255'),(3982,'2010-02-27 09:36:47',0,'password_forgotten.php ','','76.221.246.255'),(3983,'2010-02-27 09:36:59',0,'password_forgotten.php ','','76.221.246.255'),(3984,'2010-02-27 09:38:16',0,'password_forgotten.php ','','76.221.246.255'),(3985,'2010-02-27 09:38:33',0,'login.php ','','76.221.246.255'),(3986,'2010-02-27 09:38:49',0,'login.php ','','76.221.246.255'),(3987,'2010-02-27 09:49:59',0,'login.php ','','76.221.246.255'),(3988,'2010-02-27 09:50:22',0,'login.php ','','76.221.246.255'),(3989,'2010-02-27 09:50:30',0,'login.php ','','76.221.246.255'),(3990,'2010-02-27 09:50:52',0,'login.php ','','76.221.246.255'),(3991,'2010-02-27 10:02:53',0,'login.php ','','87.106.11.67'),(3992,'2010-02-27 10:03:11',0,'login.php myadiron','','87.106.11.67'),(3993,'2010-02-27 10:03:38',1,'alt_nav.php','','87.106.11.67'),(3994,'2010-02-27 10:03:47',1,'configuration.php','gID=33&','87.106.11.67'),(3995,'2010-02-27 10:05:23',1,'configuration.php','gID=33&cID=876&action=edit&','87.106.11.67'),(3996,'2010-02-27 10:13:30',1,'sqlpatch.php','','87.106.11.67'),(3997,'2010-02-27 10:13:40',1,'sqlpatch.php','action=uploadquery&','87.106.11.67'),(3998,'2010-02-27 10:14:10',1,'sqlpatch.php','action=execute&','87.106.11.67'),(3999,'2010-02-27 10:14:27',1,'alt_nav.php','','87.106.11.67'),(4000,'2010-02-27 10:22:54',1,'categories.php','','87.106.11.67'),(4001,'2010-02-27 10:23:08',1,'categories.php','cPath=2&','87.106.11.67'),(4002,'2010-02-27 11:57:55',0,'login.php ','','87.106.11.67'),(4003,'2010-02-27 11:58:10',0,'login.php myadiron','','87.106.11.67'),(4004,'2010-02-27 11:58:23',1,'configuration.php','gID=24&','87.106.11.67'),(4005,'2010-02-27 12:03:04',1,'developers_tool_kit.php','','87.106.11.67'),(4006,'2010-02-27 12:03:19',1,'developers_tool_kit.php','action=locate_configuration&','87.106.11.67'),(4007,'2010-02-27 12:03:40',1,'developers_tool_kit.php','action=locate_configuration&','87.106.11.67'),(4008,'2010-02-27 12:03:49',1,'developers_tool_kit.php','action=locate_all_files&','87.106.11.67'),(4009,'2010-02-27 16:06:59',0,'login.php ','','76.221.246.255'),(4010,'2010-02-27 16:07:15',0,'login.php myadiron','','76.221.246.255'),(4011,'2010-02-27 16:07:25',1,'developers_tool_kit.php','','76.221.246.255'),(4012,'2010-02-27 16:07:57',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(4013,'2010-02-27 16:08:00',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(4014,'2010-02-27 16:15:25',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(4015,'2010-02-27 16:15:51',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(4016,'2010-02-27 16:42:25',1,'define_pages_editor.php','','76.221.246.255'),(4017,'2010-02-27 16:42:34',1,'define_pages_editor.php','','76.221.246.255'),(4018,'2010-02-27 16:43:01',1,'developers_tool_kit.php','','76.221.246.255'),(4019,'2010-02-27 16:43:22',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(4020,'2010-02-27 16:43:25',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(4021,'2010-02-27 16:56:16',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(4022,'2010-02-27 16:56:41',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(4023,'2010-02-27 16:56:43',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(4024,'2010-02-27 16:56:45',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(4025,'2010-02-27 16:56:48',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(4026,'2010-02-27 19:33:41',0,'login.php ','','76.221.246.255'),(4027,'2010-02-27 19:33:56',0,'login.php myadiron','','76.221.246.255'),(4028,'2010-02-27 19:40:09',1,'developers_tool_kit.php','','76.221.246.255'),(4029,'2010-02-27 19:40:22',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(4030,'2010-02-27 19:40:35',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(4031,'2010-02-27 19:42:25',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(4032,'2010-02-27 19:42:30',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(4033,'2010-02-27 20:06:49',0,'login.php ','','76.221.246.255'),(4034,'2010-02-27 20:07:02',0,'login.php myadiron','','76.221.246.255'),(4035,'2010-02-27 20:07:22',1,'configuration.php','gID=1&','76.221.246.255'),(4036,'2010-02-27 20:07:45',1,'configuration.php','gID=12&','76.221.246.255'),(4037,'2010-02-27 20:08:08',1,'configuration.php','gID=12&cID=280&action=edit&','76.221.246.255'),(4038,'2010-02-27 20:08:22',1,'alt_nav.php','','76.221.246.255'),(4039,'2010-03-01 10:23:08',0,'login.php ','','76.221.246.255'),(4040,'2010-03-01 10:23:22',0,'login.php ','','76.221.246.255'),(4041,'2010-03-01 10:23:42',0,'login.php ','','76.221.246.255'),(4042,'2010-03-01 10:25:46',0,'password_forgotten.php ','','76.221.246.255'),(4043,'2010-03-01 10:26:12',0,'password_forgotten.php ','','76.221.246.255'),(4044,'2010-03-01 10:26:30',0,'password_forgotten.php ','','76.221.246.255'),(4045,'2010-03-01 10:27:15',0,'login.php ','','76.221.246.255'),(4046,'2010-03-01 10:44:08',0,'password_forgotten.php ','','76.221.246.255'),(4047,'2010-03-01 10:44:18',0,'password_forgotten.php ','','76.221.246.255'),(4048,'2010-03-01 10:44:29',0,'password_forgotten.php ','','76.221.246.255'),(4049,'2010-03-01 10:46:17',0,'login.php ','','76.221.246.255'),(4050,'2010-03-01 10:46:29',0,'login.php ','','76.221.246.255'),(4051,'2010-03-01 10:46:50',0,'login.php ','','76.221.246.255'),(4052,'2010-03-01 10:49:44',0,'password_forgotten.php ','','76.221.246.255'),(4053,'2010-03-01 10:49:49',0,'password_forgotten.php ','','76.221.246.255'),(4054,'2010-03-01 10:57:27',0,'password_forgotten.php ','','76.221.246.255'),(4055,'2010-03-01 11:12:44',0,'password_forgotten.php ','','76.221.246.255'),(4056,'2010-03-01 11:12:49',0,'password_forgotten.php ','','76.221.246.255'),(4057,'2010-03-01 11:12:51',0,'login.php ','','76.221.246.255'),(4058,'2010-03-01 11:13:03',0,'login.php ','','76.221.246.255'),(4059,'2010-03-01 11:13:27',0,'login.php ','','76.221.246.255'),(4060,'2010-03-01 11:13:39',0,'login.php ','','76.221.246.255'),(4061,'2010-03-01 11:16:20',0,'login.php ','','76.221.246.255'),(4062,'2010-03-01 11:16:53',0,'login.php ','','76.221.246.255'),(4063,'2010-03-01 11:17:07',0,'login.php ','','76.221.246.255'),(4064,'2010-03-01 11:17:17',0,'login.php ','','76.221.246.255'),(4065,'2010-03-01 11:17:27',0,'login.php ','','76.221.246.255'),(4066,'2010-03-01 11:18:32',0,'login.php ','','76.221.246.255'),(4067,'2010-03-01 11:19:52',0,'login.php ','','76.221.246.255'),(4068,'2010-03-01 11:20:39',0,'login.php ','','76.221.246.255'),(4069,'2010-03-01 11:20:41',0,'password_forgotten.php ','','76.221.246.255'),(4070,'2010-03-01 11:20:52',0,'password_forgotten.php ','','76.221.246.255'),(4071,'2010-03-01 11:25:20',0,'login.php ','','76.221.246.255'),(4072,'2010-03-01 11:26:16',0,'login.php ','','76.221.246.255'),(4073,'2010-03-01 11:26:26',0,'login.php ','','76.221.246.255'),(4074,'2010-03-01 11:28:28',0,'login.php ','','76.221.246.255'),(4075,'2010-03-01 11:38:11',0,'login.php ','','76.221.246.255'),(4076,'2010-03-01 11:53:15',0,'login.php ','','76.221.246.255'),(4077,'2010-03-01 11:53:28',0,'login.php ','','76.221.246.255'),(4078,'2010-03-01 11:55:44',0,'login.php ','','76.221.246.255'),(4079,'2010-03-01 11:56:08',0,'password_forgotten.php ','','76.221.246.255'),(4080,'2010-03-01 11:56:30',0,'password_forgotten.php ','','76.221.246.255'),(4081,'2010-03-01 11:59:39',0,'login.php ','','87.106.11.22'),(4082,'2010-03-01 11:59:51',0,'login.php ','','87.106.11.22'),(4083,'2010-03-01 12:11:21',0,'login.php ','','87.106.11.22'),(4084,'2010-03-01 12:11:32',0,'login.php ','','87.106.11.22'),(4085,'2010-03-01 12:18:58',0,'login.php ','','76.221.246.255'),(4086,'2010-03-01 12:21:11',0,'login.php myadiron','','76.221.246.255'),(4087,'2010-03-01 12:29:08',1,'logoff.php','','76.221.246.255'),(4088,'2010-03-01 12:29:09',0,'login.php ','','76.221.246.255'),(4089,'2010-03-01 12:29:23',0,'login.php ','','76.221.246.255'),(4090,'2010-03-01 12:30:37',0,'login.php ','','76.221.246.255'),(4091,'2010-03-01 12:31:32',0,'login.php myadiron','','76.221.246.255'),(4092,'2010-03-01 12:35:08',1,'logoff.php','','76.221.246.255'),(4093,'2010-03-01 12:35:09',0,'login.php ','','76.221.246.255'),(4094,'2010-03-01 12:35:21',0,'login.php ','','76.221.246.255'),(4095,'2010-03-01 14:20:28',0,'login.php ','','76.221.246.255'),(4096,'2010-03-01 14:20:44',0,'login.php ','','76.221.246.255'),(4097,'2010-03-01 14:21:24',0,'login.php myadiron','','76.221.246.255'),(4098,'2010-03-01 14:21:35',1,'configuration.php','gID=1&','76.221.246.255'),(4099,'2010-03-01 14:21:41',1,'configuration.php','gID=1&cID=1&action=edit&','76.221.246.255'),(4100,'2010-03-01 14:21:51',1,'configuration.php','gID=1&cID=1&','76.221.246.255'),(4101,'2010-03-01 14:21:56',1,'configuration.php','gID=1&cID=2&','76.221.246.255'),(4102,'2010-03-01 14:22:00',1,'configuration.php','gID=1&cID=2&action=edit&','76.221.246.255'),(4103,'2010-03-01 14:22:03',1,'alt_nav.php','','76.221.246.255'),(4104,'2010-03-01 14:22:08',1,'developers_tool_kit.php','','76.221.246.255'),(4105,'2010-03-01 14:22:20',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(4106,'2010-03-01 14:22:23',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(4107,'2010-03-01 14:22:31',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(4108,'2010-03-01 14:22:34',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(4109,'2010-03-01 14:22:36',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(4110,'2010-03-01 14:23:08',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(4111,'2010-03-01 14:23:11',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(4112,'2010-03-01 14:23:28',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(4113,'2010-03-01 14:23:31',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(4114,'2010-03-01 14:25:58',1,'store_manager.php','','76.221.246.255'),(4115,'2010-03-01 14:26:01',1,'alt_nav.php','','76.221.246.255'),(4116,'2010-03-01 14:26:08',1,'configuration.php','gID=12&','76.221.246.255'),(4117,'2010-03-01 14:26:53',1,'alt_nav.php','','76.221.246.255'),(4118,'2010-03-01 14:26:59',1,'configuration.php','gID=15&','76.221.246.255'),(4119,'2010-03-01 14:27:31',1,'alt_nav.php','','76.221.246.255'),(4120,'2010-03-01 14:34:06',1,'logoff.php','','76.221.246.255'),(4121,'2010-03-01 14:34:07',0,'login.php ','','76.221.246.255'),(4122,'2010-03-01 14:34:19',0,'login.php myadiron','','76.221.246.255'),(4123,'2010-03-01 14:34:20',0,'login.php ','','76.221.246.255'),(4124,'2010-03-01 14:34:40',0,'login.php ','','76.221.246.255'),(4125,'2010-03-01 14:40:55',0,'login.php ','','76.221.246.255'),(4126,'2010-03-01 14:41:07',0,'login.php myadiron','','76.221.246.255'),(4127,'2010-03-01 14:41:08',0,'login.php ','','76.221.246.255'),(4128,'2010-03-01 15:00:50',0,'login.php myadiron','','76.221.246.255'),(4129,'2010-03-01 15:01:12',0,'login.php myadiron','','76.221.246.255'),(4130,'2010-03-01 15:01:13',0,'login.php ','','76.221.246.255'),(4131,'2010-03-01 15:06:59',0,'login.php myadiron','','76.221.246.255'),(4132,'2010-03-01 15:07:00',0,'login.php ','','76.221.246.255'),(4133,'2010-03-01 15:08:20',0,'login.php myadiron','','76.221.246.255'),(4134,'2010-03-01 15:08:21',0,'login.php ','','76.221.246.255'),(4135,'2010-03-01 15:26:54',0,'login.php ','','76.221.246.255'),(4136,'2010-03-01 15:27:27',0,'login.php myadiron','','76.221.246.255'),(4137,'2010-03-01 15:28:15',0,'login.php myadiron','','76.221.246.255'),(4138,'2010-03-01 15:28:15',0,'login.php ','','76.221.246.255'),(4139,'2010-03-01 15:28:50',0,'login.php ','','76.221.246.255'),(4140,'2010-03-01 15:28:56',0,'login.php ','','76.221.246.255'),(4141,'2010-03-01 15:29:15',0,'login.php myadiron','','76.221.246.255'),(4142,'2010-03-02 19:08:42',0,'login.php ','','76.221.246.255'),(4143,'2010-03-02 19:08:55',0,'login.php myadiron','','76.221.246.255'),(4144,'2010-03-02 19:09:08',1,'alt_nav.php','','76.221.246.255'),(4145,'2010-03-02 19:09:11',1,'configuration.php','gID=32&','76.221.246.255'),(4146,'2010-03-02 19:10:05',1,'sitemapxml.php','','76.221.246.255'),(4147,'2010-03-02 19:16:51',1,'developers_tool_kit.php','','76.221.246.255'),(4148,'2010-03-02 19:16:59',1,'developers_tool_kit.php','action=locate_configuration&','76.221.246.255'),(4149,'2010-03-02 19:17:01',1,'developers_tool_kit.php','action=locate_all_files&','76.221.246.255'),(4150,'2010-03-02 19:17:06',1,'developers_tool_kit.php','action=locate_template&','76.221.246.255'),(4151,'2010-03-02 19:17:10',1,'developers_tool_kit.php','action=locate_class&','76.221.246.255'),(4152,'2010-03-02 19:17:12',1,'developers_tool_kit.php','action=locate_function&','76.221.246.255'),(4153,'2010-03-02 21:56:31',0,'login.php ','','76.221.246.255'),(4154,'2010-03-02 21:56:44',0,'login.php myadiron','','76.221.246.255'),(4155,'2010-03-02 21:56:56',1,'sitemapxml.php','','76.221.246.255'),(4156,'2010-03-05 07:51:24',0,'login.php ','','76.221.246.255'),(4157,'2010-03-05 07:52:44',0,'login.php myadiron','','76.221.246.255'),(4158,'2010-03-05 07:52:55',1,'layout_controller.php','','76.221.246.255'),(4159,'2010-03-05 07:54:33',1,'layout_controller.php','page=&cID=77&action=edit&','76.221.246.255'),(4160,'2010-03-05 07:54:49',1,'layout_controller.php','page=&cID=77&action=save&layout_box_name=banner_box.php&','76.221.246.255'),(4161,'2010-03-05 07:54:49',1,'layout_controller.php','page=&cID=77&','76.221.246.255'),(4162,'2010-03-19 18:35:46',0,'login.php ','','76.221.246.255'),(4163,'2010-03-19 18:40:10',0,'login.php myadiron','','76.221.246.255'),(4164,'2010-03-19 18:40:54',0,'login.php myadiron','','76.221.246.255'),(4165,'2010-03-19 18:43:35',0,'login.php myadiron','','76.221.246.255'),(4166,'2010-03-19 18:43:58',0,'login.php myadiron','','76.221.246.255'),(4167,'2010-03-19 18:44:01',0,'login.php myadiron','','76.221.246.255'),(4168,'2010-03-19 18:57:24',0,'login.php Admin','','76.221.246.255'),(4169,'2010-03-19 18:59:11',0,'login.php Admin','','76.221.246.255'),(4170,'2010-03-19 18:59:42',1,'admin.php','','76.221.246.255'),(4171,'2010-03-19 18:59:46',1,'admin.php','page=1&adminID=1&action=resetpassword&','76.221.246.255'),(4172,'2010-03-19 19:00:06',1,'admin.php','page=1&adminID=1&action=reset&','76.221.246.255'),(4173,'2010-03-19 19:00:11',1,'admin.php','page=1&adminID=1&action=resetpassword&','76.221.246.255'),(4174,'2010-03-19 19:00:39',1,'admin.php','page=1&adminID=1&action=reset&','76.221.246.255'),(4175,'2010-03-19 19:00:39',1,'admin.php','page=1&adminID=1&','76.221.246.255'),(4176,'2010-03-19 19:01:39',1,'modules.php','set=payment&','76.221.246.255'),(4177,'2010-03-19 19:01:44',1,'modules.php','set=payment&module=paypalwpp&','76.221.246.255'),(4178,'2010-03-19 19:01:51',1,'modules.php','set=payment&module=paypalwpp&action=edit&','76.221.246.255'),(4179,'2010-03-20 10:29:47',0,'login.php ','','76.221.246.255'),(4180,'2010-03-20 10:30:15',0,'login.php Admin','','76.221.246.255'),(4181,'2010-03-20 10:32:15',0,'login.php Admin','','76.221.246.255'),(4182,'2010-03-20 10:35:37',0,'login.php Admin','','76.221.246.255'),(4183,'2010-03-20 10:37:25',0,'login.php Admin','','76.221.246.255'),(4184,'2010-03-20 10:37:46',1,'admin.php','','76.221.246.255'),(4185,'2010-03-20 10:37:49',1,'admin.php','page=1&adminID=1&action=resetpassword&','76.221.246.255'),(4186,'2010-03-20 10:38:26',1,'admin.php','page=1&adminID=1&action=reset&','76.221.246.255'),(4187,'2010-03-20 10:38:26',1,'admin.php','page=1&adminID=1&','76.221.246.255'),(4188,'2010-03-20 10:39:32',1,'sitemapxml.php','','76.221.246.255'),(4189,'2010-03-20 10:39:52',1,'alt_nav.php','','76.221.246.255'),(4190,'2010-03-20 10:39:55',1,'configuration.php','gID=32&','76.221.246.255'),(4191,'2010-03-21 11:41:03',0,'login.php ','','76.221.246.255'),(4192,'2010-03-21 11:41:21',0,'login.php Admin','','76.221.246.255'),(4193,'2010-03-21 11:42:02',0,'login.php Admin','','76.221.246.255'),(4194,'2010-03-21 11:42:11',1,'banner_manager.php','','76.221.246.255'),(4195,'2010-03-21 11:42:18',1,'banner_manager.php','action=new&','76.221.246.255'),(4196,'2010-03-21 11:44:05',1,'banner_manager.php','action=insert&','76.221.246.255'),(4197,'2010-03-21 11:44:06',1,'banner_manager.php','bID=11&','76.221.246.255'),(4198,'2010-03-21 11:44:23',1,'layout_controller.php','','76.221.246.255'),(4199,'2010-03-21 11:47:47',1,'banner_manager.php','','76.221.246.255'),(4200,'2010-03-21 11:47:58',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4201,'2010-03-21 11:48:01',1,'banner_manager.php','page=1&bID=11&action=new&','76.221.246.255'),(4202,'2010-03-21 11:48:34',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(4203,'2010-03-21 11:48:34',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4204,'2010-03-21 11:57:43',1,'banner_manager.php','','76.221.246.255'),(4205,'2010-03-21 11:57:54',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4206,'2010-03-21 11:57:57',1,'banner_manager.php','page=1&bID=11&action=new&','76.221.246.255'),(4207,'2010-03-21 11:58:05',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4208,'2010-03-21 11:58:10',1,'layout_controller.php','','76.221.246.255'),(4209,'2010-03-21 11:58:15',1,'layout_controller.php','page=&cID=77&action=edit&','76.221.246.255'),(4210,'2010-03-21 11:58:59',1,'layout_controller.php','page=&cID=77&action=save&layout_box_name=banner_box.php&','76.221.246.255'),(4211,'2010-03-21 11:59:00',1,'layout_controller.php','page=&cID=77&','76.221.246.255'),(4212,'2010-03-21 12:14:28',1,'configuration.php','gID=19&','76.221.246.255'),(4213,'2010-03-21 12:15:22',1,'configuration.php','gID=19&cID=430&action=edit&','76.221.246.255'),(4214,'2010-03-21 12:15:40',1,'configuration.php','gID=19&cID=430&action=save&','76.221.246.255'),(4215,'2010-03-21 12:15:40',1,'configuration.php','gID=19&cID=430&','76.221.246.255'),(4216,'2010-03-21 12:15:53',1,'configuration.php','gID=19&cID=432&action=edit&','76.221.246.255'),(4217,'2010-03-21 12:15:57',1,'configuration.php','gID=19&cID=432&','76.221.246.255'),(4218,'2010-03-21 12:16:00',1,'banner_manager.php','','76.221.246.255'),(4219,'2010-03-21 12:16:04',1,'banner_statistics.php','page=1&bID=11&','76.221.246.255'),(4220,'2010-03-21 12:16:08',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4221,'2010-03-21 12:16:11',1,'banner_manager.php','page=1&bID=11&action=new&','76.221.246.255'),(4222,'2010-03-21 12:16:35',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(4223,'2010-03-21 12:16:35',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4224,'2010-03-21 12:17:39',1,'configuration.php','gID=19&','76.221.246.255'),(4225,'2010-03-21 12:18:03',1,'banner_manager.php','','76.221.246.255'),(4226,'2010-03-21 12:18:08',1,'banner_manager.php','page=1&bID=8&action=new&','76.221.246.255'),(4227,'2010-03-21 12:18:26',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4228,'2010-03-21 12:18:28',1,'banner_manager.php','page=1&bID=11&action=new&','76.221.246.255'),(4229,'2010-03-21 12:18:46',1,'configuration.php','gID=19&','76.221.246.255'),(4230,'2010-03-21 12:18:55',1,'banner_manager.php','','76.221.246.255'),(4231,'2010-03-21 12:18:59',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4232,'2010-03-21 12:19:02',1,'banner_manager.php','page=1&bID=11&action=new&','76.221.246.255'),(4233,'2010-03-21 12:19:19',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(4234,'2010-03-21 12:19:20',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4235,'2010-03-21 12:19:23',1,'configuration.php','gID=19&','76.221.246.255'),(4236,'2010-03-21 12:19:58',1,'configuration.php','gID=19&cID=431&action=edit&','76.221.246.255'),(4237,'2010-03-21 12:20:10',1,'configuration.php','gID=19&cID=431&action=edit&','76.221.246.255'),(4238,'2010-03-21 12:20:38',1,'configuration.php','gID=19&cID=431&action=save&','76.221.246.255'),(4239,'2010-03-21 12:20:39',1,'configuration.php','gID=19&cID=431&','76.221.246.255'),(4240,'2010-03-21 12:20:43',1,'banner_manager.php','','76.221.246.255'),(4241,'2010-03-21 12:20:46',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4242,'2010-03-21 12:20:53',1,'banner_manager.php','page=1&bID=11&action=new&','76.221.246.255'),(4243,'2010-03-21 12:21:05',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(4244,'2010-03-21 12:21:06',1,'banner_manager.php','page=1&bID=11&','76.221.246.255'),(4245,'2010-03-21 18:20:25',0,'login.php ','','76.221.246.255'),(4246,'2010-03-21 18:20:37',0,'login.php Admin','','76.221.246.255'),(4247,'2010-03-21 18:20:43',1,'banner_manager.php','','76.221.246.255'),(4248,'2010-03-21 18:20:51',1,'banner_manager.php','action=new&','76.221.246.255'),(4249,'2010-03-21 18:22:46',1,'banner_manager.php','action=insert&','76.221.246.255'),(4250,'2010-03-21 18:22:47',1,'banner_manager.php','bID=12&','76.221.246.255'),(4251,'2010-03-21 18:25:38',1,'banner_manager.php','page=1&bID=12&action=new&','76.221.246.255'),(4252,'2010-03-21 18:26:35',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(4253,'2010-03-21 18:26:36',1,'banner_manager.php','page=1&bID=12&','76.221.246.255'),(4254,'2010-03-21 18:26:44',1,'banner_manager.php','page=1&bID=12&action=new&','76.221.246.255'),(4255,'2010-03-21 18:28:53',1,'banner_manager.php','page=1&action=update&','76.221.246.255'),(4256,'2010-03-21 18:28:53',1,'banner_manager.php','page=1&bID=12&','76.221.246.255'),(4257,'2010-05-27 11:54:22',0,'login.php ','','67.142.161.18'),(4258,'2010-05-27 11:54:48',0,'login.php myadiron','','67.142.161.18'),(4259,'2010-05-27 11:55:38',0,'login.php myadiron','','67.142.161.18'),(4260,'2010-05-27 11:58:15',0,'login.php myadiron','','67.142.161.18'),(4261,'2010-05-27 11:58:23',0,'password_forgotten.php ','','67.142.161.18'),(4262,'2010-05-27 11:58:39',0,'password_forgotten.php jhbrake@comcast.net','','67.142.161.18'),(4263,'2010-05-27 11:59:40',0,'password_forgotten.php jhbrake@comcast.net','','67.142.161.18'),(4264,'2010-05-27 11:59:40',0,'login.php ','','67.142.161.18'),(4265,'2010-05-27 12:00:18',0,'login.php Admin','','67.142.161.18'),(4266,'2010-05-27 12:00:36',1,'store_manager.php','','67.142.161.18'),(4267,'2010-05-27 12:01:18',1,'categories.php','','67.142.161.18'),(4268,'2010-05-27 12:01:22',1,'categories.php','cPath=2&','67.142.161.18'),(4269,'2010-05-27 12:01:42',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product&','67.142.161.18'),(4270,'2010-05-27 12:02:26',1,'options_name_manager.php','','67.142.161.18'),(4271,'2010-05-27 12:03:11',1,'options_name_manager.php','action=update_option&option_id=1&option_order_by=products_options_id&option_page=1&','67.142.161.18'),(4272,'2010-05-27 12:08:10',1,'attributes_controller.php','','67.142.161.18'),(4273,'2010-05-27 12:16:16',1,'attributes_controller.php','action=set_products_filter&','67.142.161.18'),(4274,'2010-05-27 12:16:16',1,'attributes_controller.php','products_filter=5&current_category_id=2&','67.142.161.18'),(4275,'2010-05-27 12:18:27',1,'options_name_manager.php','','67.142.161.18'),(4276,'2010-05-27 12:18:38',1,'options_values_manager.php','','67.142.161.18'),(4277,'2010-05-27 12:27:28',1,'attributes_controller.php','','67.142.161.18'),(4278,'2010-05-27 12:27:53',1,'options_name_manager.php','','67.142.161.18'),(4279,'2010-05-27 12:28:53',1,'options_name_manager.php','action=add_product_options&option_page=1&option_order_by=products_options_id&','67.142.161.18'),(4280,'2010-05-27 12:28:53',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','67.142.161.18'),(4281,'2010-05-27 12:29:03',1,'options_values_manager.php','','67.142.161.18'),(4282,'2010-05-27 12:29:19',1,'attributes_controller.php','','67.142.161.18'),(4283,'2010-05-27 12:29:24',1,'options_name_manager.php','','67.142.161.18'),(4284,'2010-05-27 12:29:29',1,'options_name_manager.php','action=update_option&option_id=3&option_order_by=products_options_id&option_page=1&','67.142.161.18'),(4285,'2010-05-27 12:30:03',1,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','67.142.161.18'),(4286,'2010-05-27 12:30:03',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','67.142.161.18'),(4287,'2010-05-27 12:30:16',1,'options_values_manager.php','','67.142.161.18'),(4288,'2010-05-27 12:30:53',1,'options_values_manager.php','action=add_product_option_values&value_page=1&','67.142.161.18'),(4289,'2010-05-27 12:30:53',1,'options_values_manager.php','value_page=1&','67.142.161.18'),(4290,'2010-05-27 12:31:38',1,'options_values_manager.php','action=add_product_option_values&value_page=1&','67.142.161.18'),(4291,'2010-05-27 12:31:38',1,'options_values_manager.php','value_page=1&','67.142.161.18'),(4292,'2010-05-27 12:31:53',1,'options_values_manager.php','action=update_option_value&value_id=5&value_page=1&','67.142.161.18'),(4293,'2010-05-27 12:40:17',1,'attributes_controller.php','','67.142.161.18'),(4294,'2010-05-27 14:07:29',0,'login.php ','','67.142.161.21'),(4295,'2010-05-27 14:08:36',0,'login.php Admin','','67.142.161.21'),(4296,'2010-05-27 14:09:02',1,'configuration.php','gID=8&','67.142.161.21'),(4297,'2010-05-27 14:09:21',1,'options_name_manager.php','','67.142.161.21'),(4298,'2010-05-27 14:09:46',1,'options_name_manager.php','action=update_option&option_id=3&option_order_by=products_options_id&option_page=1&','67.142.161.21'),(4299,'2010-05-27 14:10:42',1,'options_name_manager.php','action=update_option_name&option_page=1&option_order_by=products_options_id&','67.142.161.21'),(4300,'2010-05-27 14:10:43',1,'options_name_manager.php','option_page=1&option_order_by=products_options_id&','67.142.161.21'),(4301,'2010-05-27 14:10:58',1,'options_values_manager.php','','67.142.161.21'),(4302,'2010-05-27 14:11:05',1,'options_values_manager.php','action=update_option_value&value_id=6&value_page=1&','67.142.161.21'),(4303,'2010-05-27 14:11:38',1,'options_values_manager.php','value_page=2&','67.142.161.21'),(4304,'2010-05-27 14:11:50',1,'options_values_manager.php','action=update_option_value&value_id=3&value_page=2&','67.142.161.21'),(4305,'2010-05-27 14:12:07',1,'options_name_manager.php','','67.142.161.21'),(4306,'2010-05-27 14:16:13',1,'options_name_manager.php','','67.142.161.21'),(4307,'2010-05-27 14:16:19',1,'attributes_controller.php','','67.142.161.21'),(4308,'2010-05-27 14:17:03',1,'attributes_controller.php','products_filter=5&current_category_id=2&','67.142.161.21'),(4309,'2010-05-27 14:17:36',1,'attributes_controller.php','action=update_attribute&attribute_id=6&attribute_page=1&products_filter=5&current_category_id=2&','67.142.161.21'),(4310,'2010-05-27 14:17:55',1,'categories.php','action=new_product&cPath=2&pID=5&product_type=1&','67.142.161.21'),(4311,'2010-05-27 14:17:55',1,'product.php','action=new_product&cPath=2&pID=5&product_type=1&','67.142.161.21'),(4312,'2010-05-27 14:20:42',1,'attributes_controller.php','action=update_attribute&attribute_id=6&attribute_page=1&products_filter=5&current_category_id=2&','67.142.161.21'),(4313,'2010-05-27 17:58:40',0,'login.php ','','67.142.161.26'),(4314,'2010-05-27 17:59:26',0,'login.php Admin','','67.142.161.26'),(4315,'2010-05-27 20:36:10',0,'login.php ','','67.142.161.25'),(4316,'2010-05-27 20:37:45',0,'login.php Admin','','67.142.161.25'),(4317,'2010-05-27 20:38:32',1,'orders.php','selected_box=customers&status=1&','67.142.161.25'),(4318,'2010-05-27 20:39:06',1,'attributes_controller.php','','67.142.161.25'),(4319,'2010-05-27 20:39:49',1,'attributes_controller.php','action=set_products_filter&','67.142.161.25'),(4320,'2010-05-27 20:39:49',1,'attributes_controller.php','products_filter=5&current_category_id=2&','67.142.161.25'),(4321,'2010-05-27 20:40:47',1,'attributes_controller.php','','67.142.161.25'),(4322,'2010-05-27 20:42:53',1,'configuration.php','gID=13&','67.142.161.25'),(4323,'2010-05-27 20:43:14',1,'configuration.php','gID=13&cID=300&action=edit&','67.142.161.25'),(4324,'2010-05-27 20:43:21',1,'configuration.php','gID=13&cID=300&action=save&','67.142.161.25'),(4325,'2010-05-27 20:43:21',1,'configuration.php','gID=13&cID=300&','67.142.161.25'),(4326,'2010-05-27 20:43:57',1,'attributes_controller.php','','67.142.161.25'),(4327,'2010-05-27 20:44:05',1,'products_price_manager.php','products_filter=4&current_category_id=2&','67.142.161.25'),(4328,'2010-05-27 20:44:16',1,'products_price_manager.php','action=set_products_filter&','67.142.161.25'),(4329,'2010-05-27 20:44:17',1,'products_price_manager.php','products_filter=5&current_category_id=2&','67.142.161.25'),(4330,'2010-05-27 20:44:36',1,'whos_online.php','','67.142.161.25'),(4331,'2010-05-27 20:45:18',1,'admin.php','','67.142.161.25'),(4332,'2010-05-27 20:46:56',1,'stats_products_viewed.php','','67.142.161.25'),(4333,'2010-05-27 20:47:29',1,'categories.php','cPath=2&pID=1&','67.142.161.25'),(4334,'2010-05-27 20:48:52',1,'attributes_controller.php','','67.142.161.25'),(4335,'2010-05-27 20:49:15',1,'attributes_controller.php','action=set_products_filter&','67.142.161.25'),(4336,'2010-05-27 20:49:15',1,'attributes_controller.php','products_filter=5&current_category_id=2&','67.142.161.25'),(4337,'2010-05-27 20:49:24',1,'categories.php','action=new_product&cPath=2&pID=5&product_type=1&','67.142.161.25'),(4338,'2010-05-27 20:49:24',1,'product.php','action=new_product&cPath=2&pID=5&product_type=1&','67.142.161.25'),(4339,'2010-05-27 20:50:07',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview&','67.142.161.25'),(4340,'2010-05-27 20:50:19',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product&','67.142.161.25'),(4341,'2010-05-27 20:50:19',1,'categories.php','cPath=2&pID=5&','67.142.161.25'),(4342,'2010-05-27 20:50:28',1,'product.php','page=1&product_type=1&cPath=2&pID=6&action=new_product&','67.142.161.25'),(4343,'2010-05-27 20:50:46',1,'product.php','cPath=2&product_type=1&pID=6&action=new_product_preview&page=1&','67.142.161.25'),(4344,'2010-05-27 20:50:54',1,'product.php','cPath=2&product_type=1&pID=6&action=update_product&page=1&','67.142.161.25'),(4345,'2010-05-27 20:50:54',1,'categories.php','cPath=2&pID=6&page=1&','67.142.161.25'),(4346,'2010-05-27 20:51:00',1,'product.php','page=1&product_type=1&cPath=2&pID=1&action=new_product&','67.142.161.25'),(4347,'2010-05-27 20:51:17',1,'product.php','cPath=2&product_type=1&pID=1&action=new_product_preview&page=1&','67.142.161.25'),(4348,'2010-05-27 20:51:24',1,'product.php','cPath=2&product_type=1&pID=1&action=update_product&page=1&','67.142.161.25'),(4349,'2010-05-27 20:51:24',1,'categories.php','cPath=2&pID=1&page=1&','67.142.161.25'),(4350,'2010-05-27 20:51:30',1,'product.php','page=1&product_type=1&cPath=2&pID=3&action=new_product&','67.142.161.25'),(4351,'2010-05-27 20:51:49',1,'product.php','cPath=2&product_type=1&pID=3&action=new_product_preview&page=1&','67.142.161.25'),(4352,'2010-05-27 20:51:57',1,'product.php','cPath=2&product_type=1&pID=3&action=update_product&page=1&','67.142.161.25'),(4353,'2010-05-27 20:51:58',1,'categories.php','cPath=2&pID=3&page=1&','67.142.161.25'),(4354,'2010-05-27 20:52:03',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product&','67.142.161.25'),(4355,'2010-05-27 20:52:15',1,'product.php','cPath=2&product_type=1&pID=2&action=new_product_preview&page=1&','67.142.161.25'),(4356,'2010-05-27 20:52:22',1,'product.php','cPath=2&product_type=1&pID=2&action=update_product&page=1&','67.142.161.25'),(4357,'2010-05-27 20:52:22',1,'categories.php','cPath=2&pID=2&page=1&','67.142.161.25'),(4358,'2010-05-27 20:52:28',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product&','67.142.161.25'),(4359,'2010-05-27 20:53:20',1,'product.php','cPath=2&product_type=1&pID=7&action=new_product_preview&page=1&','67.142.161.25'),(4360,'2010-05-27 20:53:27',1,'product.php','cPath=2&product_type=1&pID=7&action=update_product&page=1&','67.142.161.25'),(4361,'2010-05-27 20:53:27',1,'categories.php','cPath=2&pID=7&page=1&','67.142.161.25'),(4362,'2010-05-27 20:53:56',1,'attributes_controller.php','','67.142.161.25'),(4363,'2010-05-27 20:54:03',1,'attributes_controller.php','products_filter=5&current_category_id=2&','67.142.161.25'),(4364,'2010-05-27 20:54:21',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=2&attribute_page=1&products_filter=5&current_category_id=2&','67.142.161.25'),(4365,'2010-05-27 20:54:33',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4366,'2010-05-27 20:54:33',1,'attributes_controller.php','products_filter=5&current_category_id=2&','67.142.161.25'),(4367,'2010-05-27 20:54:42',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=1&attribute_page=1&products_filter=5&current_category_id=2&','67.142.161.25'),(4368,'2010-05-27 20:54:46',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4369,'2010-05-27 20:54:46',1,'attributes_controller.php','products_filter=5&current_category_id=2&','67.142.161.25'),(4370,'2010-05-27 21:00:53',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=5&','67.142.161.25'),(4371,'2010-05-27 21:00:54',1,'attributes_controller.php','attribute_page=1&products_filter=5&current_category_id=2&','67.142.161.25'),(4372,'2010-05-27 21:01:24',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=5&','67.142.161.25'),(4373,'2010-05-27 21:01:24',1,'attributes_controller.php','attribute_page=1&products_filter=5&current_category_id=2&','67.142.161.25'),(4374,'2010-05-27 21:07:25',1,'options_name_manager.php','','67.142.161.25'),(4375,'2010-05-27 21:07:35',1,'options_name_manager.php','action=update_option&option_id=3&option_order_by=products_options_id&option_page=1&','67.142.161.25'),(4376,'2010-05-27 21:07:53',1,'options_values_manager.php','','67.142.161.25'),(4377,'2010-05-27 21:08:38',1,'attributes_controller.php','','67.142.161.25'),(4378,'2010-05-27 21:08:49',1,'attributes_controller.php','action=set_products_filter&','67.142.161.25'),(4379,'2010-05-27 21:08:49',1,'attributes_controller.php','products_filter=6&current_category_id=2&','67.142.161.25'),(4380,'2010-05-27 21:09:02',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=2&attribute_page=1&products_filter=6&current_category_id=2&','67.142.161.25'),(4381,'2010-05-27 21:09:06',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4382,'2010-05-27 21:09:07',1,'attributes_controller.php','products_filter=6&current_category_id=2&','67.142.161.25'),(4383,'2010-05-27 21:09:15',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=1&attribute_page=1&products_filter=6&current_category_id=2&','67.142.161.25'),(4384,'2010-05-27 21:09:18',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4385,'2010-05-27 21:09:19',1,'attributes_controller.php','products_filter=6&current_category_id=2&','67.142.161.25'),(4386,'2010-05-27 21:09:53',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=6&','67.142.161.25'),(4387,'2010-05-27 21:09:53',1,'attributes_controller.php','attribute_page=1&products_filter=6&current_category_id=2&','67.142.161.25'),(4388,'2010-05-27 21:10:22',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=6&','67.142.161.25'),(4389,'2010-05-27 21:10:22',1,'attributes_controller.php','attribute_page=1&products_filter=6&current_category_id=2&','67.142.161.25'),(4390,'2010-05-27 21:10:31',1,'attributes_controller.php','action=set_products_filter&','67.142.161.25'),(4391,'2010-05-27 21:10:31',1,'attributes_controller.php','products_filter=7&current_category_id=2&','67.142.161.25'),(4392,'2010-05-27 21:10:41',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=2&attribute_page=1&products_filter=7&current_category_id=2&','67.142.161.25'),(4393,'2010-05-27 21:10:45',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4394,'2010-05-27 21:10:45',1,'attributes_controller.php','products_filter=7&current_category_id=2&','67.142.161.25'),(4395,'2010-05-27 21:10:52',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=1&attribute_page=1&products_filter=7&current_category_id=2&','67.142.161.25'),(4396,'2010-05-27 21:10:58',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4397,'2010-05-27 21:10:58',1,'attributes_controller.php','products_filter=7&current_category_id=2&','67.142.161.25'),(4398,'2010-05-27 21:11:26',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=7&','67.142.161.25'),(4399,'2010-05-27 21:11:26',1,'attributes_controller.php','attribute_page=1&products_filter=7&current_category_id=2&','67.142.161.25'),(4400,'2010-05-27 21:11:51',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=7&','67.142.161.25'),(4401,'2010-05-27 21:11:51',1,'attributes_controller.php','attribute_page=1&products_filter=7&current_category_id=2&','67.142.161.25'),(4402,'2010-05-27 21:12:22',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=7&','67.142.161.25'),(4403,'2010-05-27 21:12:22',1,'attributes_controller.php','attribute_page=1&products_filter=7&current_category_id=2&','67.142.161.25'),(4404,'2010-05-27 21:12:50',1,'attributes_controller.php','action=set_products_filter&','67.142.161.25'),(4405,'2010-05-27 21:12:51',1,'attributes_controller.php','products_filter=1&current_category_id=2&','67.142.161.25'),(4406,'2010-05-27 21:12:58',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=2&attribute_page=1&products_filter=1&current_category_id=2&','67.142.161.25'),(4407,'2010-05-27 21:13:02',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4408,'2010-05-27 21:13:02',1,'attributes_controller.php','products_filter=1&current_category_id=2&','67.142.161.25'),(4409,'2010-05-27 21:13:10',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=1&attribute_page=1&products_filter=1&current_category_id=2&','67.142.161.25'),(4410,'2010-05-27 21:13:14',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4411,'2010-05-27 21:13:14',1,'attributes_controller.php','products_filter=1&current_category_id=2&','67.142.161.25'),(4412,'2010-05-27 21:13:31',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=1&','67.142.161.25'),(4413,'2010-05-27 21:13:31',1,'attributes_controller.php','attribute_page=1&products_filter=1&current_category_id=2&','67.142.161.25'),(4414,'2010-05-27 21:13:54',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=1&','67.142.161.25'),(4415,'2010-05-27 21:13:55',1,'attributes_controller.php','attribute_page=1&products_filter=1&current_category_id=2&','67.142.161.25'),(4416,'2010-05-27 21:14:04',1,'attributes_controller.php','action=set_products_filter&','67.142.161.25'),(4417,'2010-05-27 21:14:04',1,'attributes_controller.php','products_filter=3&current_category_id=2&','67.142.161.25'),(4418,'2010-05-27 21:14:14',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=2&attribute_page=1&products_filter=3&current_category_id=2&','67.142.161.25'),(4419,'2010-05-27 21:14:20',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4420,'2010-05-27 21:14:20',1,'attributes_controller.php','products_filter=3&current_category_id=2&','67.142.161.25'),(4421,'2010-05-27 21:14:27',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=1&attribute_page=1&products_filter=3&current_category_id=2&','67.142.161.25'),(4422,'2010-05-27 21:14:31',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4423,'2010-05-27 21:14:31',1,'attributes_controller.php','products_filter=3&current_category_id=2&','67.142.161.25'),(4424,'2010-05-27 21:14:53',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=3&','67.142.161.25'),(4425,'2010-05-27 21:14:53',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=2&','67.142.161.25'),(4426,'2010-05-27 21:15:21',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=3&','67.142.161.25'),(4427,'2010-05-27 21:15:21',1,'attributes_controller.php','attribute_page=1&products_filter=3&current_category_id=2&','67.142.161.25'),(4428,'2010-05-27 21:15:28',1,'attributes_controller.php','action=set_products_filter&','67.142.161.25'),(4429,'2010-05-27 21:15:29',1,'attributes_controller.php','products_filter=2&current_category_id=2&','67.142.161.25'),(4430,'2010-05-27 21:15:37',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=2&attribute_page=1&products_filter=2&current_category_id=2&','67.142.161.25'),(4431,'2010-05-27 21:15:42',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4432,'2010-05-27 21:15:42',1,'attributes_controller.php','products_filter=2&current_category_id=2&','67.142.161.25'),(4433,'2010-05-27 21:15:51',1,'attributes_controller.php','action=delete_option_name_values_confirm&products_options_id_all=1&attribute_page=1&products_filter=2&current_category_id=2&','67.142.161.25'),(4434,'2010-05-27 21:15:55',1,'attributes_controller.php','action=delete_option_name_values&','67.142.161.25'),(4435,'2010-05-27 21:15:55',1,'attributes_controller.php','products_filter=2&current_category_id=2&','67.142.161.25'),(4436,'2010-05-27 21:16:11',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=2&','67.142.161.25'),(4437,'2010-05-27 21:16:11',1,'attributes_controller.php','attribute_page=1&products_filter=2&current_category_id=2&','67.142.161.25'),(4438,'2010-05-27 21:16:36',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=2&','67.142.161.25'),(4439,'2010-05-27 21:16:36',1,'attributes_controller.php','attribute_page=1&products_filter=2&current_category_id=2&','67.142.161.25'),(4440,'2010-05-27 21:23:38',0,'login.php ','','67.142.161.25'),(4441,'2010-05-27 21:51:24',1,'configuration.php','gID=1&','67.142.161.25'),(4442,'2010-05-27 21:51:44',1,'configuration.php','gID=8&','67.142.161.25'),(4443,'2010-05-27 21:52:01',1,'configuration.php','gID=8&cID=218&','67.142.161.25'),(4444,'2010-05-27 21:52:05',1,'configuration.php','gID=8&cID=218&action=edit&','67.142.161.25'),(4445,'2010-05-27 21:52:14',1,'configuration.php','gID=8&cID=218&action=save&','67.142.161.25'),(4446,'2010-05-27 21:52:15',1,'configuration.php','gID=8&cID=218&','67.142.161.25'),(4447,'2010-05-27 21:52:53',1,'configuration.php','gID=8&cID=223&','67.142.161.25'),(4448,'2010-05-27 21:52:58',1,'configuration.php','gID=8&cID=223&action=edit&','67.142.161.25'),(4449,'2010-05-27 21:53:04',1,'configuration.php','gID=8&cID=223&action=save&','67.142.161.25'),(4450,'2010-05-27 21:53:04',1,'configuration.php','gID=8&cID=223&','67.142.161.25'),(4451,'2010-05-27 21:53:54',1,'configuration.php','gID=18&','67.142.161.25'),(4452,'2010-05-27 21:54:22',1,'configuration.php','gID=18&cID=377&action=edit&','67.142.161.25'),(4453,'2010-05-27 21:54:43',1,'configuration.php','gID=18&cID=377&action=save&','67.142.161.25'),(4454,'2010-05-27 21:54:44',1,'configuration.php','gID=18&cID=377&','67.142.161.25'),(4455,'2010-05-27 21:54:49',1,'configuration.php','gID=18&cID=376&action=edit&','67.142.161.25'),(4456,'2010-05-27 21:55:39',1,'configuration.php','gID=13&','67.142.161.25'),(4457,'2010-05-27 21:55:56',1,'configuration.php','gID=19&','67.142.161.25'),(4458,'2010-05-27 21:58:07',1,'product_types.php','','67.142.161.25'),(4459,'2010-05-27 21:58:12',1,'product_types.php','page=1&ptID=1&action=layout&','67.142.161.25'),(4460,'2010-05-27 21:58:27',1,'product_types.php','ptID=1&cID=2&action=layout&','67.142.161.25'),(4461,'2010-05-27 21:58:33',1,'product_types.php','ptID=1&cID=2&action=layout_edit&','67.142.161.25'),(4462,'2010-05-27 21:58:39',1,'product_types.php','ptID=1&cID=2&action=layout_save&','67.142.161.25'),(4463,'2010-05-27 21:58:40',1,'product_types.php','gID=&cID=2&ptID=1&action=layout&','67.142.161.25'),(4464,'2010-05-27 21:58:49',1,'product_types.php','ptID=1&cID=7&action=layout_edit&','67.142.161.25'),(4465,'2010-05-27 21:58:49',1,'product_types.php','ptID=1&cID=7&action=layout&','67.142.161.25'),(4466,'2010-05-27 21:58:53',1,'product_types.php','ptID=1&cID=7&action=layout_edit&','67.142.161.25'),(4467,'2010-05-27 21:59:03',1,'product_types.php','ptID=1&cID=7&action=layout_save&','67.142.161.25'),(4468,'2010-05-27 21:59:03',1,'product_types.php','gID=&cID=7&ptID=1&action=layout&','67.142.161.25'),(4469,'2010-05-27 21:59:05',1,'product_types.php','ptID=1&cID=8&action=layout&','67.142.161.25'),(4470,'2010-05-27 21:59:11',1,'product_types.php','ptID=1&cID=8&action=layout_edit&','67.142.161.25'),(4471,'2010-05-27 21:59:17',1,'product_types.php','ptID=1&cID=8&action=layout_save&','67.142.161.25'),(4472,'2010-05-27 21:59:17',1,'product_types.php','gID=&cID=8&ptID=1&action=layout&','67.142.161.25'),(4473,'2010-05-27 21:59:30',1,'product_types.php','ptID=1&cID=144&action=layout_edit&','67.142.161.25'),(4474,'2010-05-27 21:59:35',1,'product_types.php','ptID=1&cID=144&action=layout_save&','67.142.161.25'),(4475,'2010-05-27 21:59:35',1,'product_types.php','gID=&cID=144&ptID=1&action=layout&','67.142.161.25'),(4476,'2010-05-27 21:59:43',1,'product_types.php','ptID=1&cID=148&action=layout&','67.142.161.25'),(4477,'2010-05-27 21:59:48',1,'product_types.php','ptID=1&cID=148&action=layout_edit&','67.142.161.25'),(4478,'2010-05-27 21:59:53',1,'product_types.php','ptID=1&cID=148&action=layout_save&','67.142.161.25'),(4479,'2010-05-27 21:59:54',1,'product_types.php','gID=&cID=148&ptID=1&action=layout&','67.142.161.25'),(4480,'2010-05-27 22:01:49',1,'banner_manager.php','','67.142.161.25'),(4481,'2010-05-27 22:02:00',1,'banner_manager.php','page=1&bID=8&action=new&','67.142.161.25'),(4482,'2010-05-27 22:02:29',1,'banner_manager.php','','67.142.161.25'),(4483,'2010-05-27 22:03:15',1,'banner_manager.php','page=1&bID=8&action=setflag&flag=0&','67.142.161.25'),(4484,'2010-05-27 22:03:16',1,'banner_manager.php','page=1&bID=8&','67.142.161.25'),(4485,'2010-05-27 22:03:20',1,'banner_manager.php','page=1&bID=11&action=setflag&flag=0&','67.142.161.25'),(4486,'2010-05-27 22:03:20',1,'banner_manager.php','page=1&bID=11&','67.142.161.25'),(4487,'2010-05-27 22:03:20',1,'banner_manager.php','page=1&bID=11&','67.142.161.25'),(4488,'2010-05-27 22:03:24',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=0&','67.142.161.25'),(4489,'2010-05-27 22:03:24',1,'banner_manager.php','page=1&bID=12&','67.142.161.25'),(4490,'2010-05-27 22:20:09',1,'product_types.php','','67.142.161.25'),(4491,'2010-05-27 22:20:21',1,'categories.php','','67.142.161.25'),(4492,'2010-05-27 22:20:25',1,'categories.php','cPath=2&','67.142.161.25'),(4493,'2010-05-27 22:20:35',1,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product&','67.142.161.25'),(4494,'2010-05-27 22:21:41',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview&page=1&','67.142.161.25'),(4495,'2010-05-27 22:22:04',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product&page=1&','67.142.161.25'),(4496,'2010-05-27 22:22:35',1,'product.php','cPath=2&product_type=1&pID=5&action=new_product_preview&page=1&','67.142.161.25'),(4497,'2010-05-27 22:22:49',1,'product.php','cPath=2&product_type=1&pID=5&action=update_product&page=1&','67.142.161.25'),(4498,'2010-05-27 22:22:49',1,'categories.php','cPath=2&pID=5&page=1&','67.142.161.25'),(4499,'2010-05-27 22:22:58',1,'product.php','page=1&product_type=1&cPath=2&pID=6&action=new_product&','67.142.161.25'),(4500,'2010-05-27 22:23:30',1,'product.php','cPath=2&product_type=1&pID=6&action=new_product_preview&page=1&','67.142.161.25'),(4501,'2010-05-27 22:23:36',1,'product.php','cPath=2&product_type=1&pID=6&action=update_product&page=1&','67.142.161.25'),(4502,'2010-05-27 22:23:36',1,'categories.php','cPath=2&pID=6&page=1&','67.142.161.25'),(4503,'2010-05-27 22:23:41',1,'product.php','page=1&product_type=1&cPath=2&pID=1&action=new_product&','67.142.161.25'),(4504,'2010-05-27 22:24:05',1,'product.php','cPath=2&product_type=1&pID=1&action=new_product_preview&page=1&','67.142.161.25'),(4505,'2010-05-27 22:24:14',1,'product.php','page=1&product_type=1&cPath=2&pID=1&action=new_product&','67.142.161.25'),(4506,'2010-05-27 22:24:28',1,'product.php','cPath=2&product_type=1&pID=1&action=new_product_preview&page=1&','67.142.161.25'),(4507,'2010-05-27 22:24:34',1,'product.php','cPath=2&product_type=1&pID=1&action=update_product&page=1&','67.142.161.25'),(4508,'2010-05-27 22:24:35',1,'categories.php','cPath=2&pID=1&page=1&','67.142.161.25'),(4509,'2010-05-27 22:24:39',1,'product.php','page=1&product_type=1&cPath=2&pID=3&action=new_product&','67.142.161.25'),(4510,'2010-05-27 22:25:12',1,'product.php','cPath=2&product_type=1&pID=3&action=new_product_preview&page=1&','67.142.161.25'),(4511,'2010-05-27 22:25:21',1,'product.php','cPath=2&product_type=1&pID=3&action=update_product&page=1&','67.142.161.25'),(4512,'2010-05-27 22:25:21',1,'categories.php','cPath=2&pID=3&page=1&','67.142.161.25'),(4513,'2010-05-27 22:25:28',1,'product.php','page=1&product_type=1&cPath=2&pID=2&action=new_product&','67.142.161.25'),(4514,'2010-05-27 22:26:07',1,'product.php','cPath=2&product_type=1&pID=2&action=new_product_preview&page=1&','67.142.161.25'),(4515,'2010-05-27 22:26:12',1,'product.php','cPath=2&product_type=1&pID=2&action=update_product&page=1&','67.142.161.25'),(4516,'2010-05-27 22:26:12',1,'categories.php','cPath=2&pID=2&page=1&','67.142.161.25'),(4517,'2010-05-27 22:26:18',1,'product.php','page=1&product_type=1&cPath=2&pID=7&action=new_product&','67.142.161.25'),(4518,'2010-05-27 22:26:41',1,'product.php','cPath=2&product_type=1&pID=7&action=new_product_preview&page=1&','67.142.161.25'),(4519,'2010-05-27 22:26:48',1,'product.php','cPath=2&product_type=1&pID=7&action=update_product&page=1&','67.142.161.25'),(4520,'2010-05-27 22:26:49',1,'categories.php','cPath=2&pID=7&page=1&','67.142.161.25'),(4521,'2010-05-27 22:27:55',1,'categories.php','','67.142.161.25'),(4522,'2010-05-27 22:28:01',1,'product_types.php','','67.142.161.25'),(4523,'2010-05-27 22:28:06',1,'product_types.php','page=1&ptID=1&action=layout&','67.142.161.25'),(4524,'2010-05-27 22:28:25',1,'product_types.php','ptID=1&cID=144&action=layout_edit&','67.142.161.25'),(4525,'2010-05-27 22:28:38',1,'product_types.php','ptID=1&cID=144&action=layout_save&','67.142.161.25'),(4526,'2010-05-27 22:28:39',1,'product_types.php','gID=&cID=144&ptID=1&action=layout&','67.142.161.25'),(4527,'2010-05-27 22:29:35',1,'alt_nav.php','','67.142.161.25'),(4528,'2010-05-27 22:30:14',1,'configuration.php','gID=31&','67.142.161.25'),(4529,'2010-05-27 22:30:22',1,'configuration.php','gID=31&cID=673&','67.142.161.25'),(4530,'2010-05-27 22:30:26',1,'configuration.php','gID=31&cID=673&action=edit&','67.142.161.25'),(4531,'2010-05-27 22:30:34',1,'configuration.php','gID=31&cID=673&action=save&','67.142.161.25'),(4532,'2010-05-27 22:30:34',1,'configuration.php','gID=31&cID=673&','67.142.161.25'),(4533,'2010-05-27 22:31:15',1,'configuration.php','gID=31&cID=690&','67.142.161.25'),(4534,'2010-05-27 22:31:24',1,'configuration.php','gID=31&cID=690&action=edit&','67.142.161.25'),(4535,'2010-05-27 22:31:29',1,'configuration.php','gID=31&cID=690&action=save&','67.142.161.25'),(4536,'2010-05-27 22:31:29',1,'configuration.php','gID=31&cID=690&','67.142.161.25'),(4537,'2010-05-27 23:11:07',1,'configuration.php','gID=31&cID=681&','67.142.161.25'),(4538,'2010-05-27 23:11:24',1,'configuration.php','gID=31&cID=681&action=edit&','67.142.161.25'),(4539,'2010-05-27 23:11:31',1,'configuration.php','gID=31&cID=681&action=save&','67.142.161.25'),(4540,'2010-05-27 23:11:31',1,'configuration.php','gID=31&cID=681&','67.142.161.25'),(4541,'2010-05-27 23:16:05',1,'configuration.php','gID=31&cID=675&action=edit&','67.142.161.25'),(4542,'2010-05-27 23:16:10',1,'configuration.php','gID=31&cID=675&action=save&','67.142.161.25'),(4543,'2010-05-27 23:16:11',1,'configuration.php','gID=31&cID=675&','67.142.161.25'),(4544,'2010-05-27 23:21:20',1,'configuration.php','gID=31&cID=675&action=edit&','67.142.161.25'),(4545,'2010-05-27 23:21:21',1,'configuration.php','gID=31&cID=675&action=edit&','67.142.161.25'),(4546,'2010-05-27 23:21:26',1,'configuration.php','gID=31&cID=675&action=save&','67.142.161.25'),(4547,'2010-05-27 23:21:26',1,'configuration.php','gID=31&cID=675&','67.142.161.25'),(4548,'2010-05-27 23:21:36',1,'configuration.php','gID=31&cID=672&','67.142.161.25'),(4549,'2010-05-27 23:21:54',1,'configuration.php','gID=31&cID=672&action=edit&','67.142.161.25'),(4550,'2010-05-27 23:22:01',1,'configuration.php','gID=31&cID=672&action=save&','67.142.161.25'),(4551,'2010-05-27 23:22:01',1,'configuration.php','gID=31&cID=672&','67.142.161.25'),(4552,'2010-05-28 07:06:40',0,'login.php ','','67.142.161.18'),(4553,'2010-05-28 07:07:02',0,'login.php Admin','','67.142.161.18'),(4554,'2010-05-28 07:07:29',1,'configuration.php','gID=13&','67.142.161.18'),(4555,'2010-05-28 07:07:50',1,'attributes_controller.php','','67.142.161.18'),(4556,'2010-05-28 07:08:03',1,'options_values_manager.php','','67.142.161.18'),(4557,'2010-05-28 07:08:17',1,'options_values_manager.php','action=delete_option_value&value_id=5&value_page=1&','67.142.161.18'),(4558,'2010-05-28 07:08:30',1,'options_values_manager.php','value_page=1&','67.142.161.18'),(4559,'2010-05-28 07:08:35',1,'options_values_manager.php','action=delete_option_value&value_id=5&value_page=1&','67.142.161.18'),(4560,'2010-05-28 07:08:40',1,'options_values_manager.php','action=delete_value&value_id=5&value_page=1&','67.142.161.18'),(4561,'2010-05-28 07:08:40',1,'options_values_manager.php','value_page=1&','67.142.161.18'),(4562,'2010-05-28 07:10:35',1,'options_values_manager.php','action=add_product_option_values&value_page=1&','67.142.161.18'),(4563,'2010-05-28 07:10:35',1,'options_values_manager.php','value_page=1&','67.142.161.18'),(4564,'2010-05-28 07:10:44',1,'options_values_manager.php','action=update_option_value&value_id=6&value_page=1&','67.142.161.18'),(4565,'2010-05-28 07:11:18',1,'options_values_manager.php','action=update_value&value_page=1&','67.142.161.18'),(4566,'2010-05-28 07:11:18',1,'options_values_manager.php','value_page=1&','67.142.161.18'),(4567,'2010-05-28 07:12:35',1,'attributes_controller.php','','67.142.161.18'),(4568,'2010-05-28 07:12:45',1,'attributes_controller.php','action=set_products_filter&','67.142.161.18'),(4569,'2010-05-28 07:12:45',1,'attributes_controller.php','products_filter=5&current_category_id=2&','67.142.161.18'),(4570,'2010-05-28 07:13:14',1,'attributes_controller.php','action=update_product&products_filter=5&current_category_id=2&','67.142.161.18'),(4571,'2010-05-28 07:13:14',1,'attributes_controller.php','products_filter=5&current_category_id=2&','67.142.161.18'),(4572,'2010-05-28 07:13:37',1,'attributes_controller.php','','67.142.161.18'),(4573,'2010-05-28 07:20:24',1,'categories.php','','67.142.161.18'),(4574,'2010-05-28 07:20:52',1,'categories.php','cPath=2&','67.142.161.18'),(4575,'2010-05-28 07:21:00',1,'categories.php','cPath=2&pID=5&action=attribute_features&page=1&','67.142.161.18'),(4576,'2010-05-28 07:21:26',1,'attributes_controller.php','','67.142.161.18'),(4577,'2010-05-28 07:21:46',1,'attributes_controller.php','action=set_products_filter&','67.142.161.18'),(4578,'2010-05-28 07:21:46',1,'attributes_controller.php','products_filter=5&current_category_id=2&','67.142.161.18'),(4579,'2010-05-28 07:22:38',1,'attributes_controller.php','action=add_product_attributes&attribute_page=1&products_filter=5&','67.142.161.18'),(4580,'2010-05-28 07:22:38',1,'attributes_controller.php','attribute_page=1&products_filter=5&current_category_id=2&','67.142.161.18'),(4581,'2010-05-28 07:22:44',1,'categories.php','','67.142.161.18'),(4582,'2010-05-28 07:22:49',1,'categories.php','cPath=2&','67.142.161.18'),(4583,'2010-05-28 07:22:52',1,'categories.php','cPath=2&pID=5&action=attribute_features&page=1&','67.142.161.18'),(4584,'2010-05-28 07:23:04',1,'categories.php','cPath=2&pID=5&action=update_attributes_sort_order&page=1&products_id=5&','67.142.161.18'),(4585,'2010-05-28 07:23:04',1,'categories.php','cPath=2&pID=5&page=1&','67.142.161.18'),(4586,'2010-05-28 07:24:22',1,'categories.php','cPath=2&pID=5&action=attribute_features&page=1&','67.142.161.18'),(4587,'2010-05-28 07:24:39',1,'categories.php','cPath=2&pID=5&action=attribute_features_copy_to_category&page=1&products_id=5&','67.142.161.18'),(4588,'2010-05-28 07:25:24',1,'categories.php','action=update_attributes_copy_to_category&cPath=2&page=1&','67.142.161.18'),(4589,'2010-05-28 07:25:24',1,'categories.php','cPath=2&pID=&page=1&','67.142.161.18'),(4590,'2010-05-28 07:34:46',1,'developers_tool_kit.php','','67.142.161.18'),(4591,'2010-05-28 07:34:59',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.18'),(4592,'2010-05-28 07:46:28',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.18'),(4593,'2010-05-28 07:46:38',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.18'),(4594,'2010-05-28 07:58:04',1,'layout_controller.php','','67.142.161.18'),(4595,'2010-05-28 08:00:07',1,'configuration.php','gID=19&','67.142.161.18'),(4596,'2010-05-28 08:30:50',1,'configuration.php','gID=19&cID=411&','67.142.161.22'),(4597,'2010-05-28 08:30:59',1,'configuration.php','gID=19&cID=411&action=edit&','67.142.161.22'),(4598,'2010-05-28 08:31:05',1,'configuration.php','gID=19&cID=411&action=save&','67.142.161.22'),(4599,'2010-05-28 08:31:05',1,'configuration.php','gID=19&cID=411&','67.142.161.22'),(4600,'2010-05-28 08:43:07',1,'alt_nav.php','','67.142.161.22'),(4601,'2010-05-28 08:43:08',1,'define_pages_editor.php','','67.142.161.22'),(4602,'2010-05-28 08:43:14',1,'define_pages_editor.php','securityToken=6c25c0485d12bd6274dd5288f5d43ace&define_it=5&action=new_page&','67.142.161.22'),(4603,'2010-05-28 08:43:46',1,'define_pages_editor.php','lngdir=english&filename=define_page_2.php&action=save&','67.142.161.22'),(4604,'2010-05-28 08:43:46',1,'define_pages_editor.php','','67.142.161.22'),(4605,'2010-05-28 08:45:54',1,'configuration.php','gID=31&','67.142.161.22'),(4606,'2010-05-28 08:46:15',1,'configuration.php','gID=31&cID=675&','67.142.161.22'),(4607,'2010-05-28 08:49:25',1,'configuration.php','gID=31&cID=689&action=edit&','67.142.161.22'),(4608,'2010-05-28 08:49:31',1,'configuration.php','gID=31&cID=689&action=save&','67.142.161.22'),(4609,'2010-05-28 08:49:31',1,'configuration.php','gID=31&cID=689&','67.142.161.22'),(4610,'2010-05-28 08:52:07',1,'modules.php','set=payment&','67.142.161.22'),(4611,'2010-05-28 08:52:21',1,'modules.php','set=payment&module=paypaldp&','67.142.161.22'),(4612,'2010-05-28 08:52:52',1,'modules.php','set=payment&module=paypaldp&action=edit&','67.142.161.22'),(4613,'2010-05-28 08:54:25',1,'modules.php','set=payment&module=paypaldp&action=save&','67.142.161.22'),(4614,'2010-05-28 08:54:26',1,'modules.php','set=payment&module=paypaldp&','67.142.161.22'),(4615,'2010-05-28 08:54:31',1,'modules.php','set=payment&module=paypalwpp&','67.142.161.22'),(4616,'2010-05-28 08:54:32',1,'modules.php','set=payment&module=paypalwpp&','67.142.161.22'),(4617,'2010-05-28 08:54:37',1,'modules.php','set=payment&module=paypalwpp&action=edit&','67.142.161.22'),(4618,'2010-05-28 08:54:47',1,'modules.php','set=payment&module=paypalwpp&action=save&','67.142.161.22'),(4619,'2010-05-28 08:54:47',1,'modules.php','set=payment&module=paypalwpp&','67.142.161.22'),(4620,'2010-05-28 08:56:42',1,'developers_tool_kit.php','','67.142.161.22'),(4621,'2010-05-28 08:56:54',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.22'),(4622,'2010-05-28 09:26:11',1,'configuration.php','gID=3&','67.142.161.22'),(4623,'2010-05-28 09:27:19',1,'configuration.php','gID=3&cID=70&action=edit&','67.142.161.22'),(4624,'2010-05-28 09:27:31',1,'configuration.php','gID=3&cID=70&action=save&','67.142.161.22'),(4625,'2010-05-28 09:27:31',1,'configuration.php','gID=3&cID=70&','67.142.161.22'),(4626,'2010-05-28 09:29:10',1,'configuration.php','gID=31&','67.142.161.22'),(4627,'2010-05-28 09:29:22',1,'configuration.php','gID=31&cID=672&action=edit&','67.142.161.22'),(4628,'2010-05-28 09:29:29',1,'configuration.php','gID=31&cID=672&action=save&','67.142.161.22'),(4629,'2010-05-28 09:29:30',1,'configuration.php','gID=31&cID=672&','67.142.161.22'),(4630,'2010-05-28 09:49:49',1,'configuration.php','gID=31&cID=673&action=edit&','67.142.161.22'),(4631,'2010-05-28 09:49:49',1,'configuration.php','gID=31&cID=673&','67.142.161.22'),(4632,'2010-05-28 09:50:00',1,'configuration.php','gID=31&cID=673&action=edit&','67.142.161.22'),(4633,'2010-05-28 09:50:19',1,'configuration.php','gID=31&cID=673&action=save&','67.142.161.22'),(4634,'2010-05-28 09:50:19',1,'configuration.php','gID=31&cID=673&','67.142.161.22'),(4635,'2010-05-28 09:50:21',1,'configuration.php','gID=31&cID=672&action=edit&','67.142.161.22'),(4636,'2010-05-28 09:50:28',1,'configuration.php','gID=31&cID=672&action=save&','67.142.161.22'),(4637,'2010-05-28 09:50:29',1,'configuration.php','gID=31&cID=672&','67.142.161.22'),(4638,'2010-05-28 09:51:04',1,'configuration.php','gID=31&cID=686&action=edit&','67.142.161.22'),(4639,'2010-05-28 09:51:22',1,'configuration.php','gID=31&cID=686&action=save&','67.142.161.22'),(4640,'2010-05-28 09:51:22',1,'configuration.php','gID=31&cID=686&','67.142.161.22'),(4641,'2010-05-28 09:51:53',1,'configuration.php','gID=31&cID=692&action=edit&','67.142.161.22'),(4642,'2010-05-28 09:52:03',1,'configuration.php','gID=31&cID=692&','67.142.161.22'),(4643,'2010-05-28 09:52:20',1,'configuration.php','gID=31&cID=692&action=edit&','67.142.161.22'),(4644,'2010-05-28 09:52:24',1,'configuration.php','gID=31&cID=692&action=save&','67.142.161.22'),(4645,'2010-05-28 09:52:25',1,'configuration.php','gID=31&cID=692&','67.142.161.22'),(4646,'2010-05-28 09:55:48',1,'configuration.php','gID=31&cID=691&action=edit&','67.142.161.22'),(4647,'2010-05-28 09:56:04',1,'configuration.php','gID=31&cID=692&action=edit&','67.142.161.22'),(4648,'2010-05-28 09:57:05',1,'configuration.php','gID=31&cID=680&action=edit&','67.142.161.22'),(4649,'2010-05-28 09:57:17',1,'configuration.php','gID=31&cID=680&action=save&','67.142.161.22'),(4650,'2010-05-28 09:57:17',1,'configuration.php','gID=31&cID=680&','67.142.161.22'),(4651,'2010-05-28 09:57:35',1,'configuration.php','gID=31&cID=692&action=edit&','67.142.161.22'),(4652,'2010-05-28 09:57:39',1,'configuration.php','gID=31&cID=692&action=save&','67.142.161.22'),(4653,'2010-05-28 09:57:40',1,'configuration.php','gID=31&cID=692&','67.142.161.22'),(4654,'2010-05-28 09:58:53',1,'configuration.php','gID=31&cID=692&action=edit&','67.142.161.22'),(4655,'2010-05-28 09:58:59',1,'configuration.php','gID=31&cID=692&action=save&','67.142.161.22'),(4656,'2010-05-28 09:58:59',1,'configuration.php','gID=31&cID=692&','67.142.161.22'),(4657,'2010-05-28 09:59:08',1,'configuration.php','gID=31&cID=691&action=edit&','67.142.161.22'),(4658,'2010-05-28 09:59:13',1,'configuration.php','gID=31&cID=691&action=save&','67.142.161.22'),(4659,'2010-05-28 09:59:13',1,'configuration.php','gID=31&cID=691&','67.142.161.22'),(4660,'2010-05-28 10:00:06',1,'configuration.php','gID=31&cID=691&action=edit&','67.142.161.22'),(4661,'2010-05-28 10:00:11',1,'configuration.php','gID=31&cID=691&action=save&','67.142.161.22'),(4662,'2010-05-28 10:00:11',1,'configuration.php','gID=31&cID=691&','67.142.161.22'),(4663,'2010-05-28 10:00:23',1,'configuration.php','gID=31&cID=689&action=edit&','67.142.161.22'),(4664,'2010-05-28 10:00:27',1,'configuration.php','gID=31&cID=689&action=save&','67.142.161.22'),(4665,'2010-05-28 10:00:28',1,'configuration.php','gID=31&cID=689&','67.142.161.22'),(4666,'2010-05-28 10:01:05',1,'configuration.php','gID=31&cID=690&action=edit&','67.142.161.22'),(4667,'2010-05-28 10:01:06',1,'configuration.php','gID=31&cID=690&action=edit&','67.142.161.22'),(4668,'2010-05-28 10:01:23',1,'configuration.php','gID=31&cID=689&action=edit&','67.142.161.22'),(4669,'2010-05-28 10:01:32',1,'configuration.php','gID=31&cID=689&action=save&','67.142.161.22'),(4670,'2010-05-28 10:01:33',1,'configuration.php','gID=31&cID=689&','67.142.161.22'),(4671,'2010-05-28 10:01:36',1,'configuration.php','gID=31&cID=685&action=edit&','67.142.161.22'),(4672,'2010-05-28 10:01:49',1,'configuration.php','gID=31&cID=681&action=edit&','67.142.161.22'),(4673,'2010-05-28 10:02:05',1,'configuration.php','gID=31&cID=681&action=save&','67.142.161.22'),(4674,'2010-05-28 10:02:05',1,'configuration.php','gID=31&cID=681&','67.142.161.22'),(4675,'2010-05-28 10:02:26',1,'configuration.php','gID=31&cID=681&action=edit&','67.142.161.22'),(4676,'2010-05-28 10:02:29',1,'configuration.php','gID=31&cID=681&action=save&','67.142.161.22'),(4677,'2010-05-28 10:02:30',1,'configuration.php','gID=31&cID=681&','67.142.161.22'),(4678,'2010-05-28 10:02:41',1,'configuration.php','gID=31&cID=673&action=edit&','67.142.161.22'),(4679,'2010-05-28 10:02:49',1,'configuration.php','gID=31&cID=673&action=save&','67.142.161.22'),(4680,'2010-05-28 10:02:49',1,'configuration.php','gID=31&cID=673&','67.142.161.22'),(4681,'2010-05-28 10:06:40',1,'configuration.php','gID=31&cID=672&','67.142.161.22'),(4682,'2010-05-28 10:06:51',1,'configuration.php','gID=31&cID=672&action=edit&','67.142.161.22'),(4683,'2010-05-28 10:06:52',1,'configuration.php','gID=31&cID=672&action=edit&','67.142.161.22'),(4684,'2010-05-28 10:06:57',1,'configuration.php','gID=31&cID=672&action=save&','67.142.161.22'),(4685,'2010-05-28 10:06:57',1,'configuration.php','gID=31&cID=672&','67.142.161.22'),(4686,'2010-05-28 10:06:59',1,'configuration.php','gID=31&cID=673&action=edit&','67.142.161.22'),(4687,'2010-05-28 10:07:03',1,'configuration.php','gID=31&cID=673&action=save&','67.142.161.22'),(4688,'2010-05-28 10:07:03',1,'configuration.php','gID=31&cID=673&','67.142.161.22'),(4689,'2010-05-28 10:10:57',1,'configuration.php','gID=31&cID=689&action=edit&','67.142.161.22'),(4690,'2010-05-28 10:11:00',1,'configuration.php','gID=31&cID=689&action=save&','67.142.161.22'),(4691,'2010-05-28 10:11:01',1,'configuration.php','gID=31&cID=689&','67.142.161.22'),(4692,'2010-05-28 10:11:04',1,'configuration.php','gID=31&cID=690&action=edit&','67.142.161.22'),(4693,'2010-05-28 10:11:09',1,'configuration.php','gID=31&cID=690&action=save&','67.142.161.22'),(4694,'2010-05-28 10:11:09',1,'configuration.php','gID=31&cID=690&','67.142.161.22'),(4695,'2010-05-28 10:11:19',1,'configuration.php','gID=31&cID=692&','67.142.161.22'),(4696,'2010-05-28 10:11:22',1,'configuration.php','gID=31&cID=692&action=edit&','67.142.161.22'),(4697,'2010-05-28 10:11:26',1,'configuration.php','gID=31&cID=692&action=save&','67.142.161.22'),(4698,'2010-05-28 10:11:27',1,'configuration.php','gID=31&cID=692&','67.142.161.22'),(4699,'2010-05-28 10:11:29',1,'modules.php','set=payment&','67.142.161.22'),(4700,'2010-05-28 10:11:48',1,'modules.php','set=payment&module=freecharger&','67.142.161.22'),(4701,'2010-05-28 10:11:53',1,'modules.php','set=payment&module=freecharger&action=remove&','67.142.161.22'),(4702,'2010-05-28 10:11:53',1,'modules.php','set=payment&module=freecharger&','67.142.161.22'),(4703,'2010-05-28 10:12:01',1,'modules.php','set=payment&module=moneyorder&','67.142.161.22'),(4704,'2010-05-28 10:12:04',1,'modules.php','set=payment&module=moneyorder&action=remove&','67.142.161.22'),(4705,'2010-05-28 10:12:04',1,'modules.php','set=payment&module=moneyorder&','67.142.161.22'),(4706,'2010-05-28 10:13:19',1,'configuration.php','gID=31&','67.142.161.22'),(4707,'2010-05-28 10:13:31',1,'configuration.php','gID=31&cID=687&action=edit&','67.142.161.22'),(4708,'2010-05-28 10:13:38',1,'configuration.php','gID=31&cID=687&action=save&','67.142.161.22'),(4709,'2010-05-28 10:13:39',1,'configuration.php','gID=31&cID=687&','67.142.161.22'),(4710,'2010-05-28 10:14:39',1,'define_pages_editor.php','','67.142.161.22'),(4711,'2010-05-28 10:14:44',1,'developers_tool_kit.php','','67.142.161.22'),(4712,'2010-05-28 10:14:53',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.22'),(4713,'2010-05-28 10:14:58',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.22'),(4714,'2010-05-28 10:15:24',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.22'),(4715,'2010-05-28 10:29:03',1,'configuration.php','gID=31&','67.142.161.22'),(4716,'2010-05-28 10:29:16',1,'configuration.php','gID=31&cID=689&action=edit&','67.142.161.22'),(4717,'2010-05-28 10:29:20',1,'configuration.php','gID=31&cID=689&action=save&','67.142.161.22'),(4718,'2010-05-28 10:29:21',1,'configuration.php','gID=31&cID=689&','67.142.161.22'),(4719,'2010-05-28 10:29:23',1,'configuration.php','gID=31&cID=690&action=edit&','67.142.161.22'),(4720,'2010-05-28 10:29:28',1,'configuration.php','gID=31&cID=690&action=save&','67.142.161.22'),(4721,'2010-05-28 10:29:29',1,'configuration.php','gID=31&cID=690&','67.142.161.22'),(4722,'2010-05-28 10:30:33',1,'configuration.php','gID=31&cID=672&','67.142.161.22'),(4723,'2010-05-28 10:30:36',1,'configuration.php','gID=31&cID=672&action=edit&','67.142.161.22'),(4724,'2010-05-28 10:30:41',1,'configuration.php','gID=31&cID=672&action=save&','67.142.161.22'),(4725,'2010-05-28 10:30:41',1,'configuration.php','gID=31&cID=672&','67.142.161.22'),(4726,'2010-05-28 10:30:44',1,'configuration.php','gID=31&cID=673&action=edit&','67.142.161.22'),(4727,'2010-05-28 10:30:44',1,'configuration.php','gID=31&cID=673&','67.142.161.22'),(4728,'2010-05-28 10:30:46',1,'configuration.php','gID=31&cID=673&action=edit&','67.142.161.22'),(4729,'2010-05-28 10:30:50',1,'configuration.php','gID=31&cID=673&action=save&','67.142.161.22'),(4730,'2010-05-28 10:30:50',1,'configuration.php','gID=31&cID=673&','67.142.161.22'),(4731,'2010-05-28 10:37:51',1,'configuration.php','gID=31&cID=673&vcheck=yes&','67.142.161.22'),(4732,'2010-05-28 10:41:14',1,'server_info.php','','67.142.161.22'),(4733,'2010-05-28 19:22:07',0,'login.php ','','67.142.161.19'),(4734,'2010-05-28 19:23:09',0,'login.php Admin','','67.142.161.19'),(4735,'2010-05-28 19:23:41',1,'orders.php','selected_box=customers&status=1&','67.142.161.19'),(4736,'2010-05-28 19:23:49',1,'orders.php','selected_box=customers&status=2&','67.142.161.19'),(4737,'2010-05-29 21:03:17',0,'login.php ','','67.142.161.18'),(4738,'2010-07-11 16:07:15',0,'login.php ','','67.142.161.21'),(4739,'2010-07-11 16:07:16',0,'login.php ','','67.142.161.21'),(4740,'2010-07-11 16:07:58',0,'login.php myadiron','','67.142.161.21'),(4741,'2010-07-11 16:08:36',0,'login.php myadiron','','67.142.161.21'),(4742,'2010-07-11 20:09:41',0,'login.php ','','67.142.161.19'),(4743,'2010-07-11 20:11:08',0,'login.php myadiron','','67.142.161.19'),(4744,'2010-07-11 20:11:37',0,'login.php myadiron','','67.142.161.19'),(4745,'2010-07-11 20:11:46',0,'password_forgotten.php ','','67.142.161.19'),(4746,'2010-07-11 20:13:05',0,'password_forgotten.php info@adirondakchairs.net','','67.142.161.19'),(4747,'2010-07-11 20:13:17',0,'password_forgotten.php admin@adirondakchairs.net','','67.142.161.19'),(4748,'2010-07-11 20:13:58',0,'password_forgotten.php eorder@adirondakchairs.net','','67.142.161.19'),(4749,'2010-07-11 20:14:11',0,'password_forgotten.php jackr@adirondakchairs.net','','67.142.161.19'),(4750,'2010-07-11 20:14:19',0,'password_forgotten.php jack@adirondakchairs.net','','67.142.161.19'),(4751,'2010-07-11 20:15:06',0,'password_forgotten.php jhbrake@live.com','','67.142.161.19'),(4752,'2010-07-11 20:15:13',0,'password_forgotten.php jhbrake@live.com','','67.142.161.19'),(4753,'2010-07-11 20:15:26',0,'password_forgotten.php jhbrake@lcomcast.net','','67.142.161.19'),(4754,'2010-07-11 20:15:35',0,'password_forgotten.php jhbrake@comcast.net','','67.142.161.19'),(4755,'2010-07-11 20:18:06',0,'password_forgotten.php webmaster@adirondakchairs.net','','67.142.161.19'),(4756,'2010-07-11 20:18:24',0,'password_forgotten.php info@adirondakchairs.net','','67.142.161.19'),(4757,'2010-07-11 20:18:40',0,'password_forgotten.php jhbrake1@mycbay.com','','67.142.161.19'),(4758,'2010-07-11 20:19:02',0,'password_forgotten.php eorder@adirondakchairs.net','','67.142.161.19'),(4759,'2010-07-11 20:19:11',0,'password_forgotten.php info@adirondakchairs.net','','67.142.161.19'),(4760,'2010-07-11 20:19:15',0,'password_forgotten.php info@adirondakchairs.net','','67.142.161.19'),(4761,'2010-07-11 20:19:29',0,'password_forgotten.php jack@adirondakchairs.net','','67.142.161.19'),(4762,'2010-07-11 20:19:39',0,'password_forgotten.php admin@adirondakchairs.net','','67.142.161.19'),(4763,'2010-07-11 20:29:13',0,'login.php ','','67.142.161.19'),(4764,'2010-07-11 20:29:27',0,'login.php admin','','67.142.161.19'),(4765,'2010-07-11 20:29:42',0,'login.php admin@localhost','','67.142.161.19'),(4766,'2010-07-11 20:30:26',0,'login.php Admin','','67.142.161.19'),(4767,'2010-07-11 20:30:53',2,'admin.php','','67.142.161.19'),(4768,'2010-07-11 20:30:59',2,'admin.php','page=1&adminID=2&action=edit&','67.142.161.19'),(4769,'2010-07-11 20:31:44',2,'admin.php','page=1&adminID=2&action=save&','67.142.161.19'),(4770,'2010-07-11 20:31:44',2,'admin.php','page=1&adminID=2&','67.142.161.19'),(4771,'2010-07-11 20:34:16',2,'admin.php','page=1&adminID=2&action=resetpassword&','67.142.161.19'),(4772,'2010-07-11 20:34:47',2,'admin.php','page=1&adminID=2&action=reset&','67.142.161.19'),(4773,'2010-07-11 20:34:47',2,'admin.php','page=1&adminID=2&','67.142.161.19'),(4774,'2010-07-11 20:35:01',2,'orders.php','','67.142.161.19'),(4775,'2010-07-11 20:35:42',2,'stats_products_viewed.php','','67.142.161.19'),(4776,'2010-07-11 20:36:14',2,'categories.php','cPath=2&pID=5&','67.142.161.19'),(4777,'2010-07-11 20:36:14',2,'categories.php','cPath=2&pID=5&','67.142.161.19'),(4778,'2010-07-11 20:36:23',2,'stats_products_purchased.php','','67.142.161.19'),(4779,'2010-07-11 20:36:36',2,'categories.php','cPath=2&pID=5&page=&','67.142.161.19'),(4780,'2010-07-11 20:36:36',2,'categories.php','cPath=2&pID=5&page=&','67.142.161.19'),(4781,'2010-07-11 20:36:49',2,'stats_customers.php','','67.142.161.19'),(4782,'2010-07-11 20:37:10',2,'orders_status.php','','67.142.161.19'),(4783,'2010-07-11 20:37:35',2,'customers.php','','67.142.161.19'),(4784,'2010-07-11 20:38:20',2,'customers.php','page=1&cID=23&action=edit&','67.142.161.19'),(4785,'2010-07-11 21:24:23',2,'customers.php','','67.142.161.19'),(4786,'2010-07-11 21:25:01',2,'customers.php','page=1&cID=24&action=edit&','67.142.161.19'),(4787,'2010-07-11 21:25:50',2,'customers.php','','67.142.161.19'),(4788,'2010-07-11 21:25:54',2,'customers.php','page=1&cID=23&','67.142.161.19'),(4789,'2010-07-11 21:26:06',2,'customers.php','page=1&cID=23&action=edit&','67.142.161.19'),(4790,'2010-07-12 10:12:02',0,'login.php ','','67.142.161.27'),(4791,'2010-07-12 10:12:50',0,'login.php eagle888','','67.142.161.27'),(4792,'2010-07-12 10:13:03',2,'customers.php','search=Monteleone&origin=index&','67.142.161.27'),(4793,'2010-07-12 10:13:10',2,'customers.php','search=Monteleone&origin=index&page=1&cID=23&action=edit&','67.142.161.27'),(4794,'2010-07-12 10:16:01',2,'alt_nav.php','','67.142.161.27'),(4795,'2010-07-12 10:16:09',2,'alt_nav.php','','67.142.161.27'),(4796,'2010-07-12 10:16:09',2,'orders.php','','67.142.161.27'),(4797,'2010-07-12 10:16:27',2,'customers.php','','67.142.161.27'),(4798,'2010-08-17 19:28:13',0,'login.php ','','67.142.161.21'),(4799,'2010-08-17 19:28:47',0,'login.php myadiron','','67.142.161.21'),(4800,'2010-08-17 19:29:29',0,'login.php myadiron','','67.142.161.21'),(4801,'2010-08-17 19:29:35',0,'login.php myadiron','','67.142.161.21'),(4802,'2010-08-17 19:30:26',0,'login.php eagle888','','67.142.161.21'),(4803,'2010-08-17 19:30:56',2,'customers.php','search=Monteleone&origin=index&','67.142.161.21'),(4804,'2010-08-17 19:31:15',2,'customers.php','search=Vance&origin=index&','67.142.161.21'),(4805,'2010-08-17 19:31:22',2,'customers.php','search=Vance&origin=index&page=1&cID=25&action=edit&','67.142.161.21'),(4806,'2010-08-17 19:31:22',2,'customers.php','action=list_addresses&cID=25&page=1&','67.142.161.21'),(4807,'2010-08-17 19:31:39',2,'customers.php','action=list_addresses_done&cID=25&page=1&','67.142.161.21'),(4808,'2010-08-17 19:31:39',2,'customers.php','cID=25&page=1&','67.142.161.21'),(4809,'2010-08-17 19:31:54',2,'customers.php','page=1&cID=23&','67.142.161.21'),(4810,'2010-08-17 19:32:11',2,'categories.php','','67.142.161.21'),(4811,'2010-08-17 19:32:14',2,'categories.php','cPath=2&','67.142.161.21'),(4812,'2010-08-17 19:32:24',2,'product.php','page=1&product_type=1&cPath=2&pID=5&action=new_product&','67.142.161.21'),(4813,'2010-08-17 19:36:45',2,'modules.php','set=shipping&','67.142.161.21'),(4814,'2010-08-17 20:11:44',2,'configuration.php','gID=31&','67.142.161.21'),(4815,'2010-08-17 20:12:13',2,'modules.php','set=shipping&','67.142.161.21'),(4816,'2010-12-11 07:19:13',0,'login.php ','','76.108.122.208'),(4817,'2010-12-11 07:21:48',0,'login.php Admin','','76.108.122.208'),(4818,'2010-12-11 07:21:59',0,'login.php Admin','','76.108.122.208'),(4819,'2010-12-11 07:22:09',0,'login.php Admin-new','','76.108.122.208'),(4820,'2010-12-11 07:23:08',0,'login.php grace1','','76.108.122.208'),(4821,'2010-12-11 07:23:40',0,'login.php ','','76.108.122.208');
/*!40000 ALTER TABLE `zen_admin_activity_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_authorizenet`
--

DROP TABLE IF EXISTS `zen_authorizenet`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_authorizenet` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL DEFAULT '0',
  `order_id` int(11) NOT NULL DEFAULT '0',
  `response_code` int(1) NOT NULL DEFAULT '0',
  `response_text` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `authorization_type` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `transaction_id` int(15) NOT NULL DEFAULT '0',
  `sent` longtext COLLATE utf8_unicode_ci NOT NULL,
  `received` longtext COLLATE utf8_unicode_ci NOT NULL,
  `time` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `session_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_authorizenet`
--

LOCK TABLES `zen_authorizenet` WRITE;
/*!40000 ALTER TABLE `zen_authorizenet` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_authorizenet` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_banners`
--

DROP TABLE IF EXISTS `zen_banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_banners` (
  `banners_id` int(11) NOT NULL AUTO_INCREMENT,
  `banners_title` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `banners_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `banners_image` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `banners_group` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `banners_html_text` text COLLATE utf8_unicode_ci,
  `expires_impressions` int(7) DEFAULT '0',
  `expires_date` datetime DEFAULT NULL,
  `date_scheduled` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `banners_open_new_windows` int(1) NOT NULL DEFAULT '1',
  `banners_on_ssl` int(1) NOT NULL DEFAULT '1',
  `banners_sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`banners_id`),
  KEY `idx_status_group_zen` (`status`,`banners_group`),
  KEY `idx_expires_date_zen` (`expires_date`),
  KEY `idx_date_scheduled_zen` (`date_scheduled`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_banners`
--

LOCK TABLES `zen_banners` WRITE;
/*!40000 ALTER TABLE `zen_banners` DISABLE KEYS */;
INSERT INTO `zen_banners` VALUES (8,'Reclaim Lumber Hand Hewn Timbers','http://www.reclaimlumber.com','banners/reclaim_02.png','SideBox-Banners','',0,NULL,NULL,'2007-02-10 00:00:00','2010-05-27 22:03:15',0,1,1,1),(11,'Rustic Log and Barnwood Furniture','http://www.myrusticcabin.com','banners/banner_rustic.jpg','above-footer','',0,NULL,NULL,'2010-03-21 11:44:05','2010-05-27 22:03:20',0,1,1,0),(12,'Rustic Log and Barnwood Furniture','http://www.myrusticcabin.com','banners/banner_rustic_side.jpg','SideBox-Banners','',0,NULL,NULL,'2010-03-21 18:22:46','2010-05-27 22:03:24',0,1,1,0);
/*!40000 ALTER TABLE `zen_banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_banners_history`
--

DROP TABLE IF EXISTS `zen_banners_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_banners_history` (
  `banners_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `banners_id` int(11) NOT NULL DEFAULT '0',
  `banners_shown` int(5) NOT NULL DEFAULT '0',
  `banners_clicked` int(5) NOT NULL DEFAULT '0',
  `banners_history_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`banners_history_id`),
  KEY `idx_banners_id_zen` (`banners_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1499 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_banners_history`
--

LOCK TABLES `zen_banners_history` WRITE;
/*!40000 ALTER TABLE `zen_banners_history` DISABLE KEYS */;
INSERT INTO `zen_banners_history` VALUES (7,8,12,0,'2010-01-04 17:32:05'),(19,8,22,0,'2010-01-05 10:43:40'),(30,8,136,0,'2010-01-06 07:31:51'),(34,8,50,0,'2010-01-07 00:09:01'),(43,8,27,0,'2010-01-08 00:57:40'),(57,8,66,0,'2010-01-09 00:02:37'),(61,8,191,1,'2010-01-10 00:11:02'),(78,8,308,0,'2010-01-11 06:54:16'),(82,8,342,0,'2010-01-12 00:08:45'),(90,8,28,0,'2010-01-13 00:01:38'),(102,8,16,0,'2010-01-14 16:23:48'),(106,8,86,0,'2010-01-15 00:10:00'),(120,8,13,0,'2010-01-16 19:48:04'),(127,8,80,0,'2010-01-17 00:05:32'),(133,8,2,0,'2010-01-18 09:40:43'),(146,8,32,0,'2010-01-19 17:49:58'),(151,8,282,2,'2010-01-20 07:15:11'),(157,8,115,0,'2010-01-21 00:10:48'),(159,8,59,0,'2010-01-24 18:10:07'),(160,8,29,0,'2010-01-25 00:01:34'),(161,8,114,1,'2010-01-26 04:50:44'),(162,8,49,0,'2010-01-27 01:09:27'),(163,8,27,0,'2010-01-28 07:31:00'),(164,8,11,0,'2010-01-29 00:24:40'),(165,8,17,0,'2010-01-30 00:52:01'),(166,8,19,0,'2010-01-31 00:04:22'),(167,8,55,0,'2010-02-01 00:11:58'),(168,8,12,0,'2010-02-02 04:12:46'),(169,8,25,0,'2010-02-03 02:50:41'),(170,8,25,0,'2010-02-04 00:20:04'),(171,8,22,2,'2010-02-05 00:17:35'),(172,8,23,1,'2010-02-06 03:32:08'),(173,8,8,0,'2010-02-07 02:53:43'),(174,8,80,0,'2010-02-08 04:18:05'),(175,8,252,0,'2010-02-09 01:27:18'),(177,8,165,0,'2010-02-10 00:03:26'),(178,8,167,0,'2010-02-11 00:09:44'),(179,8,54,0,'2010-02-12 00:06:48'),(180,8,106,0,'2010-02-13 00:19:16'),(181,8,219,0,'2010-02-14 00:02:35'),(182,8,142,0,'2010-02-15 00:52:19'),(183,8,81,0,'2010-02-16 00:39:14'),(184,8,335,0,'2010-02-17 04:18:33'),(185,8,106,0,'2010-02-18 01:30:33'),(186,8,85,0,'2010-02-19 00:07:23'),(187,8,66,0,'2010-02-20 00:51:40'),(188,8,62,0,'2010-02-21 00:26:15'),(189,8,77,0,'2010-02-22 00:00:52'),(190,8,101,1,'2010-02-23 00:20:41'),(191,8,32,0,'2010-02-24 00:36:21'),(192,8,57,0,'2010-02-25 00:43:19'),(193,8,105,0,'2010-02-27 10:32:51'),(194,8,22,0,'2010-02-28 00:15:26'),(195,8,21,0,'2010-03-01 05:22:20'),(196,8,3379,15,'2010-03-02 08:42:20'),(197,8,19,0,'2010-03-03 00:21:04'),(198,8,34,0,'2010-03-04 00:34:25'),(199,8,7,0,'2010-03-05 04:35:04'),(200,8,17,0,'2010-03-21 11:59:39'),(201,11,28,1,'2010-03-21 12:16:49'),(202,12,12,0,'2010-03-21 18:24:50'),(203,8,8,0,'2010-03-22 00:28:08'),(204,11,17,0,'2010-03-22 00:28:08'),(205,12,9,0,'2010-03-22 01:34:19'),(206,8,22,0,'2010-03-23 00:51:22'),(207,11,42,0,'2010-03-23 00:51:23'),(208,12,20,0,'2010-03-23 01:19:46'),(209,8,54,0,'2010-03-24 00:15:08'),(210,11,116,0,'2010-03-24 00:15:08'),(211,12,61,1,'2010-03-24 01:51:56'),(212,12,27,0,'2010-03-25 01:58:38'),(213,11,40,0,'2010-03-25 01:58:39'),(214,8,13,0,'2010-03-25 02:38:47'),(215,12,16,0,'2010-03-26 00:14:38'),(216,11,32,0,'2010-03-26 00:14:38'),(217,8,16,0,'2010-03-26 02:38:38'),(218,12,11,0,'2010-03-27 00:46:12'),(219,11,20,0,'2010-03-27 00:46:12'),(220,8,9,0,'2010-03-27 00:54:34'),(221,8,13,0,'2010-03-28 01:26:51'),(222,11,25,0,'2010-03-28 01:26:51'),(223,12,13,0,'2010-03-28 06:04:42'),(224,8,23,1,'2010-03-29 01:04:48'),(225,11,52,1,'2010-03-29 01:04:49'),(226,12,28,0,'2010-03-29 01:51:38'),(227,12,16,0,'2010-03-30 06:12:14'),(228,11,34,0,'2010-03-30 06:12:14'),(229,8,18,0,'2010-03-30 06:52:45'),(230,12,14,0,'2010-03-31 00:16:40'),(231,11,22,0,'2010-03-31 00:16:40'),(232,8,8,0,'2010-03-31 00:21:32'),(233,8,10,0,'2010-04-01 00:00:41'),(234,11,27,1,'2010-04-01 00:00:42'),(235,12,17,0,'2010-04-01 00:16:01'),(236,12,27,0,'2010-04-02 00:17:45'),(237,11,39,0,'2010-04-02 00:17:45'),(238,8,13,0,'2010-04-02 01:55:43'),(239,8,48,0,'2010-04-03 00:00:47'),(240,11,91,0,'2010-04-03 00:00:48'),(241,12,43,0,'2010-04-03 00:11:21'),(242,8,53,0,'2010-04-04 00:43:15'),(243,11,111,0,'2010-04-04 00:43:16'),(244,12,58,0,'2010-04-04 00:53:26'),(245,12,35,0,'2010-04-05 00:06:26'),(246,11,60,0,'2010-04-05 00:06:26'),(247,8,26,0,'2010-04-05 00:41:34'),(248,12,18,1,'2010-04-06 00:04:53'),(249,11,43,0,'2010-04-06 00:04:53'),(250,8,25,0,'2010-04-06 00:05:24'),(251,8,21,0,'2010-04-07 00:19:01'),(252,11,40,0,'2010-04-07 00:19:01'),(253,12,19,0,'2010-04-07 01:47:13'),(254,12,15,0,'2010-04-08 01:26:14'),(255,11,30,0,'2010-04-08 01:26:14'),(256,8,15,0,'2010-04-08 02:41:41'),(257,12,20,0,'2010-04-09 00:20:09'),(258,11,40,0,'2010-04-09 00:20:09'),(259,8,20,0,'2010-04-09 02:47:11'),(260,8,25,2,'2010-04-10 01:12:48'),(261,11,51,0,'2010-04-10 01:12:48'),(262,12,26,0,'2010-04-10 01:31:02'),(263,8,26,1,'2010-04-11 00:06:59'),(264,11,54,0,'2010-04-11 00:07:00'),(265,12,28,0,'2010-04-11 00:30:48'),(266,12,12,0,'2010-04-12 00:10:30'),(267,11,28,0,'2010-04-12 00:10:30'),(268,8,16,0,'2010-04-12 03:20:08'),(269,12,34,0,'2010-04-13 00:27:49'),(270,11,68,1,'2010-04-13 00:27:49'),(271,8,34,0,'2010-04-13 00:28:25'),(272,8,19,0,'2010-04-14 00:02:38'),(273,11,42,0,'2010-04-14 00:02:38'),(274,12,24,0,'2010-04-14 00:15:26'),(275,8,22,0,'2010-04-15 00:21:56'),(276,11,39,0,'2010-04-15 00:21:56'),(277,12,17,0,'2010-04-15 00:22:25'),(278,12,31,0,'2010-04-16 00:15:13'),(279,11,49,0,'2010-04-16 00:15:14'),(280,8,18,0,'2010-04-16 01:11:28'),(281,12,26,0,'2010-04-17 02:13:33'),(282,11,50,0,'2010-04-17 02:13:34'),(283,8,24,0,'2010-04-17 03:50:02'),(284,12,28,0,'2010-04-18 01:28:36'),(285,11,48,0,'2010-04-18 01:28:36'),(286,8,20,0,'2010-04-18 06:36:41'),(287,12,40,0,'2010-04-19 00:29:17'),(288,11,81,0,'2010-04-19 00:29:17'),(289,8,41,0,'2010-04-19 00:51:47'),(290,8,20,0,'2010-04-20 00:01:46'),(291,11,38,0,'2010-04-20 00:01:46'),(292,12,18,0,'2010-04-20 01:48:27'),(293,12,30,0,'2010-04-21 00:14:33'),(294,11,55,0,'2010-04-21 00:14:33'),(295,8,25,0,'2010-04-21 03:18:30'),(296,12,26,0,'2010-04-22 01:54:53'),(297,11,45,0,'2010-04-22 01:54:53'),(298,8,19,0,'2010-04-22 02:15:50'),(299,12,18,0,'2010-04-23 00:44:20'),(300,11,32,0,'2010-04-23 00:44:20'),(301,8,14,0,'2010-04-23 02:39:24'),(302,8,15,0,'2010-04-24 01:33:59'),(303,11,29,0,'2010-04-24 01:34:00'),(304,12,15,0,'2010-04-24 03:27:04'),(305,12,17,0,'2010-04-25 00:01:44'),(306,11,33,0,'2010-04-25 00:01:44'),(307,8,16,0,'2010-04-25 00:08:19'),(308,8,46,0,'2010-04-26 00:27:54'),(309,11,79,2,'2010-04-26 00:27:55'),(310,12,31,2,'2010-04-26 02:13:05'),(311,12,21,0,'2010-04-27 00:23:01'),(312,11,38,2,'2010-04-27 00:23:01'),(313,8,17,0,'2010-04-27 00:46:55'),(314,12,23,0,'2010-04-28 00:29:06'),(315,11,48,0,'2010-04-28 00:29:06'),(316,8,25,0,'2010-04-28 00:43:43'),(317,12,24,0,'2010-04-29 00:05:30'),(318,11,51,0,'2010-04-29 00:05:30'),(319,8,26,0,'2010-04-29 01:25:33'),(320,8,42,0,'2010-04-30 00:04:14'),(321,11,87,0,'2010-04-30 00:04:14'),(322,12,44,0,'2010-04-30 00:10:40'),(323,8,28,0,'2010-05-01 00:06:38'),(324,11,54,0,'2010-05-01 00:06:38'),(325,12,26,0,'2010-05-01 01:01:23'),(326,8,27,0,'2010-05-02 00:14:03'),(327,11,43,0,'2010-05-02 00:14:04'),(328,12,16,0,'2010-05-02 01:22:29'),(329,12,32,0,'2010-05-03 00:15:58'),(330,11,63,0,'2010-05-03 00:15:58'),(331,8,29,1,'2010-05-03 00:24:53'),(332,8,23,0,'2010-05-04 00:46:06'),(333,11,46,0,'2010-05-04 00:46:06'),(334,12,23,0,'2010-05-04 01:51:01'),(335,12,24,0,'2010-05-05 00:11:43'),(336,11,46,0,'2010-05-05 00:11:43'),(337,8,22,0,'2010-05-05 00:48:04'),(338,8,19,0,'2010-05-06 00:51:03'),(339,11,40,0,'2010-05-06 00:51:04'),(340,12,21,0,'2010-05-06 01:37:54'),(341,12,28,0,'2010-05-07 01:22:53'),(342,11,60,0,'2010-05-07 01:22:54'),(343,8,32,0,'2010-05-07 01:25:12'),(344,8,59,0,'2010-05-08 00:57:07'),(345,11,124,0,'2010-05-08 00:57:08'),(346,12,65,0,'2010-05-08 01:02:43'),(347,8,36,0,'2010-05-09 00:08:11'),(348,11,80,0,'2010-05-09 00:08:11'),(349,12,43,0,'2010-05-09 00:11:54'),(350,8,44,0,'2010-05-10 00:26:56'),(351,11,78,0,'2010-05-10 00:26:56'),(352,12,33,0,'2010-05-10 00:50:16'),(353,8,21,0,'2010-05-11 00:02:45'),(354,11,43,0,'2010-05-11 00:02:45'),(355,12,22,0,'2010-05-11 01:18:51'),(356,8,17,0,'2010-05-12 00:49:58'),(357,11,31,0,'2010-05-12 00:49:58'),(358,12,14,0,'2010-05-12 03:22:32'),(359,12,29,0,'2010-05-13 00:09:07'),(360,11,44,0,'2010-05-13 00:09:07'),(361,8,15,0,'2010-05-13 03:22:00'),(362,8,17,1,'2010-05-14 00:49:02'),(363,11,42,0,'2010-05-14 00:49:03'),(364,12,25,0,'2010-05-14 01:41:49'),(365,12,19,0,'2010-05-15 01:59:43'),(366,11,29,0,'2010-05-15 01:59:43'),(367,8,10,0,'2010-05-15 04:58:25'),(368,8,40,0,'2010-05-16 01:14:21'),(369,11,79,1,'2010-05-16 01:14:21'),(370,12,39,0,'2010-05-16 01:35:00'),(371,12,27,0,'2010-05-17 01:09:00'),(372,11,57,1,'2010-05-17 01:09:01'),(373,8,30,1,'2010-05-17 01:49:59'),(374,12,41,0,'2010-05-18 00:10:52'),(375,11,79,0,'2010-05-18 00:10:52'),(376,8,38,0,'2010-05-18 00:14:39'),(377,12,90,0,'2010-05-19 00:11:38'),(378,11,199,0,'2010-05-19 00:11:38'),(379,8,100,0,'2010-05-19 00:11:50'),(380,12,72,0,'2010-05-20 00:04:02'),(381,11,156,1,'2010-05-20 00:04:02'),(382,8,81,0,'2010-05-20 00:27:11'),(383,12,39,0,'2010-05-21 00:23:20'),(384,11,85,1,'2010-05-21 00:23:20'),(385,8,46,1,'2010-05-21 00:45:13'),(386,12,72,0,'2010-05-22 00:05:42'),(387,11,144,0,'2010-05-22 00:05:42'),(388,8,68,0,'2010-05-22 01:13:48'),(389,12,85,4,'2010-05-23 00:00:45'),(390,11,146,5,'2010-05-23 00:00:45'),(391,8,55,5,'2010-05-23 00:50:11'),(392,12,50,1,'2010-05-24 00:02:08'),(393,11,110,2,'2010-05-24 00:02:08'),(394,8,55,4,'2010-05-24 00:18:11'),(395,12,38,1,'2010-05-25 00:00:53'),(396,11,69,1,'2010-05-25 00:00:53'),(397,8,29,2,'2010-05-25 00:28:39'),(398,12,77,2,'2010-05-26 00:05:06'),(399,11,154,4,'2010-05-26 00:05:06'),(400,8,75,4,'2010-05-26 01:49:11'),(401,8,50,0,'2010-05-27 00:08:55'),(402,11,95,1,'2010-05-27 00:08:56'),(403,12,44,0,'2010-05-27 00:16:45'),(404,0,38,0,'2010-05-27 22:09:56'),(405,0,157,0,'2010-05-28 00:02:20'),(406,0,74,0,'2010-05-29 00:00:10'),(407,0,86,0,'2010-05-30 00:03:09'),(408,0,126,0,'2010-05-31 00:02:27'),(409,0,75,0,'2010-06-01 00:13:52'),(410,0,114,0,'2010-06-02 00:01:33'),(411,0,78,0,'2010-06-03 00:09:07'),(412,0,60,0,'2010-06-04 00:21:34'),(413,0,38,0,'2010-06-05 00:00:23'),(414,0,32,0,'2010-06-06 00:26:57'),(415,0,98,0,'2010-06-07 00:49:41'),(416,0,121,0,'2010-06-08 00:05:23'),(417,0,65,0,'2010-06-09 00:06:05'),(418,0,85,0,'2010-06-10 00:46:35'),(419,0,171,0,'2010-06-11 00:04:23'),(420,0,109,0,'2010-06-12 00:02:52'),(421,0,53,0,'2010-06-13 00:15:58'),(422,0,114,0,'2010-06-14 00:05:28'),(423,0,157,0,'2010-06-15 00:13:20'),(424,0,47,0,'2010-06-16 00:01:12'),(425,0,69,0,'2010-06-17 00:00:55'),(426,0,71,0,'2010-06-18 00:27:35'),(427,0,122,0,'2010-06-19 00:04:34'),(428,0,52,0,'2010-06-20 00:24:24'),(429,0,63,0,'2010-06-21 00:09:47'),(430,0,73,0,'2010-06-22 00:01:39'),(431,0,45,0,'2010-06-23 00:27:52'),(432,0,67,0,'2010-06-24 00:05:18'),(433,0,100,0,'2010-06-25 00:06:54'),(434,0,57,0,'2010-06-26 00:33:12'),(435,0,61,0,'2010-06-27 00:03:54'),(436,0,88,0,'2010-06-28 00:42:55'),(437,0,75,0,'2010-06-29 00:09:01'),(438,0,80,0,'2010-06-30 00:36:47'),(439,0,60,0,'2010-07-01 01:23:47'),(440,0,100,0,'2010-07-02 00:25:34'),(441,0,157,0,'2010-07-03 00:05:07'),(442,0,115,0,'2010-07-04 00:07:59'),(443,0,43,0,'2010-07-05 01:28:59'),(444,0,71,0,'2010-07-06 00:26:43'),(445,0,90,0,'2010-07-07 00:04:01'),(446,0,80,0,'2010-07-08 00:01:30'),(447,0,47,0,'2010-07-09 00:09:16'),(448,0,31,0,'2010-07-10 00:27:15'),(449,0,84,0,'2010-07-11 00:43:20'),(450,0,19,0,'2010-07-12 01:22:18'),(451,0,54,0,'2010-07-13 03:20:39'),(452,0,69,0,'2010-07-14 00:12:21'),(453,0,129,0,'2010-07-15 00:04:26'),(454,0,26,0,'2010-07-16 00:43:08'),(455,0,27,0,'2010-07-17 00:46:19'),(456,0,73,0,'2010-07-18 00:20:33'),(457,0,156,0,'2010-07-19 00:05:57'),(458,0,106,0,'2010-07-20 00:03:30'),(459,0,52,0,'2010-07-21 00:24:37'),(460,0,70,0,'2010-07-22 00:06:29'),(461,0,65,0,'2010-07-23 00:04:16'),(462,0,77,0,'2010-07-24 00:19:51'),(463,0,102,0,'2010-07-25 00:33:14'),(464,0,42,0,'2010-07-26 00:18:51'),(465,0,57,0,'2010-07-27 00:56:41'),(466,0,88,0,'2010-07-28 00:08:06'),(467,0,45,0,'2010-07-29 00:00:43'),(468,0,41,0,'2010-07-30 01:34:07'),(469,0,89,0,'2010-07-31 00:00:56'),(470,0,43,0,'2010-08-01 00:04:29'),(471,0,70,0,'2010-08-02 00:21:55'),(472,0,111,0,'2010-08-03 00:04:51'),(473,0,57,0,'2010-08-04 02:22:26'),(474,0,96,0,'2010-08-05 00:38:03'),(475,0,141,0,'2010-08-06 00:06:59'),(476,0,69,0,'2010-08-07 00:05:31'),(477,0,74,0,'2010-08-08 02:36:06'),(478,0,92,0,'2010-08-09 00:16:47'),(479,0,84,0,'2010-08-10 00:37:49'),(480,0,82,0,'2010-08-11 00:14:57'),(481,0,113,0,'2010-08-12 00:22:56'),(482,0,103,0,'2010-08-13 00:06:41'),(483,0,62,0,'2010-08-14 00:05:32'),(484,0,61,0,'2010-08-15 00:21:14'),(485,0,69,0,'2010-08-16 00:01:17'),(486,0,43,0,'2010-08-17 01:03:13'),(487,0,46,0,'2010-08-18 00:01:04'),(488,0,112,0,'2010-08-19 00:01:41'),(489,0,39,0,'2010-08-20 00:06:23'),(490,0,74,0,'2010-08-21 00:31:30'),(491,0,50,0,'2010-08-22 00:10:51'),(492,0,42,0,'2010-08-23 02:56:50'),(493,0,59,0,'2010-08-24 00:40:14'),(494,0,26,0,'2010-08-25 00:09:53'),(495,0,48,0,'2010-08-26 05:06:58'),(496,0,109,0,'2010-08-27 00:00:20'),(497,0,47,0,'2010-08-28 00:12:37'),(498,0,37,0,'2010-08-29 01:23:06'),(499,0,68,0,'2010-08-30 00:43:59'),(500,0,79,0,'2010-08-31 00:29:12'),(501,0,39,0,'2010-09-01 00:12:20'),(502,0,31,0,'2010-09-02 01:15:47'),(503,0,67,0,'2010-09-03 00:01:00'),(504,0,51,0,'2010-09-04 00:13:15'),(505,0,240,0,'2010-09-05 00:00:27'),(506,0,16,0,'2010-09-06 02:07:41'),(507,0,67,0,'2010-09-07 00:35:11'),(508,0,34,0,'2010-09-08 00:01:53'),(509,0,104,0,'2010-09-09 00:50:38'),(510,0,67,0,'2010-09-10 00:13:49'),(511,0,44,0,'2010-09-11 00:16:18'),(512,0,173,0,'2010-09-12 00:07:43'),(513,0,50,0,'2010-09-13 00:08:16'),(514,0,143,0,'2010-09-14 00:29:20'),(515,0,41,0,'2010-09-15 00:17:48'),(516,0,97,0,'2010-09-16 00:28:57'),(517,0,54,0,'2010-09-17 00:11:54'),(518,0,90,0,'2010-09-18 00:36:49'),(519,0,231,0,'2010-09-19 00:24:05'),(520,0,103,0,'2010-09-20 00:21:45'),(521,0,53,0,'2010-09-21 00:13:05'),(522,0,61,0,'2010-09-22 00:12:58'),(523,0,36,0,'2010-09-23 00:15:43'),(524,0,40,0,'2010-09-24 00:27:50'),(525,0,84,0,'2010-09-25 01:39:00'),(526,0,227,0,'2010-09-26 00:34:02'),(527,0,35,0,'2010-09-27 00:18:55'),(528,0,68,0,'2010-09-28 00:04:29'),(529,0,38,0,'2010-09-29 00:15:37'),(530,0,32,0,'2010-09-30 00:14:38'),(531,0,12,0,'2010-10-01 01:33:33'),(532,0,18,0,'2010-10-02 00:37:51'),(533,0,220,0,'2010-10-03 00:03:50'),(534,0,39,0,'2010-10-04 00:11:09'),(535,0,28,0,'2010-10-05 00:27:20'),(536,0,34,0,'2010-10-06 01:41:25'),(537,0,24,0,'2010-10-07 00:43:44'),(538,0,27,0,'2010-10-08 03:54:16'),(539,0,46,0,'2010-10-09 00:59:11'),(540,0,62,0,'2010-10-10 01:33:32'),(541,0,18,0,'2010-10-11 01:19:12'),(542,0,23,0,'2010-10-12 00:44:46'),(543,0,66,0,'2010-10-13 00:41:50'),(544,0,39,0,'2010-10-14 01:10:32'),(545,0,52,0,'2010-10-15 00:22:22'),(546,0,19,0,'2010-10-16 00:28:27'),(547,0,23,0,'2010-10-17 00:19:51'),(548,0,30,0,'2010-10-18 01:21:24'),(549,0,35,0,'2010-10-19 01:09:01'),(550,0,13,0,'2010-10-20 03:16:21'),(551,0,17,0,'2010-10-21 01:58:26'),(552,0,11,0,'2010-10-22 00:07:54'),(553,0,19,0,'2010-10-23 00:49:59'),(554,0,21,0,'2010-10-24 00:51:42'),(555,0,20,0,'2010-10-25 00:12:25'),(556,0,39,0,'2010-10-26 00:12:11'),(557,0,526,0,'2010-10-27 00:59:39'),(558,0,25,0,'2010-10-28 02:16:03'),(559,0,38,0,'2010-10-29 01:01:40'),(560,0,12,0,'2010-10-30 01:50:20'),(561,0,19,0,'2010-10-31 02:28:27'),(562,0,46,0,'2010-11-01 01:24:22'),(563,0,50,0,'2010-11-02 00:39:31'),(564,0,67,0,'2010-11-03 01:57:30'),(565,0,40,0,'2010-11-04 00:15:12'),(566,0,54,0,'2010-11-05 01:55:56'),(567,0,19,0,'2010-11-06 00:12:00'),(568,0,18,0,'2010-11-07 01:03:58'),(569,0,34,0,'2010-11-08 01:02:42'),(570,0,26,0,'2010-11-09 01:54:47'),(571,0,18,0,'2010-11-10 01:53:07'),(572,0,15,0,'2010-11-11 01:52:38'),(573,0,22,0,'2010-11-12 00:35:40'),(574,0,28,0,'2010-11-13 00:55:20'),(575,0,100,0,'2010-11-14 00:10:08'),(576,0,39,0,'2010-11-15 03:26:41'),(577,0,374,0,'2010-11-16 00:21:50'),(578,0,24,0,'2010-11-17 01:43:43'),(579,0,36,0,'2010-11-18 00:43:33'),(580,0,52,0,'2010-11-19 00:27:05'),(581,0,39,0,'2010-11-20 01:27:06'),(582,0,51,0,'2010-11-21 01:00:38'),(583,0,17,0,'2010-11-22 00:27:45'),(584,0,42,0,'2010-11-23 00:15:25'),(585,0,23,0,'2010-11-24 00:06:54'),(586,0,98,0,'2010-11-25 02:25:00'),(587,0,95,0,'2010-11-26 00:20:10'),(588,0,77,0,'2010-11-27 00:26:57'),(589,0,97,0,'2010-11-28 01:42:41'),(590,0,36,0,'2010-11-29 00:20:55'),(591,0,38,0,'2010-11-30 00:44:24'),(592,0,43,0,'2010-12-01 04:07:20'),(593,0,21,0,'2010-12-02 00:51:42'),(594,0,137,0,'2010-12-03 00:22:13'),(595,0,12,0,'2010-12-04 01:52:29'),(596,0,52,0,'2010-12-05 00:19:00'),(597,0,18,0,'2010-12-06 02:22:55'),(598,0,18,0,'2010-12-07 00:43:59'),(599,0,21,0,'2010-12-08 00:56:10'),(600,0,23,0,'2010-12-09 00:06:55'),(601,0,26,0,'2010-12-10 00:07:31'),(602,0,37,0,'2010-12-11 00:19:27'),(603,0,40,0,'2010-12-12 01:11:35'),(604,0,49,0,'2010-12-13 00:24:05'),(605,0,30,0,'2010-12-14 00:14:32'),(606,0,53,0,'2010-12-15 00:10:19'),(607,0,26,0,'2010-12-16 01:53:55'),(608,0,25,0,'2010-12-17 01:06:30'),(609,0,35,0,'2010-12-18 01:07:51'),(610,0,17,0,'2010-12-19 00:12:47'),(611,0,33,0,'2010-12-20 01:47:38'),(612,0,35,0,'2010-12-21 01:12:40'),(613,0,37,0,'2010-12-22 00:04:00'),(614,0,23,0,'2010-12-23 00:45:18'),(615,0,34,0,'2010-12-24 01:13:38'),(616,0,30,0,'2010-12-25 00:58:26'),(617,0,36,0,'2010-12-26 00:01:17'),(618,0,119,0,'2010-12-27 00:24:28'),(619,0,26,0,'2010-12-28 00:45:07'),(620,0,31,0,'2010-12-29 00:34:46'),(621,0,12,0,'2010-12-30 07:24:18'),(622,0,18,0,'2010-12-31 01:24:15'),(623,0,25,0,'2011-01-01 00:45:37'),(624,0,34,0,'2011-01-02 01:57:41'),(625,0,68,0,'2011-01-03 00:20:46'),(626,0,58,0,'2011-01-04 00:21:15'),(627,0,55,0,'2011-01-05 01:01:19'),(628,0,26,0,'2011-01-06 01:41:10'),(629,0,36,0,'2011-01-07 02:14:43'),(630,0,15,0,'2011-01-08 00:13:12'),(631,0,21,0,'2011-01-09 00:09:27'),(632,0,23,0,'2011-01-10 01:27:26'),(633,0,32,0,'2011-01-11 01:38:46'),(634,0,28,0,'2011-01-12 01:39:22'),(635,0,18,0,'2011-01-13 00:02:46'),(636,0,44,0,'2011-01-14 00:29:39'),(637,0,32,0,'2011-01-15 04:21:44'),(638,0,17,0,'2011-01-16 01:19:53'),(639,0,28,0,'2011-01-17 00:51:33'),(640,0,35,0,'2011-01-18 01:39:31'),(641,0,15,0,'2011-01-19 00:24:44'),(642,0,24,0,'2011-01-20 00:35:33'),(643,0,47,0,'2011-01-21 01:25:09'),(644,0,30,0,'2011-01-22 05:43:16'),(645,0,53,0,'2011-01-23 01:42:34'),(646,0,45,0,'2011-01-24 00:57:51'),(647,0,45,0,'2011-01-24 00:57:51'),(648,0,49,0,'2011-01-25 00:09:02'),(649,0,48,0,'2011-01-26 00:28:00'),(650,0,30,0,'2011-01-27 00:35:24'),(651,0,29,0,'2011-01-28 00:01:16'),(652,0,17,0,'2011-01-29 01:10:07'),(653,0,34,0,'2011-01-30 00:00:39'),(654,0,16,0,'2011-01-31 00:05:40'),(655,0,30,0,'2011-02-01 00:40:38'),(656,0,31,0,'2011-02-02 00:41:55'),(657,0,28,0,'2011-02-03 01:54:18'),(658,0,32,0,'2011-02-04 00:59:24'),(659,0,36,0,'2011-02-05 00:21:45'),(660,0,16,0,'2011-02-06 00:21:36'),(661,0,13,0,'2011-02-07 01:56:34'),(662,0,27,0,'2011-02-08 00:38:13'),(663,0,26,0,'2011-02-09 00:33:59'),(664,0,39,0,'2011-02-10 04:24:36'),(665,0,45,0,'2011-02-11 00:08:11'),(666,0,73,0,'2011-02-12 00:06:46'),(667,0,38,0,'2011-02-13 00:00:30'),(668,0,23,0,'2011-02-14 00:01:17'),(669,0,23,0,'2011-02-15 00:05:40'),(670,0,19,0,'2011-02-16 01:28:06'),(671,0,35,0,'2011-02-17 00:38:09'),(672,0,16,0,'2011-02-18 03:45:45'),(673,0,11,0,'2011-02-19 00:34:06'),(674,0,19,0,'2011-02-20 01:00:34'),(675,0,16,0,'2011-02-21 02:58:00'),(676,0,17,0,'2011-02-22 00:00:58'),(677,0,22,0,'2011-02-23 03:21:31'),(678,0,19,0,'2011-02-24 01:29:40'),(679,0,24,0,'2011-02-25 02:47:21'),(680,0,13,0,'2011-02-26 00:30:39'),(681,0,71,0,'2011-02-27 01:20:44'),(682,0,41,0,'2011-02-28 00:23:54'),(683,0,43,0,'2011-03-01 01:25:57'),(684,0,47,0,'2011-03-02 00:05:19'),(685,0,70,0,'2011-03-03 00:16:16'),(686,0,23,0,'2011-03-04 01:31:49'),(687,0,29,0,'2011-03-05 00:22:04'),(688,0,15,0,'2011-03-06 01:40:47'),(689,0,16,0,'2011-03-07 01:37:15'),(690,0,19,0,'2011-03-08 00:00:50'),(691,0,49,0,'2011-03-09 06:57:52'),(692,0,17,0,'2011-03-10 00:29:43'),(693,0,15,0,'2011-03-11 01:31:31'),(694,0,48,0,'2011-03-12 01:36:31'),(695,0,42,0,'2011-03-13 00:38:57'),(696,0,133,0,'2011-03-14 00:16:34'),(697,0,25,0,'2011-03-15 06:03:35'),(698,0,39,0,'2011-03-16 00:45:13'),(699,0,50,0,'2011-03-17 01:25:47'),(700,0,44,0,'2011-03-18 00:18:20'),(701,0,50,0,'2011-03-19 00:36:21'),(702,0,48,0,'2011-03-20 00:15:52'),(703,0,10,0,'2011-03-21 01:11:28'),(704,0,33,0,'2011-03-22 02:09:04'),(705,0,65,0,'2011-03-23 01:37:36'),(706,0,34,0,'2011-03-24 00:15:48'),(707,0,33,0,'2011-03-25 00:30:26'),(708,0,28,0,'2011-03-26 01:00:28'),(709,0,30,0,'2011-03-27 02:50:39'),(710,0,5,0,'2011-03-28 03:34:07'),(711,0,41,0,'2011-03-29 00:09:56'),(712,0,82,0,'2011-03-30 00:29:33'),(713,0,24,0,'2011-03-31 00:03:07'),(714,0,33,0,'2011-04-01 01:22:04'),(715,0,30,0,'2011-04-02 01:20:36'),(716,0,28,0,'2011-04-03 03:14:18'),(717,0,13,0,'2011-04-04 00:12:04'),(718,0,11,0,'2011-04-05 00:25:08'),(719,0,49,0,'2011-04-06 03:53:20'),(720,0,35,0,'2011-04-07 00:29:08'),(721,0,25,0,'2011-04-08 00:39:06'),(722,0,15,0,'2011-04-09 00:18:36'),(723,0,34,0,'2011-04-10 00:25:22'),(724,0,17,0,'2011-04-11 01:42:34'),(725,0,63,0,'2011-04-12 00:07:57'),(726,0,29,0,'2011-04-13 00:02:25'),(727,0,18,0,'2011-04-14 00:39:02'),(728,0,11,0,'2011-04-15 02:51:56'),(729,0,76,0,'2011-04-16 01:54:43'),(730,0,21,0,'2011-04-17 00:05:25'),(731,0,21,0,'2011-04-18 00:47:00'),(732,0,14,0,'2011-04-19 01:12:35'),(733,0,14,0,'2011-04-20 01:05:53'),(734,0,12,0,'2011-04-21 00:49:56'),(735,0,15,0,'2011-04-22 00:00:31'),(736,0,14,0,'2011-04-23 00:41:07'),(737,0,26,0,'2011-04-24 01:26:10'),(738,0,36,0,'2011-04-25 00:35:27'),(739,0,36,0,'2011-04-26 00:31:33'),(740,0,26,0,'2011-04-27 03:05:00'),(741,0,27,0,'2011-04-28 01:41:17'),(742,0,29,0,'2011-04-29 00:43:56'),(743,0,23,0,'2011-04-30 00:10:43'),(744,0,65,0,'2011-05-01 00:38:34'),(745,0,21,0,'2011-05-02 00:10:12'),(746,0,30,0,'2011-05-03 01:06:59'),(747,0,20,0,'2011-05-04 00:12:32'),(748,0,74,0,'2011-05-05 02:21:05'),(749,0,5,0,'2011-05-06 01:11:35'),(750,0,47,0,'2011-05-07 00:11:00'),(751,0,27,0,'2011-05-08 00:52:42'),(752,0,17,0,'2011-05-09 00:10:15'),(753,0,37,0,'2011-05-10 00:01:02'),(754,0,50,0,'2011-05-11 00:46:47'),(755,0,31,0,'2011-05-12 02:04:58'),(756,0,38,0,'2011-05-13 02:38:33'),(757,0,83,0,'2011-05-14 01:02:53'),(758,0,33,0,'2011-05-15 00:17:23'),(759,0,45,0,'2011-05-16 03:49:00'),(760,0,18,0,'2011-05-17 00:11:00'),(761,0,6,0,'2011-05-18 00:14:58'),(762,0,47,0,'2011-05-19 01:51:16'),(763,0,24,0,'2011-05-20 03:21:14'),(764,0,12,0,'2011-05-21 00:20:54'),(765,0,21,0,'2011-05-22 00:22:03'),(766,0,49,0,'2011-05-23 02:28:12'),(767,0,19,0,'2011-05-24 00:16:19'),(768,0,34,0,'2011-05-25 03:02:43'),(769,0,42,0,'2011-05-26 03:21:37'),(770,0,45,0,'2011-05-27 00:30:50'),(771,0,30,0,'2011-05-28 00:27:12'),(772,0,46,0,'2011-05-29 00:11:50'),(773,0,56,0,'2011-05-30 01:43:00'),(774,0,11,0,'2011-05-31 01:57:31'),(775,0,33,0,'2011-06-01 01:12:45'),(776,0,58,0,'2011-06-02 00:09:23'),(777,0,10,0,'2011-06-03 01:00:53'),(778,0,16,0,'2011-06-04 03:20:20'),(779,0,34,0,'2011-06-05 06:39:30'),(780,0,28,0,'2011-06-06 01:58:56'),(781,0,23,0,'2011-06-07 00:42:06'),(782,0,21,0,'2011-06-08 01:49:26'),(783,0,47,0,'2011-06-09 00:30:08'),(784,0,38,0,'2011-06-10 00:22:03'),(785,0,9,0,'2011-06-11 02:55:36'),(786,0,13,0,'2011-06-12 06:01:39'),(787,0,49,0,'2011-06-13 00:09:47'),(788,0,32,0,'2011-06-14 00:01:54'),(789,0,34,0,'2011-06-15 00:06:15'),(790,0,7,0,'2011-06-16 04:51:40'),(791,0,27,0,'2011-06-17 00:01:54'),(792,0,376,0,'2011-06-18 07:20:53'),(793,0,36,0,'2011-06-19 00:19:27'),(794,0,3,0,'2011-06-20 15:51:51'),(795,0,22,0,'2011-06-21 00:50:04'),(796,0,37,0,'2011-06-22 00:22:16'),(797,0,17,0,'2011-06-23 00:08:00'),(798,0,42,0,'2011-06-24 02:57:16'),(799,0,58,0,'2011-06-25 00:29:52'),(800,0,17,0,'2011-06-26 01:03:08'),(801,0,42,0,'2011-06-27 01:10:44'),(802,0,25,0,'2011-06-28 00:36:20'),(803,0,33,0,'2011-06-29 00:40:06'),(804,0,23,0,'2011-06-30 02:48:24'),(805,0,30,0,'2011-07-01 01:26:41'),(806,0,34,0,'2011-07-02 01:37:40'),(807,0,14,0,'2011-07-03 00:46:15'),(808,0,23,0,'2011-07-04 01:52:08'),(809,0,24,0,'2011-07-05 04:11:14'),(810,0,27,0,'2011-07-06 01:31:24'),(811,0,301,0,'2011-07-07 02:09:35'),(812,0,32,0,'2011-07-08 00:11:17'),(813,0,39,0,'2011-07-09 00:29:34'),(814,0,307,0,'2011-07-10 00:04:03'),(815,0,25,0,'2011-07-11 00:58:33'),(816,0,57,0,'2011-07-12 00:07:23'),(817,0,330,0,'2011-07-13 01:02:11'),(818,0,534,0,'2011-07-14 01:10:35'),(819,0,23,0,'2011-07-15 02:26:07'),(820,0,16,0,'2011-07-16 02:29:36'),(821,0,360,0,'2011-07-17 00:28:47'),(822,0,9,0,'2011-07-18 00:08:14'),(823,0,344,0,'2011-07-19 04:05:46'),(824,0,330,0,'2011-07-20 01:58:42'),(825,0,330,0,'2011-07-21 01:26:21'),(826,0,19,0,'2011-07-22 00:50:30'),(827,0,23,0,'2011-07-23 00:22:46'),(828,0,16,0,'2011-07-24 02:33:48'),(829,0,24,0,'2011-07-25 00:06:08'),(830,0,18,0,'2011-07-26 00:59:03'),(831,0,17,0,'2011-07-27 00:01:45'),(832,0,19,0,'2011-07-28 03:03:52'),(833,0,21,0,'2011-07-29 01:11:53'),(834,0,18,0,'2011-07-30 01:45:26'),(835,0,49,0,'2011-07-31 01:46:29'),(836,0,22,0,'2011-08-01 00:03:30'),(837,0,60,0,'2011-08-02 04:38:19'),(838,0,41,0,'2011-08-03 03:22:22'),(839,0,33,0,'2011-08-04 01:36:59'),(840,0,38,0,'2011-08-05 00:14:03'),(841,0,31,0,'2011-08-06 00:34:32'),(842,0,42,0,'2011-08-07 02:11:25'),(843,0,32,0,'2011-08-08 00:41:18'),(844,0,55,0,'2011-08-09 01:42:49'),(845,0,15,0,'2011-08-10 01:39:32'),(846,0,6,0,'2011-08-11 02:39:55'),(847,0,26,0,'2011-08-12 00:25:53'),(848,0,60,0,'2011-08-13 01:05:35'),(849,0,14,0,'2011-08-14 05:01:28'),(850,0,14,0,'2011-08-15 00:31:30'),(851,0,18,0,'2011-08-16 01:35:41'),(852,0,10,0,'2011-08-17 02:40:21'),(853,0,8,0,'2011-08-18 01:59:45'),(854,0,18,0,'2011-08-19 00:12:15'),(855,0,21,0,'2011-08-20 00:40:07'),(856,0,15,0,'2011-08-21 00:17:07'),(857,0,15,0,'2011-08-22 00:40:27'),(858,0,78,0,'2011-08-23 01:44:35'),(859,0,22,0,'2011-08-24 00:32:18'),(860,0,24,0,'2011-08-25 00:48:54'),(861,0,24,0,'2011-08-26 00:42:31'),(862,0,5,0,'2011-08-27 01:42:56'),(863,0,14,0,'2011-08-28 00:01:18'),(864,0,14,0,'2011-08-29 00:37:17'),(865,0,21,0,'2011-08-30 00:23:17'),(866,0,13,0,'2011-08-31 01:27:31'),(867,0,18,0,'2011-09-01 01:34:10'),(868,0,12,0,'2011-09-02 01:34:33'),(869,0,22,0,'2011-09-03 00:26:09'),(870,0,28,0,'2011-09-04 00:10:59'),(871,0,95,0,'2011-09-05 01:00:53'),(872,0,19,0,'2011-09-06 01:01:46'),(873,0,23,0,'2011-09-07 01:10:55'),(874,0,15,0,'2011-09-08 06:14:16'),(875,0,53,0,'2011-09-09 01:06:20'),(876,0,21,0,'2011-09-10 00:37:52'),(877,0,15,0,'2011-09-11 02:49:14'),(878,0,14,0,'2011-09-12 02:14:13'),(879,0,20,0,'2011-09-13 00:29:46'),(880,0,10,0,'2011-09-14 00:43:24'),(881,0,147,0,'2011-09-15 01:25:18'),(882,0,9,0,'2011-09-16 02:16:23'),(883,0,23,0,'2011-09-17 00:42:06'),(884,0,18,0,'2011-09-18 01:16:20'),(885,0,26,0,'2011-09-19 00:30:10'),(886,0,13,0,'2011-09-20 00:31:01'),(887,0,13,0,'2011-09-21 01:57:57'),(888,0,11,0,'2011-09-22 01:24:19'),(889,0,22,0,'2011-09-23 00:36:29'),(890,0,6,0,'2011-09-24 05:33:13'),(891,0,20,0,'2011-09-25 00:30:29'),(892,0,22,0,'2011-09-26 00:07:53'),(893,0,18,0,'2011-09-27 02:17:30'),(894,0,18,0,'2011-09-28 04:58:32'),(895,0,50,0,'2011-09-29 00:56:25'),(896,0,3,0,'2011-09-30 06:26:52'),(897,0,77,0,'2011-10-01 01:43:49'),(898,0,13,0,'2011-10-02 08:07:11'),(899,0,13,0,'2011-10-03 00:45:48'),(900,0,11,0,'2011-10-04 03:58:36'),(901,0,79,0,'2011-10-05 00:20:12'),(902,0,15,0,'2011-10-06 01:03:19'),(903,0,11,0,'2011-10-07 01:14:00'),(904,0,14,0,'2011-10-08 02:34:36'),(905,0,13,0,'2011-10-09 00:01:37'),(906,0,13,0,'2011-10-10 00:52:03'),(907,0,14,0,'2011-10-11 00:25:54'),(908,0,6,0,'2011-10-12 00:20:28'),(909,0,9,0,'2011-10-13 05:49:15'),(910,0,31,0,'2011-10-14 02:29:11'),(911,0,36,0,'2011-10-15 00:11:03'),(912,0,14,0,'2011-10-16 02:39:25'),(913,0,45,0,'2011-10-17 03:09:02'),(914,0,11,0,'2011-10-18 01:50:45'),(915,0,59,0,'2011-10-19 00:54:21'),(916,0,12,0,'2011-10-20 10:20:05'),(917,0,19,0,'2011-10-21 00:36:04'),(918,0,13,0,'2011-10-22 01:22:40'),(919,0,16,0,'2011-10-23 06:40:46'),(920,0,22,0,'2011-10-24 02:05:44'),(921,0,22,0,'2011-10-25 00:31:04'),(922,0,29,0,'2011-10-26 02:19:33'),(923,0,7,0,'2011-10-27 00:47:37'),(924,0,22,0,'2011-10-28 02:09:31'),(925,0,19,0,'2011-10-29 01:27:54'),(926,0,43,0,'2011-10-30 00:43:25'),(927,0,10,0,'2011-10-31 02:49:21'),(928,0,4,0,'2011-11-01 02:18:08'),(929,0,16,0,'2011-11-02 01:01:10'),(930,0,36,0,'2011-11-03 02:13:34'),(931,0,76,0,'2011-11-04 01:15:10'),(932,0,21,0,'2011-11-05 02:22:28'),(933,0,7,0,'2011-11-06 00:23:43'),(934,0,26,0,'2011-11-07 00:07:03'),(935,0,9,0,'2011-11-08 00:14:53'),(936,0,6,0,'2011-11-09 04:16:52'),(937,0,13,0,'2011-11-10 02:45:34'),(938,0,12,0,'2011-11-11 00:10:49'),(939,0,15,0,'2011-11-12 00:48:44'),(940,0,14,0,'2011-11-13 01:16:12'),(941,0,63,0,'2011-11-14 00:34:11'),(942,0,9,0,'2011-11-15 02:16:38'),(943,0,22,0,'2011-11-16 00:09:30'),(944,0,15,0,'2011-11-17 01:51:34'),(945,0,21,0,'2011-11-18 00:30:48'),(946,0,10,0,'2011-11-19 05:18:10'),(947,0,13,0,'2011-11-20 00:33:21'),(948,0,14,0,'2011-11-21 00:21:22'),(949,0,6,0,'2011-11-22 04:44:30'),(950,0,8,0,'2011-11-23 00:30:24'),(951,0,59,0,'2011-11-24 07:34:11'),(952,0,25,0,'2011-11-25 02:24:02'),(953,0,19,0,'2011-11-26 02:11:54'),(954,0,38,0,'2011-11-27 00:09:45'),(955,0,13,0,'2011-11-28 00:54:52'),(956,0,16,0,'2011-11-29 03:39:56'),(957,0,13,0,'2011-11-30 01:26:56'),(958,0,43,0,'2011-12-01 02:56:58'),(959,0,19,0,'2011-12-02 01:36:17'),(960,0,60,0,'2011-12-03 01:17:48'),(961,0,55,0,'2011-12-04 07:43:14'),(962,0,48,0,'2011-12-05 00:51:30'),(963,0,36,0,'2011-12-06 06:51:30'),(964,0,8,0,'2011-12-07 03:33:18'),(965,0,11,0,'2011-12-08 01:24:15'),(966,0,8,0,'2011-12-09 02:51:30'),(967,0,9,0,'2011-12-10 05:01:58'),(968,0,11,0,'2011-12-11 00:31:42'),(969,0,15,0,'2011-12-12 00:14:39'),(970,0,12,0,'2011-12-13 02:24:54'),(971,0,52,0,'2011-12-14 03:01:17'),(972,0,6,0,'2011-12-15 01:17:50'),(973,0,21,0,'2011-12-16 00:28:58'),(974,0,29,0,'2011-12-17 00:52:22'),(975,0,54,0,'2011-12-18 00:05:19'),(976,0,12,0,'2011-12-19 00:39:47'),(977,0,50,0,'2011-12-20 00:41:28'),(978,0,34,0,'2011-12-21 00:58:00'),(979,0,14,0,'2011-12-22 01:22:16'),(980,0,15,0,'2011-12-23 00:16:42'),(981,0,63,0,'2011-12-24 01:03:20'),(982,0,18,0,'2011-12-25 01:04:51'),(983,0,12,0,'2011-12-26 00:28:35'),(984,0,9,0,'2011-12-27 02:02:08'),(985,0,11,0,'2011-12-28 01:59:25'),(986,0,23,0,'2011-12-29 00:32:57'),(987,0,4,0,'2011-12-30 10:21:44'),(988,0,35,0,'2011-12-31 05:13:43'),(989,0,53,0,'2012-01-01 00:17:05'),(990,0,48,0,'2012-01-02 04:01:39'),(991,0,65,0,'2012-01-03 00:30:33'),(992,0,9,0,'2012-01-04 02:06:38'),(993,0,27,0,'2012-01-05 00:30:50'),(994,0,10,0,'2012-01-06 00:03:50'),(995,0,27,0,'2012-01-07 03:31:37'),(996,0,7,0,'2012-01-08 03:04:29'),(997,0,7,0,'2012-01-09 03:27:52'),(998,0,47,0,'2012-01-10 08:48:29'),(999,0,16,0,'2012-01-11 08:32:48'),(1000,0,23,0,'2012-01-12 00:02:28'),(1001,0,66,0,'2012-01-13 00:07:15'),(1002,0,6,0,'2012-01-14 10:55:14'),(1003,0,7,0,'2012-01-15 02:53:35'),(1004,0,37,0,'2012-01-16 01:29:16'),(1005,0,16,0,'2012-01-17 00:13:35'),(1006,0,12,0,'2012-01-18 08:53:38'),(1007,0,52,0,'2012-01-19 00:10:11'),(1008,0,23,0,'2012-01-20 00:37:35'),(1009,0,28,0,'2012-01-21 04:07:23'),(1010,0,13,0,'2012-01-22 03:09:20'),(1011,0,85,0,'2012-01-23 00:09:19'),(1012,0,20,0,'2012-01-24 01:03:25'),(1013,0,26,0,'2012-01-25 04:10:08'),(1014,0,9,0,'2012-01-26 06:13:49'),(1015,0,12,0,'2012-01-27 05:38:32'),(1016,0,25,0,'2012-01-28 01:10:05'),(1017,0,26,0,'2012-01-29 00:08:13'),(1018,0,16,0,'2012-01-30 00:46:25'),(1019,0,68,0,'2012-01-31 00:36:05'),(1020,0,17,0,'2012-02-01 05:02:23'),(1021,0,66,0,'2012-02-02 01:46:56'),(1022,0,11,0,'2012-02-03 01:24:59'),(1023,0,20,0,'2012-02-04 00:39:34'),(1024,0,27,0,'2012-02-05 01:10:50'),(1025,0,46,0,'2012-02-06 04:14:47'),(1026,0,11,0,'2012-02-07 12:56:00'),(1027,0,12,0,'2012-02-08 00:24:02'),(1028,0,19,0,'2012-02-09 02:59:12'),(1029,0,18,0,'2012-02-10 00:42:16'),(1030,0,17,0,'2012-02-11 02:33:10'),(1031,0,59,0,'2012-02-12 02:19:42'),(1032,0,23,0,'2012-02-13 00:06:12'),(1033,0,15,0,'2012-02-14 03:40:03'),(1034,0,5,0,'2012-02-15 07:11:28'),(1035,0,5,0,'2012-02-16 05:07:52'),(1036,0,15,0,'2012-02-17 00:05:27'),(1037,0,408,0,'2012-02-18 04:23:47'),(1038,0,62,0,'2012-02-19 00:01:29'),(1039,0,3,0,'2012-02-20 04:05:48'),(1040,0,181,0,'2012-02-21 02:31:13'),(1041,0,62,0,'2012-02-22 02:07:52'),(1042,0,188,0,'2012-02-23 00:08:50'),(1043,0,21,0,'2012-02-24 03:15:38'),(1044,0,8,0,'2012-02-25 01:29:31'),(1045,0,24,0,'2012-02-26 00:04:33'),(1046,0,35,0,'2012-02-27 00:55:33'),(1047,0,9,0,'2012-02-28 03:37:05'),(1048,0,13,0,'2012-02-29 05:52:27'),(1049,0,58,0,'2012-03-01 00:02:54'),(1050,0,6,0,'2012-03-02 01:09:52'),(1051,0,56,0,'2012-03-03 01:28:53'),(1052,0,13,0,'2012-03-04 02:10:00'),(1053,0,14,0,'2012-03-05 00:25:38'),(1054,0,16,0,'2012-03-06 09:14:46'),(1055,0,14,0,'2012-03-07 00:52:11'),(1056,0,20,0,'2012-03-08 00:23:05'),(1057,0,38,0,'2012-03-09 03:11:45'),(1058,0,41,0,'2012-03-10 00:05:14'),(1059,0,11,0,'2012-03-11 00:00:19'),(1060,0,51,0,'2012-03-12 00:18:18'),(1061,0,99,0,'2012-03-13 01:58:53'),(1062,0,20,0,'2012-03-14 00:50:18'),(1063,0,47,0,'2012-03-15 00:41:40'),(1064,0,214,0,'2012-03-16 01:56:49'),(1065,0,16,0,'2012-03-17 02:16:06'),(1066,0,28,0,'2012-03-18 01:15:36'),(1067,0,62,0,'2012-03-19 00:20:58'),(1068,0,13,0,'2012-03-20 00:23:25'),(1069,0,56,0,'2012-03-21 01:06:57'),(1070,0,42,0,'2012-03-22 00:02:13'),(1071,0,59,0,'2012-03-23 00:35:33'),(1072,0,42,0,'2012-03-24 00:19:19'),(1073,0,61,0,'2012-03-25 02:33:39'),(1074,0,269,0,'2012-03-26 01:03:03'),(1075,0,112,0,'2012-03-27 03:41:36'),(1076,0,252,0,'2012-03-28 00:01:07'),(1077,0,439,0,'2012-03-29 01:35:35'),(1078,0,395,0,'2012-03-30 00:48:35'),(1079,0,49,0,'2012-03-31 00:10:14'),(1080,0,82,0,'2012-04-01 00:54:45'),(1081,0,30,0,'2012-04-02 00:14:34'),(1082,0,74,0,'2012-04-03 01:19:14'),(1083,0,105,0,'2012-04-04 02:49:55'),(1084,0,6,0,'2012-04-05 03:50:22'),(1085,0,8,0,'2012-04-06 01:25:13'),(1086,0,33,0,'2012-04-07 00:28:20'),(1087,0,17,0,'2012-04-08 00:35:05'),(1088,0,21,0,'2012-04-09 00:09:27'),(1089,0,25,0,'2012-04-10 04:44:45'),(1090,0,29,0,'2012-04-11 01:57:14'),(1091,0,20,0,'2012-04-12 04:26:52'),(1092,0,12,0,'2012-04-13 00:50:07'),(1093,0,60,0,'2012-04-14 02:18:41'),(1094,0,24,0,'2012-04-15 03:02:52'),(1095,0,19,0,'2012-04-16 02:01:37'),(1096,0,35,0,'2012-04-17 00:01:41'),(1097,0,61,0,'2012-04-18 01:00:04'),(1098,0,20,0,'2012-04-19 00:04:21'),(1099,0,12,0,'2012-04-20 02:14:31'),(1100,0,19,0,'2012-04-21 00:15:16'),(1101,0,49,0,'2012-04-22 01:57:56'),(1102,0,27,0,'2012-04-23 00:06:19'),(1103,0,64,0,'2012-04-24 00:05:38'),(1104,0,17,0,'2012-04-25 00:28:14'),(1105,0,13,0,'2012-04-26 00:54:20'),(1106,0,10,0,'2012-04-27 06:45:59'),(1107,0,28,0,'2012-04-28 04:20:10'),(1108,0,38,0,'2012-04-29 00:35:13'),(1109,0,9,0,'2012-04-30 02:03:55'),(1110,0,13,0,'2012-05-01 01:37:08'),(1111,0,25,0,'2012-05-02 00:49:35'),(1112,0,76,0,'2012-05-03 03:55:15'),(1113,0,72,0,'2012-05-04 00:40:40'),(1114,0,11,0,'2012-05-05 02:55:40'),(1115,0,23,0,'2012-05-06 01:21:09'),(1116,0,26,0,'2012-05-07 00:44:16'),(1117,0,51,0,'2012-05-08 00:19:57'),(1118,0,50,0,'2012-05-09 00:00:13'),(1119,0,12,0,'2012-05-10 00:41:11'),(1120,0,51,0,'2012-05-11 07:15:09'),(1121,0,58,0,'2012-05-12 04:04:04'),(1122,0,17,0,'2012-05-13 01:15:08'),(1123,0,64,0,'2012-05-14 01:31:09'),(1124,0,15,0,'2012-05-15 03:33:42'),(1125,0,16,0,'2012-05-16 00:17:50'),(1126,0,10,0,'2012-05-17 00:11:49'),(1127,0,56,0,'2012-05-18 00:14:42'),(1128,0,30,0,'2012-05-19 00:42:25'),(1129,0,2,0,'2012-05-20 07:01:51'),(1130,0,31,0,'2012-05-21 05:55:47'),(1131,0,36,0,'2012-05-22 00:00:24'),(1132,0,21,0,'2012-05-23 00:34:39'),(1133,0,64,0,'2012-05-24 02:00:29'),(1134,0,24,0,'2012-05-25 01:56:32'),(1135,0,60,0,'2012-05-26 00:02:47'),(1136,0,49,0,'2012-05-27 00:11:53'),(1137,0,30,0,'2012-05-28 01:00:49'),(1138,0,40,0,'2012-05-29 00:05:06'),(1139,0,20,0,'2012-05-30 06:02:45'),(1140,0,23,0,'2012-05-31 01:09:40'),(1141,0,12,0,'2012-06-01 00:24:01'),(1142,0,14,0,'2012-06-02 00:39:05'),(1143,0,67,0,'2012-06-03 01:41:11'),(1144,0,26,0,'2012-06-04 02:58:19'),(1145,0,15,0,'2012-06-05 00:20:51'),(1146,0,23,0,'2012-06-06 00:13:53'),(1147,0,18,0,'2012-06-07 01:37:01'),(1148,0,18,0,'2012-06-08 06:29:29'),(1149,0,30,0,'2012-06-09 03:08:45'),(1150,0,41,0,'2012-06-10 00:18:22'),(1151,0,19,0,'2012-06-11 00:59:20'),(1152,0,26,0,'2012-06-12 00:03:05'),(1153,0,56,0,'2012-06-13 03:01:32'),(1154,0,22,0,'2012-06-14 04:08:01'),(1155,0,12,0,'2012-06-15 00:50:35'),(1156,0,22,0,'2012-06-16 01:10:28'),(1157,0,19,0,'2012-06-17 02:46:01'),(1158,0,27,0,'2012-06-18 00:39:58'),(1159,0,32,0,'2012-06-19 00:31:47'),(1160,0,23,0,'2012-06-20 01:03:37'),(1161,0,12,0,'2012-06-21 01:51:14'),(1162,0,37,0,'2012-06-22 00:24:23'),(1163,0,134,0,'2012-06-23 00:35:20'),(1164,0,32,0,'2012-06-24 00:00:12'),(1165,0,9,0,'2012-06-25 01:56:44'),(1166,0,15,0,'2012-06-26 02:16:52'),(1167,0,56,0,'2012-06-27 01:13:43'),(1168,0,28,0,'2012-06-28 00:19:14'),(1169,0,25,0,'2012-06-29 01:01:19'),(1170,0,32,0,'2012-06-30 01:29:09'),(1171,0,16,0,'2012-07-01 05:33:51'),(1172,0,21,0,'2012-07-02 01:04:27'),(1173,0,83,0,'2012-07-03 00:48:01'),(1174,0,19,0,'2012-07-04 01:00:53'),(1175,0,39,0,'2012-07-05 02:38:21'),(1176,0,31,0,'2012-07-06 00:11:57'),(1177,0,13,0,'2012-07-07 00:05:21'),(1178,0,24,0,'2012-07-08 01:19:21'),(1179,0,59,0,'2012-07-09 02:48:04'),(1180,0,11,0,'2012-07-10 00:58:43'),(1181,0,27,0,'2012-07-11 08:43:46'),(1182,0,7,0,'2012-07-12 02:51:05'),(1183,0,59,0,'2012-07-13 01:33:44'),(1184,0,22,0,'2012-07-14 02:48:27'),(1185,0,14,0,'2012-07-15 01:52:19'),(1186,0,18,0,'2012-07-16 02:03:12'),(1187,0,11,0,'2012-07-17 00:59:05'),(1188,0,6,0,'2012-07-18 01:41:13'),(1189,0,19,0,'2012-07-19 12:24:55'),(1190,0,31,0,'2012-07-20 02:31:51'),(1191,0,22,0,'2012-07-21 01:59:09'),(1192,0,30,0,'2012-07-22 04:50:45'),(1193,0,71,0,'2012-07-23 01:01:11'),(1194,0,17,0,'2012-07-24 03:16:41'),(1195,0,30,0,'2012-07-25 02:47:51'),(1196,0,40,0,'2012-07-26 01:02:49'),(1197,0,12,0,'2012-07-27 00:32:59'),(1198,0,19,0,'2012-07-28 01:18:10'),(1199,0,28,0,'2012-07-29 01:03:17'),(1200,0,12,0,'2012-07-30 01:24:00'),(1201,0,18,0,'2012-07-31 01:54:59'),(1202,0,64,0,'2012-08-01 00:03:25'),(1203,0,20,0,'2012-08-02 00:15:47'),(1204,0,76,0,'2012-08-03 00:01:11'),(1205,0,29,0,'2012-08-04 00:15:04'),(1206,0,12,0,'2012-08-05 01:49:39'),(1207,0,49,0,'2012-08-06 00:32:49'),(1208,0,84,0,'2012-08-07 00:29:03'),(1209,0,20,0,'2012-08-08 00:56:05'),(1210,0,24,0,'2012-08-09 00:22:45'),(1211,0,25,0,'2012-08-10 00:17:03'),(1212,0,33,0,'2012-08-11 02:15:59'),(1213,0,11,0,'2012-08-12 03:43:07'),(1214,0,52,0,'2012-08-13 02:10:13'),(1215,0,14,0,'2012-08-14 09:41:48'),(1216,0,14,0,'2012-08-15 00:45:56'),(1217,0,8,0,'2012-08-16 00:00:55'),(1218,0,56,0,'2012-08-17 00:49:16'),(1219,0,37,0,'2012-08-18 00:24:40'),(1220,0,47,0,'2012-08-19 02:26:20'),(1221,0,16,0,'2012-08-20 00:42:41'),(1222,0,11,0,'2012-08-21 01:47:45'),(1223,0,28,0,'2012-08-22 00:25:37'),(1224,0,75,0,'2012-08-23 03:02:15'),(1225,0,19,0,'2012-08-24 01:56:24'),(1226,0,20,0,'2012-08-25 04:05:12'),(1227,0,23,0,'2012-08-26 00:27:13'),(1228,0,14,0,'2012-08-27 02:41:50'),(1229,0,12,0,'2012-08-28 00:08:52'),(1230,0,30,0,'2012-08-29 00:29:05'),(1231,0,22,0,'2012-08-30 00:21:17'),(1232,0,13,0,'2012-08-31 01:15:18'),(1233,0,36,0,'2012-09-01 01:39:53'),(1234,0,61,0,'2012-09-02 00:09:13'),(1235,0,18,0,'2012-09-03 01:52:56'),(1236,0,20,0,'2012-09-04 01:03:43'),(1237,0,8,0,'2012-09-05 03:29:46'),(1238,0,12,0,'2012-09-06 01:27:26'),(1239,0,33,0,'2012-09-07 01:23:22'),(1240,0,26,0,'2012-09-08 00:47:23'),(1241,0,17,0,'2012-09-09 00:38:50'),(1242,0,30,0,'2012-09-10 08:42:58'),(1243,0,6,0,'2012-09-11 04:38:57'),(1244,0,61,0,'2012-09-12 00:30:06'),(1245,0,45,0,'2012-09-13 00:01:40'),(1246,0,15,0,'2012-09-14 11:27:47'),(1247,0,25,0,'2012-09-15 00:01:58'),(1248,0,39,0,'2012-09-16 03:10:39'),(1249,0,51,0,'2012-09-17 00:37:14'),(1250,0,28,0,'2012-09-18 00:13:05'),(1251,0,51,0,'2012-09-19 01:48:12'),(1252,0,44,0,'2012-09-20 00:00:26'),(1253,0,28,0,'2012-09-21 00:29:10'),(1254,0,117,0,'2012-09-22 00:04:45'),(1255,0,61,0,'2012-09-23 00:11:39'),(1256,0,111,0,'2012-09-24 00:09:47'),(1257,0,36,0,'2012-09-25 04:49:23'),(1258,0,45,0,'2012-09-26 01:03:32'),(1259,0,55,0,'2012-09-27 00:00:03'),(1260,0,8,0,'2012-09-28 10:00:48'),(1261,0,17,0,'2012-09-29 00:58:25'),(1262,0,72,0,'2012-09-30 00:11:14'),(1263,0,28,0,'2012-10-01 00:25:47'),(1264,0,63,0,'2012-10-02 00:15:51'),(1265,0,35,0,'2012-10-03 06:38:54'),(1266,0,55,0,'2012-10-04 00:51:02'),(1267,0,14,0,'2012-10-05 03:00:13'),(1268,0,8,0,'2012-10-06 00:07:46'),(1269,0,73,0,'2012-10-07 04:01:39'),(1270,0,21,0,'2012-10-08 00:07:17'),(1271,0,10,0,'2012-10-09 04:04:25'),(1272,0,14,0,'2012-10-10 02:19:32'),(1273,0,73,0,'2012-10-11 00:11:08'),(1274,0,72,0,'2012-10-12 00:08:49'),(1275,0,28,0,'2012-10-13 06:14:08'),(1276,0,93,0,'2012-10-14 04:03:07'),(1277,0,63,0,'2012-10-15 04:03:10'),(1278,0,108,0,'2012-10-16 00:17:32'),(1279,0,25,0,'2012-10-17 00:03:48'),(1280,0,21,0,'2012-10-18 01:23:35'),(1281,0,100,0,'2012-10-19 01:50:17'),(1282,0,68,0,'2012-10-20 00:20:20'),(1283,0,39,0,'2012-10-21 00:06:14'),(1284,0,116,0,'2012-10-22 01:20:03'),(1285,0,183,0,'2012-10-23 00:15:40'),(1286,0,17,0,'2012-10-24 00:07:50'),(1287,0,14,0,'2012-10-25 00:39:38'),(1288,0,40,0,'2012-10-26 01:24:02'),(1289,0,9,0,'2012-10-27 02:06:38'),(1290,0,71,0,'2012-10-28 00:03:32'),(1291,0,40,0,'2012-10-29 00:23:53'),(1292,0,79,0,'2012-10-30 00:19:17'),(1293,0,16,0,'2012-10-31 00:44:38'),(1294,0,100,0,'2012-11-01 00:23:28'),(1295,0,80,0,'2012-11-02 00:23:29'),(1296,0,41,0,'2012-11-03 01:38:55'),(1297,0,29,0,'2012-11-04 00:29:36'),(1298,0,37,0,'2012-11-05 00:44:42'),(1299,0,88,0,'2012-11-06 00:20:53'),(1300,0,19,0,'2012-11-07 01:42:34'),(1301,0,28,0,'2012-11-08 00:18:01'),(1302,0,60,0,'2012-11-09 01:32:57'),(1303,0,12,0,'2012-11-10 08:50:16'),(1304,0,66,0,'2012-11-11 00:57:36'),(1305,0,65,0,'2012-11-12 01:40:27'),(1306,0,55,0,'2012-11-13 00:47:35'),(1307,0,14,0,'2012-11-14 00:23:36'),(1308,0,64,0,'2012-11-15 00:36:24'),(1309,0,57,0,'2012-11-16 00:43:35'),(1310,0,13,0,'2012-11-17 01:01:52'),(1311,0,33,0,'2012-11-18 01:03:14'),(1312,0,56,0,'2012-11-19 00:17:57'),(1313,0,18,0,'2012-11-20 01:17:46'),(1314,0,64,0,'2012-11-21 00:12:03'),(1315,0,100,0,'2012-11-22 00:47:54'),(1316,0,41,0,'2012-11-23 00:46:52'),(1317,0,58,0,'2012-11-24 01:00:25'),(1318,0,78,0,'2012-11-25 00:11:05'),(1319,0,6,0,'2012-11-26 02:16:02'),(1320,0,36,0,'2012-11-27 00:28:38'),(1321,0,293,0,'2012-11-28 00:16:22'),(1322,0,55,0,'2012-11-29 03:01:27'),(1323,0,21,0,'2012-11-30 01:47:51'),(1324,0,100,0,'2012-12-01 01:09:52'),(1325,0,6,0,'2012-12-02 06:06:09'),(1326,0,24,0,'2012-12-03 07:35:06'),(1327,0,45,0,'2012-12-04 00:09:53'),(1328,0,16,0,'2012-12-05 07:33:56'),(1329,0,53,0,'2012-12-06 00:29:13'),(1330,0,13,0,'2012-12-07 01:45:31'),(1331,0,9,0,'2012-12-08 04:11:41'),(1332,0,20,0,'2012-12-09 02:44:26'),(1333,0,28,0,'2012-12-10 00:05:51'),(1334,0,104,0,'2012-12-11 00:27:19'),(1335,0,56,0,'2012-12-12 00:55:56'),(1336,0,139,0,'2012-12-13 00:40:59'),(1337,0,20,0,'2012-12-14 00:00:39'),(1338,0,49,0,'2012-12-15 00:19:05'),(1339,0,35,0,'2012-12-16 00:00:10'),(1340,0,29,0,'2012-12-17 00:15:03'),(1341,0,17,0,'2012-12-18 03:49:48'),(1342,0,46,0,'2012-12-19 00:06:28'),(1343,0,53,0,'2012-12-20 00:20:18'),(1344,0,77,0,'2012-12-21 00:01:52'),(1345,0,32,0,'2012-12-22 01:38:40'),(1346,0,30,0,'2012-12-23 02:44:14'),(1347,0,48,0,'2012-12-24 00:04:41'),(1348,0,30,0,'2012-12-25 01:07:53'),(1349,0,65,0,'2012-12-26 00:40:23'),(1350,0,22,0,'2012-12-27 00:47:35'),(1351,0,29,0,'2012-12-28 00:31:29'),(1352,0,22,0,'2012-12-29 01:05:57'),(1353,0,30,0,'2012-12-30 00:53:04'),(1354,0,30,0,'2012-12-31 00:23:12'),(1355,0,36,0,'2013-01-01 01:16:36'),(1356,0,30,0,'2013-01-02 01:28:15'),(1357,0,28,0,'2013-01-03 00:07:43'),(1358,0,24,0,'2013-01-04 00:09:56'),(1359,0,16,0,'2013-01-05 01:09:55'),(1360,0,27,0,'2013-01-06 02:00:55'),(1361,0,16,0,'2013-01-07 01:57:46'),(1362,0,40,0,'2013-01-08 00:05:05'),(1363,0,13,0,'2013-01-09 01:31:09'),(1364,0,31,0,'2013-01-10 01:05:17'),(1365,0,52,0,'2013-01-11 00:55:55'),(1366,0,19,0,'2013-01-12 00:45:31'),(1367,0,29,0,'2013-01-13 00:50:09'),(1368,0,74,0,'2013-01-14 00:09:08'),(1369,0,21,0,'2013-01-15 00:10:42'),(1370,0,18,0,'2013-01-16 01:35:17'),(1371,0,32,0,'2013-01-17 00:21:08'),(1372,0,64,0,'2013-01-18 00:17:13'),(1373,0,29,0,'2013-01-19 00:53:53'),(1374,0,44,0,'2013-01-20 00:09:01'),(1375,0,64,0,'2013-01-21 00:08:40'),(1376,0,37,0,'2013-01-22 00:02:34'),(1377,0,66,0,'2013-01-23 01:18:21'),(1378,0,66,0,'2013-01-24 02:10:06'),(1379,0,68,0,'2013-01-25 00:47:26'),(1380,0,21,0,'2013-01-26 00:13:46'),(1381,0,39,0,'2013-01-27 02:21:23'),(1382,0,23,0,'2013-01-28 01:22:16'),(1383,0,49,0,'2013-01-29 01:35:04'),(1384,0,30,0,'2013-01-30 02:13:53'),(1385,0,15,0,'2013-01-31 04:17:35'),(1386,0,25,0,'2013-02-01 02:16:46'),(1387,0,36,0,'2013-02-02 00:34:31'),(1388,0,48,0,'2013-02-03 00:33:02'),(1389,0,21,0,'2013-02-04 00:20:12'),(1390,0,27,0,'2013-02-05 00:32:33'),(1391,0,23,0,'2013-02-06 00:04:19'),(1392,0,100,0,'2013-02-07 00:18:54'),(1393,0,12,0,'2013-02-08 00:18:27'),(1394,0,109,0,'2013-02-09 00:43:47'),(1395,0,32,0,'2013-02-10 00:44:09'),(1396,0,26,0,'2013-02-11 00:09:08'),(1397,0,55,0,'2013-02-12 00:20:55'),(1398,0,44,0,'2013-02-13 00:37:38'),(1399,0,87,0,'2013-02-14 00:14:43'),(1400,0,172,0,'2013-02-15 00:19:34'),(1401,0,89,0,'2013-02-16 00:48:23'),(1402,0,55,0,'2013-02-17 02:05:24'),(1403,0,86,0,'2013-02-18 02:22:02'),(1404,0,96,0,'2013-02-19 01:35:29'),(1405,0,44,0,'2013-02-20 00:39:17'),(1406,0,43,0,'2013-02-21 00:36:32'),(1407,0,78,0,'2013-02-22 00:23:20'),(1408,0,14,0,'2013-02-23 01:31:02'),(1409,0,30,0,'2013-02-24 01:27:36'),(1410,0,27,0,'2013-02-25 00:47:05'),(1411,0,36,0,'2013-02-26 00:40:20'),(1412,0,69,0,'2013-02-27 00:51:12'),(1413,0,54,0,'2013-02-28 00:44:30'),(1414,0,13,0,'2013-03-01 00:46:56'),(1415,0,18,0,'2013-03-02 03:00:20'),(1416,0,15,0,'2013-03-03 00:24:59'),(1417,0,201,0,'2013-03-04 00:28:50'),(1418,0,20,0,'2013-03-05 06:07:30'),(1419,0,50,0,'2013-03-06 02:10:25'),(1420,0,71,0,'2013-03-07 02:52:37'),(1421,0,18,0,'2013-03-08 03:08:50'),(1422,0,76,0,'2013-03-09 00:43:14'),(1423,0,41,0,'2013-03-10 05:08:00'),(1424,0,63,0,'2013-03-11 00:43:09'),(1425,0,59,0,'2013-03-12 00:16:15'),(1426,0,121,0,'2013-03-13 00:07:26'),(1427,0,109,0,'2013-03-14 04:28:50'),(1428,0,135,0,'2013-03-15 00:45:18'),(1429,0,27,0,'2013-03-16 00:08:24'),(1430,0,103,0,'2013-03-17 01:08:55'),(1431,0,47,0,'2013-03-18 00:00:06'),(1432,0,56,0,'2013-03-19 03:06:17'),(1433,0,63,0,'2013-03-20 02:16:17'),(1434,0,80,0,'2013-03-21 01:16:27'),(1435,0,27,0,'2013-03-22 00:24:20'),(1436,0,18,0,'2013-03-23 05:24:44'),(1437,0,17,0,'2013-03-24 02:45:52'),(1438,0,297,0,'2013-03-25 00:55:17'),(1439,0,55,0,'2013-03-26 00:00:41'),(1440,0,71,0,'2013-03-27 01:04:31'),(1441,0,41,0,'2013-03-28 01:59:01'),(1442,0,19,0,'2013-03-29 01:48:42'),(1443,0,94,0,'2013-03-30 01:12:18'),(1444,0,22,0,'2013-03-31 03:40:31'),(1445,0,23,0,'2013-04-01 01:43:45'),(1446,0,16,0,'2013-04-02 00:12:53'),(1447,0,9,0,'2013-04-03 05:31:39'),(1448,0,41,0,'2013-04-04 04:19:14'),(1449,0,19,0,'2013-04-05 00:07:34'),(1450,0,41,0,'2013-04-06 01:24:58'),(1451,0,18,0,'2013-04-07 01:56:14'),(1452,0,27,0,'2013-04-08 00:52:46'),(1453,0,19,0,'2013-04-09 00:49:17'),(1454,0,14,0,'2013-04-10 01:24:06'),(1455,0,64,0,'2013-04-11 00:26:31'),(1456,0,86,0,'2013-04-12 02:44:38'),(1457,0,36,0,'2013-04-13 00:45:22'),(1458,0,65,0,'2013-04-14 00:34:24'),(1459,0,131,0,'2013-04-15 01:47:37'),(1460,0,26,0,'2013-04-16 01:38:05'),(1461,0,21,0,'2013-04-17 04:48:59'),(1462,0,37,0,'2013-04-18 00:00:12'),(1463,0,22,0,'2013-04-19 01:04:16'),(1464,0,33,0,'2013-04-20 01:51:44'),(1465,0,27,0,'2013-04-21 00:02:41'),(1466,0,13,0,'2013-04-22 00:20:18'),(1467,0,30,0,'2013-04-23 00:24:47'),(1468,0,25,0,'2013-04-24 00:10:35'),(1469,0,42,0,'2013-04-25 00:06:18'),(1470,0,57,0,'2013-04-26 00:09:10'),(1471,0,78,0,'2013-04-27 00:04:57'),(1472,0,46,0,'2013-04-28 02:55:34'),(1473,0,72,0,'2013-04-29 02:35:48'),(1474,0,17,0,'2013-04-30 01:27:55'),(1475,0,42,0,'2013-05-01 01:35:53'),(1476,0,21,0,'2013-05-02 01:42:01'),(1477,0,24,0,'2013-05-03 02:06:38'),(1478,0,48,0,'2013-05-04 01:05:17'),(1479,0,17,0,'2013-05-05 00:29:33'),(1480,0,19,0,'2013-05-06 02:08:59'),(1481,0,39,0,'2013-05-07 00:28:29'),(1482,0,19,0,'2013-05-08 00:37:02'),(1483,0,28,0,'2013-05-09 00:00:11'),(1484,0,36,0,'2013-05-10 00:47:33'),(1485,0,28,0,'2013-05-11 00:12:23'),(1486,0,37,0,'2013-05-12 01:43:16'),(1487,0,212,0,'2013-05-13 00:30:08'),(1488,0,72,0,'2013-05-14 00:57:07'),(1489,0,19,0,'2013-05-15 00:42:39'),(1490,0,53,0,'2013-05-16 00:43:04'),(1491,0,25,0,'2013-05-17 01:28:24'),(1492,0,18,0,'2013-05-18 00:29:29'),(1493,0,1,0,'2013-05-21 08:40:30'),(1494,0,1,0,'2013-05-22 09:43:31'),(1495,0,1,0,'2013-05-24 12:26:31'),(1496,0,3,0,'2013-06-16 05:37:01'),(1497,0,4,0,'2013-06-17 15:10:13'),(1498,0,2,0,'2013-06-18 17:09:05');
/*!40000 ALTER TABLE `zen_banners_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_categories`
--

DROP TABLE IF EXISTS `zen_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_categories` (
  `categories_id` int(11) NOT NULL AUTO_INCREMENT,
  `categories_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(3) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `categories_status` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`categories_id`),
  KEY `idx_parent_id_cat_id_zen` (`parent_id`,`categories_id`),
  KEY `idx_status_zen` (`categories_status`),
  KEY `idx_sort_order_zen` (`sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_categories`
--

LOCK TABLES `zen_categories` WRITE;
/*!40000 ALTER TABLE `zen_categories` DISABLE KEYS */;
INSERT INTO `zen_categories` VALUES (2,NULL,0,0,'2010-01-06 22:55:42','2010-02-11 22:33:50',1);
/*!40000 ALTER TABLE `zen_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_categories_description`
--

DROP TABLE IF EXISTS `zen_categories_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_categories_description` (
  `categories_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `categories_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `categories_description` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`categories_id`,`language_id`),
  KEY `idx_categories_name_zen` (`categories_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_categories_description`
--

LOCK TABLES `zen_categories_description` WRITE;
/*!40000 ALTER TABLE `zen_categories_description` DISABLE KEYS */;
INSERT INTO `zen_categories_description` VALUES (2,1,'Chairs & Ottomans',''),(2,2,'Sillas y Otomanos','');
/*!40000 ALTER TABLE `zen_categories_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_configuration`
--

DROP TABLE IF EXISTS `zen_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_configuration` (
  `configuration_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_title` text COLLATE utf8_unicode_ci NOT NULL,
  `configuration_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `configuration_value` text COLLATE utf8_unicode_ci NOT NULL,
  `configuration_description` text COLLATE utf8_unicode_ci NOT NULL,
  `configuration_group_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(5) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `use_function` text COLLATE utf8_unicode_ci,
  `set_function` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`configuration_id`),
  UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
  KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
  KEY `idx_cfg_grp_id_zen` (`configuration_group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=877 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_configuration`
--

LOCK TABLES `zen_configuration` WRITE;
/*!40000 ALTER TABLE `zen_configuration` DISABLE KEYS */;
INSERT INTO `zen_configuration` VALUES (1,'Store Name','STORE_NAME','AdirondakChairs.net','The name of my store',1,1,'2010-01-11 15:33:31','2010-01-04 15:39:22',NULL,NULL),(2,'Store Owner','STORE_OWNER','Adirondak Jak, Inc.','The name of my store owner',1,2,'2010-01-14 16:32:21','2010-01-04 15:39:22',NULL,NULL),(3,'Country','STORE_COUNTRY','223','The country my store is located in <br /><br /><strong>Note: Please remember to update the store zone.</strong>',1,6,NULL,'2010-01-04 15:39:22','zen_get_country_name','zen_cfg_pull_down_country_list('),(4,'Zone','STORE_ZONE','33','The zone my store is located in',1,7,'2010-01-04 16:35:18','2010-01-04 15:39:22','zen_cfg_get_zone_name','zen_cfg_pull_down_zone_list('),(5,'Expected Sort Order','EXPECTED_PRODUCTS_SORT','desc','This is the sort order used in the expected products box.',1,8,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'asc\', \'desc\'), '),(6,'Expected Sort Field','EXPECTED_PRODUCTS_FIELD','date_expected','The column to sort by in the expected products box.',1,9,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'products_name\', \'date_expected\'), '),(7,'Switch To Default Language Currency','USE_DEFAULT_LANGUAGE_CURRENCY','false','Automatically switch to the language\'s currency when it is changed',1,10,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(8,'Language Selector','LANGUAGE_DEFAULT_SELECTOR','Default','Should the default language be based on the Store preferences, or the customer\'s browser settings?<br /><br />Default: Store\'s default settings',1,11,'2010-01-11 15:34:23','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'Default\', \'Browser\'), '),(9,'Use Search-Engine Safe URLs (still in development)','SEARCH_ENGINE_FRIENDLY_URLS','false','Use search-engine safe urls for all site links',6,12,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(10,'Display Cart After Adding Product','DISPLAY_CART','true','Display the shopping cart after adding a product (or return back to their origin)',1,14,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(11,'Default Search Operator','ADVANCED_SEARCH_DEFAULT_OPERATOR','and','Default search operators',1,17,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'and\', \'or\'), '),(12,'Store Address and Phone','STORE_NAME_ADDRESS','9079 Pierson Road \r\nFowlerville, MI 48836\r\nUSA\r\n\r\n800-899-9790','This is the Store Name, Address and Phone used on printable documents and displayed online',1,18,'2010-01-14 16:31:22','2010-01-04 15:39:22',NULL,'zen_cfg_textarea('),(13,'Show Category Counts','SHOW_COUNTS','false','Count recursively how many products are in each category',1,19,'2010-01-24 18:24:30','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(14,'Tax Decimal Places','TAX_DECIMAL_PLACES','0','Pad the tax value this amount of decimal places',1,20,NULL,'2010-01-04 15:39:22',NULL,NULL),(15,'Display Prices with Tax','DISPLAY_PRICE_WITH_TAX','false','Display prices with tax included (true) or add the tax at the end (false)',1,21,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(16,'Display Prices with Tax in Admin','DISPLAY_PRICE_WITH_TAX_ADMIN','false','Display prices with tax included (true) or add the tax at the end (false) in Admin(Invoices)',1,21,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(17,'Basis of Product Tax','STORE_PRODUCT_TAX_BASIS','Shipping','On what basis is Product Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone',1,21,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(18,'Basis of Shipping Tax','STORE_SHIPPING_TAX_BASIS','Shipping','On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone - Can be overriden by correctly written Shipping Module',1,21,'2010-01-04 16:34:55','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(19,'Sales Tax Display Status','STORE_TAX_DISPLAY_STATUS','0','Always show Sales Tax even when amount is $0.00?<br />0= Off<br />1= On',1,21,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(20,'Admin Session Time Out in Seconds','SESSION_TIMEOUT_ADMIN','3600','Enter the time in seconds. Default=3600<br />Example: 3600= 1 hour<br /><br />Note: Too few seconds can result in timeout issues when adding/editing products',1,40,NULL,'2010-01-04 15:39:22',NULL,NULL),(21,'Admin Set max_execution_time for processes','GLOBAL_SET_TIME_LIMIT','60','Enter the time in seconds for how long the max_execution_time of processes should be. Default=60<br />Example: 60= 1 minute<br /><br />Note: Changing the time limit is only needed if you are having problems with the execution time of a process',1,42,NULL,'2010-01-04 15:39:22',NULL,NULL),(22,'Show if version update available','SHOW_VERSION_UPDATE_IN_HEADER','true','Automatically check to see if a new version of Zen Cart is available. Enabling this can sometimes slow down the loading of Admin pages. (Displayed on main Index page after login, and Server Info page.)',1,44,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(23,'Store Status','STORE_STATUS','0','What is your Store Status<br />0= Normal Store<br />1= Showcase no prices<br />2= Showcase with prices',1,25,'2010-02-09 15:36:04','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(24,'Server Uptime','DISPLAY_SERVER_UPTIME','true','Displaying Server uptime can cause entries in error logs on some servers. (true = Display, false = don\'t display)',1,46,'2010-01-11 15:37:15','0001-01-01 00:00:00','','zen_cfg_select_option(array(\'true\', \'false\'),'),(25,'Missing Page Check','MISSING_PAGE_CHECK','Page Not Found','Zen Cart can check for missing pages in the URL and redirect to Index page. For debugging you may want to turn this off. <br /><br /><strong>Default=On</strong><br />On = Send missing pages to \'index\'<br />Off = Don\'t check for missing pages<br />Page Not Found = display the Page-Not-Found page',1,48,'2010-01-11 15:37:58','0001-01-01 00:00:00','','zen_cfg_select_option(array(\'On\', \'Off\', \'Page Not Found\'),'),(26,'cURL Proxy Status','CURL_PROXY_REQUIRED','False','Does your host require that you use a proxy for cURL communication?',1,50,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(27,'cURL Proxy Address','CURL_PROXY_SERVER_DETAILS','','If you have GoDaddy hosting or other hosting services that require use of a proxy to talk to external sites via cURL, enter their proxy address here.<br />format: address:port<br />ie: for GoDaddy, enter: <strong>proxy.shr.secureserver.net:3128</strong> or possibly 64.202.165.130:3128',1,51,NULL,'2010-01-04 15:39:22',NULL,NULL),(28,'HTML Editor','HTML_EDITOR_PREFERENCE','NONE','Please select the HTML/Rich-Text editor you wish to use for composing Admin-related emails, newsletters, and product descriptions',1,110,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_pull_down_htmleditors('),(29,'Enable phpBB linkage?','PHPBB_LINKS_ENABLED','','Should Zen Cart synchronize new account information to your (already-installed) phpBB forum?',1,120,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(30,'Show Category Counts - Admin','SHOW_COUNTS_ADMIN','false','Show Category Counts in Admin?',1,19,'2010-01-24 18:24:56','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(31,'Currency Conversion Ratio','CURRENCY_UPLIFT_RATIO','1.05','When auto-updating currencies, what \"uplift\" ratio should be used to calculate the exchange rate used by your store?<br />ie: the bank rate is obtained from the currency-exchange servers; how much extra do you want to charge in order to make up the difference between the bank rate and the consumer rate?<br /><br /><strong>Default: 1.05 </strong><br />This will cause the published bank rate to be multiplied by 1.05 to set the currency rates in your store.',1,55,NULL,'2010-01-04 15:39:22',NULL,NULL),(32,'First Name','ENTRY_FIRST_NAME_MIN_LENGTH','2','Minimum length of first name',2,1,NULL,'2010-01-04 15:39:22',NULL,NULL),(33,'Last Name','ENTRY_LAST_NAME_MIN_LENGTH','2','Minimum length of last name',2,2,NULL,'2010-01-04 15:39:22',NULL,NULL),(34,'Date of Birth','ENTRY_DOB_MIN_LENGTH','10','Minimum length of date of birth',2,3,NULL,'2010-01-04 15:39:22',NULL,NULL),(35,'E-Mail Address','ENTRY_EMAIL_ADDRESS_MIN_LENGTH','6','Minimum length of e-mail address',2,4,NULL,'2010-01-04 15:39:22',NULL,NULL),(36,'Street Address','ENTRY_STREET_ADDRESS_MIN_LENGTH','5','Minimum length of street address',2,5,NULL,'2010-01-04 15:39:22',NULL,NULL),(37,'Company','ENTRY_COMPANY_MIN_LENGTH','0','Minimum length of company name',2,6,NULL,'2010-01-04 15:39:22',NULL,NULL),(38,'Post Code','ENTRY_POSTCODE_MIN_LENGTH','4','Minimum length of post code',2,7,NULL,'2010-01-04 15:39:22',NULL,NULL),(39,'City','ENTRY_CITY_MIN_LENGTH','2','Minimum length of city',2,8,NULL,'2010-01-04 15:39:22',NULL,NULL),(40,'State','ENTRY_STATE_MIN_LENGTH','2','Minimum length of state',2,9,NULL,'2010-01-04 15:39:22',NULL,NULL),(41,'Telephone Number','ENTRY_TELEPHONE_MIN_LENGTH','3','Minimum length of telephone number',2,10,NULL,'2010-01-04 15:39:22',NULL,NULL),(42,'Password','ENTRY_PASSWORD_MIN_LENGTH','5','Minimum length of password',2,11,NULL,'2010-01-04 15:39:22',NULL,NULL),(43,'Credit Card Owner Name','CC_OWNER_MIN_LENGTH','3','Minimum length of credit card owner name',2,12,NULL,'2010-01-04 15:39:22',NULL,NULL),(44,'Credit Card Number','CC_NUMBER_MIN_LENGTH','10','Minimum length of credit card number',2,13,NULL,'2010-01-04 15:39:22',NULL,NULL),(45,'Credit Card CVV Number','CC_CVV_MIN_LENGTH','3','Minimum length of credit card CVV number',2,13,NULL,'2010-01-04 15:39:22',NULL,NULL),(46,'Product Review Text','REVIEW_TEXT_MIN_LENGTH','7','Minimum length of product review text',2,14,'2010-01-11 08:36:28','2010-01-04 15:39:22',NULL,NULL),(47,'Best Sellers','MIN_DISPLAY_BESTSELLERS','1','Minimum number of best sellers to display',2,15,NULL,'2010-01-04 15:39:22',NULL,NULL),(48,'Also Purchased Products','MIN_DISPLAY_ALSO_PURCHASED','1','Minimum number of products to display in the \'This Customer Also Purchased\' box',2,16,NULL,'2010-01-04 15:39:22',NULL,NULL),(49,'Nick Name','ENTRY_NICK_MIN_LENGTH','3','Minimum length of Nick Name',2,1,NULL,'2010-01-04 15:39:22',NULL,NULL),(50,'Address Book Entries','MAX_ADDRESS_BOOK_ENTRIES','5','Maximum address book entries a customer is allowed to have',3,1,NULL,'2010-01-04 15:39:22',NULL,NULL),(51,'Search Results Per Page','MAX_DISPLAY_SEARCH_RESULTS','20','Number of products to list on a search result page',3,2,NULL,'2010-01-04 15:39:22',NULL,NULL),(52,'Prev/Next Navigation Page Links','MAX_DISPLAY_PAGE_LINKS','5','Number of \'number\' links use for page-sets',3,3,NULL,'2010-01-04 15:39:22',NULL,NULL),(53,'Products on Special ','MAX_DISPLAY_SPECIAL_PRODUCTS','9','Number of products on special to display',3,4,NULL,'2010-01-04 15:39:22',NULL,NULL),(54,'New Products Module','MAX_DISPLAY_NEW_PRODUCTS','9','Number of new products to display in a category',3,5,NULL,'2010-01-04 15:39:22',NULL,NULL),(55,'Upcoming Products ','MAX_DISPLAY_UPCOMING_PRODUCTS','10','Number of \'upcoming\' products to display',3,6,NULL,'2010-01-04 15:39:22',NULL,NULL),(56,'Manufacturers List - Scroll Box Size/Style','MAX_MANUFACTURERS_LIST','3','Number of manufacturers names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2010-01-04 15:39:22',NULL,NULL),(57,'Manufacturers List - Verify Product Exist','PRODUCTS_MANUFACTURERS_STATUS','1','Verify that at least 1 product exists and is active for the manufacturer name to show<br /><br />Note: When this feature is ON it can produce slower results on sites with a large number of products and/or manufacturers<br />0= off 1= on',3,7,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(58,'Music Genre List - Scroll Box Size/Style','MAX_MUSIC_GENRES_LIST','3','Number of music genre names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2010-01-04 15:39:22',NULL,NULL),(59,'Record Company List - Scroll Box Size/Style','MAX_RECORD_COMPANY_LIST','3','Number of record company names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2010-01-04 15:39:22',NULL,NULL),(60,'Length of Record Company Name','MAX_DISPLAY_RECORD_COMPANY_NAME_LEN','15','Used in record companies box; maximum length of record company name to display. Longer names will be truncated.',3,8,NULL,'2010-01-04 15:39:22',NULL,NULL),(61,'Length of Music Genre Name','MAX_DISPLAY_MUSIC_GENRES_NAME_LEN','15','Used in music genres box; maximum length of music genre name to display. Longer names will be truncated.',3,8,NULL,'2010-01-04 15:39:22',NULL,NULL),(62,'Length of Manufacturers Name','MAX_DISPLAY_MANUFACTURER_NAME_LEN','15','Used in manufacturers box; maximum length of manufacturers name to display. Longer names will be truncated.',3,8,NULL,'2010-01-04 15:39:22',NULL,NULL),(63,'New Product Reviews Per Page','MAX_DISPLAY_NEW_REVIEWS','6','Number of new reviews to display on each page',3,9,NULL,'2010-01-04 15:39:22',NULL,NULL),(64,'Random Product Reviews for SideBox','MAX_RANDOM_SELECT_REVIEWS','1','Number of random product REVIEWS to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,10,NULL,'2010-01-04 15:39:22',NULL,NULL),(65,'Random New Products for SideBox','MAX_RANDOM_SELECT_NEW','3','Number of random NEW products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,11,NULL,'2010-01-04 15:39:22',NULL,NULL),(66,'Random Products On Special for SideBox','MAX_RANDOM_SELECT_SPECIALS','2','Number of random products on SPECIAL to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,12,NULL,'2010-01-04 15:39:22',NULL,NULL),(67,'Categories To List Per Row','MAX_DISPLAY_CATEGORIES_PER_ROW','3','How many categories to list per row',3,13,NULL,'2010-01-04 15:39:22',NULL,NULL),(68,'New Products Listing- Number Per Page','MAX_DISPLAY_PRODUCTS_NEW','10','Number of new products listed per page',3,14,NULL,'2010-01-04 15:39:22',NULL,NULL),(69,'Best Sellers For Box','MAX_DISPLAY_BESTSELLERS','10','Number of best sellers to display in box',3,15,NULL,'2010-01-04 15:39:22',NULL,NULL),(70,'Also Purchased Products','MAX_DISPLAY_ALSO_PURCHASED','0','Number of products to display in the \'This Customer Also Purchased\' box',3,16,'2010-05-28 09:27:31','2010-01-04 15:39:22',NULL,NULL),(71,'Recent Purchases Box- NOTE: box is disabled ','MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX','6','Number of products to display in the recent purchases box',3,17,NULL,'2010-01-04 15:39:22',NULL,NULL),(72,'Customer Order History List Per Page','MAX_DISPLAY_ORDER_HISTORY','10','Number of orders to display in the order history list in \'My Account\'',3,18,NULL,'2010-01-04 15:39:22',NULL,NULL),(73,'Maximum Display of Customers on Customers Page','MAX_DISPLAY_SEARCH_RESULTS_CUSTOMER','20','',3,19,NULL,'2010-01-04 15:39:22',NULL,NULL),(74,'Maximum Display of Orders on Orders Page','MAX_DISPLAY_SEARCH_RESULTS_ORDERS','20','',3,20,NULL,'2010-01-04 15:39:22',NULL,NULL),(75,'Maximum Display of Products on Reports','MAX_DISPLAY_SEARCH_RESULTS_REPORTS','20','',3,21,NULL,'2010-01-04 15:39:22',NULL,NULL),(76,'Maximum Categories Products Display List','MAX_DISPLAY_RESULTS_CATEGORIES','10','Number of products to list per screen',3,22,NULL,'2010-01-04 15:39:22',NULL,NULL),(77,'Products Listing- Number Per Page','MAX_DISPLAY_PRODUCTS_LISTING','10','Maximum Number of Products to list per page on main page',3,30,NULL,'2010-01-04 15:39:22',NULL,NULL),(78,'Products Attributes - Option Names and Values Display','MAX_ROW_LISTS_OPTIONS','10','Maximum number of option names and values to display in the products attributes page',3,24,NULL,'2010-01-04 15:39:22',NULL,NULL),(79,'Products Attributes - Attributes Controller Display','MAX_ROW_LISTS_ATTRIBUTES_CONTROLLER','30','Maximum number of attributes to display in the Attributes Controller page',3,25,NULL,'2010-01-04 15:39:22',NULL,NULL),(80,'Products Attributes - Downloads Manager Display','MAX_DISPLAY_SEARCH_RESULTS_DOWNLOADS_MANAGER','30','Maximum number of attributes downloads to display in the Downloads Manager page',3,26,NULL,'2010-01-04 15:39:22',NULL,NULL),(81,'Featured Products - Number to Display Admin','MAX_DISPLAY_SEARCH_RESULTS_FEATURED_ADMIN','10','Number of featured products to list per screen - Admin',3,27,NULL,'2010-01-04 15:39:22',NULL,NULL),(82,'Maximum Display of Featured Products - Main Page','MAX_DISPLAY_SEARCH_RESULTS_FEATURED','9','Number of featured products to list on main page',3,28,NULL,'2010-01-04 15:39:22',NULL,NULL),(83,'Maximum Display of Featured Products Page','MAX_DISPLAY_PRODUCTS_FEATURED_PRODUCTS','10','Number of featured products to list per screen',3,29,NULL,'2010-01-04 15:39:22',NULL,NULL),(84,'Random Featured Products for SideBox','MAX_RANDOM_SELECT_FEATURED_PRODUCTS','2','Number of random FEATURED products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,30,NULL,'2010-01-04 15:39:22',NULL,NULL),(85,'Maximum Display of Specials Products - Main Page','MAX_DISPLAY_SPECIAL_PRODUCTS_INDEX','9','Number of special products to list on main page',3,31,NULL,'2010-01-04 15:39:22',NULL,NULL),(86,'New Product Listing - Limited to ...','SHOW_NEW_PRODUCTS_LIMIT','0','Limit the New Product Listing to<br />0= All Products<br />1= Current Month<br />7= 7 Days<br />14= 14 Days<br />30= 30 Days<br />60= 60 Days<br />90= 90 Days<br />120= 120 Days',3,40,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'7\', \'14\', \'30\', \'60\', \'90\', \'120\'), '),(87,'Maximum Display of Products All Page','MAX_DISPLAY_PRODUCTS_ALL','10','Number of products to list per screen',3,45,NULL,'2010-01-04 15:39:22',NULL,NULL),(88,'Maximum Display of Language Flags in Language Side Box','MAX_LANGUAGE_FLAGS_COLUMNS','3','Number of Language Flags per Row',3,50,'2010-01-10 10:46:29','2010-01-04 15:39:22',NULL,NULL),(89,'Maximum File Upload Size','MAX_FILE_UPLOAD_SIZE','2048000','What is the Maximum file size for uploads?<br />Default= 2048000',3,60,NULL,'2010-01-04 15:39:22',NULL,NULL),(90,'Allowed Filename Extensions for uploading','UPLOAD_FILENAME_EXTENSIONS','jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip','List the permissible filetypes (filename extensions) to be allowed when files are uploaded to your site by customers. Separate multiple values with commas(,). Do not include the dot(.).<br /><br />Suggested setting: \"jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip\"',3,61,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_textarea('),(91,'Maximum Orders Detail Display on Admin Orders Listing','MAX_DISPLAY_RESULTS_ORDERS_DETAILS_LISTING','0','Maximum number of Order Details<br />0 = Unlimited',3,65,'2010-01-12 15:25:55','2010-01-04 15:39:22',NULL,NULL),(92,'Maximum PayPal IPN Display on Admin Listing','MAX_DISPLAY_SEARCH_RESULTS_PAYPAL_IPN','20','Maximum number of PayPal IPN Lisings in Admin<br />Default is 20',3,66,NULL,'2010-01-04 15:39:22',NULL,NULL),(93,'Maximum Display Columns Products to Multiple Categories Manager','MAX_DISPLAY_PRODUCTS_TO_CATEGORIES_COLUMNS','3','Maximum Display Columns Products to Multiple Categories Manager<br />3 = Default',3,70,NULL,'2010-01-04 15:39:22',NULL,NULL),(94,'Maximum Display EZ-Pages','MAX_DISPLAY_SEARCH_RESULTS_EZPAGE','20','Maximum Display EZ-Pages<br />20 = Default',3,71,NULL,'2010-01-04 15:39:22',NULL,NULL),(95,'Small Image Width','SMALL_IMAGE_WIDTH','110','The pixel width of small images',4,1,'2010-01-06 21:36:54','2010-01-04 15:39:22',NULL,NULL),(96,'Small Image Height','SMALL_IMAGE_HEIGHT','147','The pixel height of small images',4,2,'2010-01-06 20:37:07','2010-01-04 15:39:22',NULL,NULL),(97,'Heading Image Width - Admin','HEADING_IMAGE_WIDTH','57','The pixel width of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin',4,3,NULL,'2010-01-04 15:39:22',NULL,NULL),(98,'Heading Image Height - Admin','HEADING_IMAGE_HEIGHT','40','The pixel height of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin',4,4,NULL,'2010-01-04 15:39:22',NULL,NULL),(99,'Subcategory Image Width','SUBCATEGORY_IMAGE_WIDTH','100','The pixel width of subcategory images',4,5,NULL,'2010-01-04 15:39:22',NULL,NULL),(100,'Subcategory Image Height','SUBCATEGORY_IMAGE_HEIGHT','57','The pixel height of subcategory images',4,6,NULL,'2010-01-04 15:39:22',NULL,NULL),(101,'Calculate Image Size','CONFIG_CALCULATE_IMAGE_SIZE','true','Calculate the size of images?',4,7,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(102,'Image Required','IMAGE_REQUIRED','true','Enable to display broken images. Good for development.',4,8,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(103,'Image - Shopping Cart Status','IMAGE_SHOPPING_CART_STATUS','1','Show product image in the shopping cart?<br />0= off 1= on',4,9,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(104,'Image - Shopping Cart Width','IMAGE_SHOPPING_CART_WIDTH','50','Default = 50',4,10,NULL,'2010-01-04 15:39:22',NULL,NULL),(105,'Image - Shopping Cart Height','IMAGE_SHOPPING_CART_HEIGHT','40','Default = 40',4,11,NULL,'2010-01-04 15:39:22',NULL,NULL),(106,'Category Icon Image Width - Product Info Pages','CATEGORY_ICON_IMAGE_WIDTH','57','The pixel width of Category Icon heading images for Product Info Pages',4,13,NULL,'2010-01-04 15:39:22',NULL,NULL),(107,'Category Icon Image Height - Product Info Pages','CATEGORY_ICON_IMAGE_HEIGHT','40','The pixel height of Category Icon heading images for Product Info Pages',4,14,NULL,'2010-01-04 15:39:22',NULL,NULL),(108,'Top Subcategory Image Width','SUBCATEGORY_IMAGE_TOP_WIDTH','150','The pixel width of Top subcategory images<br />Top subcategory is when the Category contains subcategories',4,15,NULL,'2010-01-04 15:39:22',NULL,NULL),(109,'Top Subcategory Image Height','SUBCATEGORY_IMAGE_TOP_HEIGHT','85','The pixel height of Top subcategory images<br />Top subcategory is when the Category contains subcategories',4,16,NULL,'2010-01-04 15:39:22',NULL,NULL),(110,'Product Info - Image Width','MEDIUM_IMAGE_WIDTH','200','The pixel width of Product Info images',4,20,'2010-01-06 22:53:33','2010-01-04 15:39:22',NULL,NULL),(111,'Product Info - Image Height','MEDIUM_IMAGE_HEIGHT','267','The pixel height of Product Info images',4,21,'2010-01-06 20:38:07','2010-01-04 15:39:22',NULL,NULL),(112,'Product Info - Image Medium Suffix','IMAGE_SUFFIX_MEDIUM','_MED','Product Info Medium Image Suffix<br />Default = _MED',4,22,'2010-01-06 20:38:20','2010-01-04 15:39:22',NULL,NULL),(113,'Product Info - Image Large Suffix','IMAGE_SUFFIX_LARGE','_LRG','Product Info Large Image Suffix<br />Default = _LRG',4,23,NULL,'2010-01-04 15:39:22',NULL,NULL),(114,'Product Info - Number of Additional Images per Row','IMAGES_AUTO_ADDED','3','Product Info - Enter the number of additional images to display per row<br />Default = 3',4,30,NULL,'2010-01-04 15:39:22',NULL,NULL),(115,'Image - Product Listing Width','IMAGE_PRODUCT_LISTING_WIDTH','300','Default = 100',4,40,'2010-01-06 20:42:58','2010-01-04 15:39:22',NULL,NULL),(116,'Image - Product Listing Height','IMAGE_PRODUCT_LISTING_HEIGHT','400','Default = 80',4,41,'2010-01-06 20:43:09','2010-01-04 15:39:22',NULL,NULL),(117,'Image - Product New Listing Width','IMAGE_PRODUCT_NEW_LISTING_WIDTH','100','Default = 100',4,42,NULL,'2010-01-04 15:39:22',NULL,NULL),(118,'Image - Product New Listing Height','IMAGE_PRODUCT_NEW_LISTING_HEIGHT','80','Default = 80',4,43,NULL,'2010-01-04 15:39:22',NULL,NULL),(119,'Image - New Products Width','IMAGE_PRODUCT_NEW_WIDTH','110','Default = 100',4,44,'2010-01-06 21:38:00','2010-01-04 15:39:22',NULL,NULL),(120,'Image - New Products Height','IMAGE_PRODUCT_NEW_HEIGHT','147','Default = 80',4,45,'2010-01-06 21:38:11','2010-01-04 15:39:22',NULL,NULL),(121,'Image - Featured Products Width','IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH','110','Default = 100',4,46,'2010-01-06 20:41:20','2010-01-04 15:39:22',NULL,NULL),(122,'Image - Featured Products Height','IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT','147','Default = 80',4,47,'2010-01-06 20:41:28','2010-01-04 15:39:22',NULL,NULL),(123,'Image - Product All Listing Width','IMAGE_PRODUCT_ALL_LISTING_WIDTH','110','Default = 100',4,48,'2010-01-06 20:41:02','2010-01-04 15:39:22',NULL,NULL),(124,'Image - Product All Listing Height','IMAGE_PRODUCT_ALL_LISTING_HEIGHT','147','Default = 80',4,49,'2010-01-06 20:41:09','2010-01-04 15:39:22',NULL,NULL),(125,'Product Image - No Image Status','PRODUCTS_IMAGE_NO_IMAGE_STATUS','1','Use automatic No Image when none is added to product<br />0= off<br />1= On',4,60,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(126,'Product Image - No Image picture','PRODUCTS_IMAGE_NO_IMAGE','no_picture.gif','Use automatic No Image when none is added to product<br />Default = no_picture.gif',4,61,NULL,'2010-01-04 15:39:22',NULL,NULL),(127,'Image - Use Proportional Images on Products and Categories','PROPORTIONAL_IMAGES_STATUS','1','Use Proportional Images on Products and Categories?<br /><br />NOTE: Do not use 0 height or width settings for Proportion Images<br />0= off 1= on',4,75,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(128,'Email Salutation','ACCOUNT_GENDER','true','Display salutation choice during account creation and with account information',5,1,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(129,'Date of Birth','ACCOUNT_DOB','false','Display date of birth field during account creation and with account information<br />NOTE: Set Minimum Value Date of Birth to blank for not required<br />Set Minimum Value Date of Birth > 0 to require',5,2,'2010-01-11 07:58:29','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(130,'Company','ACCOUNT_COMPANY','false','Display company field during account creation and with account information',5,3,'2010-01-11 08:00:35','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(131,'Address Line 2','ACCOUNT_SUBURB','true','Display address line 2 field during account creation and with account information',5,4,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(132,'State','ACCOUNT_STATE','true','Display state field during account creation and with account information',5,5,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(133,'State - Always display as pulldown?','ACCOUNT_STATE_DRAW_INITIAL_DROPDOWN','true','When state field is displayed, should it always be a pulldown menu?',5,5,'2010-01-11 07:58:43','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(134,'Create Account Default Country ID','SHOW_CREATE_ACCOUNT_DEFAULT_COUNTRY','223','Set Create Account Default Country ID to:<br />Default is 223',5,6,NULL,'2010-01-04 15:39:22','zen_get_country_name','zen_cfg_pull_down_country_list_none('),(135,'Fax Number','ACCOUNT_FAX_NUMBER','true','Display fax number field during account creation and with account information',5,10,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(136,'Show Newsletter Checkbox','ACCOUNT_NEWSLETTER_STATUS','0','Show Newsletter Checkbox<br />0= off<br />1= Display Unchecked<br />2= Display Checked<br /><strong>Note: Defaulting this to accepted may be in violation of certain regulations for your state or country</strong>',5,45,'2010-01-11 07:58:19','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(137,'Customer Default Email Preference','ACCOUNT_EMAIL_PREFERENCE','0','Set the Default Customer Default Email Preference<br />0= Text<br />1= HTML<br />',5,46,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(138,'Customer Product Notification Status','CUSTOMERS_PRODUCTS_NOTIFICATION_STATUS','1','Customer should be asked about product notifications after checkout success and in account preferences<br />0= Never ask<br />1= Ask (ignored on checkout if has already selected global notifications)<br /><br />Note: Sidebox must be turned off separately',5,50,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(139,'Customer Shop Status - View Shop and Prices','CUSTOMERS_APPROVAL','0','Customer must be approved to shop<br />0= Not required<br />1= Must login to browse<br />2= May browse but no prices unless logged in<br />3= Showroom Only<br /><br />It is recommended that Option 2 be used for the purposes of Spiders if you wish customers to login to see prices.',5,55,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(140,'Customer Approval Status - Authorization Pending','CUSTOMERS_APPROVAL_AUTHORIZATION','0','Customer must be Authorized to shop<br />0= Not required<br />1= Must be Authorized to Browse<br />2= May browse but no prices unless Authorized<br />3= Customer May Browse and May see Prices but Must be Authorized to Buy<br /><br />It is recommended that Option 2 or 3 be used for the purposes of Spiders',5,65,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(141,'Customer Authorization: filename','CUSTOMERS_AUTHORIZATION_FILENAME','customers_authorization','Customer Authorization filename<br />Note: Do not include the extension<br />Default=customers_authorization',5,66,NULL,'2010-01-04 15:39:22',NULL,''),(142,'Customer Authorization: Hide Header','CUSTOMERS_AUTHORIZATION_HEADER_OFF','false','Customer Authorization: Hide Header <br />(true=hide false=show)',5,67,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(143,'Customer Authorization: Hide Column Left','CUSTOMERS_AUTHORIZATION_COLUMN_LEFT_OFF','false','Customer Authorization: Hide Column Left <br />(true=hide false=show)',5,68,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(144,'Customer Authorization: Hide Column Right','CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF','false','Customer Authorization: Hide Column Right <br />(true=hide false=show)',5,69,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(145,'Customer Authorization: Hide Footer','CUSTOMERS_AUTHORIZATION_FOOTER_OFF','false','Customer Authorization: Hide Footer <br />(true=hide false=show)',5,70,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(146,'Customer Authorization: Hide Prices','CUSTOMERS_AUTHORIZATION_PRICES_OFF','false','Customer Authorization: Hide Prices <br />(true=hide false=show)',5,71,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(147,'Customers Referral Status','CUSTOMERS_REFERRAL_STATUS','0','Customers Referral Code is created from<br />0= Off<br />1= 1st Discount Coupon Code used<br />2= Customer can add during create account or edit if blank<br /><br />NOTE: Once the Customers Referral Code has been set it can only be changed in the Admin Customer',5,80,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(148,'Installed Modules','MODULE_PAYMENT_INSTALLED','paypaldp.php;paypalwpp.php','List of payment module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: cc.php;cod.php;paypal.php)',6,0,'2010-05-28 10:12:04','2010-01-04 15:39:22',NULL,NULL),(149,'Installed Modules','MODULE_ORDER_TOTAL_INSTALLED','ot_subtotal.php;ot_shipping.php;ot_coupon.php;ot_group_pricing.php;ot_tax.php;ot_loworderfee.php;ot_gv.php;ot_total.php','List of order_total module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ot_subtotal.php;ot_tax.php;ot_shipping.php;ot_total.php)',6,0,NULL,'2010-01-04 15:39:22',NULL,NULL),(150,'Installed Modules','MODULE_SHIPPING_INSTALLED','fedexexpress.php;fedexground.php;ups.php','List of shipping module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ups.php;flat.php;item.php)',6,0,'2010-01-17 00:05:04','2010-01-04 15:39:22',NULL,NULL),(685,'Confirm Email','FEC_CONFIRM_EMAIL','false','Require user to enter email twice for confirmation?',31,24,NULL,'2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(686,'Shipping Address','FEC_SHIPPING_ADDRESS','true','Display the shipping address form on the login and COWOA pages?',31,25,'2010-05-28 09:51:22','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(687,'Copy Billing','FEC_COPYBILLING','true','If the shipping address form is enabled, should the copy billing address checkbox be checked by default?',31,26,'2010-05-28 10:13:38','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(680,'Activate Checkbox Field','FEC_CHECKBOX','false','Activate checkbox field to appear on checkout page?',31,18,'2010-05-28 09:57:17','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(681,'Easy Sign-Up and Login','FEC_EASY_SIGNUP_STATUS','false','Activate Easy Sign-Up and Login?',31,20,'2010-05-28 10:02:29','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(682,'Display Order Total','FEC_ORDER_TOTAL','true','Display the Order Total sidebox on login?',31,21,'2010-01-12 12:32:11','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(694,'Enable this Payment Module','MODULE_PAYMENT_PAYPALWPP_STATUS','True','Do you want to enable this payment module?',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(674,'Checkout Confirmation Alternate Text','FEC_CHECKOUT_CONFIRMATION_TEXT','Your order is being processed, please wait...','Alternate text to be displayed on Checkout Confirmation page:',31,12,'2010-01-12 12:31:27','2010-01-12 08:59:53',NULL,NULL),(675,'Display Checkout in Split Column','FEC_SPLIT_CHECKOUT','false','Display the checkout page in a split column format?',31,13,'2010-05-27 23:21:26','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(676,'Activate Drop Down List','FEC_DROP_DOWN','false','Activate drop down list to appear on checkout page?',31,14,NULL,'2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(677,'Gift Wrapping Module Switch','FEC_GIFT_WRAPPING_SWITCH','false','If the gift wrapping module is installed, set to true to activate',31,15,NULL,'2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(678,'Activate Gift Message Field','FEC_GIFT_MESSAGE','false','Activate gift message field to appear on checkout page?',31,16,'2010-01-12 15:27:59','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(695,'Enable Direct Payment','MODULE_PAYMENT_PAYPALWPP_DIRECT_ENABLED','False','Would you like to enable credit card payments through PayPal DIRECTLY on your website? <br />(<strong>NOTE:</strong> You need to be subscribed to Website Payments Pro or Payflow Pro to use this feature.)',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(186,'Include Tax','MODULE_ORDER_TOTAL_GROUP_PRICING_INC_TAX','false','Include Tax value in amount before discount calculation?',6,6,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(187,'This module is installed','MODULE_ORDER_TOTAL_GROUP_PRICING_STATUS','true','',6,1,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\'), '),(188,'Sort Order','MODULE_ORDER_TOTAL_GROUP_PRICING_SORT_ORDER','290','Sort order of display.',6,2,NULL,'2010-01-04 15:39:22',NULL,NULL),(189,'Include Shipping','MODULE_ORDER_TOTAL_GROUP_PRICING_INC_SHIPPING','false','Include Shipping value in amount before discount calculation?',6,5,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(190,'Re-calculate Tax','MODULE_ORDER_TOTAL_GROUP_PRICING_CALC_TAX','Standard','Re-Calculate Tax',6,7,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'), '),(191,'Tax Class','MODULE_ORDER_TOTAL_GROUP_PRICING_TAX_CLASS','0','Use the following tax class when treating Group Discount as Credit Note.',6,0,NULL,'2010-01-04 15:39:22','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(683,'Display Confidence Box','FEC_CONFIDENCE','true','Display the \"Shop With Confidence\" sidebox on login?',31,22,'2010-01-12 12:32:19','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(684,'COWOA Position','FEC_NOACCOUNT_POSITION','top','Display the COWOA fieldset above the registration form (top) or beneath the login (side)?',31,23,NULL,'2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'top\', \'side\'),'),(839,'Currency Code','MODULE_SHIPPING_FEDEX_GROUND_CURRENCY','USD','3 digit currency code (default = USD)',6,26,NULL,'2010-01-16 23:52:16',NULL,NULL),(698,'Express Checkout: Select Cheapest Shipping Automatically','MODULE_PAYMENT_PAYPALWPP_AUTOSELECT_CHEAPEST_SHIPPING','No','When customer returns from PayPal, do we want to automatically select the Cheapest shipping method and skip the shipping page? (making it more *express*)<br />Note: enabling this means the customer does *not* have easy access to select an alternate shipping method (without going back to the Checkout-Step-1 page)',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(696,'Live or Sandbox','MODULE_PAYMENT_PAYPALWPP_SERVER','live','<strong>Live: </strong> Used to process Live transactions<br><strong>Sandbox: </strong>For developers and testing',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'live\', \'sandbox\'), '),(198,'Default Currency','DEFAULT_CURRENCY','USD','Default Currency',6,0,NULL,'2010-01-04 15:39:22',NULL,NULL),(199,'Default Language','DEFAULT_LANGUAGE','en','Default Language',6,0,NULL,'2010-01-04 15:39:22',NULL,NULL),(200,'Default Order Status For New Orders','DEFAULT_ORDERS_STATUS_ID','1','When a new order is created, this order status will be assigned to it.',6,0,NULL,'2010-01-04 15:39:22',NULL,NULL),(201,'Admin configuration_key shows','ADMIN_CONFIGURATION_KEY_ON','0','Manually switch to value of 1 to see the configuration_key name in configuration displays',6,0,NULL,'2010-01-04 15:39:22',NULL,NULL),(202,'Country of Origin','SHIPPING_ORIGIN_COUNTRY','223','Select the country of origin to be used in shipping quotes.',7,1,NULL,'2010-01-04 15:39:22','zen_get_country_name','zen_cfg_pull_down_country_list('),(203,'Postal Code','SHIPPING_ORIGIN_ZIP','48836','Enter the Postal Code (ZIP) of the Store to be used in shipping quotes. NOTE: For USA zip codes, only use your 5 digit zip code.',7,2,'2010-01-16 23:05:49','2010-01-04 15:39:22',NULL,NULL),(204,'Enter the Maximum Package Weight you will ship','SHIPPING_MAX_WEIGHT','48','Carriers have a max weight limit for a single package. This is a common one for all.',7,3,'2010-01-10 10:34:00','2010-01-04 15:39:22',NULL,NULL),(205,'Package Tare Small to Medium - added percentage:weight','SHIPPING_BOX_WEIGHT','0:0','What is the weight of typical packaging of small to medium packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0',7,4,'2010-01-10 10:36:07','2010-01-04 15:39:22',NULL,NULL),(206,'Larger packages - added packaging percentage:weight','SHIPPING_BOX_PADDING','0:0','What is the weight of typical packaging for Large packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0',7,5,'2010-01-10 10:35:55','2010-01-04 15:39:22',NULL,NULL),(207,'Display Number of Boxes and Weight Status','SHIPPING_BOX_WEIGHT_DISPLAY','3','Display Shipping Weight and Number of Boxes?<br /><br />0= off<br />1= Boxes Only<br />2= Weight Only<br />3= Both Boxes and Weight',7,15,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(208,'Shipping Estimator Display Settings for Shopping Cart','SHOW_SHIPPING_ESTIMATOR_BUTTON','2','<br />0= Off<br />1= Display as Button on Shopping Cart<br />2= Display as Listing on Shopping Cart Page',7,20,'2010-01-17 00:04:07','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(209,'Display Order Comments on Admin Invoice','ORDER_COMMENTS_INVOICE','1','Do you want to display the Order Comments on the Admin Invoice?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order',7,25,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(210,'Display Order Comments on Admin Packing Slip','ORDER_COMMENTS_PACKING_SLIP','1','Do you want to display the Order Comments on the Admin Packing Slip?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order',7,26,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(211,'Order Free Shipping 0 Weight Status','ORDER_WEIGHT_ZERO_STATUS','0','If there is no weight to the order, does the order have Free Shipping?<br />0= no<br />1= yes<br /><br />Note: When using Free Shipping, Enable the Free Shipping Module this will only show when shipping is free.',7,15,'2010-01-17 00:04:32','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(212,'Display Product Image','PRODUCT_LIST_IMAGE','1','Do you want to display the Product Image?',8,1,'2010-01-06 22:01:41','2010-01-04 15:39:22',NULL,NULL),(213,'Display Product Manufacturer Name','PRODUCT_LIST_MANUFACTURER','0','Do you want to display the Product Manufacturer Name?',8,2,NULL,'2010-01-04 15:39:22',NULL,NULL),(214,'Display Product Model','PRODUCT_LIST_MODEL','0','Do you want to display the Product Model?',8,3,NULL,'2010-01-04 15:39:22',NULL,NULL),(215,'Display Product Name','PRODUCT_LIST_NAME','2','Do you want to display the Product Name?',8,4,NULL,'2010-01-04 15:39:22',NULL,NULL),(216,'Display Product Price/Add to Cart','PRODUCT_LIST_PRICE','3','Do you want to display the Product Price/Add to Cart',8,5,NULL,'2010-01-04 15:39:22',NULL,NULL),(217,'Display Product Quantity','PRODUCT_LIST_QUANTITY','0','Do you want to display the Product Quantity?',8,6,NULL,'2010-01-04 15:39:22',NULL,NULL),(218,'Display Product Weight','PRODUCT_LIST_WEIGHT','1','Do you want to display the Product Weight?',8,7,'2010-05-27 21:52:14','2010-01-04 15:39:22',NULL,NULL),(219,'Display Product Price/Add to Cart Column Width','PRODUCTS_LIST_PRICE_WIDTH','125','Define the width of the Price/Add to Cart column<br />Default= 125',8,8,NULL,'2010-01-04 15:39:22',NULL,NULL),(220,'Display Category/Manufacturer Filter (0=off; 1=on)','PRODUCT_LIST_FILTER','1','Do you want to display the Category/Manufacturer Filter?',8,9,'2010-01-07 10:26:06','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(221,'Prev/Next Split Page Navigation (1-top, 2-bottom, 3-both)','PREV_NEXT_BAR_LOCATION','3','Sets the location of the Prev/Next Split Page Navigation',8,10,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(222,'Display Product Listing Default Sort Order','PRODUCT_LISTING_DEFAULT_SORT_ORDER','','Product Listing Default sort order?<br />NOTE: Leave Blank for Product Sort Order. Sort the Product Listing in the order you wish for the default display to start in to get the sort order setting. Example: 2a',8,15,NULL,'2010-01-04 15:39:22',NULL,NULL),(223,'Display Product Add to Cart Button (0=off; 1=on; 2=on with Qty Box per Product)','PRODUCT_LIST_PRICE_BUY_NOW','2','Do you want to display the Add to Cart Button?<br /><br /><strong>NOTE:</strong> Turn OFF Display Multiple Products Qty Box Status to use Option 2 on with Qty Box per Product',8,20,'2010-05-27 21:53:04','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(224,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',8,25,'2010-01-07 10:26:48','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(225,'Display Product Description','PRODUCT_LIST_DESCRIPTION','150','Do you want to display the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',8,30,NULL,'2010-01-04 15:39:22',NULL,NULL),(226,'Product Listing Ascending Sort Order','PRODUCT_LIST_SORT_ORDER_ASCENDING','+','What do you want to use to indicate Sort Order Ascending?<br />Default = +',8,40,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_textarea_small('),(227,'Product Listing Descending Sort Order','PRODUCT_LIST_SORT_ORDER_DESCENDING','-','What do you want to use to indicate Sort Order Descending?<br />Default = -',8,41,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_textarea_small('),(228,'Include Product Listing Alpha Sorter Dropdown','PRODUCT_LIST_ALPHA_SORTER','true','Do you want to include an Alpha Filter dropdown on the Product Listing?',8,50,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(229,'Include Product Listing Sub Categories Image','PRODUCT_LIST_CATEGORIES_IMAGE_STATUS','true','Do you want to include the Sub Categories Image on the Product Listing?',8,52,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(230,'Include Product Listing Top Categories Image','PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP','true','Do you want to include the Top Categories Image on the Product Listing?',8,53,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(231,'Show SubCategories on Main Page while navigating','PRODUCT_LIST_CATEGORY_ROW_STATUS','1','Show Sub-Categories on Main Page while navigating through Categories<br /><br />0= off<br />1= on',8,60,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(232,'Check stock level','STOCK_CHECK','false','Check to see if sufficent stock is available',9,1,'2010-01-10 10:48:44','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(233,'Subtract stock','STOCK_LIMITED','false','Subtract product in stock by product orders',9,2,'2010-01-10 10:48:50','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(234,'Allow Checkout','STOCK_ALLOW_CHECKOUT','true','Allow customer to checkout even if there is insufficient stock',9,3,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(235,'Mark product out of stock','STOCK_MARK_PRODUCT_OUT_OF_STOCK','***','Display something on screen so customer can see which product has insufficient stock',9,4,NULL,'2010-01-04 15:39:22',NULL,NULL),(236,'Stock Re-order level','STOCK_REORDER_LEVEL','5','Define when stock needs to be re-ordered',9,5,'2010-01-10 10:49:07','2010-01-04 15:39:22',NULL,NULL),(237,'Products status in Catalog when out of stock should be set to','SHOW_PRODUCTS_SOLD_OUT','0','Show Products when out of stock<br /><br />0= set product status to OFF<br />1= leave product status ON',9,10,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(238,'Show Sold Out Image in place of Add to Cart','SHOW_PRODUCTS_SOLD_OUT_IMAGE','1','Show Sold Out Image instead of Add to Cart Button<br /><br />0= off<br />1= on',9,11,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(239,'Product Quantity Decimals','QUANTITY_DECIMALS','0','Allow how many decimals on Quantity<br /><br />0= off',9,15,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(240,'Show Shopping Cart - Delete Checkboxes or Delete Button','SHOW_SHOPPING_CART_DELETE','3','Show on Shopping Cart Delete Button and/or Checkboxes<br /><br />1= Delete Button Only<br />2= Checkbox Only<br />3= Both Delete Button and Checkbox',9,20,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(241,'Show Shopping Cart - Update Cart Button Location','SHOW_SHOPPING_CART_UPDATE','3','Show on Shopping Cart Update Cart Button Location as:<br /><br />1= Next to each Qty Box<br />2= Below all Products<br />3= Both Next to each Qty Box and Below all Products',9,22,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(242,'Show New Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_NEW_PRODUCTS','1','Show New Products on empty Shopping Cart Page<br />0= off or set the sort order',9,30,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(243,'Show Featured Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_FEATURED_PRODUCTS','2','Show Featured Products on empty Shopping Cart Page<br />0= off or set the sort order',9,31,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(244,'Show Special Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_SPECIALS_PRODUCTS','3','Show Special Products on empty Shopping Cart Page<br />0= off or set the sort order',9,32,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(245,'Show Upcoming Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_UPCOMING','4','Show Upcoming Products on empty Shopping Cart Page<br />0= off or set the sort order',9,33,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(246,'Show Notice of Combining Shopping Cart on Login','SHOW_SHOPPING_CART_COMBINED','1','When a customer logs in and has a previously stored shopping cart, the products are combined with the existing shopping cart.<br /><br />Do you wish to display a Notice to the customer?<br /><br />0= OFF, do not display a notice<br />1= Yes show notice and go to shopping cart<br />2= Yes show notice, but do not go to shopping cart',9,35,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(247,'Store Page Parse Time','STORE_PAGE_PARSE_TIME','false','Store the time it takes to parse a page',10,1,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(248,'Log Destination','STORE_PAGE_PARSE_TIME_LOG','/home/myadiron/public_html/cache/page_parse_time.log','Directory and filename of the page parse time log',10,2,NULL,'2010-01-04 15:39:22',NULL,NULL),(249,'Log Date Format','STORE_PARSE_DATE_TIME_FORMAT','%d/%m/%Y %H:%M:%S','The date format',10,3,NULL,'2010-01-04 15:39:22',NULL,NULL),(250,'Display The Page Parse Time','DISPLAY_PAGE_PARSE_TIME','false','Display the page parse time on the bottom of each page<br />You do not need to store the times to display them in the Catalog',10,4,'2010-02-09 23:04:56','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(251,'Store Database Queries','STORE_DB_TRANSACTIONS','false','Store the database queries in the page parse time log (PHP4 only)',10,5,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(252,'E-Mail Transport Method','EMAIL_TRANSPORT','PHP','Defines the method for sending mail.<br /><strong>PHP</strong> is the default, and uses built-in PHP wrappers for processing.<br />Servers running on Windows and MacOS should change this setting to <strong>SMTP</strong>.<br /><br /><strong>SMTPAUTH</strong> should only be used if your server requires SMTP authorization to send messages. You must also configure your SMTPAUTH settings in the appropriate fields in this admin section.<br /><br /><strong>sendmail</strong> is for linux/unix hosts using the sendmail program on the server<br /><strong>\"sendmail-f\"</strong> is only for servers which require the use of the -f parameter to send mail. This is a security setting often used to prevent spoofing. Will cause errors if your host mailserver is not configured to use it.<br /><br /><strong>Qmail</strong> is used for linux/unix hosts running Qmail as sendmail wrapper at /var/qmail/bin/sendmail.',12,1,'2010-02-21 20:15:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'PHP\', \'sendmail\', \'sendmail-f\', \'smtp\', \'smtpauth\', \'Qmail\'),'),(253,'SMTP Email Account Mailbox','EMAIL_SMTPAUTH_MAILBOX','eorder@adirondakchairs.net','Enter the mailbox account name (me@mydomain.com) supplied by your host. This is the account name that your host requires for SMTP authentication.<br />Only required if using SMTP Authentication for email.',12,101,'2010-01-27 18:16:03','2010-01-04 15:39:22',NULL,NULL),(254,'SMTP Email Account Password','EMAIL_SMTPAUTH_PASSWORD','i~S&/m%F~4hq','Enter the password for your SMTP mailbox. <br />Only required if using SMTP Authentication for email.',12,101,'2010-01-27 18:17:11','2010-01-04 15:39:22','zen_cfg_password_display',NULL),(255,'SMTP Email Mail Host','EMAIL_SMTPAUTH_MAIL_SERVER','mail.adirondakchairs.net','Enter the DNS name of your SMTP mail server.<br />ie: mail.mydomain.com<br />or 55.66.77.88<br />Only required if using SMTP Authentication for email.',12,101,'2010-01-27 18:17:40','2010-01-04 15:39:22',NULL,NULL),(256,'SMTP Email Mail Server Port','EMAIL_SMTPAUTH_MAIL_SERVER_PORT','26','Enter the IP port number that your SMTP mailserver operates on.<br />Only required if using SMTP Authentication for email.',12,101,'2010-01-27 18:17:59','2010-01-04 15:39:22',NULL,NULL),(257,'Convert currencies for Text emails','CURRENCIES_TRANSLATIONS','&pound;,Â£:&euro;,â‚¬','What currency conversions do you need for Text emails?<br />Default = &amp;pound;,Â£:&amp;euro;,â‚¬',12,120,NULL,'2003-11-21 00:00:00',NULL,'zen_cfg_textarea_small('),(258,'E-Mail Linefeeds','EMAIL_LINEFEED','LF','Defines the character sequence used to separate mail headers.',12,2,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'LF\', \'CRLF\'),'),(259,'Use MIME HTML When Sending Emails','EMAIL_USE_HTML','false','Send e-mails in HTML format',12,3,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(260,'Verify E-Mail Addresses Through DNS','ENTRY_EMAIL_ADDRESS_CHECK','false','Verify e-mail address through a DNS server',6,6,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(261,'Send E-Mails','SEND_EMAILS','true','Send out e-mails',12,5,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(262,'Email Archiving Active?','EMAIL_ARCHIVE','false','If you wish to have email messages archived/stored when sent, set this to \"true\".',12,6,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(263,'E-Mail Friendly-Errors','EMAIL_FRIENDLY_ERRORS','false','Do you want to display friendly errors if emails fail?  Setting this to false will display PHP errors and likely cause the script to fail. Only set to false while troubleshooting, and true for a live shop.',12,7,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(264,'Email Address (Displayed to Contact you)','STORE_OWNER_EMAIL_ADDRESS','info@adirondakchairs.net','Email address of Store Owner.  Used as \"display only\" when informing customers of how to contact you.',12,10,'2010-01-27 18:08:39','2010-01-04 15:39:22',NULL,NULL),(265,'Email Address (sent FROM)','EMAIL_FROM','admin@adirondakchairs.net','Address from which email messages will be \"sent\" by default. Can be over-ridden at compose-time in admin modules.',12,11,'2010-01-27 18:09:35','2010-01-04 15:39:22',NULL,NULL),(266,'Emails must send from known domain?','EMAIL_SEND_MUST_BE_STORE','Yes','Does your mailserver require that all outgoing emails have their \"from\" address match a known domain that exists on your webserver?<br /><br />This is often required in order to prevent spoofing and spam broadcasts.  If set to Yes, this will cause the email address (sent FROM) to be used as the \"from\" address on all outgoing mail.',12,11,NULL,'0001-01-01 00:00:00',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(267,'Email Admin Format?','ADMIN_EXTRA_EMAIL_FORMAT','TEXT','Please select the Admin extra email format',12,12,NULL,'0001-01-01 00:00:00',NULL,'zen_cfg_select_option(array(\'TEXT\', \'HTML\'), '),(268,'Send Copy of Order Confirmation Emails To','SEND_EXTRA_ORDER_EMAILS_TO','eorder@adirondakchairs.net','Send COPIES of order confirmation emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,12,'2010-01-27 18:10:20','2010-01-04 15:39:22',NULL,NULL),(269,'Send Copy of Create Account Emails To - Status','SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO_STATUS','0','Send copy of Create Account Status<br />0= off 1= on',12,13,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(270,'Send Copy of Create Account Emails To','SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO','admin@adirondakchairs.net','Send copy of Create Account emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,14,'2010-01-27 18:10:45','2010-01-04 15:39:22',NULL,NULL),(271,'Send Copy of Tell a Friend Emails To - Status','SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO_STATUS','0','Send copy of Tell a Friend Status<br />0= off 1= on',12,15,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(272,'Send Copy of Tell a Friend Emails To','SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO','info@adirondakchairs.net','Send copy of Tell a Friend emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,16,'2010-01-27 18:11:08','2010-01-04 15:39:22',NULL,NULL),(273,'Send Copy of Customer GV Send Emails To - Status','SEND_EXTRA_GV_CUSTOMER_EMAILS_TO_STATUS','0','Send copy of Customer GV Send Status<br />0= off 1= on',12,17,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(274,'Send Copy of Customer GV Send Emails To','SEND_EXTRA_GV_CUSTOMER_EMAILS_TO','admin@adirondakchairs.net','Send copy of Customer GV Send emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,18,'2010-01-27 18:13:26','2010-01-04 15:39:22',NULL,NULL),(275,'Send Copy of Admin GV Mail Emails To - Status','SEND_EXTRA_GV_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin GV Mail Status<br />0= off 1= on',12,19,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(276,'Send Copy of Customer Admin GV Mail Emails To','SEND_EXTRA_GV_ADMIN_EMAILS_TO','admin@adirondakchairs.net','Send copy of Admin GV Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,20,'2010-01-27 18:12:12','2010-01-04 15:39:22',NULL,NULL),(277,'Send Copy of Admin Discount Coupon Mail Emails To - Status','SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin Discount Coupon Mail Status<br />0= off 1= on',12,21,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(278,'Send Copy of Customer Admin Discount Coupon Mail Emails To','SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO','admin@adirondakchairs.net','Send copy of Admin Discount Coupon Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,22,'2010-01-27 18:12:39','2010-01-04 15:39:22',NULL,NULL),(279,'Send Copy of Admin Orders Status Emails To - Status','SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin Orders Status Status<br />0= off 1= on',12,23,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(280,'Send Copy of Admin Orders Status Emails To','SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO','admin@adirondakchairs.net','Send copy of Admin Orders Status emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,24,'2010-01-27 18:13:03','2010-01-04 15:39:22',NULL,NULL),(281,'Send Notice of Pending Reviews Emails To - Status','SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO_STATUS','0','Send copy of Pending Reviews Status<br />0= off 1= on',12,25,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(282,'Send Notice of Pending Reviews Emails To','SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO','admin@adirondakchairs.net','Send copy of Pending Reviews emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,26,'2010-01-27 18:14:00','2010-01-04 15:39:22',NULL,NULL),(283,'Set \"Contact Us\" Email Dropdown List','CONTACT_US_LIST','','On the \"Contact Us\" Page, set the list of email addresses , in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,40,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_textarea('),(284,'Allow Guest To Tell A Friend','ALLOW_GUEST_TO_TELL_A_FRIEND','false','Allow guests to tell a friend about a product. <br />If set to [false], then tell-a-friend will prompt for login if user is not already logged in.',12,50,'2010-01-12 16:06:11','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(285,'Contact Us - Show Store Name and Address','CONTACT_US_STORE_NAME_ADDRESS','1','Include Store Name and Address<br />0= off 1= on',12,50,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(286,'Send Low Stock Emails','SEND_LOWSTOCK_EMAIL','0','When stock level is at or below low stock level send an email<br />0= off<br />1= on',12,60,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(287,'Send Low Stock Emails To','SEND_EXTRA_LOW_STOCK_EMAILS_TO','admin@adirondakchairs.net','When stock level is at or below low stock level send an email to this address, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,61,'2010-01-27 18:14:33','2010-01-04 15:39:22',NULL,NULL),(288,'Display \"Newsletter Unsubscribe\" Link?','SHOW_NEWSLETTER_UNSUBSCRIBE_LINK','true','Show \"Newsletter Unsubscribe\" link in the \"Information\" side-box?',12,70,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(289,'Audience-Select Count Display','AUDIENCE_SELECT_DISPLAY_COUNTS','true','When displaying lists of available audiences/recipients, should the recipients-count be included? <br /><em>(This may make things slower if you have a lot of customers or complex audience queries)</em>',12,90,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(290,'Enable Downloads','DOWNLOAD_ENABLED','false','Enable the products download functions.',13,1,'2010-01-24 18:26:48','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(291,'Download by Redirect','DOWNLOAD_BY_REDIRECT','true','Use browser redirection for download. Disable on non-Unix systems.<br /><br />Note: Set /pub to 777 when redirect is true',13,2,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(292,'Download by streaming','DOWNLOAD_IN_CHUNKS','false','If download-by-redirect is disabled, and your PHP memory_limit setting is under 8 MB, you might need to enable this setting so that files are streamed in smaller segments to the browser.<br /><br />Has no effect if Download By Redirect is enabled.',13,2,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(293,'Download Expiration (Number of Days)','DOWNLOAD_MAX_DAYS','7','Set number of days before the download link expires. 0 means no limit.',13,3,NULL,'2010-01-04 15:39:22',NULL,''),(294,'Number of Downloads Allowed - Per Product','DOWNLOAD_MAX_COUNT','5','Set the maximum number of downloads. 0 means no download authorized.',13,4,NULL,'2010-01-04 15:39:22',NULL,''),(295,'Downloads Controller Update Status Value','DOWNLOADS_ORDERS_STATUS_UPDATED_VALUE','4','What orders_status resets the Download days and Max Downloads - Default is 4',13,10,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,NULL),(296,'Downloads Controller Order Status Value >= lower value','DOWNLOADS_CONTROLLER_ORDERS_STATUS','2','Downloads Controller Order Status Value - Default >= 2<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status greater than this value will be available for download. The orders status is set for an order by the Payment Modules. Set the lower range for this range.',13,12,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,NULL),(297,'Downloads Controller Order Status Value <= upper value','DOWNLOADS_CONTROLLER_ORDERS_STATUS_END','4','Downloads Controller Order Status Value - Default <= 4<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status less than this value will be available for download. The orders status is set for an order by the Payment Modules.  Set the upper range for this range.',13,13,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,NULL),(298,'Enable Price Factor','ATTRIBUTES_ENABLED_PRICE_FACTOR','true','Enable the Attributes Price Factor.',13,25,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(299,'Enable Qty Price Discount','ATTRIBUTES_ENABLED_QTY_PRICES','false','Enable the Attributes Quantity Price Discounts.',13,26,'2010-01-24 18:27:35','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(300,'Enable Attribute Images','ATTRIBUTES_ENABLED_IMAGES','true','Enable the Attributes Images.',13,28,'2010-05-27 20:43:21','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(301,'Enable Text Pricing by word or letter','ATTRIBUTES_ENABLED_TEXT_PRICES','false','Enable the Attributes Text Pricing by word or letter.',13,35,'2010-01-24 18:28:03','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(302,'Text Pricing - Spaces are Free','TEXT_SPACES_FREE','1','On Text pricing Spaces are Free<br /><br />0= off 1= on',13,36,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(303,'Read Only option type - Ignore for Add to Cart','PRODUCTS_OPTIONS_TYPE_READONLY_IGNORED','1','When a Product only uses READONLY attributes, should the Add to Cart button be On or Off?<br />0= OFF<br />1= ON',13,37,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(304,'Enable GZip Compression','GZIP_LEVEL','0','0= off 1= on',14,1,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(305,'Session Directory','SESSION_WRITE_DIRECTORY','/home/myadiron/cache','If sessions are file based, store them in this directory.',15,1,'2010-02-15 21:47:15','2010-01-04 15:39:22',NULL,NULL),(306,'Cookie Domain','SESSION_USE_FQDN','True','If True the full domain name will be used to store the cookie, e.g. www.mydomain.com. If False only a partial domain name will be used, e.g. mydomain.com. If you are unsure about this, always leave set to true.',15,2,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(307,'Force Cookie Use','SESSION_FORCE_COOKIE_USE','False','Force the use of sessions when cookies are only enabled.',15,2,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(308,'Check SSL Session ID','SESSION_CHECK_SSL_SESSION_ID','False','Validate the SSL_SESSION_ID on every secure HTTPS page request.',15,3,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(309,'Check User Agent','SESSION_CHECK_USER_AGENT','False','Validate the clients browser user agent on every page request.',15,4,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(310,'Check IP Address','SESSION_CHECK_IP_ADDRESS','False','Validate the clients IP address on every page request.',15,5,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(311,'Prevent Spider Sessions','SESSION_BLOCK_SPIDERS','True','Prevent known spiders from starting a session.',15,6,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(312,'Recreate Session','SESSION_RECREATE','True','Recreate the session to generate a new session ID when the customer logs on or creates an account (PHP >=4.1 needed).',15,7,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(313,'IP to Host Conversion Status','SESSION_IP_TO_HOST_ADDRESS','true','Convert IP Address to Host Address<br /><br />Note: on some servers this can slow down the initial start of a session or execution of Emails',15,10,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(314,'Length of the redeem code','SECURITY_CODE_LENGTH','10','Enter the length of the redeem code<br />The longer the more secure',16,1,NULL,'2010-01-04 15:39:22',NULL,NULL),(315,'Default Order Status For Zero Balance Orders','DEFAULT_ZERO_BALANCE_ORDERS_STATUS_ID','2','When an order\'s balance is zero, this order status will be assigned to it.',16,0,NULL,'2010-01-04 15:39:22','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(316,'New Signup Discount Coupon ID#','NEW_SIGNUP_DISCOUNT_COUPON','','Select the coupon<br />',16,75,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_coupon_id('),(317,'New Signup Gift Voucher Amount','NEW_SIGNUP_GIFT_VOUCHER_AMOUNT','','Leave blank for none<br />Or enter an amount ie. 10 for $10.00',16,76,NULL,'2010-01-04 15:39:22',NULL,NULL),(318,'Maximum Discount Coupons Per Page','MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS','20','Number of Discount Coupons to list per Page',16,81,NULL,'2010-01-04 15:39:22',NULL,NULL),(319,'Maximum Discount Coupon Report Results Per Page','MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS_REPORTS','20','Number of Discount Coupons to list on Reports Page',16,81,NULL,'2010-01-04 15:39:22',NULL,NULL),(320,'Credit Card Enable Status - VISA','CC_ENABLED_VISA','1','Accept VISA 0= off 1= on',17,1,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(321,'Credit Card Enable Status - MasterCard','CC_ENABLED_MC','1','Accept MasterCard 0= off 1= on',17,2,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(322,'Credit Card Enable Status - AmericanExpress','CC_ENABLED_AMEX','1','Accept AmericanExpress 0= off 1= on',17,3,'2010-01-15 21:11:28','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(323,'Credit Card Enable Status - Diners Club','CC_ENABLED_DINERS_CLUB','0','Accept Diners Club 0= off 1= on',17,4,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(324,'Credit Card Enable Status - Discover Card','CC_ENABLED_DISCOVER','0','Accept Discover Card 0= off 1= on',17,5,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(325,'Credit Card Enable Status - JCB','CC_ENABLED_JCB','0','Accept JCB 0= off 1= on',17,6,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(326,'Credit Card Enable Status - AUSTRALIAN BANKCARD','CC_ENABLED_AUSTRALIAN_BANKCARD','0','Accept AUSTRALIAN BANKCARD 0= off 1= on',17,7,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(327,'Credit Card Enable Status - SOLO','CC_ENABLED_SOLO','0','Accept SOLO Card 0= off 1= on',17,8,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(328,'Credit Card Enable Status - Switch','CC_ENABLED_SWITCH','0','Accept SWITCH Card 0= off 1= on',17,9,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(329,'Credit Card Enable Status - Maestro','CC_ENABLED_MAESTRO','0','Accept MAESTRO Card 0= off 1= on',17,10,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(330,'Credit Card Enabled - Show on Payment','SHOW_ACCEPTED_CREDIT_CARDS','0','Show accepted credit cards on Payment page?<br />0= off<br />1= As Text<br />2= As Images<br /><br />Note: images and text must be defined in both the database and language file for specific credit card types.',17,50,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(331,'This module is installed','MODULE_ORDER_TOTAL_GV_STATUS','true','',6,1,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\'),'),(332,'Sort Order','MODULE_ORDER_TOTAL_GV_SORT_ORDER','840','Sort order of display.',6,2,NULL,'2003-10-30 22:16:40',NULL,NULL),(333,'Queue Purchases','MODULE_ORDER_TOTAL_GV_QUEUE','true','Do you want to queue purchases of the Gift Voucher?',6,3,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(334,'Include Shipping','MODULE_ORDER_TOTAL_GV_INC_SHIPPING','true','Include Shipping in calculation',6,5,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(335,'Include Tax','MODULE_ORDER_TOTAL_GV_INC_TAX','true','Include Tax in calculation.',6,6,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(336,'Re-calculate Tax','MODULE_ORDER_TOTAL_GV_CALC_TAX','None','Re-Calculate Tax',6,7,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'),'),(337,'Tax Class','MODULE_ORDER_TOTAL_GV_TAX_CLASS','0','Use the following tax class when treating Gift Voucher as Credit Note.',6,0,NULL,'2003-10-30 22:16:40','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(338,'Credit including Tax','MODULE_ORDER_TOTAL_GV_CREDIT_TAX','false','Add tax to purchased Gift Voucher when crediting to Account',6,8,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(339,'Set Order Status','MODULE_ORDER_TOTAL_GV_ORDER_STATUS_ID','0','Set the status of orders made where GV covers full payment',6,0,NULL,'2010-01-04 15:39:22','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(340,'This module is installed','MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS','true','',6,1,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'true\'),'),(341,'Sort Order','MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER','400','Sort order of display.',6,2,NULL,'2003-10-30 22:16:43',NULL,NULL),(342,'Allow Low Order Fee','MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE','false','Do you want to allow low order fees?',6,3,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(343,'Order Fee For Orders Under','MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER','50','Add the low order fee to orders under this amount.',6,4,NULL,'2003-10-30 22:16:43','currencies->format',NULL),(344,'Order Fee','MODULE_ORDER_TOTAL_LOWORDERFEE_FEE','5','For Percentage Calculation - include a % Example: 10%<br />For a flat amount just enter the amount - Example: 5 for $5.00',6,5,NULL,'2003-10-30 22:16:43','',NULL),(345,'Attach Low Order Fee On Orders Made','MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION','both','Attach low order fee for orders sent to the set destination.',6,6,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'national\', \'international\', \'both\'),'),(346,'Tax Class','MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS','0','Use the following tax class on the low order fee.',6,7,NULL,'2003-10-30 22:16:43','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(347,'No Low Order Fee on Virtual Products','MODULE_ORDER_TOTAL_LOWORDERFEE_VIRTUAL','false','Do not charge Low Order Fee when cart is Virtual Products Only',6,8,NULL,'2004-04-20 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(348,'No Low Order Fee on Gift Vouchers','MODULE_ORDER_TOTAL_LOWORDERFEE_GV','false','Do not charge Low Order Fee when cart is Gift Vouchers Only',6,9,NULL,'2004-04-20 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(349,'This module is installed','MODULE_ORDER_TOTAL_SHIPPING_STATUS','true','',6,1,NULL,'2003-10-30 22:16:46',NULL,'zen_cfg_select_option(array(\'true\'),'),(350,'Sort Order','MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER','200','Sort order of display.',6,2,NULL,'2003-10-30 22:16:46',NULL,NULL),(351,'Allow Free Shipping','MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING','false','Do you want to allow free shipping?',6,3,NULL,'2003-10-30 22:16:46',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(352,'Free Shipping For Orders Over','MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER','50','Provide free shipping for orders over the set amount.',6,4,NULL,'2003-10-30 22:16:46','currencies->format',NULL),(353,'Provide Free Shipping For Orders Made','MODULE_ORDER_TOTAL_SHIPPING_DESTINATION','national','Provide free shipping for orders sent to the set destination.',6,5,NULL,'2003-10-30 22:16:46',NULL,'zen_cfg_select_option(array(\'national\', \'international\', \'both\'),'),(354,'This module is installed','MODULE_ORDER_TOTAL_SUBTOTAL_STATUS','true','',6,1,NULL,'2003-10-30 22:16:49',NULL,'zen_cfg_select_option(array(\'true\'),'),(355,'Sort Order','MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER','100','Sort order of display.',6,2,NULL,'2003-10-30 22:16:49',NULL,NULL),(356,'This module is installed','MODULE_ORDER_TOTAL_TAX_STATUS','true','',6,1,NULL,'2003-10-30 22:16:52',NULL,'zen_cfg_select_option(array(\'true\'),'),(357,'Sort Order','MODULE_ORDER_TOTAL_TAX_SORT_ORDER','300','Sort order of display.',6,2,NULL,'2003-10-30 22:16:52',NULL,NULL),(358,'This module is installed','MODULE_ORDER_TOTAL_TOTAL_STATUS','true','',6,1,NULL,'2003-10-30 22:16:55',NULL,'zen_cfg_select_option(array(\'true\'),'),(359,'Sort Order','MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER','999','Sort order of display.',6,2,NULL,'2003-10-30 22:16:55',NULL,NULL),(360,'Tax Class','MODULE_ORDER_TOTAL_COUPON_TAX_CLASS','0','Use the following tax class when treating Discount Coupon as Credit Note.',6,0,NULL,'2003-10-30 22:16:36','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(361,'Include Tax','MODULE_ORDER_TOTAL_COUPON_INC_TAX','false','Include Tax in calculation.',6,6,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(362,'Sort Order','MODULE_ORDER_TOTAL_COUPON_SORT_ORDER','280','Sort order of display.',6,2,NULL,'2003-10-30 22:16:36',NULL,NULL),(363,'Include Shipping','MODULE_ORDER_TOTAL_COUPON_INC_SHIPPING','false','Include Shipping in calculation',6,5,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(364,'This module is installed','MODULE_ORDER_TOTAL_COUPON_STATUS','true','',6,1,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\'),'),(365,'Re-calculate Tax','MODULE_ORDER_TOTAL_COUPON_CALC_TAX','Standard','Re-Calculate Tax',6,7,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'),'),(366,'Admin Demo Status','ADMIN_DEMO','0','Admin Demo should be on?<br />0= off 1= on',6,0,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(368,'Text product option type','PRODUCTS_OPTIONS_TYPE_TEXT','1','Numeric value of the text product option type',6,NULL,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,NULL),(369,'Radio button product option type','PRODUCTS_OPTIONS_TYPE_RADIO','2','Numeric value of the radio button product option type',6,NULL,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,NULL),(370,'Check box product option type','PRODUCTS_OPTIONS_TYPE_CHECKBOX','3','Numeric value of the check box product option type',6,NULL,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,NULL),(371,'File product option type','PRODUCTS_OPTIONS_TYPE_FILE','4','Numeric value of the file product option type',6,NULL,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,NULL),(372,'ID for text and file products options values','PRODUCTS_OPTIONS_VALUES_TEXT_ID','0','Numeric value of the products_options_values_id used by the text and file attributes.',6,NULL,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,NULL),(673,'One Page Checkout','FEC_ONE_PAGE','true','Activate One Page Checkout?<br />Default = false (includes checkout_confirmation page)',31,11,'2010-05-28 10:30:50','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(672,'Fast and Easy Checkout','FEC_STATUS','true','Activate Fast and Easy Checkout? (note: Easy Sign-up and Login must be disabled separately)',31,10,'2010-05-28 10:30:41','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(375,'Read Only option type','PRODUCTS_OPTIONS_TYPE_READONLY','5','Numeric value of the file product option type',6,NULL,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,NULL),(376,'Products Info - Products Option Name Sort Order','PRODUCTS_OPTIONS_SORT_ORDER','0','Sort order of Option Names for Products Info<br />0= Sort Order, Option Name<br />1= Option Name',18,35,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(377,'Products Info - Product Option Value of Attributes Sort Order','PRODUCTS_OPTIONS_SORT_BY_PRICE','1','Sort order of Product Option Values of Attributes for Products Info<br />0= Sort Order, Price<br />1= Sort Order, Option Value Name',18,36,'2010-05-27 21:54:43','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(378,'Product Info - Show Option Values Name Below Attributes Image','PRODUCT_IMAGES_ATTRIBUTES_NAMES','1','Product Info - Show the name of the Option Value beneath the Attribute Image?<br />0= off 1= on',18,41,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(379,'Product Info - Show Sales Discount Savings Status','SHOW_SALE_DISCOUNT_STATUS','1','Product Info - Show the amount of discount savings?<br />0= off 1= on',18,45,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(380,'Product Info - Show Sales Discount Savings Dollars or Percentage','SHOW_SALE_DISCOUNT','1','Product Info - Show the amount of discount savings display as:<br />1= % off 2= $amount off',18,46,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'1\', \'2\'), '),(381,'Product Info - Show Sales Discount Savings Percentage Decimals','SHOW_SALE_DISCOUNT_DECIMALS','0','Product Info - Show discount savings display as a Percentage with how many decimals?:<br />Default= 0',18,47,NULL,'2010-01-04 15:39:22',NULL,NULL),(382,'Product Info - Price is Free Image or Text Status','OTHER_IMAGE_PRICE_IS_FREE_ON','1','Product Info - Show the Price is Free Image or Text on Displayed Price<br />0= Text<br />1= Image',18,50,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(383,'Product Info - Price is Call for Price Image or Text Status','PRODUCTS_PRICE_IS_CALL_IMAGE_ON','1','Product Info - Show the Price is Call for Price Image or Text on Displayed Price<br />0= Text<br />1= Image',18,51,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(384,'Product Quantity Box Status - Adding New Products','PRODUCTS_QTY_BOX_STATUS','1','What should the Default Quantity Box Status be set to when adding New Products?<br /><br />0= off<br />1= on<br />NOTE: This will show a Qty Box when ON and default the Add to Cart to 1',18,55,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(385,'Product Reviews Require Approval','REVIEWS_APPROVAL','1','Do product reviews require approval?<br /><br />Note: When Review Status is off, it will also not show<br /><br />0= off 1= on',18,62,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(386,'Meta Tags - Include Product Model in Title','META_TAG_INCLUDE_MODEL','1','Do you want to include the Product Model in the Meta Tag Title?<br /><br />0= off 1= on',18,69,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(387,'Meta Tags - Include Product Price in Title','META_TAG_INCLUDE_PRICE','1','Do you want to include the Product Price in the Meta Tag Title?<br /><br />0= off 1= on',18,70,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(388,'Meta Tags Generated Description Maximum Length?','MAX_META_TAG_DESCRIPTION_LENGTH','50','Set Generated Meta Tag Description Maximum Length to (words) Default 50:',18,71,NULL,'2010-01-04 15:39:22','',''),(389,'Also Purchased Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_ALSO_PURCHASED_PRODUCTS','3','Also Purchased Products Columns per Row<br />0= off or set the sort order',18,72,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(390,'Previous Next - Navigation Bar Position','PRODUCT_INFO_PREVIOUS_NEXT','1','Location of Previous/Next Navigation Bar<br />0= off<br />1= Top of Page<br />2= Bottom of Page<br />3= Both Top and Bottom of Page',18,21,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'Top of Page\'), array(\'id\'=>\'2\', \'text\'=>\'Bottom of Page\'), array(\'id\'=>\'3\', \'text\'=>\'Both Top & Bottom of Page\')),'),(391,'Previous Next - Sort Order','PRODUCT_INFO_PREVIOUS_NEXT_SORT','1','Products Display Order by<br />0= Product ID<br />1= Product Name<br />2= Model<br />3= Price, Product Name<br />4= Price, Model<br />5= Product Name, Model<br />6= Product Sort Order',18,22,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Product ID\'), array(\'id\'=>\'1\', \'text\'=>\'Name\'), array(\'id\'=>\'2\', \'text\'=>\'Product Model\'), array(\'id\'=>\'3\', \'text\'=>\'Product Price - Name\'), array(\'id\'=>\'4\', \'text\'=>\'Product Price - Model\'), array(\'id\'=>\'5\', \'text\'=>\'Product Name - Model\'), array(\'id\'=>\'6\', \'text\'=>\'Product Sort Order\')),'),(392,'Previous Next - Button and Image Status','SHOW_PREVIOUS_NEXT_STATUS','0','Button and Product Image status settings are:<br />0= Off<br />1= On',18,20,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'On\')),'),(393,'Previous Next - Button and Image Settings','SHOW_PREVIOUS_NEXT_IMAGES','0','Show Previous/Next Button and Product Image Settings<br />0= Button Only<br />1= Button and Product Image<br />2= Product Image Only',18,21,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Button Only\'), array(\'id\'=>\'1\', \'text\'=>\'Button and Product Image\'), array(\'id\'=>\'2\', \'text\'=>\'Product Image Only\')),'),(394,'Previous Next - Image Width?','PREVIOUS_NEXT_IMAGE_WIDTH','50','Previous/Next Image Width?',18,22,'2010-01-06 21:42:20','2010-01-04 15:39:22','',''),(395,'Previous Next - Image Height?','PREVIOUS_NEXT_IMAGE_HEIGHT','70','Previous/Next Image Height?',18,23,'2010-01-06 21:42:14','2010-01-04 15:39:22','',''),(396,'Previous Next - Navigation Includes Category Position','PRODUCT_INFO_CATEGORIES','1','Product\'s Category Image and Name Alignment Above Previous/Next Navigation Bar<br />0= off<br />1= Align Left<br />2= Align Center<br />3= Align Right',18,20,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'Align Left\'), array(\'id\'=>\'2\', \'text\'=>\'Align Center\'), array(\'id\'=>\'3\', \'text\'=>\'Align Right\')),'),(397,'Previous Next - Navigation Includes Category Name and Image Status','PRODUCT_INFO_CATEGORIES_IMAGE_STATUS','2','Product\'s Category Image and Name Status<br />0= Category Name and Image always shows<br />1= Category Name only<br />2= Category Name and Image when not blank',18,20,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Category Name and Image Always\'), array(\'id\'=>\'1\', \'text\'=>\'Category Name only\'), array(\'id\'=>\'2\', \'text\'=>\'Category Name and Image when not blank\')),'),(398,'Column Width - Left Boxes','BOX_WIDTH_LEFT','170px','Width of the Left Column Boxes<br />px may be included<br />Default = 150px',19,1,'2010-01-10 22:57:48','2003-11-21 22:16:36',NULL,NULL),(399,'Column Width - Right Boxes','BOX_WIDTH_RIGHT','170px','Width of the Right Column Boxes<br />px may be included<br />Default = 150px',19,2,'2010-02-09 22:37:50','2003-11-21 22:16:36',NULL,NULL),(400,'Bread Crumbs Navigation Separator','BREAD_CRUMBS_SEPARATOR','&nbsp;::&nbsp;','Enter the separator symbol to appear between the Navigation Bread Crumb trail<br />Note: Include spaces with the &amp;nbsp; symbol if you want them part of the separator.<br />Default = &amp;nbsp;::&amp;nbsp;',19,3,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(401,'Define Breadcrumb Status','DEFINE_BREADCRUMB_STATUS','1','Enable the Breadcrumb Trail Links?<br />0= OFF<br />1= ON<br />2= Off for Home Page Only',19,4,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(402,'Bestsellers - Number Padding','BEST_SELLERS_FILLER','&nbsp;','What do you want to Pad the numbers with?<br />Default = &amp;nbsp;',19,5,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(403,'Bestsellers - Truncate Product Names','BEST_SELLERS_TRUNCATE','35','What size do you want to truncate the Product Names?<br />Default = 35',19,6,NULL,'2003-11-21 22:16:36',NULL,NULL),(404,'Bestsellers - Truncate Product Names followed by ...','BEST_SELLERS_TRUNCATE_MORE','true','When truncated Product Names follow with ...<br />Default = true',19,7,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(405,'Categories Box - Show Specials Link','SHOW_CATEGORIES_BOX_SPECIALS','true','Show Specials Link in the Categories Box',19,8,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(406,'Categories Box - Show Products New Link','SHOW_CATEGORIES_BOX_PRODUCTS_NEW','false','Show Products New Link in the Categories Box',19,9,'2010-01-10 19:23:36','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(407,'Shopping Cart Box Status','SHOW_SHOPPING_CART_BOX_STATUS','1','Shopping Cart Shows<br />0= Always<br />1= Only when full<br />2= Only when full but not when viewing the Shopping Cart',19,10,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(408,'Categories Box - Show Featured Products Link','SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS','true','Show Featured Products Link in the Categories Box',19,11,'2010-01-10 22:35:42','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(409,'Categories Box - Show Products All Link','SHOW_CATEGORIES_BOX_PRODUCTS_ALL','false','Show Products All Link in the Categories Box',19,12,'2010-01-11 16:41:10','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(410,'Column Left Status - Global','COLUMN_LEFT_STATUS','1','Show Column Left, unless page override exists?<br />0= Column Left is always off<br />1= Column Left is on, unless page override',19,15,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(411,'Column Right Status - Global','COLUMN_RIGHT_STATUS','0','Show Column Right, unless page override exists?<br />0= Column Right is always off<br />1= Column Right is on, unless page override',19,16,'2010-05-28 08:31:05','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(412,'Column Width - Left','COLUMN_WIDTH_LEFT','170px','Width of the Left Column<br />px may be included<br />Default = 150px',19,20,'2010-01-10 22:57:57','2003-11-21 22:16:36',NULL,NULL),(413,'Column Width - Right','COLUMN_WIDTH_RIGHT','170px','Width of the Right Column<br />px may be included<br />Default = 150px',19,21,'2010-02-09 22:35:37','2003-11-21 22:16:36',NULL,NULL),(414,'Categories Separator between links Status','SHOW_CATEGORIES_SEPARATOR_LINK','1','Show Category Separator between Category Names and Links?<br />0= off<br />1= on',19,24,'2010-01-10 22:56:58','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(415,'Categories Separator between the Category Name and Count','CATEGORIES_SEPARATOR','-&gt;','What separator do you want between the Category name and the count?<br />Default = -&amp;gt;',19,25,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(416,'Categories Separator between the Category Name and Sub Categories','CATEGORIES_SEPARATOR_SUBS','','What separator do you want between the Category name and Sub Category Name?<br />Default = |_&amp;nbsp;',19,26,'2010-01-10 22:54:46','2004-03-25 22:16:36',NULL,'zen_cfg_textarea_small('),(417,'Categories Count Prefix','CATEGORIES_COUNT_PREFIX','&nbsp;(','What do you want to Prefix the count with?<br />Default= (',19,27,NULL,'2003-01-21 22:16:36',NULL,'zen_cfg_textarea_small('),(418,'Categories Count Suffix','CATEGORIES_COUNT_SUFFIX',')','What do you want as a Suffix to the count?<br />Default= )',19,28,NULL,'2003-01-21 22:16:36',NULL,'zen_cfg_textarea_small('),(419,'Categories SubCategories Indent','CATEGORIES_SUBCATEGORIES_INDENT','&nbsp;&nbsp;','What do you want to use as the subcategories indent?<br />Default= &nbsp;&nbsp;',19,29,NULL,'2004-06-24 22:16:36',NULL,'zen_cfg_textarea_small('),(420,'Categories with 0 Products Status','CATEGORIES_COUNT_ZERO','0','Show Category Count for 0 Products?<br />0= off<br />1= on',19,30,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(421,'Split Categories Box','CATEGORIES_SPLIT_DISPLAY','True','Split the categories box display by product type',19,31,'2010-01-11 16:32:40','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(422,'Shopping Cart - Show Totals','SHOW_TOTALS_IN_CART','3','Show Totals Above Shopping Cart?<br />0= off<br />1= on: Items Weight Amount<br />2= on: Items Weight Amount, but no weight when 0<br />3= on: Items Amount',19,31,'2010-01-10 19:21:32','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(423,'Customer Greeting - Show on Index Page','SHOW_CUSTOMER_GREETING','0','Always Show Customer Greeting on Index?<br />0= off<br />1= on',19,40,'2010-02-09 15:39:56','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(424,'Categories - Always Show on Main Page','SHOW_CATEGORIES_ALWAYS','0','Always Show Categories on Main Page<br />0= off<br />1= on<br />Default category can be set to Top Level or a Specific Top Level',19,45,'2010-01-17 10:17:00','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(425,'Main Page - Opens with Category','CATEGORIES_START_MAIN','2','0= Top Level Categories<br />Or enter the Category ID#<br />Note: Sub Categories can also be used Example: 3_10',19,46,'2010-01-17 06:50:30','2010-01-04 15:39:22','',''),(426,'Categories - Always Open to Show SubCategories','SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS','1','Always Show Categories and SubCategories<br />0= off, just show Top Categories<br />1= on, Always show Categories and SubCategories when selected',19,47,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(427,'Banner Display Groups - Header Position 1','SHOW_BANNERS_GROUP_SET1','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 1?<br />Leave blank for none',19,55,NULL,'2010-01-04 15:39:22','',''),(428,'Banner Display Groups - Header Position 2','SHOW_BANNERS_GROUP_SET2','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 2?<br />Leave blank for none',19,56,NULL,'2010-01-04 15:39:22','',''),(429,'Banner Display Groups - Header Position 3','SHOW_BANNERS_GROUP_SET3','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 3?<br />Leave blank for none',19,57,NULL,'2010-01-04 15:39:22','',''),(430,'Banner Display Groups - Footer Position 1','SHOW_BANNERS_GROUP_SET4','bottom','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 1?<br />Leave blank for none',19,65,'2010-03-21 12:15:40','2010-01-04 15:39:22','',''),(431,'Banner Display Groups - Footer Position 2','SHOW_BANNERS_GROUP_SET5','above-footer','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 2?<br />Leave blank for none',19,66,'2010-03-21 12:20:38','2010-01-04 15:39:22','',''),(432,'Banner Display Groups - Footer Position 3','SHOW_BANNERS_GROUP_SET6','Wide-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />Default Group is Wide-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 3?<br />Leave blank for none',19,67,NULL,'2010-01-04 15:39:22','',''),(433,'Banner Display Groups - Side Box banner_box','SHOW_BANNERS_GROUP_SET7','SideBox-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box?<br />Leave blank for none',19,70,NULL,'2010-01-04 15:39:22','',''),(434,'Banner Display Groups - Side Box banner_box2','SHOW_BANNERS_GROUP_SET8','SideBox-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box2?<br />Leave blank for none',19,71,NULL,'2010-01-04 15:39:22','',''),(435,'Banner Display Group - Side Box banner_box_all','SHOW_BANNERS_GROUP_SET_ALL','BannersAll','The Banner Display Group may only be from one (1) Banner Group for the Banner All sidebox<br /><br />Default Group is BannersAll<br /><br />What Banner Group do you want to use in the Side Box - banner_box_all?<br />Leave blank for none',19,72,NULL,'2010-01-04 15:39:22','',''),(436,'Footer - Show IP Address status','SHOW_FOOTER_IP','0','Show Customer IP Address in the Footer<br />0= off<br />1= on<br />Should the Customer IP Address show in the footer?',19,80,'2010-01-19 20:45:18','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(437,'Product Discount Quantities - Add how many blank discounts?','DISCOUNT_QTY_ADD','5','How many blank discount quantities should be added for Product Pricing?',19,90,NULL,'2010-01-04 15:39:22','',''),(438,'Product Discount Quantities - Display how many per row?','DISCOUNT_QUANTITY_PRICES_COLUMN','5','How many discount quantities should show per row on Product Info Pages?',19,95,NULL,'2010-01-04 15:39:22','',''),(439,'Categories/Products Display Sort Order','CATEGORIES_PRODUCTS_SORT_ORDER','0','Categories/Products Display Sort Order<br />0= Categories/Products Sort Order/Name<br />1= Categories/Products Name<br />2= Products Model<br />3= Products Qty+, Products Name<br />4= Products Qty-, Products Name<br />5= Products Price+, Products Name<br />6= Products Price-, Products Name',19,100,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\', \'5\', \'6\'), '),(440,'Option Names and Values Global Add, Copy and Delete Features Status','OPTION_NAMES_VALUES_GLOBAL_STATUS','1','Option Names and Values Global Add, Copy and Delete Features Status<br />0= Hide Features<br />1= Show Features<br />2= Products Model',19,110,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(441,'Categories-Tabs Menu ON/OFF','CATEGORIES_TABS_STATUS','0','Categories-Tabs<br />This enables the display of your store\'s categories as a menu across the top of your header. There are many potential creative uses for this.<br />0= Hide Categories Tabs<br />1= Show Categories Tabs',19,112,'2010-01-11 16:40:16','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(442,'Site Map - include My Account Links?','SHOW_ACCOUNT_LINKS_ON_SITE_MAP','No','Should the links to My Account show up on the site-map?<br />Note: Spiders will try to index this page, and likely should not be sent to secure pages, since there is no benefit in indexing a login page.<br /><br />Default: false',19,115,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(443,'Skip 1-prod Categories','SKIP_SINGLE_PRODUCT_CATEGORIES','True','Skip single-product categories<br />If this option is set to True, then if the customer clicks on a link to a category which only contains a single item, then Zen Cart will take them directly to that product-page, rather than present them with another link to click in order to see the product.<br />Default: True',19,120,'2010-01-11 16:39:19','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(444,'Use split-login page','USE_SPLIT_LOGIN_MODE','True','The login page can be displayed in two modes: Split or Vertical.<br />In Split mode, the create-account options are accessed by clicking a button to get to the create-account page.  In Vertical mode, the create-account input fields are all displayed inline, below the login field, making one less click for the customer to create their account.<br />Default: False',19,121,'2010-01-11 07:54:19','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(445,'CSS Buttons','IMAGE_USE_CSS_BUTTONS','No','CSS Buttons<br />Use CSS buttons instead of images (GIF/JPG)?<br />Button styles must be configured in the stylesheet if you enable this option.',19,147,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(446,'<strong>Down for Maintenance: ON/OFF</strong>','DOWN_FOR_MAINTENANCE','false','Down for Maintenance <br />(true=on false=off)',20,1,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(447,'Down for Maintenance: filename','DOWN_FOR_MAINTENANCE_FILENAME','down_for_maintenance','Down for Maintenance filename<br />Note: Do not include the extension<br />Default=down_for_maintenance',20,2,NULL,'2010-01-04 15:39:22',NULL,''),(448,'Down for Maintenance: Hide Header','DOWN_FOR_MAINTENANCE_HEADER_OFF','false','Down for Maintenance: Hide Header <br />(true=hide false=show)',20,3,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(449,'Down for Maintenance: Hide Column Left','DOWN_FOR_MAINTENANCE_COLUMN_LEFT_OFF','false','Down for Maintenance: Hide Column Left <br />(true=hide false=show)',20,4,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(450,'Down for Maintenance: Hide Column Right','DOWN_FOR_MAINTENANCE_COLUMN_RIGHT_OFF','false','Down for Maintenance: Hide Column Right <br />(true=hide false=show)',20,5,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(451,'Down for Maintenance: Hide Footer','DOWN_FOR_MAINTENANCE_FOOTER_OFF','false','Down for Maintenance: Hide Footer <br />(true=hide false=show)',20,6,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(452,'Down for Maintenance: Hide Prices','DOWN_FOR_MAINTENANCE_PRICES_OFF','false','Down for Maintenance: Hide Prices <br />(true=hide false=show)',20,7,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(453,'Down For Maintenance (exclude this IP-Address)','EXCLUDE_ADMIN_IP_FOR_MAINTENANCE','your IP (ADMIN)','This IP Address is able to access the website while it is Down For Maintenance (like webmaster)<br />To enter multiple IP Addresses, separate with a comma. If you do not know your IP Address, check in the Footer of your Shop.',20,8,'2003-03-21 13:43:22','2003-03-21 21:20:07',NULL,NULL),(454,'NOTICE PUBLIC Before going Down for Maintenance: ON/OFF','WARN_BEFORE_DOWN_FOR_MAINTENANCE','false','Give a WARNING some time before you put your website Down for Maintenance<br />(true=on false=off)<br />If you set the \'Down For Maintenance: ON/OFF\' to true this will automaticly be updated to false',20,9,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(455,'Date and hours for notice before maintenance','PERIOD_BEFORE_DOWN_FOR_MAINTENANCE','15/05/2003  2-3 PM','Date and hours for notice before maintenance website, enter date and hours for maintenance website',20,10,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,NULL),(456,'Display when webmaster has enabled maintenance','DISPLAY_MAINTENANCE_TIME','false','Display when Webmaster has enabled maintenance <br />(true=on false=off)<br />',20,11,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(457,'Display website maintenance period','DISPLAY_MAINTENANCE_PERIOD','false','Display Website maintenance period <br />(true=on false=off)<br />',20,12,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(458,'Website maintenance period','TEXT_MAINTENANCE_PERIOD_TIME','2h00','Enter Website Maintenance period (hh:mm)',20,13,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,NULL),(459,'Confirm Terms and Conditions During Checkout Procedure','DISPLAY_CONDITIONS_ON_CHECKOUT','false','Show the Terms and Conditions during the checkout procedure which the customer must agree to.',11,1,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(460,'Confirm Privacy Notice During Account Creation Procedure','DISPLAY_PRIVACY_CONDITIONS','false','Show the Privacy Notice during the account creation procedure which the customer must agree to.',11,2,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(461,'Display Product Image','PRODUCT_NEW_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,1,NULL,'2010-01-04 15:39:22',NULL,NULL),(462,'Display Product Quantity','PRODUCT_NEW_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,2,NULL,'2010-01-04 15:39:22',NULL,NULL),(463,'Display Product Buy Now Button','PRODUCT_NEW_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,3,NULL,'2010-01-04 15:39:22',NULL,NULL),(464,'Display Product Name','PRODUCT_NEW_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,4,NULL,'2010-01-04 15:39:22',NULL,NULL),(465,'Display Product Model','PRODUCT_NEW_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,5,NULL,'2010-01-04 15:39:22',NULL,NULL),(466,'Display Product Manufacturer Name','PRODUCT_NEW_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,6,NULL,'2010-01-04 15:39:22',NULL,NULL),(467,'Display Product Price','PRODUCT_NEW_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,7,NULL,'2010-01-04 15:39:22',NULL,NULL),(468,'Display Product Weight','PRODUCT_NEW_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,8,NULL,'2010-01-04 15:39:22',NULL,NULL),(469,'Display Product Date Added','PRODUCT_NEW_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,9,NULL,'2010-01-04 15:39:22',NULL,NULL),(470,'Display Product Description','PRODUCT_NEW_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',21,10,NULL,'2010-01-04 15:39:22',NULL,NULL),(471,'Display Product Display - Default Sort Order','PRODUCT_NEW_LIST_SORT_DEFAULT','6','What Sort Order Default should be used for New Products Display?<br />Default= 6 for Date New to Old<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',21,11,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(472,'Default Products New Group ID','PRODUCT_NEW_LIST_GROUP_ID','21','Warning: Only change this if your Products New Group ID has changed from the default of 21<br />What is the configuration_group_id for New Products Listings?',21,12,NULL,'2010-01-04 15:39:22',NULL,NULL),(473,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_NEW_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',21,25,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(474,'Mask Upcoming Products from being include as New Products','SHOW_NEW_PRODUCTS_UPCOMING_MASKED','0','Do you want to mask Upcoming Products from being included as New Products in Listing, Sideboxes and Centerbox?<br />0= off<br />1= on',21,30,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(475,'Display Product Image','PRODUCT_FEATURED_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,1,'2010-02-09 11:15:47','2010-01-04 15:39:22',NULL,NULL),(476,'Display Product Quantity','PRODUCT_FEATURED_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,2,NULL,'2010-01-04 15:39:22',NULL,NULL),(477,'Display Product Buy Now Button','PRODUCT_FEATURED_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,3,NULL,'2010-01-04 15:39:22',NULL,NULL),(478,'Display Product Name','PRODUCT_FEATURED_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,4,NULL,'2010-01-04 15:39:22',NULL,NULL),(479,'Display Product Model','PRODUCT_FEATURED_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,5,NULL,'2010-01-04 15:39:22',NULL,NULL),(480,'Display Product Manufacturer Name','PRODUCT_FEATURED_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,6,NULL,'2010-01-04 15:39:22',NULL,NULL),(481,'Display Product Price','PRODUCT_FEATURED_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,7,NULL,'2010-01-04 15:39:22',NULL,NULL),(482,'Display Product Weight','PRODUCT_FEATURED_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,8,NULL,'2010-01-04 15:39:22',NULL,NULL),(483,'Display Product Date Added','PRODUCT_FEATURED_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,9,NULL,'2010-01-04 15:39:22',NULL,NULL),(484,'Display Product Description','PRODUCT_FEATURED_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',22,10,'2010-02-09 11:23:13','2010-01-04 15:39:22',NULL,NULL),(485,'Display Product Display - Default Sort Order','PRODUCT_FEATURED_LIST_SORT_DEFAULT','1','What Sort Order Default should be used for Featured Product Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',22,11,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(486,'Default Featured Products Group ID','PRODUCT_FEATURED_LIST_GROUP_ID','22','Warning: Only change this if your Featured Products Group ID has changed from the default of 22<br />What is the configuration_group_id for Featured Products Listings?',22,12,NULL,'2010-01-04 15:39:22',NULL,NULL),(487,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_FEATURED_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',22,25,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(488,'Display Product Image','PRODUCT_ALL_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,1,NULL,'2010-01-04 15:39:22',NULL,NULL),(489,'Display Product Quantity','PRODUCT_ALL_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,2,NULL,'2010-01-04 15:39:22',NULL,NULL),(490,'Display Product Buy Now Button','PRODUCT_ALL_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,3,NULL,'2010-01-04 15:39:22',NULL,NULL),(491,'Display Product Name','PRODUCT_ALL_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,4,NULL,'2010-01-04 15:39:22',NULL,NULL),(492,'Display Product Model','PRODUCT_ALL_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,5,NULL,'2010-01-04 15:39:22',NULL,NULL),(493,'Display Product Manufacturer Name','PRODUCT_ALL_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,6,NULL,'2010-01-04 15:39:22',NULL,NULL),(494,'Display Product Price','PRODUCT_ALL_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,7,NULL,'2010-01-04 15:39:22',NULL,NULL),(495,'Display Product Weight','PRODUCT_ALL_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,8,NULL,'2010-01-04 15:39:22',NULL,NULL),(496,'Display Product Date Added','PRODUCT_ALL_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,9,NULL,'2010-01-04 15:39:22',NULL,NULL),(497,'Display Product Description','PRODUCT_ALL_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',23,10,NULL,'2010-01-04 15:39:22',NULL,NULL),(498,'Display Product Display - Default Sort Order','PRODUCT_ALL_LIST_SORT_DEFAULT','1','What Sort Order Default should be used for All Products Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',23,11,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(499,'Default Products All Group ID','PRODUCT_ALL_LIST_GROUP_ID','23','Warning: Only change this if your Products All Group ID has changed from the default of 23<br />What is the configuration_group_id for Products All Listings?',23,12,NULL,'2010-01-04 15:39:22',NULL,NULL),(500,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_ALL_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',23,25,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(501,'Show New Products on Main Page','SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS','0','Show New Products on Main Page<br />0= off or set the sort order',24,65,'2010-01-06 22:44:02','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(502,'Show Featured Products on Main Page','SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS','1','Show Featured Products on Main Page<br />0= off or set the sort order',24,66,'2010-02-09 11:18:32','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(503,'Show Special Products on Main Page','SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS','0','Show Special Products on Main Page<br />0= off or set the sort order',24,67,'2010-01-06 22:44:21','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(504,'Show Upcoming Products on Main Page','SHOW_PRODUCT_INFO_MAIN_UPCOMING','0','Show Upcoming Products on Main Page<br />0= off or set the sort order',24,68,'2010-01-06 22:44:27','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(505,'Show New Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_NEW_PRODUCTS','0','Show New Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,70,'2010-01-06 22:46:35','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(506,'Show Featured Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_FEATURED_PRODUCTS','0','Show Featured Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,71,'2010-01-06 22:46:41','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(507,'Show Special Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_SPECIALS_PRODUCTS','0','Show Special Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,72,'2010-01-06 22:46:47','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(508,'Show Upcoming Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_UPCOMING','0','Show Upcoming Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,73,'2010-01-06 22:46:55','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(509,'Show New Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_NEW_PRODUCTS','0','Show New Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,75,'2010-01-06 22:47:20','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(510,'Show Featured Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_FEATURED_PRODUCTS','0','Show Featured Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,76,'2010-01-06 22:47:25','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(511,'Show Special Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_SPECIALS_PRODUCTS','0','Show Special Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,77,'2010-01-06 22:47:30','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(512,'Show Upcoming Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_UPCOMING','0','Show Upcoming Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,78,'2010-01-06 22:47:35','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(513,'Show New Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_NEW_PRODUCTS','0','Show New Products below Product Listing<br />0= off or set the sort order',24,85,'2010-01-06 23:00:45','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(514,'Show Featured Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_FEATURED_PRODUCTS','0','Show Featured Products below Product Listing<br />0= off or set the sort order',24,86,'2010-01-06 23:35:46','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(515,'Show Special Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_SPECIALS_PRODUCTS','3','Show Special Products below Product Listing<br />0= off or set the sort order',24,87,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(516,'Show Upcoming Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_UPCOMING','4','Show Upcoming Products below Product Listing<br />0= off or set the sort order',24,88,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(517,'New Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS','3','New Products Columns per Row',24,95,'2010-01-06 23:36:08','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(518,'Featured Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS','3','Featured Products Columns per Row',24,96,'2010-01-11 17:09:03','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(519,'Special Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS','3','Special Products Columns per Row',24,97,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(520,'Filter Product Listing for Current Top Level Category When Enabled','SHOW_PRODUCT_INFO_ALL_PRODUCTS','1','Filter the products when Product Listing is enabled for current Main Category or show products from all categories?<br />0= Filter Off 1=Filter On ',24,100,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(521,'Define Main Page Status','DEFINE_MAIN_PAGE_STATUS','1','Enable the Defined Main Page Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,60,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(522,'Define Contact Us Status','DEFINE_CONTACT_US_STATUS','1','Enable the Defined Contact Us Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,61,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(523,'Define Privacy Status','DEFINE_PRIVACY_STATUS','1','Enable the Defined Privacy Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,62,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(524,'Define Shipping & Returns','DEFINE_SHIPPINGINFO_STATUS','1','Enable the Defined Shipping & Returns Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,63,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(525,'Define Conditions of Use','DEFINE_CONDITIONS_STATUS','1','Enable the Defined Conditions of Use Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,64,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(526,'Define Checkout Success','DEFINE_CHECKOUT_SUCCESS_STATUS','1','Enable the Defined Checkout Success Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,65,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(527,'Define Discount Coupon','DEFINE_DISCOUNT_COUPON_STATUS','1','Enable the Defined Discount Coupon Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,66,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(528,'Define Site Map Status','DEFINE_SITE_MAP_STATUS','1','Enable the Defined Site Map Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,67,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(529,'Define Page-Not-Found Status','DEFINE_PAGE_NOT_FOUND_STATUS','1','Enable the Defined Page-Not-Found Text from define-pages?<br />0= Define Text OFF<br />1= Define Text ON',25,67,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(530,'Define Page 2','DEFINE_PAGE_2_STATUS','1','Enable the Defined Page 2 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,82,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(531,'Define Page 3','DEFINE_PAGE_3_STATUS','1','Enable the Defined Page 3 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,83,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(532,'Define Page 4','DEFINE_PAGE_4_STATUS','1','Enable the Defined Page 4 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,84,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(533,'EZ-Pages Display Status - HeaderBar','EZPAGES_STATUS_HEADER','1','Display of EZ-Pages content can be Globally enabled/disabled for the Header Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,10,'2010-01-06 10:40:27','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(534,'EZ-Pages Display Status - FooterBar','EZPAGES_STATUS_FOOTER','1','Display of EZ-Pages content can be Globally enabled/disabled for the Footer Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,11,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(535,'EZ-Pages Display Status - Sidebox','EZPAGES_STATUS_SIDEBOX','1','Display of EZ-Pages content can be Globally enabled/disabled for the Sidebox<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,12,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(536,'EZ-Pages Header Link Separator','EZPAGES_SEPARATOR_HEADER','&nbsp;::&nbsp;','EZ-Pages Header Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;',30,20,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_textarea_small('),(537,'EZ-Pages Footer Link Separator','EZPAGES_SEPARATOR_FOOTER','&nbsp;::&nbsp;','EZ-Pages Footer Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;',30,21,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_textarea_small('),(538,'EZ-Pages Prev/Next Buttons','EZPAGES_SHOW_PREV_NEXT_BUTTONS','2','Display Prev/Continue/Next buttons on EZ-Pages pages?<br />0=OFF (no buttons)<br />1=\"Continue\"<br />2=\"Prev/Continue/Next\"<br /><br />Default setting: 2.',30,30,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(539,'EZ-Pages Table of Contents for Chapters Status','EZPAGES_SHOW_TABLE_CONTENTS','1','Enable EZ-Pages Table of Contents for Chapters?<br />0= OFF<br />1= ON',30,35,'2010-01-04 15:39:22','2010-01-04 15:39:22',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(540,'EZ-Pages Pages to disable headers','EZPAGES_DISABLE_HEADER_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"header\" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 1,5,2<br />or leave blank.',30,40,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_textarea_small('),(541,'EZ-Pages Pages to disable footers','EZPAGES_DISABLE_FOOTER_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"footer\" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,7<br />or leave blank.',30,41,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_textarea_small('),(542,'EZ-Pages Pages to disable left-column','EZPAGES_DISABLE_LEFTCOLUMN_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"left\" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 21<br />or leave blank.',30,42,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_textarea_small('),(543,'EZ-Pages Pages to disable right-column','EZPAGES_DISABLE_RIGHTCOLUMN_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"right\" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,82,13<br />or leave blank.',30,43,NULL,'2010-01-04 15:39:22',NULL,'zen_cfg_textarea_small('),(792,'Timeout in Seconds','MODULE_SHIPPING_FEDEX_EXPRESS_TIMEOUT','NONE','Enter the maximum time in seconds you would wait for a rate request from Fedex? Leave NONE for default timeout.',6,23,NULL,'2010-01-16 23:47:15',NULL,NULL),(793,'Tax Class','MODULE_SHIPPING_FEDEX_EXPRESS_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,24,NULL,'2010-01-16 23:47:15','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(794,'Shipping Zone','MODULE_SHIPPING_FEDEX_EXPRESS_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2010-01-16 23:47:15','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(795,'Currency Code','MODULE_SHIPPING_FEDEX_EXPRESS_CURRENCY','USD','Enter 3 digit currency code (default = USD)',6,25,NULL,'2010-01-16 23:47:15',NULL,NULL),(796,'Priority Overnight: ','MODULE_SHIPPING_FEDEX_EXPRESS_PRIORITY_OVERNIGHT','false','Offer Priority Overnight?',6,30,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(797,'2Day: ','MODULE_SHIPPING_FEDEX_EXPRESS_2DAY','true','Offer 2Day?',6,31,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(777,'City name','MODULE_SHIPPING_FEDEX_EXPRESS_CITY','Fowlerville','Enter the city name for the ship-from street address, required',6,10,NULL,'2010-01-16 23:47:15',NULL,NULL),(778,'State or Province name','MODULE_SHIPPING_FEDEX_EXPRESS_STATE','MI','Enter the 2 letter state or province name for the ship-from street address, required for Canada and US',6,11,NULL,'2010-01-16 23:47:15',NULL,NULL),(779,'Postal code','MODULE_SHIPPING_FEDEX_EXPRESS_POSTAL','48836','Enter the postal code for the ship-from street address, required',6,12,NULL,'2010-01-16 23:47:15',NULL,NULL),(780,'Phone number','MODULE_SHIPPING_FEDEX_EXPRESS_PHONE','800-899-9790','Enter a contact phone number for your company, required',6,13,NULL,'2010-01-16 23:47:15',NULL,NULL),(781,'Which server to use','MODULE_SHIPPING_FEDEX_EXPRESS_SERVER','production','You must have an account with Fedex',6,14,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'test\', \'production\'), '),(782,'Drop off type','MODULE_SHIPPING_FEDEX_EXPRESS_DROPOFF','1','Dropoff type (1 = Regular pickup, 2 = request courier, 3 = drop box, 4 = drop at BSC, 5 = drop at station)?',6,15,NULL,'2010-01-16 23:47:15',NULL,NULL),(783,'Fedex Domestic fixed surcharge?','MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_DOM','0','Fixed surcharge amount to add to domestic shipping charge?',6,16,NULL,'2010-01-16 23:47:15',NULL,NULL),(784,'Fedex Domestic variable surcharge?','MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_PERCENT_DOM','0','Percentage surcharge amount to add to domestic shipping charge?',6,16,NULL,'2010-01-16 23:47:15',NULL,NULL),(785,'Fedex International fixed surcharge?','MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_INT','0','Fixed surcharge amount to add to international shipping charge?',6,17,NULL,'2010-01-16 23:47:15',NULL,NULL),(786,'Fedex International variable surcharge?','MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_PERCENT_INT','0','Percentage surcharge amount to add to international shipping charge?',6,17,NULL,'2010-01-16 23:47:15',NULL,NULL),(787,'Show List Rates?','MODULE_SHIPPING_FEDEX_EXPRESS_LIST_RATES','False','This needs to be left set to false',6,18,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(788,'Residential surcharge?','MODULE_SHIPPING_FEDEX_EXPRESS_RESIDENTIAL','0','Residential Surcharge (in addition to other surcharge) for Express packages within US, or ground packages within Canada?',6,19,NULL,'2010-01-16 23:47:15',NULL,NULL),(789,'Insurance?','MODULE_SHIPPING_FEDEX_EXPRESS_INSURE','50','Insure packages over what dollar amount?',6,20,NULL,'2010-01-16 23:47:15',NULL,NULL),(790,'Enable Envelope Rates?','MODULE_SHIPPING_FEDEX_EXPRESS_ENVELOPE','False','Do you want to offer Fedex Envelope rates? All items under 1/2 LB (.23KG) will quote using the envelope rate if True.',6,21,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(791,'Sort rates: ','MODULE_SHIPPING_FEDEX_EXPRESS_WEIGHT_SORT','High to Low','Sort rates top to bottom: ',6,22,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'High to Low\', \'Low to High\'), '),(773,'Enable Dimensions?','MODULE_SHIPPING_FEDEX_EXPRESS_DIMENSIONS','False','Do you want to add dimensional support?',6,7,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(774,'Weight Units','MODULE_SHIPPING_FEDEX_EXPRESS_WEIGHT','LBS','Weight Units:',6,7,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'LBS\', \'KGS\'), '),(775,'First line of street address','MODULE_SHIPPING_FEDEX_EXPRESS_ADDRESS_1','9079 Pierson Rd','Enter the first line of your ship-from street address, required',6,8,NULL,'2010-01-16 23:47:15',NULL,NULL),(776,'Second line of street address','MODULE_SHIPPING_FEDEX_EXPRESS_ADDRESS_2','NONE','Enter the second line of your ship-from street address, leave set to NONE if you do not need to specify a second line',6,9,NULL,'2010-01-16 23:47:15',NULL,NULL),(768,'Your Fedex Account Number','MODULE_SHIPPING_FEDEX_EXPRESS_ACCOUNT','433328922','Enter the fedex Account Number assigned to you, required',6,2,NULL,'2010-01-16 23:47:15',NULL,NULL),(769,'Your Fedex Meter ID','MODULE_SHIPPING_FEDEX_EXPRESS_METER','6243286','Enter the Fedex MeterID assigned to you, set to NONE to obtain a new meter number',6,3,NULL,'2010-01-16 23:47:15',NULL,NULL),(770,'cURL Path','MODULE_SHIPPING_FEDEX_EXPRESS_CURL','NONE','Enter the path to the cURL program, normally, leave this set to NONE to execute cURL using PHP',6,4,NULL,'2010-01-16 23:47:15',NULL,NULL),(771,'cURL Proxy','MODULE_SHIPPING_FEDEX_EXPRESS_CURL_PROXY','NONE','Enter the Complete Url includeing http:// to your proxy server. If not needed leave set to NONE.',6,5,NULL,'2010-01-16 23:47:15',NULL,NULL),(772,'Debug Mode','MODULE_SHIPPING_FEDEX_EXPRESS_DEBUG','False','Turn on Debug',6,6,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(679,'Drop Down List Options','FEC_DROP_DOWN_LIST','Option 1,Option 2,Option 3,Option 4,Option 5','Enter each option separated by commas:',31,17,NULL,'2010-01-12 08:59:53',NULL,NULL),(798,'Standard Overnight: ','MODULE_SHIPPING_FEDEX_EXPRESS_STANDARD_OVERNIGHT','true','Offer Standard Overnight?',6,32,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(799,'First Overnight: ','MODULE_SHIPPING_FEDEX_EXPRESS_FIRST_OVERNIGHT','false','Offer First Overnight?',6,33,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(800,'Express Saver: ','MODULE_SHIPPING_FEDEX_EXPRESS_SAVER','true','Offer Express Saver?',6,34,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(801,'International Priority: ','MODULE_SHIPPING_FEDEX_EXPRESS_INT_PRIORITY','false','Offer International Priority?',6,35,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(802,'International Economy: ','MODULE_SHIPPING_FEDEX_EXPRESS_INT_ECONOMY','true','Offer International Economy?',6,36,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(803,'International First: ','MODULE_SHIPPING_FEDEX_EXPRESS_INT_FIRST','false','Offer International First?',6,37,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(804,'Sort Order','MODULE_SHIPPING_FEDEX_EXPRESS_SORT_ORDER','0','Sort order of display.',6,99,NULL,'2010-01-16 23:47:15',NULL,NULL),(837,'Tax Class','MODULE_SHIPPING_FEDEX_GROUND_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,25,NULL,'2010-01-16 23:52:16','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(838,'Shipping Zone','MODULE_SHIPPING_FEDEX_GROUND_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2010-01-16 23:52:16','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(835,'Sort rates: ','MODULE_SHIPPING_FEDEX_GROUND_WEIGHT_SORT','High to Low','Sort rates top to bottom: ',6,19,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'High to Low\', \'Low to High\'), '),(836,'Timeout in Seconds','MODULE_SHIPPING_FEDEX_GROUND_TIMEOUT','NONE','Enter the maximum time in seconds you would wait for a rate request from Fedex? Leave NONE for default timeout.',6,22,NULL,'2010-01-16 23:52:16',NULL,NULL),(811,'Enable Fedex Shipping','MODULE_SHIPPING_FEDEX_GROUND_STATUS','True','Do you want to offer Fedex shipping?',6,10,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(812,'Your Fedex Account Number','MODULE_SHIPPING_FEDEX_GROUND_ACCOUNT','433328922','Enter the fedex Account Number assigned to you, required',6,11,NULL,'2010-01-16 23:52:16',NULL,NULL),(813,'Your Fedex Meter ID','MODULE_SHIPPING_FEDEX_GROUND_METER','6243287','Enter the Fedex MeterID assigned to you, set to NONE to obtain a new meter number',6,12,NULL,'2010-01-16 23:52:16',NULL,NULL),(814,'cURL Path','MODULE_SHIPPING_FEDEX_GROUND_CURL','NONE','Enter the path to the cURL program, normally, leave this set to NONE to execute cURL using PHP',6,12,NULL,'2010-01-16 23:52:16',NULL,NULL),(815,'cURL Proxy','MODULE_SHIPPING_FEDEX_GROUND_CURL_PROXY','NONE','Enter the Complete Url includeing http:// to your proxy server. If not needed leave set to NONE.',6,12,NULL,'2010-01-16 23:52:16',NULL,NULL),(816,'Debug Mode','MODULE_SHIPPING_FEDEX_GROUND_DEBUG','False','Turn on Debug',6,19,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(817,'Enable Dimensions?','MODULE_SHIPPING_FEDEX_GROUND_DIMENSIONS','False','Do you want to add dimensional support?',6,19,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(818,'Weight Units','MODULE_SHIPPING_FEDEX_GROUND_WEIGHT','LBS','Weight Units:',6,19,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'LBS\', \'KGS\'), '),(819,'First line of street address','MODULE_SHIPPING_FEDEX_GROUND_ADDRESS_1','9079 Pierson Rd','Enter the first line of your ship-from street address, required',6,13,NULL,'2010-01-16 23:52:16',NULL,NULL),(820,'Second line of street address','MODULE_SHIPPING_FEDEX_GROUND_ADDRESS_2','NONE','Enter the second line of your ship-from street address, leave set to NONE if you do not need to specify a second line',6,14,NULL,'2010-01-16 23:52:16',NULL,NULL),(821,'City name','MODULE_SHIPPING_FEDEX_GROUND_CITY','Fowlerville','Enter the city name for the ship-from street address, required',6,15,NULL,'2010-01-16 23:52:16',NULL,NULL),(822,'State or Province name','MODULE_SHIPPING_FEDEX_GROUND_STATE','MI','Enter the 2 letter state or province name for the ship-from street address, required for Canada and US',6,16,NULL,'2010-01-16 23:52:16',NULL,NULL),(823,'Postal code','MODULE_SHIPPING_FEDEX_GROUND_POSTAL','48836','Enter the postal code for the ship-from street address, required',6,17,NULL,'2010-01-16 23:52:16',NULL,NULL),(824,'Phone number','MODULE_SHIPPING_FEDEX_GROUND_PHONE','800-899-9790','Enter a contact phone number for your company, required',6,18,NULL,'2010-01-16 23:52:16',NULL,NULL),(825,'Which server to use','MODULE_SHIPPING_FEDEX_GROUND_SERVER','production','You must have an account with Fedex',6,19,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'test\', \'production\'), '),(826,'Drop off type','MODULE_SHIPPING_FEDEX_GROUND_DROPOFF','1','Dropoff type (1 = Regular pickup, 2 = request courier, 3 = drop box, 4 = drop at BSC, 5 = drop at station)?',6,20,NULL,'2010-01-16 23:52:16',NULL,NULL),(827,'Fedex Domestic fixed surcharge?','MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_DOM','0','Fixed surcharge amount to add to domestic shipping charge?',6,21,NULL,'2010-01-16 23:52:16',NULL,NULL),(828,'Fedex Domestic variable surcharge?','MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_PERCENT_DOM','0','Percentage surcharge amount to add to domestic shipping charge?',6,21,NULL,'2010-01-16 23:52:16',NULL,NULL),(829,'Fedex International fixed surcharge?','MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_INT','0','Fixed surcharge amount to add to iterational shipping charge?',6,22,NULL,'2010-01-16 23:52:16',NULL,NULL),(830,'Fedex International variable surcharge?','MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_PERCENT_INT','0','Percentage surcharge amount to add to international shipping charge?',6,22,NULL,'2010-01-16 23:52:16',NULL,NULL),(831,'Show List Rates?','MODULE_SHIPPING_FEDEX_GROUND_LIST_RATES','False','This needs to be left set to false',6,22,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(832,'Residential surcharge?','MODULE_SHIPPING_FEDEX_GROUND_RESIDENTIAL','0','Residential Surcharge (in addition to other surcharge) for Express packages within US, or ground packages within Canada?',6,223,NULL,'2010-01-16 23:52:16',NULL,NULL),(833,'Insurance?','MODULE_SHIPPING_FEDEX_GROUND_INSURE','50','Insure packages over what dollar amount?',6,24,NULL,'2010-01-16 23:52:16',NULL,NULL),(834,'Enable Envelope Rates?','MODULE_SHIPPING_FEDEX_GROUND_ENVELOPE','False','Do you want to offer Fedex Envelope rates? All items under 1/2 LB (.23KG) will quote using the envelope rate if True.',6,10,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(688,'Master Password','FEC_MASTER_PASSWORD','false','Allow login to customer account using master password??',31,27,NULL,'2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(689,'Checkout Without Account','FEC_NOACCOUNT_SWITCH','true','Activate Checkout Without an Account?',31,30,'2010-05-28 10:29:20','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(690,'Checkout Without Account Only','FEC_NOACCOUNT_ONLY_SWITCH','true','Disable regular login/registration and force Checkout Without an Account?',31,31,'2010-05-28 10:29:28','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(691,'Hide Email Options For No Account','FEC_NOACCOUNT_HIDEEMAIL','true','Hide \"HTML/TEXT-Only\" for checkout without account?',31,32,'2010-05-28 10:00:11','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(692,'Automatic LogOff for No Account','FEC_NOACCOUNT_LOGOFF','true','Automatically logoff customers without accounts?',31,33,'2010-05-28 10:11:26','2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(693,'Telephone Number','ACCOUNT_TELEPHONE','true','Display telephone number field during account creation and with account information',5,8,NULL,'2010-01-12 08:59:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(697,'Express Checkout: Require Confirmed Address','MODULE_PAYMENT_PAYPALWPP_CONFIRMED_ADDRESS','No','Do you want to require that your customers use a *confirmed* address when choosing their shipping address in PayPal?',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(699,'Express Checkout: Skip Payment Page','MODULE_PAYMENT_PAYPALWPP_SKIP_PAYMENT_PAGE','Yes','If the customer is checking out with Express Checkout, do you want to skip the checkout payment page, making things more *express*? <br /><strong>(NOTE: The Payment Page will auto-display regardless of this setting if you have Coupons or Gift Certificates enabled in your store.)</strong>',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(700,'Express Checkout: Automatic Account Creation','MODULE_PAYMENT_PAYPALWPP_NEW_ACCT_NOTIFY','Yes','If a visitor is not an existing customer, a Zen Cart account is created for them.  Would you like make it a permanent account and send them an email containing their login information?<br />NOTE: Permanent accounts are auto-created if the customer purchases downloads or gift certificates, regardless of this setting.',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(701,'Sort order of display.','MODULE_PAYMENT_PAYPALWPP_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,25,NULL,'2010-01-15 17:14:50',NULL,NULL),(702,'Payment Zone','MODULE_PAYMENT_PAYPALWPP_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,25,NULL,'2010-01-15 17:14:50','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(703,'Set Order Status','MODULE_PAYMENT_PAYPALWPP_ORDER_STATUS_ID','2','Set the status of orders paid with this payment module to this value. <br /><strong>Recommended: Processing[2]</strong>',6,25,NULL,'2010-01-15 17:14:50','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(704,'Set Unpaid Order Status','MODULE_PAYMENT_PAYPALWPP_ORDER_PENDING_STATUS_ID','1','Set the status of unpaid orders made with this payment module to this value. <br /><strong>Recommended: Pending[1]</strong>',6,25,NULL,'2010-01-15 17:14:50','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(705,'Set Refund Order Status','MODULE_PAYMENT_PAYPALWPP_REFUNDED_STATUS_ID','1','Set the status of refunded orders to this value. <br /><strong>Recommended: Pending[1]</strong>',6,25,NULL,'2010-01-15 17:14:50','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(706,'PayPal Page Style','MODULE_PAYMENT_PAYPALWPP_PAGE_STYLE','Primary','The page-layout style you want customers to see when they visit the PayPal site. You can configure your <strong>Custom Page Styles</strong> in your PayPal Profile settings. This value is case-sensitive.',6,25,NULL,'2010-01-15 17:14:50',NULL,NULL),(707,'Payment Action','MODULE_PAYMENT_PAYPALWPP_TRANSACTION_MODE','Final Sale','How do you want to obtain payment?<br /><strong>Default: Final Sale</strong>',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'Auth Only\', \'Final Sale\'), '),(708,'Transaction Currency','MODULE_PAYMENT_PAYPALWPP_CURRENCY','Selected Currency','Which currency should the order be sent to PayPal as? <br />NOTE: if an unsupported currency is sent to PayPal, it will be auto-converted to USD (or GBP if using UK account)<br /><strong>Default: Selected Currency</strong>',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'Selected Currency\', \'Only USD\', \'Only AUD\', \'Only CAD\', \'Only EUR\', \'Only GBP\', \'Only CHF\', \'Only CZK\', \'Only DKK\', \'Only HKD\', \'Only HUF\', \'Only JPY\', \'Only NOK\', \'Only NZD\', \'Only PLN\', \'Only SEK\', \'Only SGD\', \'Only THB\'), '),(709,'API Signature -- Username','MODULE_PAYMENT_PAYPALWPP_APIUSERNAME','eorder_api1.adirondakchairs.net','The API Username from your PayPal API Signature settings under *API Access*. This value typically looks like an email address and is case-sensitive.',6,25,NULL,'2010-01-15 17:14:50',NULL,NULL),(710,'API Signature -- Password','MODULE_PAYMENT_PAYPALWPP_APIPASSWORD','5HQVAEE8H4X2RKLW','The API Password from your PayPal API Signature settings under *API Access*. This value is a 16-character code and is case-sensitive.',6,25,NULL,'2010-01-15 17:14:50','zen_cfg_password_display','zen_cfg_password_input('),(711,'API Signature -- Signature Code','MODULE_PAYMENT_PAYPALWPP_APISIGNATURE','AzLXErO-POt3qvxnWvtGYH8oYbq4AQUYPjKlVW.S3aUcn8mckIQaMONm','The API Signature from your PayPal API Signature settings under *API Access*. This value is a 56-character code, and is case-sensitive.',6,25,NULL,'2010-01-15 17:14:50',NULL,NULL),(712,'PAYFLOW: User','MODULE_PAYMENT_PAYPALWPP_PFUSER','','If you set up one or more additional users on the account, this value is the ID of the user authorized to process transactions. Otherwise it should be the same value as VENDOR. This value is case-sensitive.',6,25,NULL,'2010-01-15 17:14:50',NULL,NULL),(713,'PAYFLOW: Partner','MODULE_PAYMENT_PAYPALWPP_PFPARTNER','ZenCart','Your Payflow Partner linked to your Payflow account. This value is case-sensitive.<br />Typical values: <strong>PayPal</strong> or <strong>ZenCart</strong>',6,25,NULL,'2010-01-15 17:14:50',NULL,NULL),(714,'PAYFLOW: Vendor','MODULE_PAYMENT_PAYPALWPP_PFVENDOR','','Your merchant login ID that you created when you registered for the Payflow Pro account. This value is case-sensitive.',6,25,NULL,'2010-01-15 17:14:50',NULL,NULL),(715,'PAYFLOW: Password','MODULE_PAYMENT_PAYPALWPP_PFPASSWORD','','The 6- to 32-character password that you defined while registering for the account. This value is case-sensitive.',6,25,NULL,'2010-01-15 17:14:50','zen_cfg_password_display','zen_cfg_password_input('),(716,'PayPal Mode','MODULE_PAYMENT_PAYPALWPP_MODULE_MODE','PayPal','Which PayPal API system should be used for processing? <br /><u>Choices:</u><br /><font color=green>For choice #1, you need to supply <strong>API Settings</strong> above.</font><br /><strong>1. PayPal</strong> = Express Checkout with a regular PayPal account<br />or<br /><font color=green>for choices 2 &amp; 3 you need to supply <strong>PAYFLOW settings</strong>, below (and have a Payflow account)</font><br /><strong>2. Payflow-UK</strong> = Website Payments Pro UK Payflow Edition<br /><strong>3. Payflow-US</strong> = Payflow Pro Gateway only<!--<br /><strong>4. PayflowUS+EC</strong> = Payflow Pro with Express Checkout-->',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'PayPal\', \'Payflow-UK\', \'Payflow-US\'), '),(717,'Debug Mode','MODULE_PAYMENT_PAYPALWPP_DEBUGGING','Log File','Would you like to enable debug mode?  A complete detailed log of failed transactions will be emailed to the store owner.',6,25,NULL,'2010-01-15 17:14:50',NULL,'zen_cfg_select_option(array(\'Off\', \'Alerts Only\', \'Log File\', \'Log and Email\'), '),(718,'Enable this Payment Module','MODULE_PAYMENT_PAYPALDP_STATUS','True','Do you want to enable this payment module?',6,25,NULL,'2010-01-15 17:20:23',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(719,'Live or Sandbox','MODULE_PAYMENT_PAYPALDP_SERVER','live','<strong>Live: </strong> Used to process Live transactions<br><strong>Sandbox: </strong>For developers and testing',6,25,NULL,'2010-01-15 17:20:23',NULL,'zen_cfg_select_option(array(\'live\', \'sandbox\'), '),(720,'Sort order of display.','MODULE_PAYMENT_PAYPALDP_SORT_ORDER','1','Sort order of display. Lowest is displayed first.',6,25,NULL,'2010-01-15 17:20:23',NULL,NULL),(721,'Payment Zone','MODULE_PAYMENT_PAYPALDP_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,25,NULL,'2010-01-15 17:20:23','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(722,'Set Order Status','MODULE_PAYMENT_PAYPALDP_ORDER_STATUS_ID','2','Set the status of orders paid with this payment module to this value. <br /><strong>Recommended: Processing[2]</strong>',6,25,NULL,'2010-01-15 17:20:23','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(723,'Set Unpaid Order Status','MODULE_PAYMENT_PAYPALDP_ORDER_PENDING_STATUS_ID','1','Set the status of unpaid orders made with this payment module to this value. <br /><strong>Recommended: Pending[1]</strong>',6,25,NULL,'2010-01-15 17:20:23','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(724,'Payment Action','MODULE_PAYMENT_PAYPALDP_TRANSACTION_MODE','Final Sale','How do you want to obtain payment?<br /><strong>Default: Final Sale</strong>',6,25,NULL,'2010-01-15 17:20:23',NULL,'zen_cfg_select_option(array(\'Auth Only\', \'Final Sale\'), '),(725,'Transaction Currency','MODULE_PAYMENT_PAYPALDP_CURRENCY','Selected Currency','Which currency should the order be sent to PayPal as? <br />NOTE: if an unsupported currency is sent to PayPal, it will be auto-converted to USD (or GBP if using UK account)<br /><strong>Default: Selected Currency</strong>',6,25,NULL,'2010-01-15 17:20:23',NULL,'zen_cfg_select_option(array(\'Selected Currency\', \'Only USD\', \'Only AUD\', \'Only CAD\', \'Only EUR\', \'Only GBP\', \'Only CHF\', \'Only CZK\', \'Only DKK\', \'Only HKD\', \'Only HUF\', \'Only JPY\', \'Only NOK\', \'Only NZD\', \'Only PLN\', \'Only SEK\', \'Only SGD\', \'Only THB\'), '),(726,'PAYFLOW: User','MODULE_PAYMENT_PAYPALDP_PFUSER','','If you set up one or more additional users on the account, this value is the ID of the user authorized to process transactions. Otherwise it should be the same value as VENDOR. This value is case-sensitive.',6,25,NULL,'2010-01-15 17:20:23',NULL,NULL),(727,'PAYFLOW: Partner','MODULE_PAYMENT_PAYPALDP_PFPARTNER','ZenCart','Your Payflow Partner linked to your Payflow account. This value is case-sensitive.<br />Typical values: <strong>PayPal</strong> or <strong>ZenCart</strong>',6,25,NULL,'2010-01-15 17:20:23',NULL,NULL),(728,'PAYFLOW: Vendor','MODULE_PAYMENT_PAYPALDP_PFVENDOR','','Your merchant login ID that you created when you registered for the Payflow Pro account. This value is case-sensitive.',6,25,NULL,'2010-01-15 17:20:23',NULL,NULL),(729,'PAYFLOW: Password','MODULE_PAYMENT_PAYPALDP_PFPASSWORD','','The 6- to 32-character password that you defined while registering for the account. This value is case-sensitive.',6,25,NULL,'2010-01-15 17:20:23','zen_cfg_password_display','zen_cfg_password_input('),(730,'PayPal Mode','MODULE_PAYMENT_PAYPALDP_MODULE_MODE','PayPal','Which PayPal API system should be used for processing? <br /><u>Choices:</u><br /><font color=green>For choice #1, you need to supply <strong>API Settings</strong> in the Express Checkout module.</font><br /><strong>1. PayPal</strong> = Website Payments Pro with a US PayPal account<br />or<br /><font color=green>for choices 2 &amp; 3 you need to supply <strong>PAYFLOW settings</strong>,  (and have a Payflow account)</font><br /><strong>2. Payflow-UK</strong> = Website Payments Pro UK Payflow Edition<br /><strong>3. Payflow-US</strong> = Payflow Pro Gateway only<!--<br /><strong>4. PayflowUS+EC</strong> = Payflow Pro with Express Checkout-->',6,25,NULL,'2010-01-15 17:20:23',NULL,'zen_cfg_select_option(array(\'PayPal\', \'Payflow-UK\', \'Payflow-US\'), '),(731,'Debug Mode','MODULE_PAYMENT_PAYPALDP_DEBUGGING','Log File','Would you like to enable debug mode?  A complete detailed log of failed transactions will be emailed to the store owner.',6,25,NULL,'2010-01-15 17:20:23',NULL,'zen_cfg_select_option(array(\'Off\', \'Alerts Only\', \'Log File\', \'Log and Email\'), '),(767,'Enable Fedex Shipping','MODULE_SHIPPING_FEDEX_EXPRESS_STATUS','True','Do you want to offer Fedex shipping?',6,1,NULL,'2010-01-16 23:47:15',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(751,'Enable UPS Shipping','MODULE_SHIPPING_UPS_STATUS','True','Do you want to offer UPS shipping?',6,0,NULL,'2010-01-16 23:07:25',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(752,'UPS Pickup Method','MODULE_SHIPPING_UPS_PICKUP','CC','How do you give packages to UPS? CC - Customer Counter, RDP - Daily Pickup, OTP - One Time Pickup, LC - Letter Center, OCA - On Call Air',6,0,NULL,'2010-01-16 23:07:25',NULL,NULL),(753,'UPS Packaging?','MODULE_SHIPPING_UPS_PACKAGE','CP','CP - Your Packaging, ULE - UPS Letter, UT - UPS Tube, UBE - UPS Express Box',6,0,NULL,'2010-01-16 23:07:25',NULL,NULL),(754,'Residential Delivery?','MODULE_SHIPPING_UPS_RES','RES','Quote for Residential (RES) or Commercial Delivery (COM)',6,0,NULL,'2010-01-16 23:07:25',NULL,NULL),(755,'Handling Fee','MODULE_SHIPPING_UPS_HANDLING','0','Handling fee for this shipping method.',6,0,NULL,'2010-01-16 23:07:25',NULL,NULL),(756,'Tax Class','MODULE_SHIPPING_UPS_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2010-01-16 23:07:25','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(757,'Tax Basis','MODULE_SHIPPING_UPS_TAX_BASIS','Shipping','On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone',6,0,NULL,'2010-01-16 23:07:25',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(758,'Shipping Zone','MODULE_SHIPPING_UPS_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2010-01-16 23:07:25','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(759,'Sort order of display.','MODULE_SHIPPING_UPS_SORT_ORDER','2','Sort order of display. Lowest is displayed first.',6,0,NULL,'2010-01-16 23:07:25',NULL,NULL),(760,'Shipping Methods: <br />Nxt AM, Nxt AM Ltr, Nxt, Nxt Ltr, Nxt PR, Nxt Save, Nxt Save Ltr, 2nd AM, 2nd AM Ltr, 2nd, 2nd Ltr, 3 Day Select, Ground, Canada,World Xp, World Xp Ltr, World Xp Plus, World Xp Plus Ltr, World Expedite, WorldWideSaver','MODULE_SHIPPING_UPS_TYPES','2DAL, 3DS, GND, STD','Select the UPS services to be offered.',6,13,NULL,'2010-01-16 23:07:25',NULL,'zen_cfg_select_multioption(array(\'1DM\',\'1DML\', \'1DA\', \'1DAL\', \'1DAPI\', \'1DP\', \'1DPL\', \'2DM\', \'2DML\', \'2DA\', \'2DAL\', \'3DS\',\'GND\', \'STD\', \'XPR\', \'XPRL\', \'XDM\', \'XDML\', \'XPD\', \'WXS\'), '),(840,'Home Delivery: ','MODULE_SHIPPING_FEDEX_GROUND_HOME','true','Offer Home Delivery?',6,30,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(841,'Ground: ','MODULE_SHIPPING_FEDEX_GROUND_GROUND','true','Offer Ground?',6,31,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(842,'International Home Delivery: ','MODULE_SHIPPING_FEDEX_GROUND_INT_HOME','true','Offer International Home Delivery?',6,32,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(843,'International Ground: ','MODULE_SHIPPING_FEDEX_GROUND_INT_GROUND','true','Offer International Ground?',6,33,NULL,'2010-01-16 23:52:16',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(844,'Sort Order','MODULE_SHIPPING_FEDEX_GROUND_SORT_ORDER','1','Sort order of display.',6,99,NULL,'2010-01-16 23:52:16',NULL,NULL),(845,'Compress XML File','SITEMAPXML_COMPRESS','false','Compress Google XML Sitemap file',32,1,NULL,'2010-02-13 19:55:33',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(846,'Lastmod tag format','SITEMAPXML_LASTMOD_FORMAT','date','Lastmod tag format:<br />date - Complete date: YYYY-MM-DD (eg 1997-07-16)<br />full -    Complete date plus hours, minutes and seconds: YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)',32,2,NULL,'2010-02-13 19:55:33',NULL,'zen_cfg_select_option(array(\'date\', \'full\'),'),(847,'Use Existing Files','SITEMAPXML_USE_EXISTING_FILES','true','Use Existing XML Files',32,3,NULL,'2010-02-13 19:55:33',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(848,'Generate language_id for default language','SITEMAPXML_USE_DEFAULT_LANGUAGE','true','Generate language_id parameter for default language',32,4,NULL,'2010-02-13 19:55:33',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(849,'Ping urls','SITEMAPXML_PING_URLS','Google => http://www.google.com/webmasters/sitemaps/ping?sitemap=%s; Yahoo! => http://search.yahooapis.com/SiteExplorerService/V1/ping?sitemap=%s; Ask.com => http://submissions.ask.com/ping?sitemap=%s; Microsoft => http://www.moreover.com/ping?u=%s','List of pinging urls separated by ;',32,10,NULL,'2010-02-13 19:55:33',NULL,'zen_cfg_textarea('),(850,'Products order by','SITEMAPXML_PRODUCTS_ORDERBY','products_sort_order ASC, last_date DESC','',32,20,NULL,'2010-02-13 19:55:33',NULL,NULL),(851,'Products changefreq','SITEMAPXML_PRODUCTS_CHANGEFREQ','weekly','How frequently the Product pages page is likely to change.',32,21,NULL,'2010-02-13 19:55:33',NULL,'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),(852,'Categories order by','SITEMAPXML_CATEGORIES_ORDERBY','sort_order ASC, last_date DESC','',32,30,NULL,'2010-02-13 19:55:33',NULL,NULL),(853,'Category changefreq','SITEMAPXML_CATEGORIES_CHANGEFREQ','weekly','How frequently the Category pages page is likely to change.',32,31,NULL,'2010-02-13 19:55:33',NULL,'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),(854,'Reviews order by','SITEMAPXML_REVIEWS_ORDERBY','reviews_rating ASC, last_date DESC','',32,40,NULL,'2010-02-13 19:55:33',NULL,NULL),(855,'Reviews changefreq','SITEMAPXML_REVIEWS_CHANGEFREQ','monthly','How frequently the Category pages page is likely to change.',32,41,'2010-02-13 19:59:20','2010-02-13 19:55:33',NULL,'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),(856,'EZPages order by','SITEMAPXML_EZPAGES_ORDERBY','sidebox_sort_order ASC, header_sort_order ASC, footer_sort_order ASC','',32,50,NULL,'2010-02-13 19:55:33',NULL,NULL),(857,'EZPages changefreq','SITEMAPXML_EZPAGES_CHANGEFREQ','weekly','How frequently the EZPages pages page is likely to change.',32,51,NULL,'2010-02-13 19:55:33',NULL,'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),(858,'Testimonials order by','SITEMAPXML_TESTIMONIALS_ORDERBY','last_date DESC','',32,60,NULL,'2010-02-13 19:55:33',NULL,NULL),(859,'Testimonials changefreq','SITEMAPXML_TESTIMONIALS_CHANGEFREQ','weekly','How frequently the EZPages pages page is likely to change.',32,61,NULL,'2010-02-13 19:55:33',NULL,'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),');
/*!40000 ALTER TABLE `zen_configuration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_configuration_group`
--

DROP TABLE IF EXISTS `zen_configuration_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_configuration_group` (
  `configuration_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_group_title` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `configuration_group_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sort_order` int(5) DEFAULT NULL,
  `visible` int(1) DEFAULT '1',
  PRIMARY KEY (`configuration_group_id`),
  KEY `idx_visible_zen` (`visible`)
) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_configuration_group`
--

LOCK TABLES `zen_configuration_group` WRITE;
/*!40000 ALTER TABLE `zen_configuration_group` DISABLE KEYS */;
INSERT INTO `zen_configuration_group` VALUES (1,'My Store','General information about my store',1,1),(2,'Minimum Values','The minimum values for functions / data',2,1),(3,'Maximum Values','The maximum values for functions / data',3,1),(4,'Images','Image parameters',4,1),(5,'Customer Details','Customer account configuration',5,1),(6,'Module Options','Hidden from configuration',6,0),(7,'Shipping/Packaging','Shipping options available at my store',7,1),(8,'Product Listing','Product Listing configuration options',8,1),(9,'Stock','Stock configuration options',9,1),(10,'Logging','Logging configuration options',10,1),(11,'Regulations','Regulation options',16,1),(12,'E-Mail Options','General settings for E-Mail transport and HTML E-Mails',12,1),(13,'Attribute Settings','Configure products attributes settings',13,1),(14,'GZip Compression','GZip compression options',14,1),(15,'Sessions','Session options',15,1),(16,'GV Coupons','Gift Vouchers and Coupons',16,1),(17,'Credit Cards','Credit Cards Accepted',17,1),(18,'Product Info','Product Info Display Options',18,1),(19,'Layout Settings','Layout Options',19,1),(20,'Website Maintenance','Website Maintenance Options',20,1),(21,'New Listing','New Products Listing',21,1),(22,'Featured Listing','Featured Products Listing',22,1),(23,'All Listing','All Products Listing',23,1),(24,'Index Listing','Index Products Listing',24,1),(25,'Define Page Status','Define Main Pages and HTMLArea Options',25,1),(30,'EZ-Pages Settings','EZ-Pages Settings',30,1),(31,'Fast and Easy Checkout Configuration','Set Fast and Easy Checkout Options',31,1),(32,'Sitemap XML','Sitemap XML Configuration',32,1);
/*!40000 ALTER TABLE `zen_configuration_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_counter`
--

DROP TABLE IF EXISTS `zen_counter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_counter` (
  `startdate` char(8) COLLATE utf8_unicode_ci DEFAULT NULL,
  `counter` int(12) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_counter`
--

LOCK TABLES `zen_counter` WRITE;
/*!40000 ALTER TABLE `zen_counter` DISABLE KEYS */;
INSERT INTO `zen_counter` VALUES ('20100104',72233);
/*!40000 ALTER TABLE `zen_counter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_counter_history`
--

DROP TABLE IF EXISTS `zen_counter_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_counter_history` (
  `startdate` char(8) COLLATE utf8_unicode_ci DEFAULT NULL,
  `counter` int(12) DEFAULT NULL,
  `session_counter` int(12) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_counter_history`
--

LOCK TABLES `zen_counter_history` WRITE;
/*!40000 ALTER TABLE `zen_counter_history` DISABLE KEYS */;
INSERT INTO `zen_counter_history` VALUES ('20100104',21,4),('20100105',43,6),('20100106',217,15),('20100107',151,9),('20100108',44,8),('20100109',116,3),('20100110',332,14),('20100111',513,26),('20100112',807,28),('20100113',77,7),('20100114',34,2),('20100115',172,15),('20100116',39,6),('20100117',129,13),('20100118',3,1),('20100119',63,4),('20100120',413,10),('20100121',122,25),('20100124',64,8),('20100125',35,11),('20100126',120,50),('20100127',69,15),('20100128',29,15),('20100129',13,12),('20100130',18,17),('20100131',22,21),('20100201',67,60),('20100202',14,14),('20100203',33,30),('20100204',33,24),('20100205',38,36),('20100206',26,15),('20100207',10,10),('20100208',88,45),('20100209',260,56),('20100210',171,44),('20100211',172,53),('20100212',58,42),('20100213',122,50),('20100214',277,112),('20100215',151,104),('20100216',84,40),('20100217',404,399),('20100218',108,42),('20100219',93,48),('20100220',72,33),('20100221',74,29),('20100222',81,67),('20100223',109,43),('20100224',33,20),('20100225',68,24),('20100226',2,1),('20100227',120,38),('20100228',22,10),('20100301',26,13),('20100302',3994,619),('20100303',24,20),('20100304',37,29),('20100305',25,13),('20100306',52,31),('20100307',64,42),('20100308',40,40),('20100309',52,49),('20100310',24,20),('20100311',62,26),('20100312',35,29),('20100313',40,24),('20100314',46,28),('20100315',36,35),('20100316',58,36),('20100317',57,35),('20100318',117,73),('20100319',62,52),('20100320',26,20),('20100321',37,27),('20100322',17,17),('20100323',42,42),('20100324',119,64),('20100325',43,37),('20100326',33,31),('20100327',23,23),('20100328',29,24),('20100329',56,29),('20100330',34,18),('20100331',22,22),('20100401',28,24),('20100402',41,22),('20100403',98,92),('20100404',131,129),('20100405',61,60),('20100406',44,41),('20100407',42,39),('20100408',30,30),('20100409',40,40),('20100410',55,44),('20100411',55,46),('20100412',29,29),('20100413',72,63),('20100414',43,43),('20100415',41,41),('20100416',51,51),('20100417',53,47),('20100418',48,39),('20100419',83,66),('20100420',38,38),('20100421',59,45),('20100422',45,43),('20100423',32,32),('20100424',39,39),('20100425',35,35),('20100426',84,56),('20100427',42,36),('20100428',49,46),('20100429',52,50),('20100430',89,88),('20100501',58,58),('20100502',44,38),('20100503',75,74),('20100504',52,52),('20100505',46,46),('20100506',40,40),('20100507',60,54),('20100508',141,137),('20100509',81,79),('20100510',79,75),('20100511',44,43),('20100512',32,32),('20100513',44,43),('20100514',44,39),('20100515',33,33),('20100516',84,76),('20100517',60,49),('20100518',82,81),('20100519',218,148),('20100520',159,141),('20100521',88,85),('20100522',149,128),('20100523',165,149),('20100524',119,93),('20100525',74,74),('20100526',167,124),('20100527',197,98),('20100528',251,134),('20100529',87,76),('20100530',97,88),('20100531',156,118),('20100601',82,79),('20100602',118,97),('20100603',85,78),('20100604',84,72),('20100605',39,39),('20100606',38,35),('20100607',105,94),('20100608',144,130),('20100609',68,65),('20100610',87,79),('20100611',203,146),('20100612',150,112),('20100613',56,46),('20100614',129,57),('20100615',170,73),('20100616',52,49),('20100617',75,66),('20100618',80,71),('20100619',133,122),('20100620',57,40),('20100621',73,58),('20100622',90,71),('20100623',54,48),('20100624',79,55),('20100625',109,96),('20100626',75,60),('20100627',66,55),('20100628',97,87),('20100629',83,82),('20100630',93,64),('20100701',69,57),('20100702',126,122),('20100703',182,179),('20100704',128,120),('20100705',44,43),('20100706',83,82),('20100707',103,97),('20100708',87,87),('20100709',50,43),('20100710',52,24),('20100711',123,90),('20100712',21,18),('20100713',59,44),('20100714',73,71),('20100715',136,89),('20100716',26,18),('20100717',29,21),('20100718',79,75),('20100719',175,174),('20100720',113,113),('20100721',54,49),('20100722',79,62),('20100723',71,71),('20100724',82,52),('20100725',128,48),('20100726',44,43),('20100727',61,53),('20100728',95,85),('20100729',49,49),('20100730',47,44),('20100731',94,88),('20100801',45,42),('20100802',76,49),('20100803',116,58),('20100804',57,57),('20100805',99,98),('20100806',149,147),('20100807',76,72),('20100808',96,96),('20100809',102,102),('20100810',90,90),('20100811',85,76),('20100812',120,88),('20100813',106,106),('20100814',70,65),('20100815',69,61),('20100816',74,60),('20100817',47,39),('20100818',48,44),('20100819',117,110),('20100820',43,40),('20100821',81,81),('20100822',51,50),('20100823',42,42),('20100824',63,63),('20100825',29,25),('20100826',50,48),('20100827',112,110),('20100828',52,44),('20100829',45,40),('20100830',72,45),('20100831',86,69),('20100901',43,28),('20100902',33,33),('20100903',74,71),('20100904',52,46),('20100905',239,64),('20100906',16,15),('20100907',69,69),('20100908',38,37),('20100909',111,77),('20100910',71,68),('20100911',50,50),('20100912',180,73),('20100913',51,50),('20100914',167,79),('20100915',43,42),('20100916',116,54),('20100917',60,44),('20100918',94,83),('20100919',248,62),('20100920',107,107),('20100921',54,54),('20100922',71,40),('20100923',41,35),('20100924',40,40),('20100925',92,81),('20100926',246,84),('20100927',36,34),('20100928',74,62),('20100929',40,39),('20100930',36,32),('20101001',12,11),('20101002',25,15),('20101003',223,58),('20101004',39,26),('20101005',28,18),('20101006',35,32),('20101007',24,24),('20101008',27,21),('20101009',48,43),('20101010',62,37),('20101011',19,16),('20101012',37,37),('20101013',79,79),('20101014',53,52),('20101015',55,52),('20101016',24,24),('20101017',25,19),('20101018',36,34),('20101019',39,19),('20101020',13,13),('20101021',19,16),('20101022',11,11),('20101023',20,20),('20101024',22,19),('20101025',22,22),('20101026',45,22),('20101027',619,63),('20101028',25,23),('20101029',40,23),('20101030',15,15),('20101031',20,18),('20101101',46,26),('20101102',64,39),('20101103',76,75),('20101104',53,50),('20101105',55,55),('20101106',20,20),('20101107',20,19),('20101108',37,30),('20101109',29,27),('20101110',18,18),('20101111',15,15),('20101112',22,22),('20101113',29,26),('20101114',101,73),('20101115',48,47),('20101116',381,120),('20101117',26,26),('20101118',36,36),('20101119',52,49),('20101120',42,39),('20101121',53,46),('20101122',17,12),('20101123',42,42),('20101124',25,25),('20101125',130,102),('20101126',102,102),('20101127',93,72),('20101128',103,55),('20101129',39,32),('20101130',38,38),('20101201',50,36),('20101202',21,21),('20101203',148,70),('20101204',13,13),('20101205',52,52),('20101206',18,18),('20101207',19,19),('20101208',21,21),('20101209',23,23),('20101210',26,26),('20101211',46,35),('20101212',40,28),('20101213',52,34),('20101214',51,51),('20101215',60,60),('20101216',32,32),('20101217',26,26),('20101218',38,38),('20101219',17,17),('20101220',35,30),('20101221',38,35),('20101222',43,33),('20101223',29,19),('20101224',37,37),('20101225',31,31),('20101226',36,36),('20101227',128,107),('20101228',26,26),('20101229',31,31),('20101230',12,12),('20101231',18,18),('20110101',26,26),('20110102',47,45),('20110103',80,80),('20110104',75,68),('20110105',57,57),('20110106',27,27),('20110107',38,30),('20110108',15,15),('20110109',21,21),('20110110',26,23),('20110111',37,35),('20110112',28,28),('20110113',20,20),('20110114',45,45),('20110115',32,32),('20110116',17,17),('20110117',31,31),('20110118',37,37),('20110119',17,17),('20110120',25,25),('20110121',49,47),('20110122',47,47),('20110123',63,53),('20110124',62,42),('20110124',62,42),('20110125',56,44),('20110126',51,51),('20110127',32,32),('20110128',30,30),('20110129',22,22),('20110130',38,38),('20110131',16,16),('20110201',31,28),('20110202',33,25),('20110203',30,30),('20110204',38,37),('20110205',40,40),('20110206',17,17),('20110207',18,18),('20110208',34,29),('20110209',30,30),('20110210',48,46),('20110211',50,50),('20110212',85,57),('20110213',39,39),('20110214',25,25),('20110215',28,28),('20110216',27,17),('20110217',35,33),('20110218',17,15),('20110219',11,11),('20110220',19,19),('20110221',16,16),('20110222',19,16),('20110223',30,20),('20110224',25,21),('20110225',24,24),('20110226',16,16),('20110227',90,90),('20110228',48,42),('20110301',64,53),('20110302',65,29),('20110303',85,81),('20110304',23,23),('20110305',29,25),('20110306',16,16),('20110307',16,16),('20110308',22,22),('20110309',56,56),('20110310',18,17),('20110311',15,15),('20110312',52,43),('20110313',44,44),('20110314',156,44),('20110315',36,26),('20110316',58,38),('20110317',58,32),('20110318',64,64),('20110319',51,51),('20110320',50,50),('20110321',10,10),('20110322',34,34),('20110323',81,81),('20110324',40,38),('20110325',41,41),('20110326',33,33),('20110327',35,35),('20110328',5,5),('20110329',47,47),('20110330',100,75),('20110331',25,25),('20110401',41,31),('20110402',35,35),('20110403',28,28),('20110404',18,18),('20110405',12,12),('20110406',57,30),('20110407',39,39),('20110408',29,25),('20110409',15,15),('20110410',37,37),('20110411',18,17),('20110412',70,52),('20110413',29,29),('20110414',22,20),('20110415',11,11),('20110416',95,17),('20110417',22,20),('20110418',21,20),('20110419',14,13),('20110420',16,16),('20110421',15,15),('20110422',15,15),('20110423',14,14),('20110424',26,26),('20110425',37,37),('20110426',36,36),('20110427',27,27),('20110428',29,29),('20110429',32,31),('20110430',23,21),('20110501',65,65),('20110502',21,21),('20110503',34,34),('20110504',20,19),('20110505',81,25),('20110506',5,5),('20110507',51,51),('20110508',27,27),('20110509',18,18),('20110510',48,46),('20110511',61,61),('20110512',40,40),('20110513',46,46),('20110514',100,100),('20110515',34,34),('20110516',54,54),('20110517',20,18),('20110518',6,6),('20110519',54,54),('20110520',27,17),('20110521',15,11),('20110522',24,24),('20110523',59,59),('20110524',19,18),('20110525',38,32),('20110526',52,52),('20110527',47,47),('20110528',31,30),('20110529',51,34),('20110530',66,66),('20110531',14,14),('20110601',35,33),('20110602',69,69),('20110603',10,10),('20110604',16,16),('20110605',43,43),('20110606',29,29),('20110607',23,23),('20110608',24,23),('20110609',53,53),('20110610',43,30),('20110611',10,10),('20110612',13,13),('20110613',51,51),('20110614',35,34),('20110615',42,35),('20110616',7,7),('20110617',33,20),('20110618',410,67),('20110619',44,44),('20110620',3,3),('20110621',23,23),('20110622',40,40),('20110623',18,18),('20110624',44,44),('20110624',44,44),('20110625',61,61),('20110626',19,19),('20110627',45,37),('20110628',27,27),('20110629',40,30),('20110630',29,29),('20110701',44,24),('20110702',37,34),('20110703',14,14),('20110704',25,25),('20110705',28,28),('20110706',31,26),('20110707',330,67),('20110708',36,36),('20110709',41,41),('20110710',323,95),('20110711',31,31),('20110712',80,79),('20110713',355,70),('20110714',598,114),('20110715',29,29),('20110716',16,16),('20110717',397,65),('20110718',11,11),('20110719',401,67),('20110720',389,83),('20110721',357,59),('20110722',21,21),('20110723',34,24),('20110724',17,17),('20110725',24,24),('20110726',20,19),('20110727',19,19),('20110728',20,20),('20110729',21,20),('20110730',18,18),('20110731',51,51),('20110801',25,14),('20110802',71,71),('20110803',43,43),('20110804',34,34),('20110805',40,38),('20110806',37,27),('20110807',47,47),('20110808',34,34),('20110809',67,65),('20110810',15,15),('20110811',7,7),('20110812',29,29),('20110813',68,39),('20110814',16,12),('20110815',14,14),('20110816',20,20),('20110817',11,9),('20110818',8,8),('20110819',21,20),('20110820',27,17),('20110821',15,15),('20110822',21,11),('20110823',99,18),('20110824',25,25),('20110825',24,24),('20110826',26,26),('20110827',5,5),('20110828',15,15),('20110829',15,15),('20110830',23,23),('20110831',13,13),('20110901',18,18),('20110902',12,11),('20110903',22,22),('20110904',34,34),('20110905',105,33),('20110906',19,19),('20110907',23,22),('20110907',23,22),('20110908',15,11),('20110909',67,67),('20110910',22,22),('20110911',16,16),('20110912',14,14),('20110913',20,19),('20110914',13,9),('20110915',189,15),('20110916',11,11),('20110917',24,24),('20110918',19,19),('20110919',30,20),('20110920',17,17),('20110921',13,13),('20110922',13,13),('20110923',25,14),('20110924',6,6),('20110925',22,22),('20110926',27,26),('20110927',21,21),('20110928',19,13),('20110929',55,55),('20110930',5,5),('20111001',98,19),('20111002',14,14),('20111003',13,13),('20111004',13,13),('20111005',99,20),('20111006',19,19),('20111007',15,15),('20111008',14,14),('20111009',13,13),('20111010',13,13),('20111011',14,14),('20111012',6,6),('20111013',9,9),('20111014',31,31),('20111015',44,44),('20111016',18,17),('20111017',56,22),('20111018',14,14),('20111019',74,74),('20111020',12,6),('20111021',24,24),('20111022',13,13),('20111023',16,16),('20111024',23,23),('20111025',28,28),('20111026',30,16),('20111027',7,7),('20111028',22,22),('20111029',19,15),('20111030',53,18),('20111031',12,12),('20111101',4,4),('20111102',18,18),('20111103',39,39),('20111104',94,94),('20111105',23,21),('20111106',7,7),('20111107',33,20),('20111108',9,9),('20111109',7,7),('20111110',13,12),('20111111',13,10),('20111112',19,16),('20111113',15,10),('20111114',78,74),('20111115',10,10),('20111116',22,22),('20111117',15,15),('20111118',29,19),('20111119',12,12),('20111120',13,13),('20111121',14,14),('20111122',8,6),('20111123',9,9),('20111124',75,75),('20111125',25,25),('20111126',20,20),('20111127',38,24),('20111128',14,14),('20111129',19,19),('20111130',13,13),('20111201',47,14),('20111202',22,18),('20111203',79,75),('20111204',76,66),('20111205',52,23),('20111206',39,13),('20111207',9,9),('20111208',11,11),('20111209',13,12),('20111210',9,9),('20111211',13,13),('20111212',20,20),('20111213',12,12),('20111214',67,67),('20111215',6,6),('20111216',21,21),('20111217',30,30),('20111218',63,33),('20111219',12,12),('20111220',59,28),('20111221',35,35),('20111222',18,18),('20111223',18,18),('20111224',80,79),('20111225',18,18),('20111226',15,15),('20111227',16,16),('20111228',16,16),('20111229',26,26),('20111230',5,5),('20111231',35,31),('20120101',66,66),('20120102',59,59),('20120103',83,77),('20120104',10,10),('20120105',30,30),('20120106',13,13),('20120107',32,32),('20120108',7,7),('20120109',8,8),('20120110',61,61),('20120111',16,16),('20120112',26,25),('20120113',82,82),('20120114',13,3),('20120115',7,7),('20120116',37,37),('20120117',23,21),('20120118',13,9),('20120119',55,55),('20120120',26,26),('20120121',28,28),('20120122',14,14),('20120123',105,103),('20120124',21,19),('20120125',28,28),('20120126',12,12),('20120127',13,13),('20120128',26,26),('20120129',28,28),('20120130',21,21),('20120131',85,85),('20120201',18,10),('20120202',86,84),('20120203',13,13),('20120204',21,21),('20120205',28,28),('20120206',55,22),('20120207',12,6),('20120208',13,13),('20120209',24,13),('20120210',20,20),('20120211',18,18),('20120212',76,76),('20120213',24,24),('20120214',16,14),('20120215',8,8),('20120216',5,5),('20120217',23,13),('20120218',434,102),('20120219',65,22),('20120220',4,4),('20120221',194,53),('20120222',77,77),('20120223',202,50),('20120224',28,18),('20120225',11,11),('20120226',26,26),('20120227',39,39),('20120228',12,12),('20120229',15,13),('20120301',66,66),('20120302',6,6),('20120303',75,75),('20120304',13,12),('20120305',14,14),('20120306',18,18),('20120307',15,14),('20120308',22,17),('20120309',38,17),('20120310',46,26),('20120311',11,7),('20120312',57,55),('20120313',120,118),('20120314',20,20),('20120315',52,52),('20120316',213,64),('20120317',17,13),('20120318',35,17),('20120319',70,58),('20120320',13,13),('20120321',58,54),('20120322',43,29),('20120323',67,56),('20120324',52,30),('20120325',79,78),('20120326',287,76),('20120327',132,31),('20120328',260,96),('20120329',555,18),('20120330',412,71),('20120331',50,44),('20120401',100,100),('20120402',30,30),('20120403',89,89),('20120404',135,135),('20120405',7,7),('20120406',8,7),('20120407',35,31),('20120408',17,17),('20120409',24,24),('20120410',26,26),('20120411',29,21),('20120412',21,21),('20120412',21,21),('20120413',12,9),('20120414',75,75),('20120415',27,27),('20120416',19,18),('20120417',44,30),('20120418',74,74),('20120419',25,24),('20120420',15,12),('20120421',20,20),('20120422',49,44),('20120423',36,26),('20120424',80,80),('20120425',18,17),('20120426',15,14),('20120427',10,10),('20120428',29,29),('20120429',43,43),('20120430',11,11),('20120501',13,13),('20120502',31,30),('20120503',97,97),('20120504',88,88),('20120505',13,13),('20120506',25,24),('20120507',27,20),('20120508',55,32),('20120509',61,35),('20120510',15,15),('20120511',62,62),('20120512',74,27),('20120513',20,20),('20120514',81,81),('20120515',22,15),('20120516',19,19),('20120517',11,11),('20120518',63,63),('20120519',47,19),('20120520',2,2),('20120521',37,26),('20120522',42,32),('20120523',21,21),('20120524',79,79),('20120525',25,18),('20120526',66,36),('20120527',50,38),('20120528',31,31),('20120529',46,35),('20120530',20,18),('20120531',31,20),('20120601',12,11),('20120602',14,13),('20120603',88,78),('20120604',38,17),('20120605',18,15),('20120606',23,23),('20120607',19,19),('20120608',19,17),('20120609',35,34),('20120610',57,38),('20120611',28,17),('20120612',32,17),('20120613',71,71),('20120614',31,18),('20120615',12,12),('20120616',22,22),('20120617',19,18),('20120618',27,24),('20120619',33,28),('20120620',23,23),('20120621',12,12),('20120622',39,21),('20120623',154,154),('20120624',33,33),('20120625',9,9),('20120626',20,20),('20120627',69,66),('20120628',35,25),('20120629',27,27),('20120630',37,37),('20120701',23,15),('20120702',24,23),('20120703',105,81),('20120704',19,19),('20120705',47,26),('20120706',32,23),('20120707',15,15),('20120708',29,23),('20120709',77,67),('20120710',11,11),('20120711',33,23),('20120712',9,9),('20120713',76,76),('20120714',27,17),('20120715',14,14),('20120716',24,16),('20120717',11,11),('20120718',6,6),('20120719',25,15),('20120720',36,36),('20120721',35,15),('20120722',35,29),('20120723',86,86),('20120724',23,16),('20120725',43,23),('20120726',59,39),('20120727',11,11),('20120728',31,11),('20120729',30,30),('20120730',13,11),('20120731',18,17),('20120801',70,63),('20120802',20,18),('20120803',104,78),('20120804',40,20),('20120805',12,12),('20120806',61,43),('20120807',96,70),('20120808',25,17),('20120809',26,22),('20120810',32,21),('20120811',43,43),('20120812',13,12),('20120813',70,67),('20120814',14,11),('20120815',21,11),('20120816',9,9),('20120817',70,29),('20120818',46,35),('20120819',58,17),('20120820',22,12),('20120821',17,7),('20120822',28,28),('20120823',101,83),('20120824',27,17),('20120825',20,20),('20120826',21,21),('20120827',14,14),('20120828',12,12),('20120829',37,10),('20120830',35,14),('20120831',14,14),('20120901',46,35),('20120902',76,76),('20120903',18,18),('20120904',22,22),('20120905',9,9),('20120906',15,15),('20120907',42,23),('20120908',27,27),('20120909',23,12),('20120910',33,33),('20120911',8,8),('20120912',76,74),('20120913',52,23),('20120914',15,15),('20120915',27,27),('20120916',37,37),('20120917',52,44),('20120918',33,33),('20120919',58,38),('20120920',45,41),('20120921',35,25),('20120922',149,149),('20120923',74,33),('20120924',130,76),('20120925',37,37),('20120926',43,35),('20120927',56,50),('20120928',8,8),('20120929',17,17),('20120930',83,63),('20121001',35,24),('20121002',80,74),('20121003',36,26),('20121004',72,44),('20121005',19,19),('20121006',9,9),('20121007',75,58),('20121008',22,22),('20121009',11,11),('20121010',16,16),('20121011',76,59),('20121012',93,80),('20121013',33,15),('20121014',77,17),('20121015',66,52),('20121016',101,44),('20121017',26,26),('20121018',28,18),('20121019',129,64),('20121020',102,72),('20121021',54,26),('20121022',169,106),('20121023',199,59),('20121024',28,10),('20121025',16,16),('20121026',47,22),('20121027',16,8),('20121028',89,61),('20121029',56,29),('20121030',81,27),('20121031',22,12),('20121101',122,110),('20121102',84,81),('20121103',57,36),('20121104',46,18),('20121105',54,25),('20121106',76,41),('20121107',20,20),('20121108',30,30),('20121109',64,44),('20121110',18,7),('20121111',82,81),('20121112',78,34),('20121113',69,52),('20121114',17,16),('20121115',69,62),('20121116',64,40),('20121117',14,14),('20121118',38,36),('20121119',58,53),('20121120',20,20),('20121121',83,80),('20121122',109,92),('20121123',55,45),('20121124',68,54),('20121125',88,52),('20121126',6,6),('20121127',40,33),('20121128',317,100),('20121129',61,61),('20121130',22,18),('20121201',116,109),('20121202',6,6),('20121203',24,24),('20121204',54,54),('20121205',28,8),('20121206',60,56),('20121207',14,14),('20121208',9,8),('20121209',22,22),('20121210',29,21),('20121211',119,109),('20121211',119,109),('20121211',119,109),('20121212',56,54),('20121213',163,110),('20121214',23,23),('20121215',53,52),('20121216',37,34),('20121217',31,27),('20121218',17,17),('20121219',49,44),('20121220',60,57),('20121221',96,96),('20121222',37,29),('20121223',33,33),('20121224',63,63),('20121225',39,27),('20121226',69,69),('20121227',25,25),('20121228',32,32),('20121229',23,23),('20121230',39,29),('20121231',37,30),('20130101',43,36),('20130102',37,29),('20130103',28,28),('20130104',24,24),('20130105',18,17),('20130106',27,27),('20130107',17,17),('20130108',43,43),('20130109',14,14),('20130110',34,34),('20130111',58,52),('20130112',22,22),('20130113',28,27),('20130114',94,94),('20130115',21,21),('20130116',18,18),('20130117',38,38),('20130118',69,65),('20130119',32,32),('20130120',52,52),('20130121',69,69),('20130122',42,42),('20130123',67,67),('20130124',82,82),('20130125',80,49),('20130126',21,20),('20130127',42,20),('20130128',25,25),('20130129',56,55),('20130130',30,30),('20130130',30,30),('20130131',15,15),('20130201',30,30),('20130202',44,40),('20130203',56,56),('20130204',25,25),('20130205',28,28),('20130206',23,23),('20130207',131,121),('20130208',15,15),('20130209',129,43),('20130209',129,43),('20130210',35,35),('20130211',29,29),('20130212',58,57),('20130213',46,46),('20130214',96,94),('20130215',198,198),('20130216',98,45),('20130217',69,69),('20130218',99,99),('20130219',110,110),('20130220',48,48),('20130221',48,44),('20130222',85,31),('20130223',14,14),('20130224',35,35),('20130225',32,32),('20130225',32,32),('20130226',42,35),('20130227',86,86),('20130228',62,62),('20130301',14,14),('20130302',21,21),('20130303',16,13),('20130304',199,193),('20130305',22,20),('20130306',53,53),('20130307',80,79),('20130308',18,18),('20130309',91,85),('20130310',50,16),('20130311',80,47),('20130312',71,59),('20130313',115,60),('20130314',132,132),('20130315',170,112),('20130316',28,25),('20130317',116,116),('20130318',51,44),('20130319',72,72),('20130320',74,61),('20130321',88,88),('20130322',33,22),('20130323',18,18),('20130324',18,18),('20130325',354,354),('20130326',64,58),('20130327',80,52),('20130328',50,50),('20130329',28,28),('20130330',124,96),('20130331',24,23),('20130401',29,29),('20130402',16,16),('20130403',9,9),('20130404',46,46),('20130405',23,23),('20130406',43,34),('20130407',18,18),('20130408',27,27),('20130409',25,18),('20130410',16,16),('20130411',73,44),('20130412',101,73),('20130413',42,11),('20130414',81,81),('20130415',162,133),('20130416',28,19),('20130417',23,23),('20130418',39,24),('20130419',26,24),('20130420',40,40),('20130421',31,31),('20130422',13,13),('20130423',34,29),('20130424',32,20),('20130425',47,47),('20130426',66,66),('20130427',88,78),('20130428',52,42),('20130429',99,89),('20130430',18,18),('20130501',39,39),('20130502',22,19),('20130503',25,21),('20130504',54,43),('20130505',17,17),('20130506',21,20),('20130507',38,38),('20130508',31,21),('20130509',33,29),('20130510',42,42),('20130511',36,23),('20130512',46,33),('20130513',237,147),('20130514',91,90),('20130515',24,24),('20130516',58,47),('20130517',32,30),('20130518',21,21),('20130521',1,1),('20130522',1,1),('20130524',1,1),('20130616',3,3),('20130617',4,4),('20130618',2,2);
/*!40000 ALTER TABLE `zen_counter_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_countries`
--

DROP TABLE IF EXISTS `zen_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_countries` (
  `countries_id` int(11) NOT NULL AUTO_INCREMENT,
  `countries_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `countries_iso_code_2` char(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `countries_iso_code_3` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `address_format_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`countries_id`),
  KEY `idx_countries_name_zen` (`countries_name`),
  KEY `idx_address_format_id_zen` (`address_format_id`),
  KEY `idx_iso_2_zen` (`countries_iso_code_2`),
  KEY `idx_iso_3_zen` (`countries_iso_code_3`)
) ENGINE=MyISAM AUTO_INCREMENT=241 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_countries`
--

LOCK TABLES `zen_countries` WRITE;
/*!40000 ALTER TABLE `zen_countries` DISABLE KEYS */;
INSERT INTO `zen_countries` VALUES (240,'Aaland Islands','AX','ALA',1),(1,'Afghanistan','AF','AFG',1),(2,'Albania','AL','ALB',1),(3,'Algeria','DZ','DZA',1),(4,'American Samoa','AS','ASM',1),(5,'Andorra','AD','AND',1),(6,'Angola','AO','AGO',1),(7,'Anguilla','AI','AIA',1),(8,'Antarctica','AQ','ATA',1),(9,'Antigua and Barbuda','AG','ATG',1),(10,'Argentina','AR','ARG',1),(11,'Armenia','AM','ARM',1),(12,'Aruba','AW','ABW',1),(13,'Australia','AU','AUS',1),(14,'Austria','AT','AUT',5),(15,'Azerbaijan','AZ','AZE',1),(16,'Bahamas','BS','BHS',1),(17,'Bahrain','BH','BHR',1),(18,'Bangladesh','BD','BGD',1),(19,'Barbados','BB','BRB',1),(20,'Belarus','BY','BLR',1),(21,'Belgium','BE','BEL',1),(22,'Belize','BZ','BLZ',1),(23,'Benin','BJ','BEN',1),(24,'Bermuda','BM','BMU',1),(25,'Bhutan','BT','BTN',1),(26,'Bolivia','BO','BOL',1),(27,'Bosnia and Herzegowina','BA','BIH',1),(28,'Botswana','BW','BWA',1),(29,'Bouvet Island','BV','BVT',1),(30,'Brazil','BR','BRA',1),(31,'British Indian Ocean Territory','IO','IOT',1),(32,'Brunei Darussalam','BN','BRN',1),(33,'Bulgaria','BG','BGR',1),(34,'Burkina Faso','BF','BFA',1),(35,'Burundi','BI','BDI',1),(36,'Cambodia','KH','KHM',1),(37,'Cameroon','CM','CMR',1),(38,'Canada','CA','CAN',2),(39,'Cape Verde','CV','CPV',1),(40,'Cayman Islands','KY','CYM',1),(41,'Central African Republic','CF','CAF',1),(42,'Chad','TD','TCD',1),(43,'Chile','CL','CHL',1),(44,'China','CN','CHN',1),(45,'Christmas Island','CX','CXR',1),(46,'Cocos (Keeling) Islands','CC','CCK',1),(47,'Colombia','CO','COL',1),(48,'Comoros','KM','COM',1),(49,'Congo','CG','COG',1),(50,'Cook Islands','CK','COK',1),(51,'Costa Rica','CR','CRI',1),(52,'Cote D\'Ivoire','CI','CIV',1),(53,'Croatia','HR','HRV',1),(54,'Cuba','CU','CUB',1),(55,'Cyprus','CY','CYP',1),(56,'Czech Republic','CZ','CZE',1),(57,'Denmark','DK','DNK',1),(58,'Djibouti','DJ','DJI',1),(59,'Dominica','DM','DMA',1),(60,'Dominican Republic','DO','DOM',1),(61,'East Timor','TP','TMP',1),(62,'Ecuador','EC','ECU',1),(63,'Egypt','EG','EGY',1),(64,'El Salvador','SV','SLV',1),(65,'Equatorial Guinea','GQ','GNQ',1),(66,'Eritrea','ER','ERI',1),(67,'Estonia','EE','EST',1),(68,'Ethiopia','ET','ETH',1),(69,'Falkland Islands (Malvinas)','FK','FLK',1),(70,'Faroe Islands','FO','FRO',1),(71,'Fiji','FJ','FJI',1),(72,'Finland','FI','FIN',1),(73,'France','FR','FRA',1),(74,'France, Metropolitan','FX','FXX',1),(75,'French Guiana','GF','GUF',1),(76,'French Polynesia','PF','PYF',1),(77,'French Southern Territories','TF','ATF',1),(78,'Gabon','GA','GAB',1),(79,'Gambia','GM','GMB',1),(80,'Georgia','GE','GEO',1),(81,'Germany','DE','DEU',5),(82,'Ghana','GH','GHA',1),(83,'Gibraltar','GI','GIB',1),(84,'Greece','GR','GRC',1),(85,'Greenland','GL','GRL',1),(86,'Grenada','GD','GRD',1),(87,'Guadeloupe','GP','GLP',1),(88,'Guam','GU','GUM',1),(89,'Guatemala','GT','GTM',1),(90,'Guinea','GN','GIN',1),(91,'Guinea-bissau','GW','GNB',1),(92,'Guyana','GY','GUY',1),(93,'Haiti','HT','HTI',1),(94,'Heard and Mc Donald Islands','HM','HMD',1),(95,'Honduras','HN','HND',1),(96,'Hong Kong','HK','HKG',1),(97,'Hungary','HU','HUN',1),(98,'Iceland','IS','ISL',1),(99,'India','IN','IND',1),(100,'Indonesia','ID','IDN',1),(101,'Iran (Islamic Republic of)','IR','IRN',1),(102,'Iraq','IQ','IRQ',1),(103,'Ireland','IE','IRL',1),(104,'Israel','IL','ISR',1),(105,'Italy','IT','ITA',1),(106,'Jamaica','JM','JAM',1),(107,'Japan','JP','JPN',1),(108,'Jordan','JO','JOR',1),(109,'Kazakhstan','KZ','KAZ',1),(110,'Kenya','KE','KEN',1),(111,'Kiribati','KI','KIR',1),(112,'Korea, Democratic People\'s Republic of','KP','PRK',1),(113,'Korea, Republic of','KR','KOR',1),(114,'Kuwait','KW','KWT',1),(115,'Kyrgyzstan','KG','KGZ',1),(116,'Lao People\'s Democratic Republic','LA','LAO',1),(117,'Latvia','LV','LVA',1),(118,'Lebanon','LB','LBN',1),(119,'Lesotho','LS','LSO',1),(120,'Liberia','LR','LBR',1),(121,'Libyan Arab Jamahiriya','LY','LBY',1),(122,'Liechtenstein','LI','LIE',1),(123,'Lithuania','LT','LTU',1),(124,'Luxembourg','LU','LUX',1),(125,'Macau','MO','MAC',1),(126,'Macedonia, The Former Yugoslav Republic of','MK','MKD',1),(127,'Madagascar','MG','MDG',1),(128,'Malawi','MW','MWI',1),(129,'Malaysia','MY','MYS',1),(130,'Maldives','MV','MDV',1),(131,'Mali','ML','MLI',1),(132,'Malta','MT','MLT',1),(133,'Marshall Islands','MH','MHL',1),(134,'Martinique','MQ','MTQ',1),(135,'Mauritania','MR','MRT',1),(136,'Mauritius','MU','MUS',1),(137,'Mayotte','YT','MYT',1),(138,'Mexico','MX','MEX',1),(139,'Micronesia, Federated States of','FM','FSM',1),(140,'Moldova, Republic of','MD','MDA',1),(141,'Monaco','MC','MCO',1),(142,'Mongolia','MN','MNG',1),(143,'Montserrat','MS','MSR',1),(144,'Morocco','MA','MAR',1),(145,'Mozambique','MZ','MOZ',1),(146,'Myanmar','MM','MMR',1),(147,'Namibia','NA','NAM',1),(148,'Nauru','NR','NRU',1),(149,'Nepal','NP','NPL',1),(150,'Netherlands','NL','NLD',1),(151,'Netherlands Antilles','AN','ANT',1),(152,'New Caledonia','NC','NCL',1),(153,'New Zealand','NZ','NZL',1),(154,'Nicaragua','NI','NIC',1),(155,'Niger','NE','NER',1),(156,'Nigeria','NG','NGA',1),(157,'Niue','NU','NIU',1),(158,'Norfolk Island','NF','NFK',1),(159,'Northern Mariana Islands','MP','MNP',1),(160,'Norway','NO','NOR',1),(161,'Oman','OM','OMN',1),(162,'Pakistan','PK','PAK',1),(163,'Palau','PW','PLW',1),(164,'Panama','PA','PAN',1),(165,'Papua New Guinea','PG','PNG',1),(166,'Paraguay','PY','PRY',1),(167,'Peru','PE','PER',1),(168,'Philippines','PH','PHL',1),(169,'Pitcairn','PN','PCN',1),(170,'Poland','PL','POL',1),(171,'Portugal','PT','PRT',1),(172,'Puerto Rico','PR','PRI',1),(173,'Qatar','QA','QAT',1),(174,'Reunion','RE','REU',1),(175,'Romania','RO','ROM',1),(176,'Russian Federation','RU','RUS',1),(177,'Rwanda','RW','RWA',1),(178,'Saint Kitts and Nevis','KN','KNA',1),(179,'Saint Lucia','LC','LCA',1),(180,'Saint Vincent and the Grenadines','VC','VCT',1),(181,'Samoa','WS','WSM',1),(182,'San Marino','SM','SMR',1),(183,'Sao Tome and Principe','ST','STP',1),(184,'Saudi Arabia','SA','SAU',1),(185,'Senegal','SN','SEN',1),(186,'Seychelles','SC','SYC',1),(187,'Sierra Leone','SL','SLE',1),(188,'Singapore','SG','SGP',4),(189,'Slovakia (Slovak Republic)','SK','SVK',1),(190,'Slovenia','SI','SVN',1),(191,'Solomon Islands','SB','SLB',1),(192,'Somalia','SO','SOM',1),(193,'South Africa','ZA','ZAF',1),(194,'South Georgia and the South Sandwich Islands','GS','SGS',1),(195,'Spain','ES','ESP',3),(196,'Sri Lanka','LK','LKA',1),(197,'St. Helena','SH','SHN',1),(198,'St. Pierre and Miquelon','PM','SPM',1),(199,'Sudan','SD','SDN',1),(200,'Suriname','SR','SUR',1),(201,'Svalbard and Jan Mayen Islands','SJ','SJM',1),(202,'Swaziland','SZ','SWZ',1),(203,'Sweden','SE','SWE',1),(204,'Switzerland','CH','CHE',1),(205,'Syrian Arab Republic','SY','SYR',1),(206,'Taiwan','TW','TWN',1),(207,'Tajikistan','TJ','TJK',1),(208,'Tanzania, United Republic of','TZ','TZA',1),(209,'Thailand','TH','THA',1),(210,'Togo','TG','TGO',1),(211,'Tokelau','TK','TKL',1),(212,'Tonga','TO','TON',1),(213,'Trinidad and Tobago','TT','TTO',1),(214,'Tunisia','TN','TUN',1),(215,'Turkey','TR','TUR',1),(216,'Turkmenistan','TM','TKM',1),(217,'Turks and Caicos Islands','TC','TCA',1),(218,'Tuvalu','TV','TUV',1),(219,'Uganda','UG','UGA',1),(220,'Ukraine','UA','UKR',1),(221,'United Arab Emirates','AE','ARE',1),(222,'United Kingdom','GB','GBR',6),(223,'United States','US','USA',2),(224,'United States Minor Outlying Islands','UM','UMI',1),(225,'Uruguay','UY','URY',1),(226,'Uzbekistan','UZ','UZB',1),(227,'Vanuatu','VU','VUT',1),(228,'Vatican City State (Holy See)','VA','VAT',1),(229,'Venezuela','VE','VEN',1),(230,'Viet Nam','VN','VNM',1),(231,'Virgin Islands (British)','VG','VGB',1),(232,'Virgin Islands (U.S.)','VI','VIR',1),(233,'Wallis and Futuna Islands','WF','WLF',1),(234,'Western Sahara','EH','ESH',1),(235,'Yemen','YE','YEM',1),(236,'Yugoslavia','YU','YUG',1),(237,'Zaire','ZR','ZAR',1),(238,'Zambia','ZM','ZMB',1),(239,'Zimbabwe','ZW','ZWE',1);
/*!40000 ALTER TABLE `zen_countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_coupon_email_track`
--

DROP TABLE IF EXISTS `zen_coupon_email_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_email_track` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `customer_id_sent` int(11) NOT NULL DEFAULT '0',
  `sent_firstname` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sent_lastname` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `emailed_to` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `date_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`unique_id`),
  KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_email_track`
--

LOCK TABLES `zen_coupon_email_track` WRITE;
/*!40000 ALTER TABLE `zen_coupon_email_track` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_coupon_email_track` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_coupon_gv_customer`
--

DROP TABLE IF EXISTS `zen_coupon_gv_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_gv_customer` (
  `customer_id` int(5) NOT NULL DEFAULT '0',
  `amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  PRIMARY KEY (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_gv_customer`
--

LOCK TABLES `zen_coupon_gv_customer` WRITE;
/*!40000 ALTER TABLE `zen_coupon_gv_customer` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_coupon_gv_customer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_coupon_gv_queue`
--

DROP TABLE IF EXISTS `zen_coupon_gv_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_gv_queue` (
  `unique_id` int(5) NOT NULL AUTO_INCREMENT,
  `customer_id` int(5) NOT NULL DEFAULT '0',
  `order_id` int(5) NOT NULL DEFAULT '0',
  `amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `date_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `ipaddr` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `release_flag` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N',
  PRIMARY KEY (`unique_id`),
  KEY `idx_cust_id_order_id_zen` (`customer_id`,`order_id`),
  KEY `idx_release_flag_zen` (`release_flag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_gv_queue`
--

LOCK TABLES `zen_coupon_gv_queue` WRITE;
/*!40000 ALTER TABLE `zen_coupon_gv_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_coupon_gv_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_coupon_redeem_track`
--

DROP TABLE IF EXISTS `zen_coupon_redeem_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_redeem_track` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `customer_id` int(11) NOT NULL DEFAULT '0',
  `redeem_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `redeem_ip` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `order_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_redeem_track`
--

LOCK TABLES `zen_coupon_redeem_track` WRITE;
/*!40000 ALTER TABLE `zen_coupon_redeem_track` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_coupon_redeem_track` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_coupon_restrict`
--

DROP TABLE IF EXISTS `zen_coupon_restrict`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_restrict` (
  `restrict_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `product_id` int(11) NOT NULL DEFAULT '0',
  `category_id` int(11) NOT NULL DEFAULT '0',
  `coupon_restrict` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N',
  PRIMARY KEY (`restrict_id`),
  KEY `idx_coup_id_prod_id_zen` (`coupon_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_restrict`
--

LOCK TABLES `zen_coupon_restrict` WRITE;
/*!40000 ALTER TABLE `zen_coupon_restrict` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_coupon_restrict` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_coupons`
--

DROP TABLE IF EXISTS `zen_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupons` (
  `coupon_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_type` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'F',
  `coupon_code` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `coupon_amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `coupon_minimum_order` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `coupon_start_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `coupon_expire_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `uses_per_coupon` int(5) NOT NULL DEFAULT '1',
  `uses_per_user` int(5) NOT NULL DEFAULT '0',
  `restrict_to_products` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `restrict_to_categories` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `restrict_to_customers` text COLLATE utf8_unicode_ci,
  `coupon_active` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `date_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `coupon_zone_restriction` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`coupon_id`),
  KEY `idx_active_type_zen` (`coupon_active`,`coupon_type`),
  KEY `idx_coupon_code_zen` (`coupon_code`),
  KEY `idx_coupon_type_zen` (`coupon_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupons`
--

LOCK TABLES `zen_coupons` WRITE;
/*!40000 ALTER TABLE `zen_coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_coupons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_coupons_description`
--

DROP TABLE IF EXISTS `zen_coupons_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupons_description` (
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '0',
  `coupon_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `coupon_description` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`coupon_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupons_description`
--

LOCK TABLES `zen_coupons_description` WRITE;
/*!40000 ALTER TABLE `zen_coupons_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_coupons_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_currencies`
--

DROP TABLE IF EXISTS `zen_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_currencies` (
  `currencies_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `code` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `symbol_left` varchar(24) COLLATE utf8_unicode_ci DEFAULT NULL,
  `symbol_right` varchar(24) COLLATE utf8_unicode_ci DEFAULT NULL,
  `decimal_point` char(1) COLLATE utf8_unicode_ci DEFAULT NULL,
  `thousands_point` char(1) COLLATE utf8_unicode_ci DEFAULT NULL,
  `decimal_places` char(1) COLLATE utf8_unicode_ci DEFAULT NULL,
  `value` float(13,8) DEFAULT NULL,
  `last_updated` datetime DEFAULT NULL,
  PRIMARY KEY (`currencies_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_currencies`
--

LOCK TABLES `zen_currencies` WRITE;
/*!40000 ALTER TABLE `zen_currencies` DISABLE KEYS */;
INSERT INTO `zen_currencies` VALUES (1,'US Dollar','USD','$','','.',',','2',1.00000000,'2010-01-04 15:39:22'),(2,'Euro','EUR','&euro;','','.',',','2',0.74129999,'2010-01-04 15:39:22'),(3,'GB Pound','GBP','&pound;','','.',',','2',0.50300002,'2010-01-04 15:39:22'),(4,'Canadian Dollar','CAD','$','','.',',','2',1.10590005,'2010-01-04 15:39:22'),(5,'Australian Dollar','AUD','$','','.',',','2',1.24070001,'2010-01-04 15:39:22');
/*!40000 ALTER TABLE `zen_currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers`
--

DROP TABLE IF EXISTS `zen_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers` (
  `customers_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_gender` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_firstname` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_lastname` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_dob` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `customers_email_address` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_nick` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_default_address_id` int(11) NOT NULL DEFAULT '0',
  `customers_telephone` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_fax` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_password` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_newsletter` char(1) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_group_pricing` int(11) NOT NULL DEFAULT '0',
  `customers_email_format` varchar(4) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'TEXT',
  `customers_authorization` int(1) NOT NULL DEFAULT '0',
  `customers_referral` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_paypal_payerid` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_paypal_ec` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `COWOA_account` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`customers_id`),
  KEY `idx_email_address_zen` (`customers_email_address`),
  KEY `idx_referral_zen` (`customers_referral`(10)),
  KEY `idx_grp_pricing_zen` (`customers_group_pricing`),
  KEY `idx_nick_zen` (`customers_nick`),
  KEY `idx_newsletter_zen` (`customers_newsletter`)
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers`
--

LOCK TABLES `zen_customers` WRITE;
/*!40000 ALTER TABLE `zen_customers` DISABLE KEYS */;
INSERT INTO `zen_customers` VALUES (12,'m','John','Brake','0001-01-01 00:00:00','jhbrake@live.com','',14,'2482406863','','93bf4915814b22dcc5a010cffa3c7a3f:2c','0',0,'TEXT',0,'','',0,1),(13,'','John','Brake','0001-01-01 00:00:00','jhbrake@nsconstruct.com','',15,'','','9b290ede55dcd75de66a7ffe9ef0fb15:63','0',0,'TEXT',0,'','4VKJCKRHGWFFW',0,0),(14,'m','Johnny','BHuy','0001-01-01 00:00:00','jbrake@nsconstruct.com','',16,'8002222222','','3fc0d84542c63ed7a932c4d561f5d2f0:6f','0',0,'TEXT',0,'','',0,1),(15,'f','Juanita','Frenita','0001-01-01 00:00:00','adirondak@mycbay.com','',17,'212-555-8899','','3336d45d553cf73e02f8ac7542c29ac2:1e','0',0,'TEXT',0,'','',0,1),(16,'m','Juan','freno','0001-01-01 00:00:00','sam@mycbay.com','',18,'2229998877','','39e8eb5e9eb90e587012439dade64c67:19','0',0,'TEXT',0,'','',0,1),(17,'m','jose','Buyerio','0001-01-01 00:00:00','jack@aaasurvival.com','',19,'5555555555','','ff526df13ae5f1321e6f637af6bb465b:a6','0',0,'TEXT',0,'','',0,1),(18,'m','julia','tuttle','0001-01-01 00:00:00','j@say.com','',20,'5555555555','','096647d3fe99e0b6750283ef184a4e07:68','0',0,'TEXT',0,'','',0,1),(19,'m','Joe','Von Buynow','0001-01-01 00:00:00','jhbrake@comcast.net','',21,'212-555-8998','','6667cbc863d64ebeb066083c50dee440:96','0',0,'TEXT',0,'','',0,1),(20,'m','nat','Bat','0001-01-01 00:00:00','jhbrake@comcast.net','',22,'2456668794','','47f586f4f54b078df0295ad52978dcde:1e','0',0,'TEXT',0,'','',0,1),(21,'m','jb','borer','0001-01-01 00:00:00','jhbrake@comcast.net','',24,'212-555-6666','','3a876e157f4f77fe73c07fc77325a5e8:e8','0',0,'TEXT',0,'','',0,0),(22,'m','Sam','Orderman','0001-01-01 00:00:00','jbrake@nsconstruct.com','',25,'222-222-5555','','56bdab51b6863f7825046d4145bee755:4e','0',0,'TEXT',0,'','',0,1),(23,'f','Kathleen','Monteleone','0001-01-01 00:00:00','kathleenmonteleone@gmail.com','',26,'917 8874811','','7926f8e76b4492096ea5c471da0a9cc7:84','0',0,'TEXT',0,'','',0,1),(24,'m','John','Brake','0001-01-01 00:00:00','jbrake@nsconstruct.com','',27,'2482406863','','88aa0459a1a2f9a38a44a3145a717110:db','0',0,'TEXT',0,'','',0,1),(25,'m','Mitchell','Vance','0001-01-01 00:00:00','mvance@tgvpartners.com','',29,'949-720-1230','','ef37c1068869d6d5cb7d287121e3d39d:56','0',0,'TEXT',0,'','',0,1);
/*!40000 ALTER TABLE `zen_customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_basket`
--

DROP TABLE IF EXISTS `zen_customers_basket`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_basket` (
  `customers_basket_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `products_id` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `customers_basket_quantity` float NOT NULL DEFAULT '0',
  `final_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `customers_basket_date_added` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`customers_basket_id`),
  KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_basket`
--

LOCK TABLES `zen_customers_basket` WRITE;
/*!40000 ALTER TABLE `zen_customers_basket` DISABLE KEYS */;
INSERT INTO `zen_customers_basket` VALUES (35,18,'2:ef4171b0f1ab0bb9770ea40b3cd172bc',1,0.0000,'20100319'),(42,22,'3:dee1bd3ab2a1766653dbe93e4d8f6c83',2,0.0000,'20100528'),(41,22,'6:82fe835e4ca43ace085b0e0b5e4bc32f',1,0.0000,'20100528'),(43,22,'1:6a806b41440d3aeac8295f07344df73b',1,0.0000,'20100528'),(44,23,'7:cde3ea036bb367899fd2aa2ac3d43153',4,0.0000,'20100710'),(47,25,'7:3a08ad28a5a20962e77032024dab1649',4,0.0000,'20100725');
/*!40000 ALTER TABLE `zen_customers_basket` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_basket_attributes`
--

DROP TABLE IF EXISTS `zen_customers_basket_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_basket_attributes` (
  `customers_basket_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `products_id` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `products_options_id` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `products_options_value_id` int(11) NOT NULL DEFAULT '0',
  `products_options_value_text` blob,
  `products_options_sort_order` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`customers_basket_attributes_id`),
  KEY `idx_cust_id_prod_id_zen` (`customers_id`,`products_id`(36))
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_basket_attributes`
--

LOCK TABLES `zen_customers_basket_attributes` WRITE;
/*!40000 ALTER TABLE `zen_customers_basket_attributes` DISABLE KEYS */;
INSERT INTO `zen_customers_basket_attributes` VALUES (4,18,'2:ef4171b0f1ab0bb9770ea40b3cd172bc','2',3,'','0.00000'),(11,22,'3:dee1bd3ab2a1766653dbe93e4d8f6c83','3',7,'','0.00001'),(10,22,'6:82fe835e4ca43ace085b0e0b5e4bc32f','3',7,'','0.00001'),(12,22,'1:6a806b41440d3aeac8295f07344df73b','3',7,'','0.00001'),(13,23,'7:cde3ea036bb367899fd2aa2ac3d43153','3',7,'','0.00001'),(16,25,'7:3a08ad28a5a20962e77032024dab1649','3',6,'','0.00003');
/*!40000 ALTER TABLE `zen_customers_basket_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_info`
--

DROP TABLE IF EXISTS `zen_customers_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_info` (
  `customers_info_id` int(11) NOT NULL DEFAULT '0',
  `customers_info_date_of_last_logon` datetime DEFAULT NULL,
  `customers_info_number_of_logons` int(5) DEFAULT NULL,
  `customers_info_date_account_created` datetime DEFAULT NULL,
  `customers_info_date_account_last_modified` datetime DEFAULT NULL,
  `global_product_notifications` int(1) DEFAULT '0',
  PRIMARY KEY (`customers_info_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_info`
--

LOCK TABLES `zen_customers_info` WRITE;
/*!40000 ALTER TABLE `zen_customers_info` DISABLE KEYS */;
INSERT INTO `zen_customers_info` VALUES (13,'2010-01-27 15:21:53',1,'2010-01-27 15:21:53',NULL,1),(12,NULL,0,'2010-01-27 15:02:04',NULL,0),(14,'2010-07-11 21:38:39',1,'2010-01-27 17:50:47',NULL,0),(15,NULL,0,'2010-02-14 21:33:10',NULL,0),(16,NULL,0,'2010-02-14 22:03:25',NULL,0),(17,NULL,0,'2010-02-14 22:19:27',NULL,0),(18,NULL,0,'2010-03-19 20:22:49',NULL,0),(19,NULL,0,'2010-05-27 22:34:22',NULL,0),(20,NULL,0,'2010-05-27 23:14:33',NULL,0),(21,NULL,0,'2010-05-28 08:55:07',NULL,0),(22,NULL,0,'2010-05-28 10:32:25',NULL,0),(23,NULL,0,'2010-07-10 21:37:14',NULL,0),(24,NULL,0,'2010-07-11 21:02:08',NULL,0),(25,NULL,0,'2010-07-25 09:57:02',NULL,0);
/*!40000 ALTER TABLE `zen_customers_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_wishlist`
--

DROP TABLE IF EXISTS `zen_customers_wishlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_wishlist` (
  `products_id` int(13) NOT NULL DEFAULT '0',
  `customers_id` int(13) NOT NULL DEFAULT '0',
  `products_model` varchar(13) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_price` decimal(8,2) NOT NULL DEFAULT '0.00',
  `final_price` decimal(8,2) NOT NULL DEFAULT '0.00',
  `products_quantity` int(2) NOT NULL DEFAULT '0',
  `wishlist_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_wishlist`
--

LOCK TABLES `zen_customers_wishlist` WRITE;
/*!40000 ALTER TABLE `zen_customers_wishlist` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_customers_wishlist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_db_cache`
--

DROP TABLE IF EXISTS `zen_db_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_db_cache` (
  `cache_entry_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `cache_data` mediumblob,
  `cache_entry_created` int(15) DEFAULT NULL,
  PRIMARY KEY (`cache_entry_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_db_cache`
--

LOCK TABLES `zen_db_cache` WRITE;
/*!40000 ALTER TABLE `zen_db_cache` DISABLE KEYS */;
INSERT INTO `zen_db_cache` VALUES ('zc_7eb4ed1f36d90140477d9474b61e0e26',_binary 'a:656:{i:0;a:2:{s:6:\"cfgkey\";s:10:\"STORE_NAME\";s:8:\"cfgvalue\";s:19:\"AdirondakChairs.net\";}i:1;a:2:{s:6:\"cfgkey\";s:11:\"STORE_OWNER\";s:8:\"cfgvalue\";s:19:\"Adirondak Jak, Inc.\";}i:2;a:2:{s:6:\"cfgkey\";s:13:\"STORE_COUNTRY\";s:8:\"cfgvalue\";s:3:\"223\";}i:3;a:2:{s:6:\"cfgkey\";s:10:\"STORE_ZONE\";s:8:\"cfgvalue\";s:2:\"33\";}i:4;a:2:{s:6:\"cfgkey\";s:22:\"EXPECTED_PRODUCTS_SORT\";s:8:\"cfgvalue\";s:4:\"desc\";}i:5;a:2:{s:6:\"cfgkey\";s:23:\"EXPECTED_PRODUCTS_FIELD\";s:8:\"cfgvalue\";s:13:\"date_expected\";}i:6;a:2:{s:6:\"cfgkey\";s:29:\"USE_DEFAULT_LANGUAGE_CURRENCY\";s:8:\"cfgvalue\";s:5:\"false\";}i:7;a:2:{s:6:\"cfgkey\";s:25:\"LANGUAGE_DEFAULT_SELECTOR\";s:8:\"cfgvalue\";s:7:\"Default\";}i:8;a:2:{s:6:\"cfgkey\";s:27:\"SEARCH_ENGINE_FRIENDLY_URLS\";s:8:\"cfgvalue\";s:5:\"false\";}i:9;a:2:{s:6:\"cfgkey\";s:12:\"DISPLAY_CART\";s:8:\"cfgvalue\";s:4:\"true\";}i:10;a:2:{s:6:\"cfgkey\";s:32:\"ADVANCED_SEARCH_DEFAULT_OPERATOR\";s:8:\"cfgvalue\";s:3:\"and\";}i:11;a:2:{s:6:\"cfgkey\";s:18:\"STORE_NAME_ADDRESS\";s:8:\"cfgvalue\";s:62:\"9079 Pierson Road \r\nFowlerville, MI 48836\r\nUSA\r\n\r\n800-899-9790\";}i:12;a:2:{s:6:\"cfgkey\";s:11:\"SHOW_COUNTS\";s:8:\"cfgvalue\";s:5:\"false\";}i:13;a:2:{s:6:\"cfgkey\";s:18:\"TAX_DECIMAL_PLACES\";s:8:\"cfgvalue\";s:1:\"0\";}i:14;a:2:{s:6:\"cfgkey\";s:22:\"DISPLAY_PRICE_WITH_TAX\";s:8:\"cfgvalue\";s:5:\"false\";}i:15;a:2:{s:6:\"cfgkey\";s:28:\"DISPLAY_PRICE_WITH_TAX_ADMIN\";s:8:\"cfgvalue\";s:5:\"false\";}i:16;a:2:{s:6:\"cfgkey\";s:23:\"STORE_PRODUCT_TAX_BASIS\";s:8:\"cfgvalue\";s:8:\"Shipping\";}i:17;a:2:{s:6:\"cfgkey\";s:24:\"STORE_SHIPPING_TAX_BASIS\";s:8:\"cfgvalue\";s:8:\"Shipping\";}i:18;a:2:{s:6:\"cfgkey\";s:24:\"STORE_TAX_DISPLAY_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:19;a:2:{s:6:\"cfgkey\";s:21:\"SESSION_TIMEOUT_ADMIN\";s:8:\"cfgvalue\";s:4:\"3600\";}i:20;a:2:{s:6:\"cfgkey\";s:21:\"GLOBAL_SET_TIME_LIMIT\";s:8:\"cfgvalue\";s:2:\"60\";}i:21;a:2:{s:6:\"cfgkey\";s:29:\"SHOW_VERSION_UPDATE_IN_HEADER\";s:8:\"cfgvalue\";s:4:\"true\";}i:22;a:2:{s:6:\"cfgkey\";s:12:\"STORE_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:23;a:2:{s:6:\"cfgkey\";s:21:\"DISPLAY_SERVER_UPTIME\";s:8:\"cfgvalue\";s:4:\"true\";}i:24;a:2:{s:6:\"cfgkey\";s:18:\"MISSING_PAGE_CHECK\";s:8:\"cfgvalue\";s:14:\"Page Not Found\";}i:25;a:2:{s:6:\"cfgkey\";s:19:\"CURL_PROXY_REQUIRED\";s:8:\"cfgvalue\";s:5:\"False\";}i:26;a:2:{s:6:\"cfgkey\";s:25:\"CURL_PROXY_SERVER_DETAILS\";s:8:\"cfgvalue\";s:0:\"\";}i:27;a:2:{s:6:\"cfgkey\";s:22:\"HTML_EDITOR_PREFERENCE\";s:8:\"cfgvalue\";s:4:\"NONE\";}i:28;a:2:{s:6:\"cfgkey\";s:19:\"PHPBB_LINKS_ENABLED\";s:8:\"cfgvalue\";s:0:\"\";}i:29;a:2:{s:6:\"cfgkey\";s:17:\"SHOW_COUNTS_ADMIN\";s:8:\"cfgvalue\";s:5:\"false\";}i:30;a:2:{s:6:\"cfgkey\";s:21:\"CURRENCY_UPLIFT_RATIO\";s:8:\"cfgvalue\";s:4:\"1.05\";}i:31;a:2:{s:6:\"cfgkey\";s:27:\"ENTRY_FIRST_NAME_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"2\";}i:32;a:2:{s:6:\"cfgkey\";s:26:\"ENTRY_LAST_NAME_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"2\";}i:33;a:2:{s:6:\"cfgkey\";s:20:\"ENTRY_DOB_MIN_LENGTH\";s:8:\"cfgvalue\";s:2:\"10\";}i:34;a:2:{s:6:\"cfgkey\";s:30:\"ENTRY_EMAIL_ADDRESS_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"6\";}i:35;a:2:{s:6:\"cfgkey\";s:31:\"ENTRY_STREET_ADDRESS_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"5\";}i:36;a:2:{s:6:\"cfgkey\";s:24:\"ENTRY_COMPANY_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"0\";}i:37;a:2:{s:6:\"cfgkey\";s:25:\"ENTRY_POSTCODE_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"4\";}i:38;a:2:{s:6:\"cfgkey\";s:21:\"ENTRY_CITY_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"2\";}i:39;a:2:{s:6:\"cfgkey\";s:22:\"ENTRY_STATE_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"2\";}i:40;a:2:{s:6:\"cfgkey\";s:26:\"ENTRY_TELEPHONE_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"3\";}i:41;a:2:{s:6:\"cfgkey\";s:25:\"ENTRY_PASSWORD_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"5\";}i:42;a:2:{s:6:\"cfgkey\";s:19:\"CC_OWNER_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"3\";}i:43;a:2:{s:6:\"cfgkey\";s:20:\"CC_NUMBER_MIN_LENGTH\";s:8:\"cfgvalue\";s:2:\"10\";}i:44;a:2:{s:6:\"cfgkey\";s:17:\"CC_CVV_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"3\";}i:45;a:2:{s:6:\"cfgkey\";s:22:\"REVIEW_TEXT_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"7\";}i:46;a:2:{s:6:\"cfgkey\";s:23:\"MIN_DISPLAY_BESTSELLERS\";s:8:\"cfgvalue\";s:1:\"1\";}i:47;a:2:{s:6:\"cfgkey\";s:26:\"MIN_DISPLAY_ALSO_PURCHASED\";s:8:\"cfgvalue\";s:1:\"1\";}i:48;a:2:{s:6:\"cfgkey\";s:21:\"ENTRY_NICK_MIN_LENGTH\";s:8:\"cfgvalue\";s:1:\"3\";}i:49;a:2:{s:6:\"cfgkey\";s:24:\"MAX_ADDRESS_BOOK_ENTRIES\";s:8:\"cfgvalue\";s:1:\"5\";}i:50;a:2:{s:6:\"cfgkey\";s:26:\"MAX_DISPLAY_SEARCH_RESULTS\";s:8:\"cfgvalue\";s:2:\"20\";}i:51;a:2:{s:6:\"cfgkey\";s:22:\"MAX_DISPLAY_PAGE_LINKS\";s:8:\"cfgvalue\";s:1:\"5\";}i:52;a:2:{s:6:\"cfgkey\";s:28:\"MAX_DISPLAY_SPECIAL_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"9\";}i:53;a:2:{s:6:\"cfgkey\";s:24:\"MAX_DISPLAY_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"9\";}i:54;a:2:{s:6:\"cfgkey\";s:29:\"MAX_DISPLAY_UPCOMING_PRODUCTS\";s:8:\"cfgvalue\";s:2:\"10\";}i:55;a:2:{s:6:\"cfgkey\";s:22:\"MAX_MANUFACTURERS_LIST\";s:8:\"cfgvalue\";s:1:\"3\";}i:56;a:2:{s:6:\"cfgkey\";s:29:\"PRODUCTS_MANUFACTURERS_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:57;a:2:{s:6:\"cfgkey\";s:21:\"MAX_MUSIC_GENRES_LIST\";s:8:\"cfgvalue\";s:1:\"3\";}i:58;a:2:{s:6:\"cfgkey\";s:23:\"MAX_RECORD_COMPANY_LIST\";s:8:\"cfgvalue\";s:1:\"3\";}i:59;a:2:{s:6:\"cfgkey\";s:35:\"MAX_DISPLAY_RECORD_COMPANY_NAME_LEN\";s:8:\"cfgvalue\";s:2:\"15\";}i:60;a:2:{s:6:\"cfgkey\";s:33:\"MAX_DISPLAY_MUSIC_GENRES_NAME_LEN\";s:8:\"cfgvalue\";s:2:\"15\";}i:61;a:2:{s:6:\"cfgkey\";s:33:\"MAX_DISPLAY_MANUFACTURER_NAME_LEN\";s:8:\"cfgvalue\";s:2:\"15\";}i:62;a:2:{s:6:\"cfgkey\";s:23:\"MAX_DISPLAY_NEW_REVIEWS\";s:8:\"cfgvalue\";s:1:\"6\";}i:63;a:2:{s:6:\"cfgkey\";s:25:\"MAX_RANDOM_SELECT_REVIEWS\";s:8:\"cfgvalue\";s:1:\"1\";}i:64;a:2:{s:6:\"cfgkey\";s:21:\"MAX_RANDOM_SELECT_NEW\";s:8:\"cfgvalue\";s:1:\"3\";}i:65;a:2:{s:6:\"cfgkey\";s:26:\"MAX_RANDOM_SELECT_SPECIALS\";s:8:\"cfgvalue\";s:1:\"2\";}i:66;a:2:{s:6:\"cfgkey\";s:30:\"MAX_DISPLAY_CATEGORIES_PER_ROW\";s:8:\"cfgvalue\";s:1:\"3\";}i:67;a:2:{s:6:\"cfgkey\";s:24:\"MAX_DISPLAY_PRODUCTS_NEW\";s:8:\"cfgvalue\";s:2:\"10\";}i:68;a:2:{s:6:\"cfgkey\";s:23:\"MAX_DISPLAY_BESTSELLERS\";s:8:\"cfgvalue\";s:2:\"10\";}i:69;a:2:{s:6:\"cfgkey\";s:26:\"MAX_DISPLAY_ALSO_PURCHASED\";s:8:\"cfgvalue\";s:1:\"0\";}i:70;a:2:{s:6:\"cfgkey\";s:41:\"MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX\";s:8:\"cfgvalue\";s:1:\"6\";}i:71;a:2:{s:6:\"cfgkey\";s:25:\"MAX_DISPLAY_ORDER_HISTORY\";s:8:\"cfgvalue\";s:2:\"10\";}i:72;a:2:{s:6:\"cfgkey\";s:35:\"MAX_DISPLAY_SEARCH_RESULTS_CUSTOMER\";s:8:\"cfgvalue\";s:2:\"20\";}i:73;a:2:{s:6:\"cfgkey\";s:33:\"MAX_DISPLAY_SEARCH_RESULTS_ORDERS\";s:8:\"cfgvalue\";s:2:\"20\";}i:74;a:2:{s:6:\"cfgkey\";s:34:\"MAX_DISPLAY_SEARCH_RESULTS_REPORTS\";s:8:\"cfgvalue\";s:2:\"20\";}i:75;a:2:{s:6:\"cfgkey\";s:30:\"MAX_DISPLAY_RESULTS_CATEGORIES\";s:8:\"cfgvalue\";s:2:\"10\";}i:76;a:2:{s:6:\"cfgkey\";s:28:\"MAX_DISPLAY_PRODUCTS_LISTING\";s:8:\"cfgvalue\";s:2:\"10\";}i:77;a:2:{s:6:\"cfgkey\";s:21:\"MAX_ROW_LISTS_OPTIONS\";s:8:\"cfgvalue\";s:2:\"10\";}i:78;a:2:{s:6:\"cfgkey\";s:35:\"MAX_ROW_LISTS_ATTRIBUTES_CONTROLLER\";s:8:\"cfgvalue\";s:2:\"30\";}i:79;a:2:{s:6:\"cfgkey\";s:44:\"MAX_DISPLAY_SEARCH_RESULTS_DOWNLOADS_MANAGER\";s:8:\"cfgvalue\";s:2:\"30\";}i:80;a:2:{s:6:\"cfgkey\";s:41:\"MAX_DISPLAY_SEARCH_RESULTS_FEATURED_ADMIN\";s:8:\"cfgvalue\";s:2:\"10\";}i:81;a:2:{s:6:\"cfgkey\";s:35:\"MAX_DISPLAY_SEARCH_RESULTS_FEATURED\";s:8:\"cfgvalue\";s:1:\"9\";}i:82;a:2:{s:6:\"cfgkey\";s:38:\"MAX_DISPLAY_PRODUCTS_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:2:\"10\";}i:83;a:2:{s:6:\"cfgkey\";s:35:\"MAX_RANDOM_SELECT_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"2\";}i:84;a:2:{s:6:\"cfgkey\";s:34:\"MAX_DISPLAY_SPECIAL_PRODUCTS_INDEX\";s:8:\"cfgvalue\";s:1:\"9\";}i:85;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_NEW_PRODUCTS_LIMIT\";s:8:\"cfgvalue\";s:1:\"0\";}i:86;a:2:{s:6:\"cfgkey\";s:24:\"MAX_DISPLAY_PRODUCTS_ALL\";s:8:\"cfgvalue\";s:2:\"10\";}i:87;a:2:{s:6:\"cfgkey\";s:26:\"MAX_LANGUAGE_FLAGS_COLUMNS\";s:8:\"cfgvalue\";s:1:\"3\";}i:88;a:2:{s:6:\"cfgkey\";s:20:\"MAX_FILE_UPLOAD_SIZE\";s:8:\"cfgvalue\";s:7:\"2048000\";}i:89;a:2:{s:6:\"cfgkey\";s:26:\"UPLOAD_FILENAME_EXTENSIONS\";s:8:\"cfgvalue\";s:48:\"jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip\";}i:90;a:2:{s:6:\"cfgkey\";s:42:\"MAX_DISPLAY_RESULTS_ORDERS_DETAILS_LISTING\";s:8:\"cfgvalue\";s:1:\"0\";}i:91;a:2:{s:6:\"cfgkey\";s:37:\"MAX_DISPLAY_SEARCH_RESULTS_PAYPAL_IPN\";s:8:\"cfgvalue\";s:2:\"20\";}i:92;a:2:{s:6:\"cfgkey\";s:42:\"MAX_DISPLAY_PRODUCTS_TO_CATEGORIES_COLUMNS\";s:8:\"cfgvalue\";s:1:\"3\";}i:93;a:2:{s:6:\"cfgkey\";s:33:\"MAX_DISPLAY_SEARCH_RESULTS_EZPAGE\";s:8:\"cfgvalue\";s:2:\"20\";}i:94;a:2:{s:6:\"cfgkey\";s:17:\"SMALL_IMAGE_WIDTH\";s:8:\"cfgvalue\";s:3:\"110\";}i:95;a:2:{s:6:\"cfgkey\";s:18:\"SMALL_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:3:\"147\";}i:96;a:2:{s:6:\"cfgkey\";s:19:\"HEADING_IMAGE_WIDTH\";s:8:\"cfgvalue\";s:2:\"57\";}i:97;a:2:{s:6:\"cfgkey\";s:20:\"HEADING_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:2:\"40\";}i:98;a:2:{s:6:\"cfgkey\";s:23:\"SUBCATEGORY_IMAGE_WIDTH\";s:8:\"cfgvalue\";s:3:\"100\";}i:99;a:2:{s:6:\"cfgkey\";s:24:\"SUBCATEGORY_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:2:\"57\";}i:100;a:2:{s:6:\"cfgkey\";s:27:\"CONFIG_CALCULATE_IMAGE_SIZE\";s:8:\"cfgvalue\";s:4:\"true\";}i:101;a:2:{s:6:\"cfgkey\";s:14:\"IMAGE_REQUIRED\";s:8:\"cfgvalue\";s:4:\"true\";}i:102;a:2:{s:6:\"cfgkey\";s:26:\"IMAGE_SHOPPING_CART_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:103;a:2:{s:6:\"cfgkey\";s:25:\"IMAGE_SHOPPING_CART_WIDTH\";s:8:\"cfgvalue\";s:2:\"50\";}i:104;a:2:{s:6:\"cfgkey\";s:26:\"IMAGE_SHOPPING_CART_HEIGHT\";s:8:\"cfgvalue\";s:2:\"40\";}i:105;a:2:{s:6:\"cfgkey\";s:25:\"CATEGORY_ICON_IMAGE_WIDTH\";s:8:\"cfgvalue\";s:2:\"57\";}i:106;a:2:{s:6:\"cfgkey\";s:26:\"CATEGORY_ICON_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:2:\"40\";}i:107;a:2:{s:6:\"cfgkey\";s:27:\"SUBCATEGORY_IMAGE_TOP_WIDTH\";s:8:\"cfgvalue\";s:3:\"150\";}i:108;a:2:{s:6:\"cfgkey\";s:28:\"SUBCATEGORY_IMAGE_TOP_HEIGHT\";s:8:\"cfgvalue\";s:2:\"85\";}i:109;a:2:{s:6:\"cfgkey\";s:18:\"MEDIUM_IMAGE_WIDTH\";s:8:\"cfgvalue\";s:3:\"200\";}i:110;a:2:{s:6:\"cfgkey\";s:19:\"MEDIUM_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:3:\"267\";}i:111;a:2:{s:6:\"cfgkey\";s:19:\"IMAGE_SUFFIX_MEDIUM\";s:8:\"cfgvalue\";s:4:\"_MED\";}i:112;a:2:{s:6:\"cfgkey\";s:18:\"IMAGE_SUFFIX_LARGE\";s:8:\"cfgvalue\";s:4:\"_LRG\";}i:113;a:2:{s:6:\"cfgkey\";s:17:\"IMAGES_AUTO_ADDED\";s:8:\"cfgvalue\";s:1:\"3\";}i:114;a:2:{s:6:\"cfgkey\";s:27:\"IMAGE_PRODUCT_LISTING_WIDTH\";s:8:\"cfgvalue\";s:3:\"300\";}i:115;a:2:{s:6:\"cfgkey\";s:28:\"IMAGE_PRODUCT_LISTING_HEIGHT\";s:8:\"cfgvalue\";s:3:\"400\";}i:116;a:2:{s:6:\"cfgkey\";s:31:\"IMAGE_PRODUCT_NEW_LISTING_WIDTH\";s:8:\"cfgvalue\";s:3:\"100\";}i:117;a:2:{s:6:\"cfgkey\";s:32:\"IMAGE_PRODUCT_NEW_LISTING_HEIGHT\";s:8:\"cfgvalue\";s:2:\"80\";}i:118;a:2:{s:6:\"cfgkey\";s:23:\"IMAGE_PRODUCT_NEW_WIDTH\";s:8:\"cfgvalue\";s:3:\"110\";}i:119;a:2:{s:6:\"cfgkey\";s:24:\"IMAGE_PRODUCT_NEW_HEIGHT\";s:8:\"cfgvalue\";s:3:\"147\";}i:120;a:2:{s:6:\"cfgkey\";s:37:\"IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH\";s:8:\"cfgvalue\";s:3:\"110\";}i:121;a:2:{s:6:\"cfgkey\";s:38:\"IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT\";s:8:\"cfgvalue\";s:3:\"147\";}i:122;a:2:{s:6:\"cfgkey\";s:31:\"IMAGE_PRODUCT_ALL_LISTING_WIDTH\";s:8:\"cfgvalue\";s:3:\"110\";}i:123;a:2:{s:6:\"cfgkey\";s:32:\"IMAGE_PRODUCT_ALL_LISTING_HEIGHT\";s:8:\"cfgvalue\";s:3:\"147\";}i:124;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCTS_IMAGE_NO_IMAGE_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:125;a:2:{s:6:\"cfgkey\";s:23:\"PRODUCTS_IMAGE_NO_IMAGE\";s:8:\"cfgvalue\";s:14:\"no_picture.gif\";}i:126;a:2:{s:6:\"cfgkey\";s:26:\"PROPORTIONAL_IMAGES_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:127;a:2:{s:6:\"cfgkey\";s:14:\"ACCOUNT_GENDER\";s:8:\"cfgvalue\";s:4:\"true\";}i:128;a:2:{s:6:\"cfgkey\";s:11:\"ACCOUNT_DOB\";s:8:\"cfgvalue\";s:5:\"false\";}i:129;a:2:{s:6:\"cfgkey\";s:15:\"ACCOUNT_COMPANY\";s:8:\"cfgvalue\";s:5:\"false\";}i:130;a:2:{s:6:\"cfgkey\";s:14:\"ACCOUNT_SUBURB\";s:8:\"cfgvalue\";s:4:\"true\";}i:131;a:2:{s:6:\"cfgkey\";s:13:\"ACCOUNT_STATE\";s:8:\"cfgvalue\";s:4:\"true\";}i:132;a:2:{s:6:\"cfgkey\";s:35:\"ACCOUNT_STATE_DRAW_INITIAL_DROPDOWN\";s:8:\"cfgvalue\";s:4:\"true\";}i:133;a:2:{s:6:\"cfgkey\";s:35:\"SHOW_CREATE_ACCOUNT_DEFAULT_COUNTRY\";s:8:\"cfgvalue\";s:3:\"223\";}i:134;a:2:{s:6:\"cfgkey\";s:18:\"ACCOUNT_FAX_NUMBER\";s:8:\"cfgvalue\";s:4:\"true\";}i:135;a:2:{s:6:\"cfgkey\";s:25:\"ACCOUNT_NEWSLETTER_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:136;a:2:{s:6:\"cfgkey\";s:24:\"ACCOUNT_EMAIL_PREFERENCE\";s:8:\"cfgvalue\";s:1:\"0\";}i:137;a:2:{s:6:\"cfgkey\";s:38:\"CUSTOMERS_PRODUCTS_NOTIFICATION_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:138;a:2:{s:6:\"cfgkey\";s:18:\"CUSTOMERS_APPROVAL\";s:8:\"cfgvalue\";s:1:\"0\";}i:139;a:2:{s:6:\"cfgkey\";s:32:\"CUSTOMERS_APPROVAL_AUTHORIZATION\";s:8:\"cfgvalue\";s:1:\"0\";}i:140;a:2:{s:6:\"cfgkey\";s:32:\"CUSTOMERS_AUTHORIZATION_FILENAME\";s:8:\"cfgvalue\";s:23:\"customers_authorization\";}i:141;a:2:{s:6:\"cfgkey\";s:34:\"CUSTOMERS_AUTHORIZATION_HEADER_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:142;a:2:{s:6:\"cfgkey\";s:39:\"CUSTOMERS_AUTHORIZATION_COLUMN_LEFT_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:143;a:2:{s:6:\"cfgkey\";s:40:\"CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:144;a:2:{s:6:\"cfgkey\";s:34:\"CUSTOMERS_AUTHORIZATION_FOOTER_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:145;a:2:{s:6:\"cfgkey\";s:34:\"CUSTOMERS_AUTHORIZATION_PRICES_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:146;a:2:{s:6:\"cfgkey\";s:25:\"CUSTOMERS_REFERRAL_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:147;a:2:{s:6:\"cfgkey\";s:24:\"MODULE_PAYMENT_INSTALLED\";s:8:\"cfgvalue\";s:26:\"paypaldp.php;paypalwpp.php\";}i:148;a:2:{s:6:\"cfgkey\";s:28:\"MODULE_ORDER_TOTAL_INSTALLED\";s:8:\"cfgvalue\";s:119:\"ot_subtotal.php;ot_shipping.php;ot_coupon.php;ot_group_pricing.php;ot_tax.php;ot_loworderfee.php;ot_gv.php;ot_total.php\";}i:149;a:2:{s:6:\"cfgkey\";s:25:\"MODULE_SHIPPING_INSTALLED\";s:8:\"cfgvalue\";s:40:\"fedexexpress.php;fedexground.php;ups.php\";}i:150;a:2:{s:6:\"cfgkey\";s:17:\"FEC_CONFIRM_EMAIL\";s:8:\"cfgvalue\";s:5:\"false\";}i:151;a:2:{s:6:\"cfgkey\";s:20:\"FEC_SHIPPING_ADDRESS\";s:8:\"cfgvalue\";s:4:\"true\";}i:152;a:2:{s:6:\"cfgkey\";s:15:\"FEC_COPYBILLING\";s:8:\"cfgvalue\";s:4:\"true\";}i:153;a:2:{s:6:\"cfgkey\";s:12:\"FEC_CHECKBOX\";s:8:\"cfgvalue\";s:5:\"false\";}i:154;a:2:{s:6:\"cfgkey\";s:22:\"FEC_EASY_SIGNUP_STATUS\";s:8:\"cfgvalue\";s:5:\"false\";}i:155;a:2:{s:6:\"cfgkey\";s:15:\"FEC_ORDER_TOTAL\";s:8:\"cfgvalue\";s:4:\"true\";}i:156;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_PAYMENT_PAYPALWPP_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:157;a:2:{s:6:\"cfgkey\";s:30:\"FEC_CHECKOUT_CONFIRMATION_TEXT\";s:8:\"cfgvalue\";s:45:\"Your order is being processed, please wait...\";}i:158;a:2:{s:6:\"cfgkey\";s:18:\"FEC_SPLIT_CHECKOUT\";s:8:\"cfgvalue\";s:5:\"false\";}i:159;a:2:{s:6:\"cfgkey\";s:13:\"FEC_DROP_DOWN\";s:8:\"cfgvalue\";s:5:\"false\";}i:160;a:2:{s:6:\"cfgkey\";s:24:\"FEC_GIFT_WRAPPING_SWITCH\";s:8:\"cfgvalue\";s:5:\"false\";}i:161;a:2:{s:6:\"cfgkey\";s:16:\"FEC_GIFT_MESSAGE\";s:8:\"cfgvalue\";s:5:\"false\";}i:162;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_PAYMENT_PAYPALWPP_DIRECT_ENABLED\";s:8:\"cfgvalue\";s:5:\"False\";}i:163;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_ORDER_TOTAL_GROUP_PRICING_INC_TAX\";s:8:\"cfgvalue\";s:5:\"false\";}i:164;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_ORDER_TOTAL_GROUP_PRICING_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:165;a:2:{s:6:\"cfgkey\";s:43:\"MODULE_ORDER_TOTAL_GROUP_PRICING_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"290\";}i:166;a:2:{s:6:\"cfgkey\";s:45:\"MODULE_ORDER_TOTAL_GROUP_PRICING_INC_SHIPPING\";s:8:\"cfgvalue\";s:5:\"false\";}i:167;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_ORDER_TOTAL_GROUP_PRICING_CALC_TAX\";s:8:\"cfgvalue\";s:8:\"Standard\";}i:168;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_ORDER_TOTAL_GROUP_PRICING_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:169;a:2:{s:6:\"cfgkey\";s:14:\"FEC_CONFIDENCE\";s:8:\"cfgvalue\";s:4:\"true\";}i:170;a:2:{s:6:\"cfgkey\";s:22:\"FEC_NOACCOUNT_POSITION\";s:8:\"cfgvalue\";s:3:\"top\";}i:171;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_SHIPPING_FEDEX_GROUND_CURRENCY\";s:8:\"cfgvalue\";s:3:\"USD\";}i:172;a:2:{s:6:\"cfgkey\";s:53:\"MODULE_PAYMENT_PAYPALWPP_AUTOSELECT_CHEAPEST_SHIPPING\";s:8:\"cfgvalue\";s:2:\"No\";}i:173;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_PAYMENT_PAYPALWPP_SERVER\";s:8:\"cfgvalue\";s:4:\"live\";}i:174;a:2:{s:6:\"cfgkey\";s:16:\"DEFAULT_CURRENCY\";s:8:\"cfgvalue\";s:3:\"USD\";}i:175;a:2:{s:6:\"cfgkey\";s:16:\"DEFAULT_LANGUAGE\";s:8:\"cfgvalue\";s:2:\"en\";}i:176;a:2:{s:6:\"cfgkey\";s:24:\"DEFAULT_ORDERS_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"1\";}i:177;a:2:{s:6:\"cfgkey\";s:26:\"ADMIN_CONFIGURATION_KEY_ON\";s:8:\"cfgvalue\";s:1:\"0\";}i:178;a:2:{s:6:\"cfgkey\";s:23:\"SHIPPING_ORIGIN_COUNTRY\";s:8:\"cfgvalue\";s:3:\"223\";}i:179;a:2:{s:6:\"cfgkey\";s:19:\"SHIPPING_ORIGIN_ZIP\";s:8:\"cfgvalue\";s:5:\"48836\";}i:180;a:2:{s:6:\"cfgkey\";s:19:\"SHIPPING_MAX_WEIGHT\";s:8:\"cfgvalue\";s:2:\"48\";}i:181;a:2:{s:6:\"cfgkey\";s:19:\"SHIPPING_BOX_WEIGHT\";s:8:\"cfgvalue\";s:3:\"0:0\";}i:182;a:2:{s:6:\"cfgkey\";s:20:\"SHIPPING_BOX_PADDING\";s:8:\"cfgvalue\";s:3:\"0:0\";}i:183;a:2:{s:6:\"cfgkey\";s:27:\"SHIPPING_BOX_WEIGHT_DISPLAY\";s:8:\"cfgvalue\";s:1:\"3\";}i:184;a:2:{s:6:\"cfgkey\";s:30:\"SHOW_SHIPPING_ESTIMATOR_BUTTON\";s:8:\"cfgvalue\";s:1:\"2\";}i:185;a:2:{s:6:\"cfgkey\";s:22:\"ORDER_COMMENTS_INVOICE\";s:8:\"cfgvalue\";s:1:\"1\";}i:186;a:2:{s:6:\"cfgkey\";s:27:\"ORDER_COMMENTS_PACKING_SLIP\";s:8:\"cfgvalue\";s:1:\"1\";}i:187;a:2:{s:6:\"cfgkey\";s:24:\"ORDER_WEIGHT_ZERO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:188;a:2:{s:6:\"cfgkey\";s:18:\"PRODUCT_LIST_IMAGE\";s:8:\"cfgvalue\";s:1:\"1\";}i:189;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_LIST_MANUFACTURER\";s:8:\"cfgvalue\";s:1:\"0\";}i:190;a:2:{s:6:\"cfgkey\";s:18:\"PRODUCT_LIST_MODEL\";s:8:\"cfgvalue\";s:1:\"0\";}i:191;a:2:{s:6:\"cfgkey\";s:17:\"PRODUCT_LIST_NAME\";s:8:\"cfgvalue\";s:1:\"2\";}i:192;a:2:{s:6:\"cfgkey\";s:18:\"PRODUCT_LIST_PRICE\";s:8:\"cfgvalue\";s:1:\"3\";}i:193;a:2:{s:6:\"cfgkey\";s:21:\"PRODUCT_LIST_QUANTITY\";s:8:\"cfgvalue\";s:1:\"0\";}i:194;a:2:{s:6:\"cfgkey\";s:19:\"PRODUCT_LIST_WEIGHT\";s:8:\"cfgvalue\";s:1:\"1\";}i:195;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCTS_LIST_PRICE_WIDTH\";s:8:\"cfgvalue\";s:3:\"125\";}i:196;a:2:{s:6:\"cfgkey\";s:19:\"PRODUCT_LIST_FILTER\";s:8:\"cfgvalue\";s:1:\"1\";}i:197;a:2:{s:6:\"cfgkey\";s:22:\"PREV_NEXT_BAR_LOCATION\";s:8:\"cfgvalue\";s:1:\"3\";}i:198;a:2:{s:6:\"cfgkey\";s:34:\"PRODUCT_LISTING_DEFAULT_SORT_ORDER\";s:8:\"cfgvalue\";s:0:\"\";}i:199;a:2:{s:6:\"cfgkey\";s:26:\"PRODUCT_LIST_PRICE_BUY_NOW\";s:8:\"cfgvalue\";s:1:\"2\";}i:200;a:2:{s:6:\"cfgkey\";s:36:\"PRODUCT_LISTING_MULTIPLE_ADD_TO_CART\";s:8:\"cfgvalue\";s:1:\"3\";}i:201;a:2:{s:6:\"cfgkey\";s:24:\"PRODUCT_LIST_DESCRIPTION\";s:8:\"cfgvalue\";s:3:\"150\";}i:202;a:2:{s:6:\"cfgkey\";s:33:\"PRODUCT_LIST_SORT_ORDER_ASCENDING\";s:8:\"cfgvalue\";s:1:\"+\";}i:203;a:2:{s:6:\"cfgkey\";s:34:\"PRODUCT_LIST_SORT_ORDER_DESCENDING\";s:8:\"cfgvalue\";s:1:\"-\";}i:204;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_LIST_ALPHA_SORTER\";s:8:\"cfgvalue\";s:4:\"true\";}i:205;a:2:{s:6:\"cfgkey\";s:36:\"PRODUCT_LIST_CATEGORIES_IMAGE_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:206;a:2:{s:6:\"cfgkey\";s:40:\"PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP\";s:8:\"cfgvalue\";s:4:\"true\";}i:207;a:2:{s:6:\"cfgkey\";s:32:\"PRODUCT_LIST_CATEGORY_ROW_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:208;a:2:{s:6:\"cfgkey\";s:11:\"STOCK_CHECK\";s:8:\"cfgvalue\";s:5:\"false\";}i:209;a:2:{s:6:\"cfgkey\";s:13:\"STOCK_LIMITED\";s:8:\"cfgvalue\";s:5:\"false\";}i:210;a:2:{s:6:\"cfgkey\";s:20:\"STOCK_ALLOW_CHECKOUT\";s:8:\"cfgvalue\";s:4:\"true\";}i:211;a:2:{s:6:\"cfgkey\";s:31:\"STOCK_MARK_PRODUCT_OUT_OF_STOCK\";s:8:\"cfgvalue\";s:3:\"***\";}i:212;a:2:{s:6:\"cfgkey\";s:19:\"STOCK_REORDER_LEVEL\";s:8:\"cfgvalue\";s:1:\"5\";}i:213;a:2:{s:6:\"cfgkey\";s:22:\"SHOW_PRODUCTS_SOLD_OUT\";s:8:\"cfgvalue\";s:1:\"0\";}i:214;a:2:{s:6:\"cfgkey\";s:28:\"SHOW_PRODUCTS_SOLD_OUT_IMAGE\";s:8:\"cfgvalue\";s:1:\"1\";}i:215;a:2:{s:6:\"cfgkey\";s:17:\"QUANTITY_DECIMALS\";s:8:\"cfgvalue\";s:1:\"0\";}i:216;a:2:{s:6:\"cfgkey\";s:25:\"SHOW_SHOPPING_CART_DELETE\";s:8:\"cfgvalue\";s:1:\"3\";}i:217;a:2:{s:6:\"cfgkey\";s:25:\"SHOW_SHOPPING_CART_UPDATE\";s:8:\"cfgvalue\";s:1:\"3\";}i:218;a:2:{s:6:\"cfgkey\";s:37:\"SHOW_SHOPPING_CART_EMPTY_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"1\";}i:219;a:2:{s:6:\"cfgkey\";s:42:\"SHOW_SHOPPING_CART_EMPTY_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"2\";}i:220;a:2:{s:6:\"cfgkey\";s:42:\"SHOW_SHOPPING_CART_EMPTY_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:221;a:2:{s:6:\"cfgkey\";s:33:\"SHOW_SHOPPING_CART_EMPTY_UPCOMING\";s:8:\"cfgvalue\";s:1:\"4\";}i:222;a:2:{s:6:\"cfgkey\";s:27:\"SHOW_SHOPPING_CART_COMBINED\";s:8:\"cfgvalue\";s:1:\"1\";}i:223;a:2:{s:6:\"cfgkey\";s:21:\"STORE_PAGE_PARSE_TIME\";s:8:\"cfgvalue\";s:5:\"false\";}i:224;a:2:{s:6:\"cfgkey\";s:25:\"STORE_PAGE_PARSE_TIME_LOG\";s:8:\"cfgvalue\";s:52:\"/home/myadiron/public_html/cache/page_parse_time.log\";}i:225;a:2:{s:6:\"cfgkey\";s:28:\"STORE_PARSE_DATE_TIME_FORMAT\";s:8:\"cfgvalue\";s:17:\"%d/%m/%Y %H:%M:%S\";}i:226;a:2:{s:6:\"cfgkey\";s:23:\"DISPLAY_PAGE_PARSE_TIME\";s:8:\"cfgvalue\";s:5:\"false\";}i:227;a:2:{s:6:\"cfgkey\";s:21:\"STORE_DB_TRANSACTIONS\";s:8:\"cfgvalue\";s:5:\"false\";}i:228;a:2:{s:6:\"cfgkey\";s:15:\"EMAIL_TRANSPORT\";s:8:\"cfgvalue\";s:3:\"PHP\";}i:229;a:2:{s:6:\"cfgkey\";s:22:\"EMAIL_SMTPAUTH_MAILBOX\";s:8:\"cfgvalue\";s:26:\"eorder@adirondakchairs.net\";}i:230;a:2:{s:6:\"cfgkey\";s:23:\"EMAIL_SMTPAUTH_PASSWORD\";s:8:\"cfgvalue\";s:12:\"i~S&/m%F~4hq\";}i:231;a:2:{s:6:\"cfgkey\";s:26:\"EMAIL_SMTPAUTH_MAIL_SERVER\";s:8:\"cfgvalue\";s:24:\"mail.adirondakchairs.net\";}i:232;a:2:{s:6:\"cfgkey\";s:31:\"EMAIL_SMTPAUTH_MAIL_SERVER_PORT\";s:8:\"cfgvalue\";s:2:\"26\";}i:233;a:2:{s:6:\"cfgkey\";s:23:\"CURRENCIES_TRANSLATIONS\";s:8:\"cfgvalue\";s:18:\"&pound;,£:&euro;,€\";}i:234;a:2:{s:6:\"cfgkey\";s:14:\"EMAIL_LINEFEED\";s:8:\"cfgvalue\";s:2:\"LF\";}i:235;a:2:{s:6:\"cfgkey\";s:14:\"EMAIL_USE_HTML\";s:8:\"cfgvalue\";s:5:\"false\";}i:236;a:2:{s:6:\"cfgkey\";s:25:\"ENTRY_EMAIL_ADDRESS_CHECK\";s:8:\"cfgvalue\";s:5:\"false\";}i:237;a:2:{s:6:\"cfgkey\";s:11:\"SEND_EMAILS\";s:8:\"cfgvalue\";s:4:\"true\";}i:238;a:2:{s:6:\"cfgkey\";s:13:\"EMAIL_ARCHIVE\";s:8:\"cfgvalue\";s:5:\"false\";}i:239;a:2:{s:6:\"cfgkey\";s:21:\"EMAIL_FRIENDLY_ERRORS\";s:8:\"cfgvalue\";s:5:\"false\";}i:240;a:2:{s:6:\"cfgkey\";s:25:\"STORE_OWNER_EMAIL_ADDRESS\";s:8:\"cfgvalue\";s:24:\"info@adirondakchairs.net\";}i:241;a:2:{s:6:\"cfgkey\";s:10:\"EMAIL_FROM\";s:8:\"cfgvalue\";s:25:\"admin@adirondakchairs.net\";}i:242;a:2:{s:6:\"cfgkey\";s:24:\"EMAIL_SEND_MUST_BE_STORE\";s:8:\"cfgvalue\";s:3:\"Yes\";}i:243;a:2:{s:6:\"cfgkey\";s:24:\"ADMIN_EXTRA_EMAIL_FORMAT\";s:8:\"cfgvalue\";s:4:\"TEXT\";}i:244;a:2:{s:6:\"cfgkey\";s:26:\"SEND_EXTRA_ORDER_EMAILS_TO\";s:8:\"cfgvalue\";s:26:\"eorder@adirondakchairs.net\";}i:245;a:2:{s:6:\"cfgkey\";s:42:\"SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:246;a:2:{s:6:\"cfgkey\";s:35:\"SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO\";s:8:\"cfgvalue\";s:25:\"admin@adirondakchairs.net\";}i:247;a:2:{s:6:\"cfgkey\";s:41:\"SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:248;a:2:{s:6:\"cfgkey\";s:34:\"SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO\";s:8:\"cfgvalue\";s:24:\"info@adirondakchairs.net\";}i:249;a:2:{s:6:\"cfgkey\";s:39:\"SEND_EXTRA_GV_CUSTOMER_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:250;a:2:{s:6:\"cfgkey\";s:32:\"SEND_EXTRA_GV_CUSTOMER_EMAILS_TO\";s:8:\"cfgvalue\";s:25:\"admin@adirondakchairs.net\";}i:251;a:2:{s:6:\"cfgkey\";s:36:\"SEND_EXTRA_GV_ADMIN_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:252;a:2:{s:6:\"cfgkey\";s:29:\"SEND_EXTRA_GV_ADMIN_EMAILS_TO\";s:8:\"cfgvalue\";s:25:\"admin@adirondakchairs.net\";}i:253;a:2:{s:6:\"cfgkey\";s:49:\"SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:254;a:2:{s:6:\"cfgkey\";s:42:\"SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO\";s:8:\"cfgvalue\";s:25:\"admin@adirondakchairs.net\";}i:255;a:2:{s:6:\"cfgkey\";s:47:\"SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:256;a:2:{s:6:\"cfgkey\";s:40:\"SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO\";s:8:\"cfgvalue\";s:25:\"admin@adirondakchairs.net\";}i:257;a:2:{s:6:\"cfgkey\";s:47:\"SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:258;a:2:{s:6:\"cfgkey\";s:40:\"SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO\";s:8:\"cfgvalue\";s:25:\"admin@adirondakchairs.net\";}i:259;a:2:{s:6:\"cfgkey\";s:15:\"CONTACT_US_LIST\";s:8:\"cfgvalue\";s:0:\"\";}i:260;a:2:{s:6:\"cfgkey\";s:28:\"ALLOW_GUEST_TO_TELL_A_FRIEND\";s:8:\"cfgvalue\";s:5:\"false\";}i:261;a:2:{s:6:\"cfgkey\";s:29:\"CONTACT_US_STORE_NAME_ADDRESS\";s:8:\"cfgvalue\";s:1:\"1\";}i:262;a:2:{s:6:\"cfgkey\";s:19:\"SEND_LOWSTOCK_EMAIL\";s:8:\"cfgvalue\";s:1:\"0\";}i:263;a:2:{s:6:\"cfgkey\";s:30:\"SEND_EXTRA_LOW_STOCK_EMAILS_TO\";s:8:\"cfgvalue\";s:25:\"admin@adirondakchairs.net\";}i:264;a:2:{s:6:\"cfgkey\";s:32:\"SHOW_NEWSLETTER_UNSUBSCRIBE_LINK\";s:8:\"cfgvalue\";s:4:\"true\";}i:265;a:2:{s:6:\"cfgkey\";s:30:\"AUDIENCE_SELECT_DISPLAY_COUNTS\";s:8:\"cfgvalue\";s:4:\"true\";}i:266;a:2:{s:6:\"cfgkey\";s:16:\"DOWNLOAD_ENABLED\";s:8:\"cfgvalue\";s:5:\"false\";}i:267;a:2:{s:6:\"cfgkey\";s:20:\"DOWNLOAD_BY_REDIRECT\";s:8:\"cfgvalue\";s:4:\"true\";}i:268;a:2:{s:6:\"cfgkey\";s:18:\"DOWNLOAD_IN_CHUNKS\";s:8:\"cfgvalue\";s:5:\"false\";}i:269;a:2:{s:6:\"cfgkey\";s:17:\"DOWNLOAD_MAX_DAYS\";s:8:\"cfgvalue\";s:1:\"7\";}i:270;a:2:{s:6:\"cfgkey\";s:18:\"DOWNLOAD_MAX_COUNT\";s:8:\"cfgvalue\";s:1:\"5\";}i:271;a:2:{s:6:\"cfgkey\";s:37:\"DOWNLOADS_ORDERS_STATUS_UPDATED_VALUE\";s:8:\"cfgvalue\";s:1:\"4\";}i:272;a:2:{s:6:\"cfgkey\";s:34:\"DOWNLOADS_CONTROLLER_ORDERS_STATUS\";s:8:\"cfgvalue\";s:1:\"2\";}i:273;a:2:{s:6:\"cfgkey\";s:38:\"DOWNLOADS_CONTROLLER_ORDERS_STATUS_END\";s:8:\"cfgvalue\";s:1:\"4\";}i:274;a:2:{s:6:\"cfgkey\";s:31:\"ATTRIBUTES_ENABLED_PRICE_FACTOR\";s:8:\"cfgvalue\";s:4:\"true\";}i:275;a:2:{s:6:\"cfgkey\";s:29:\"ATTRIBUTES_ENABLED_QTY_PRICES\";s:8:\"cfgvalue\";s:5:\"false\";}i:276;a:2:{s:6:\"cfgkey\";s:25:\"ATTRIBUTES_ENABLED_IMAGES\";s:8:\"cfgvalue\";s:4:\"true\";}i:277;a:2:{s:6:\"cfgkey\";s:30:\"ATTRIBUTES_ENABLED_TEXT_PRICES\";s:8:\"cfgvalue\";s:5:\"false\";}i:278;a:2:{s:6:\"cfgkey\";s:16:\"TEXT_SPACES_FREE\";s:8:\"cfgvalue\";s:1:\"1\";}i:279;a:2:{s:6:\"cfgkey\";s:38:\"PRODUCTS_OPTIONS_TYPE_READONLY_IGNORED\";s:8:\"cfgvalue\";s:1:\"1\";}i:280;a:2:{s:6:\"cfgkey\";s:10:\"GZIP_LEVEL\";s:8:\"cfgvalue\";s:1:\"0\";}i:281;a:2:{s:6:\"cfgkey\";s:23:\"SESSION_WRITE_DIRECTORY\";s:8:\"cfgvalue\";s:20:\"/home/myadiron/cache\";}i:282;a:2:{s:6:\"cfgkey\";s:16:\"SESSION_USE_FQDN\";s:8:\"cfgvalue\";s:4:\"True\";}i:283;a:2:{s:6:\"cfgkey\";s:24:\"SESSION_FORCE_COOKIE_USE\";s:8:\"cfgvalue\";s:5:\"False\";}i:284;a:2:{s:6:\"cfgkey\";s:28:\"SESSION_CHECK_SSL_SESSION_ID\";s:8:\"cfgvalue\";s:5:\"False\";}i:285;a:2:{s:6:\"cfgkey\";s:24:\"SESSION_CHECK_USER_AGENT\";s:8:\"cfgvalue\";s:5:\"False\";}i:286;a:2:{s:6:\"cfgkey\";s:24:\"SESSION_CHECK_IP_ADDRESS\";s:8:\"cfgvalue\";s:5:\"False\";}i:287;a:2:{s:6:\"cfgkey\";s:21:\"SESSION_BLOCK_SPIDERS\";s:8:\"cfgvalue\";s:4:\"True\";}i:288;a:2:{s:6:\"cfgkey\";s:16:\"SESSION_RECREATE\";s:8:\"cfgvalue\";s:4:\"True\";}i:289;a:2:{s:6:\"cfgkey\";s:26:\"SESSION_IP_TO_HOST_ADDRESS\";s:8:\"cfgvalue\";s:4:\"true\";}i:290;a:2:{s:6:\"cfgkey\";s:20:\"SECURITY_CODE_LENGTH\";s:8:\"cfgvalue\";s:2:\"10\";}i:291;a:2:{s:6:\"cfgkey\";s:37:\"DEFAULT_ZERO_BALANCE_ORDERS_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"2\";}i:292;a:2:{s:6:\"cfgkey\";s:26:\"NEW_SIGNUP_DISCOUNT_COUPON\";s:8:\"cfgvalue\";s:0:\"\";}i:293;a:2:{s:6:\"cfgkey\";s:30:\"NEW_SIGNUP_GIFT_VOUCHER_AMOUNT\";s:8:\"cfgvalue\";s:0:\"\";}i:294;a:2:{s:6:\"cfgkey\";s:43:\"MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS\";s:8:\"cfgvalue\";s:2:\"20\";}i:295;a:2:{s:6:\"cfgkey\";s:51:\"MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS_REPORTS\";s:8:\"cfgvalue\";s:2:\"20\";}i:296;a:2:{s:6:\"cfgkey\";s:15:\"CC_ENABLED_VISA\";s:8:\"cfgvalue\";s:1:\"1\";}i:297;a:2:{s:6:\"cfgkey\";s:13:\"CC_ENABLED_MC\";s:8:\"cfgvalue\";s:1:\"1\";}i:298;a:2:{s:6:\"cfgkey\";s:15:\"CC_ENABLED_AMEX\";s:8:\"cfgvalue\";s:1:\"1\";}i:299;a:2:{s:6:\"cfgkey\";s:22:\"CC_ENABLED_DINERS_CLUB\";s:8:\"cfgvalue\";s:1:\"0\";}i:300;a:2:{s:6:\"cfgkey\";s:19:\"CC_ENABLED_DISCOVER\";s:8:\"cfgvalue\";s:1:\"0\";}i:301;a:2:{s:6:\"cfgkey\";s:14:\"CC_ENABLED_JCB\";s:8:\"cfgvalue\";s:1:\"0\";}i:302;a:2:{s:6:\"cfgkey\";s:30:\"CC_ENABLED_AUSTRALIAN_BANKCARD\";s:8:\"cfgvalue\";s:1:\"0\";}i:303;a:2:{s:6:\"cfgkey\";s:15:\"CC_ENABLED_SOLO\";s:8:\"cfgvalue\";s:1:\"0\";}i:304;a:2:{s:6:\"cfgkey\";s:17:\"CC_ENABLED_SWITCH\";s:8:\"cfgvalue\";s:1:\"0\";}i:305;a:2:{s:6:\"cfgkey\";s:18:\"CC_ENABLED_MAESTRO\";s:8:\"cfgvalue\";s:1:\"0\";}i:306;a:2:{s:6:\"cfgkey\";s:26:\"SHOW_ACCEPTED_CREDIT_CARDS\";s:8:\"cfgvalue\";s:1:\"0\";}i:307;a:2:{s:6:\"cfgkey\";s:28:\"MODULE_ORDER_TOTAL_GV_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:308;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_ORDER_TOTAL_GV_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"840\";}i:309;a:2:{s:6:\"cfgkey\";s:27:\"MODULE_ORDER_TOTAL_GV_QUEUE\";s:8:\"cfgvalue\";s:4:\"true\";}i:310;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_ORDER_TOTAL_GV_INC_SHIPPING\";s:8:\"cfgvalue\";s:4:\"true\";}i:311;a:2:{s:6:\"cfgkey\";s:29:\"MODULE_ORDER_TOTAL_GV_INC_TAX\";s:8:\"cfgvalue\";s:4:\"true\";}i:312;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_ORDER_TOTAL_GV_CALC_TAX\";s:8:\"cfgvalue\";s:4:\"None\";}i:313;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_ORDER_TOTAL_GV_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:314;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_ORDER_TOTAL_GV_CREDIT_TAX\";s:8:\"cfgvalue\";s:5:\"false\";}i:315;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_ORDER_TOTAL_GV_ORDER_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"0\";}i:316;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:317;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"400\";}i:318;a:2:{s:6:\"cfgkey\";s:44:\"MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE\";s:8:\"cfgvalue\";s:5:\"false\";}i:319;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER\";s:8:\"cfgvalue\";s:2:\"50\";}i:320;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_ORDER_TOTAL_LOWORDERFEE_FEE\";s:8:\"cfgvalue\";s:1:\"5\";}i:321;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION\";s:8:\"cfgvalue\";s:4:\"both\";}i:322;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:323;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_ORDER_TOTAL_LOWORDERFEE_VIRTUAL\";s:8:\"cfgvalue\";s:5:\"false\";}i:324;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_ORDER_TOTAL_LOWORDERFEE_GV\";s:8:\"cfgvalue\";s:5:\"false\";}i:325;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_ORDER_TOTAL_SHIPPING_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:326;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"200\";}i:327;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING\";s:8:\"cfgvalue\";s:5:\"false\";}i:328;a:2:{s:6:\"cfgkey\";s:46:\"MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER\";s:8:\"cfgvalue\";s:2:\"50\";}i:329;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_ORDER_TOTAL_SHIPPING_DESTINATION\";s:8:\"cfgvalue\";s:8:\"national\";}i:330;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_ORDER_TOTAL_SUBTOTAL_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:331;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"100\";}i:332;a:2:{s:6:\"cfgkey\";s:29:\"MODULE_ORDER_TOTAL_TAX_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:333;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_ORDER_TOTAL_TAX_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"300\";}i:334;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_ORDER_TOTAL_TOTAL_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:335;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"999\";}i:336;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_ORDER_TOTAL_COUPON_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:337;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_ORDER_TOTAL_COUPON_INC_TAX\";s:8:\"cfgvalue\";s:5:\"false\";}i:338;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_ORDER_TOTAL_COUPON_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"280\";}i:339;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_ORDER_TOTAL_COUPON_INC_SHIPPING\";s:8:\"cfgvalue\";s:5:\"false\";}i:340;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_ORDER_TOTAL_COUPON_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:341;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_ORDER_TOTAL_COUPON_CALC_TAX\";s:8:\"cfgvalue\";s:8:\"Standard\";}i:342;a:2:{s:6:\"cfgkey\";s:10:\"ADMIN_DEMO\";s:8:\"cfgvalue\";s:1:\"0\";}i:343;a:2:{s:6:\"cfgkey\";s:26:\"PRODUCTS_OPTIONS_TYPE_TEXT\";s:8:\"cfgvalue\";s:1:\"1\";}i:344;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCTS_OPTIONS_TYPE_RADIO\";s:8:\"cfgvalue\";s:1:\"2\";}i:345;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCTS_OPTIONS_TYPE_CHECKBOX\";s:8:\"cfgvalue\";s:1:\"3\";}i:346;a:2:{s:6:\"cfgkey\";s:26:\"PRODUCTS_OPTIONS_TYPE_FILE\";s:8:\"cfgvalue\";s:1:\"4\";}i:347;a:2:{s:6:\"cfgkey\";s:31:\"PRODUCTS_OPTIONS_VALUES_TEXT_ID\";s:8:\"cfgvalue\";s:1:\"0\";}i:348;a:2:{s:6:\"cfgkey\";s:12:\"FEC_ONE_PAGE\";s:8:\"cfgvalue\";s:4:\"true\";}i:349;a:2:{s:6:\"cfgkey\";s:10:\"FEC_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:350;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCTS_OPTIONS_TYPE_READONLY\";s:8:\"cfgvalue\";s:1:\"5\";}i:351;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCTS_OPTIONS_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:352;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCTS_OPTIONS_SORT_BY_PRICE\";s:8:\"cfgvalue\";s:1:\"1\";}i:353;a:2:{s:6:\"cfgkey\";s:31:\"PRODUCT_IMAGES_ATTRIBUTES_NAMES\";s:8:\"cfgvalue\";s:1:\"1\";}i:354;a:2:{s:6:\"cfgkey\";s:25:\"SHOW_SALE_DISCOUNT_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:355;a:2:{s:6:\"cfgkey\";s:18:\"SHOW_SALE_DISCOUNT\";s:8:\"cfgvalue\";s:1:\"1\";}i:356;a:2:{s:6:\"cfgkey\";s:27:\"SHOW_SALE_DISCOUNT_DECIMALS\";s:8:\"cfgvalue\";s:1:\"0\";}i:357;a:2:{s:6:\"cfgkey\";s:28:\"OTHER_IMAGE_PRICE_IS_FREE_ON\";s:8:\"cfgvalue\";s:1:\"1\";}i:358;a:2:{s:6:\"cfgkey\";s:31:\"PRODUCTS_PRICE_IS_CALL_IMAGE_ON\";s:8:\"cfgvalue\";s:1:\"1\";}i:359;a:2:{s:6:\"cfgkey\";s:23:\"PRODUCTS_QTY_BOX_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:360;a:2:{s:6:\"cfgkey\";s:16:\"REVIEWS_APPROVAL\";s:8:\"cfgvalue\";s:1:\"1\";}i:361;a:2:{s:6:\"cfgkey\";s:22:\"META_TAG_INCLUDE_MODEL\";s:8:\"cfgvalue\";s:1:\"1\";}i:362;a:2:{s:6:\"cfgkey\";s:22:\"META_TAG_INCLUDE_PRICE\";s:8:\"cfgvalue\";s:1:\"1\";}i:363;a:2:{s:6:\"cfgkey\";s:31:\"MAX_META_TAG_DESCRIPTION_LENGTH\";s:8:\"cfgvalue\";s:2:\"50\";}i:364;a:2:{s:6:\"cfgkey\";s:49:\"SHOW_PRODUCT_INFO_COLUMNS_ALSO_PURCHASED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:365;a:2:{s:6:\"cfgkey\";s:26:\"PRODUCT_INFO_PREVIOUS_NEXT\";s:8:\"cfgvalue\";s:1:\"1\";}i:366;a:2:{s:6:\"cfgkey\";s:31:\"PRODUCT_INFO_PREVIOUS_NEXT_SORT\";s:8:\"cfgvalue\";s:1:\"1\";}i:367;a:2:{s:6:\"cfgkey\";s:25:\"SHOW_PREVIOUS_NEXT_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:368;a:2:{s:6:\"cfgkey\";s:25:\"SHOW_PREVIOUS_NEXT_IMAGES\";s:8:\"cfgvalue\";s:1:\"0\";}i:369;a:2:{s:6:\"cfgkey\";s:25:\"PREVIOUS_NEXT_IMAGE_WIDTH\";s:8:\"cfgvalue\";s:2:\"50\";}i:370;a:2:{s:6:\"cfgkey\";s:26:\"PREVIOUS_NEXT_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:2:\"70\";}i:371;a:2:{s:6:\"cfgkey\";s:23:\"PRODUCT_INFO_CATEGORIES\";s:8:\"cfgvalue\";s:1:\"1\";}i:372;a:2:{s:6:\"cfgkey\";s:36:\"PRODUCT_INFO_CATEGORIES_IMAGE_STATUS\";s:8:\"cfgvalue\";s:1:\"2\";}i:373;a:2:{s:6:\"cfgkey\";s:14:\"BOX_WIDTH_LEFT\";s:8:\"cfgvalue\";s:5:\"170px\";}i:374;a:2:{s:6:\"cfgkey\";s:15:\"BOX_WIDTH_RIGHT\";s:8:\"cfgvalue\";s:5:\"170px\";}i:375;a:2:{s:6:\"cfgkey\";s:22:\"BREAD_CRUMBS_SEPARATOR\";s:8:\"cfgvalue\";s:14:\"&nbsp;::&nbsp;\";}i:376;a:2:{s:6:\"cfgkey\";s:24:\"DEFINE_BREADCRUMB_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:377;a:2:{s:6:\"cfgkey\";s:19:\"BEST_SELLERS_FILLER\";s:8:\"cfgvalue\";s:6:\"&nbsp;\";}i:378;a:2:{s:6:\"cfgkey\";s:21:\"BEST_SELLERS_TRUNCATE\";s:8:\"cfgvalue\";s:2:\"35\";}i:379;a:2:{s:6:\"cfgkey\";s:26:\"BEST_SELLERS_TRUNCATE_MORE\";s:8:\"cfgvalue\";s:4:\"true\";}i:380;a:2:{s:6:\"cfgkey\";s:28:\"SHOW_CATEGORIES_BOX_SPECIALS\";s:8:\"cfgvalue\";s:4:\"true\";}i:381;a:2:{s:6:\"cfgkey\";s:32:\"SHOW_CATEGORIES_BOX_PRODUCTS_NEW\";s:8:\"cfgvalue\";s:5:\"false\";}i:382;a:2:{s:6:\"cfgkey\";s:29:\"SHOW_SHOPPING_CART_BOX_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:383;a:2:{s:6:\"cfgkey\";s:37:\"SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:4:\"true\";}i:384;a:2:{s:6:\"cfgkey\";s:32:\"SHOW_CATEGORIES_BOX_PRODUCTS_ALL\";s:8:\"cfgvalue\";s:5:\"false\";}i:385;a:2:{s:6:\"cfgkey\";s:18:\"COLUMN_LEFT_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:386;a:2:{s:6:\"cfgkey\";s:19:\"COLUMN_RIGHT_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:387;a:2:{s:6:\"cfgkey\";s:17:\"COLUMN_WIDTH_LEFT\";s:8:\"cfgvalue\";s:5:\"170px\";}i:388;a:2:{s:6:\"cfgkey\";s:18:\"COLUMN_WIDTH_RIGHT\";s:8:\"cfgvalue\";s:5:\"170px\";}i:389;a:2:{s:6:\"cfgkey\";s:30:\"SHOW_CATEGORIES_SEPARATOR_LINK\";s:8:\"cfgvalue\";s:1:\"1\";}i:390;a:2:{s:6:\"cfgkey\";s:20:\"CATEGORIES_SEPARATOR\";s:8:\"cfgvalue\";s:5:\"-&gt;\";}i:391;a:2:{s:6:\"cfgkey\";s:25:\"CATEGORIES_SEPARATOR_SUBS\";s:8:\"cfgvalue\";s:0:\"\";}i:392;a:2:{s:6:\"cfgkey\";s:23:\"CATEGORIES_COUNT_PREFIX\";s:8:\"cfgvalue\";s:7:\"&nbsp;(\";}i:393;a:2:{s:6:\"cfgkey\";s:23:\"CATEGORIES_COUNT_SUFFIX\";s:8:\"cfgvalue\";s:1:\")\";}i:394;a:2:{s:6:\"cfgkey\";s:31:\"CATEGORIES_SUBCATEGORIES_INDENT\";s:8:\"cfgvalue\";s:12:\"&nbsp;&nbsp;\";}i:395;a:2:{s:6:\"cfgkey\";s:21:\"CATEGORIES_COUNT_ZERO\";s:8:\"cfgvalue\";s:1:\"0\";}i:396;a:2:{s:6:\"cfgkey\";s:24:\"CATEGORIES_SPLIT_DISPLAY\";s:8:\"cfgvalue\";s:4:\"True\";}i:397;a:2:{s:6:\"cfgkey\";s:19:\"SHOW_TOTALS_IN_CART\";s:8:\"cfgvalue\";s:1:\"3\";}i:398;a:2:{s:6:\"cfgkey\";s:22:\"SHOW_CUSTOMER_GREETING\";s:8:\"cfgvalue\";s:1:\"0\";}i:399;a:2:{s:6:\"cfgkey\";s:22:\"SHOW_CATEGORIES_ALWAYS\";s:8:\"cfgvalue\";s:1:\"0\";}i:400;a:2:{s:6:\"cfgkey\";s:21:\"CATEGORIES_START_MAIN\";s:8:\"cfgvalue\";s:1:\"2\";}i:401;a:2:{s:6:\"cfgkey\";s:36:\"SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS\";s:8:\"cfgvalue\";s:1:\"1\";}i:402;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET1\";s:8:\"cfgvalue\";s:0:\"\";}i:403;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET2\";s:8:\"cfgvalue\";s:0:\"\";}i:404;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET3\";s:8:\"cfgvalue\";s:0:\"\";}i:405;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET4\";s:8:\"cfgvalue\";s:6:\"bottom\";}i:406;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET5\";s:8:\"cfgvalue\";s:12:\"above-footer\";}i:407;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET6\";s:8:\"cfgvalue\";s:12:\"Wide-Banners\";}i:408;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET7\";s:8:\"cfgvalue\";s:15:\"SideBox-Banners\";}i:409;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET8\";s:8:\"cfgvalue\";s:15:\"SideBox-Banners\";}i:410;a:2:{s:6:\"cfgkey\";s:26:\"SHOW_BANNERS_GROUP_SET_ALL\";s:8:\"cfgvalue\";s:10:\"BannersAll\";}i:411;a:2:{s:6:\"cfgkey\";s:14:\"SHOW_FOOTER_IP\";s:8:\"cfgvalue\";s:1:\"0\";}i:412;a:2:{s:6:\"cfgkey\";s:16:\"DISCOUNT_QTY_ADD\";s:8:\"cfgvalue\";s:1:\"5\";}i:413;a:2:{s:6:\"cfgkey\";s:31:\"DISCOUNT_QUANTITY_PRICES_COLUMN\";s:8:\"cfgvalue\";s:1:\"5\";}i:414;a:2:{s:6:\"cfgkey\";s:30:\"CATEGORIES_PRODUCTS_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:415;a:2:{s:6:\"cfgkey\";s:33:\"OPTION_NAMES_VALUES_GLOBAL_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:416;a:2:{s:6:\"cfgkey\";s:22:\"CATEGORIES_TABS_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:417;a:2:{s:6:\"cfgkey\";s:30:\"SHOW_ACCOUNT_LINKS_ON_SITE_MAP\";s:8:\"cfgvalue\";s:2:\"No\";}i:418;a:2:{s:6:\"cfgkey\";s:30:\"SKIP_SINGLE_PRODUCT_CATEGORIES\";s:8:\"cfgvalue\";s:4:\"True\";}i:419;a:2:{s:6:\"cfgkey\";s:20:\"USE_SPLIT_LOGIN_MODE\";s:8:\"cfgvalue\";s:4:\"True\";}i:420;a:2:{s:6:\"cfgkey\";s:21:\"IMAGE_USE_CSS_BUTTONS\";s:8:\"cfgvalue\";s:2:\"No\";}i:421;a:2:{s:6:\"cfgkey\";s:20:\"DOWN_FOR_MAINTENANCE\";s:8:\"cfgvalue\";s:5:\"false\";}i:422;a:2:{s:6:\"cfgkey\";s:29:\"DOWN_FOR_MAINTENANCE_FILENAME\";s:8:\"cfgvalue\";s:20:\"down_for_maintenance\";}i:423;a:2:{s:6:\"cfgkey\";s:31:\"DOWN_FOR_MAINTENANCE_HEADER_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:424;a:2:{s:6:\"cfgkey\";s:36:\"DOWN_FOR_MAINTENANCE_COLUMN_LEFT_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:425;a:2:{s:6:\"cfgkey\";s:37:\"DOWN_FOR_MAINTENANCE_COLUMN_RIGHT_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:426;a:2:{s:6:\"cfgkey\";s:31:\"DOWN_FOR_MAINTENANCE_FOOTER_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:427;a:2:{s:6:\"cfgkey\";s:31:\"DOWN_FOR_MAINTENANCE_PRICES_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:428;a:2:{s:6:\"cfgkey\";s:32:\"EXCLUDE_ADMIN_IP_FOR_MAINTENANCE\";s:8:\"cfgvalue\";s:15:\"your IP (ADMIN)\";}i:429;a:2:{s:6:\"cfgkey\";s:32:\"WARN_BEFORE_DOWN_FOR_MAINTENANCE\";s:8:\"cfgvalue\";s:5:\"false\";}i:430;a:2:{s:6:\"cfgkey\";s:34:\"PERIOD_BEFORE_DOWN_FOR_MAINTENANCE\";s:8:\"cfgvalue\";s:18:\"15/05/2003  2-3 PM\";}i:431;a:2:{s:6:\"cfgkey\";s:24:\"DISPLAY_MAINTENANCE_TIME\";s:8:\"cfgvalue\";s:5:\"false\";}i:432;a:2:{s:6:\"cfgkey\";s:26:\"DISPLAY_MAINTENANCE_PERIOD\";s:8:\"cfgvalue\";s:5:\"false\";}i:433;a:2:{s:6:\"cfgkey\";s:28:\"TEXT_MAINTENANCE_PERIOD_TIME\";s:8:\"cfgvalue\";s:4:\"2h00\";}i:434;a:2:{s:6:\"cfgkey\";s:30:\"DISPLAY_CONDITIONS_ON_CHECKOUT\";s:8:\"cfgvalue\";s:5:\"false\";}i:435;a:2:{s:6:\"cfgkey\";s:26:\"DISPLAY_PRIVACY_CONDITIONS\";s:8:\"cfgvalue\";s:5:\"false\";}i:436;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_NEW_LIST_IMAGE\";s:8:\"cfgvalue\";s:4:\"1102\";}i:437;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_NEW_LIST_QUANTITY\";s:8:\"cfgvalue\";s:4:\"1202\";}i:438;a:2:{s:6:\"cfgkey\";s:19:\"PRODUCT_NEW_BUY_NOW\";s:8:\"cfgvalue\";s:4:\"1300\";}i:439;a:2:{s:6:\"cfgkey\";s:21:\"PRODUCT_NEW_LIST_NAME\";s:8:\"cfgvalue\";s:4:\"2101\";}i:440;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_NEW_LIST_MODEL\";s:8:\"cfgvalue\";s:4:\"2201\";}i:441;a:2:{s:6:\"cfgkey\";s:29:\"PRODUCT_NEW_LIST_MANUFACTURER\";s:8:\"cfgvalue\";s:4:\"2302\";}i:442;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_NEW_LIST_PRICE\";s:8:\"cfgvalue\";s:4:\"2402\";}i:443;a:2:{s:6:\"cfgkey\";s:23:\"PRODUCT_NEW_LIST_WEIGHT\";s:8:\"cfgvalue\";s:4:\"2502\";}i:444;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCT_NEW_LIST_DATE_ADDED\";s:8:\"cfgvalue\";s:4:\"2601\";}i:445;a:2:{s:6:\"cfgkey\";s:28:\"PRODUCT_NEW_LIST_DESCRIPTION\";s:8:\"cfgvalue\";s:3:\"150\";}i:446;a:2:{s:6:\"cfgkey\";s:29:\"PRODUCT_NEW_LIST_SORT_DEFAULT\";s:8:\"cfgvalue\";s:1:\"6\";}i:447;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_NEW_LIST_GROUP_ID\";s:8:\"cfgvalue\";s:2:\"21\";}i:448;a:2:{s:6:\"cfgkey\";s:40:\"PRODUCT_NEW_LISTING_MULTIPLE_ADD_TO_CART\";s:8:\"cfgvalue\";s:1:\"3\";}i:449;a:2:{s:6:\"cfgkey\";s:33:\"SHOW_NEW_PRODUCTS_UPCOMING_MASKED\";s:8:\"cfgvalue\";s:1:\"0\";}i:450;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCT_FEATURED_LIST_IMAGE\";s:8:\"cfgvalue\";s:4:\"1102\";}i:451;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCT_FEATURED_LIST_QUANTITY\";s:8:\"cfgvalue\";s:4:\"1202\";}i:452;a:2:{s:6:\"cfgkey\";s:24:\"PRODUCT_FEATURED_BUY_NOW\";s:8:\"cfgvalue\";s:4:\"1300\";}i:453;a:2:{s:6:\"cfgkey\";s:26:\"PRODUCT_FEATURED_LIST_NAME\";s:8:\"cfgvalue\";s:4:\"2101\";}i:454;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCT_FEATURED_LIST_MODEL\";s:8:\"cfgvalue\";s:4:\"2201\";}i:455;a:2:{s:6:\"cfgkey\";s:34:\"PRODUCT_FEATURED_LIST_MANUFACTURER\";s:8:\"cfgvalue\";s:4:\"2302\";}i:456;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCT_FEATURED_LIST_PRICE\";s:8:\"cfgvalue\";s:4:\"2402\";}i:457;a:2:{s:6:\"cfgkey\";s:28:\"PRODUCT_FEATURED_LIST_WEIGHT\";s:8:\"cfgvalue\";s:4:\"2502\";}i:458;a:2:{s:6:\"cfgkey\";s:32:\"PRODUCT_FEATURED_LIST_DATE_ADDED\";s:8:\"cfgvalue\";s:4:\"2601\";}i:459;a:2:{s:6:\"cfgkey\";s:33:\"PRODUCT_FEATURED_LIST_DESCRIPTION\";s:8:\"cfgvalue\";s:3:\"150\";}i:460;a:2:{s:6:\"cfgkey\";s:34:\"PRODUCT_FEATURED_LIST_SORT_DEFAULT\";s:8:\"cfgvalue\";s:1:\"1\";}i:461;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCT_FEATURED_LIST_GROUP_ID\";s:8:\"cfgvalue\";s:2:\"22\";}i:462;a:2:{s:6:\"cfgkey\";s:45:\"PRODUCT_FEATURED_LISTING_MULTIPLE_ADD_TO_CART\";s:8:\"cfgvalue\";s:1:\"3\";}i:463;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_ALL_LIST_IMAGE\";s:8:\"cfgvalue\";s:4:\"1102\";}i:464;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_ALL_LIST_QUANTITY\";s:8:\"cfgvalue\";s:4:\"1202\";}i:465;a:2:{s:6:\"cfgkey\";s:19:\"PRODUCT_ALL_BUY_NOW\";s:8:\"cfgvalue\";s:4:\"1300\";}i:466;a:2:{s:6:\"cfgkey\";s:21:\"PRODUCT_ALL_LIST_NAME\";s:8:\"cfgvalue\";s:4:\"2101\";}i:467;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_ALL_LIST_MODEL\";s:8:\"cfgvalue\";s:4:\"2201\";}i:468;a:2:{s:6:\"cfgkey\";s:29:\"PRODUCT_ALL_LIST_MANUFACTURER\";s:8:\"cfgvalue\";s:4:\"2302\";}i:469;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_ALL_LIST_PRICE\";s:8:\"cfgvalue\";s:4:\"2402\";}i:470;a:2:{s:6:\"cfgkey\";s:23:\"PRODUCT_ALL_LIST_WEIGHT\";s:8:\"cfgvalue\";s:4:\"2502\";}i:471;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCT_ALL_LIST_DATE_ADDED\";s:8:\"cfgvalue\";s:4:\"2601\";}i:472;a:2:{s:6:\"cfgkey\";s:28:\"PRODUCT_ALL_LIST_DESCRIPTION\";s:8:\"cfgvalue\";s:3:\"150\";}i:473;a:2:{s:6:\"cfgkey\";s:29:\"PRODUCT_ALL_LIST_SORT_DEFAULT\";s:8:\"cfgvalue\";s:1:\"1\";}i:474;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_ALL_LIST_GROUP_ID\";s:8:\"cfgvalue\";s:2:\"23\";}i:475;a:2:{s:6:\"cfgkey\";s:40:\"PRODUCT_ALL_LISTING_MULTIPLE_ADD_TO_CART\";s:8:\"cfgvalue\";s:1:\"3\";}i:476;a:2:{s:6:\"cfgkey\";s:35:\"SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:477;a:2:{s:6:\"cfgkey\";s:40:\"SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"1\";}i:478;a:2:{s:6:\"cfgkey\";s:40:\"SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:479;a:2:{s:6:\"cfgkey\";s:31:\"SHOW_PRODUCT_INFO_MAIN_UPCOMING\";s:8:\"cfgvalue\";s:1:\"0\";}i:480;a:2:{s:6:\"cfgkey\";s:39:\"SHOW_PRODUCT_INFO_CATEGORY_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:481;a:2:{s:6:\"cfgkey\";s:44:\"SHOW_PRODUCT_INFO_CATEGORY_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:482;a:2:{s:6:\"cfgkey\";s:44:\"SHOW_PRODUCT_INFO_CATEGORY_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:483;a:2:{s:6:\"cfgkey\";s:35:\"SHOW_PRODUCT_INFO_CATEGORY_UPCOMING\";s:8:\"cfgvalue\";s:1:\"0\";}i:484;a:2:{s:6:\"cfgkey\";s:38:\"SHOW_PRODUCT_INFO_MISSING_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:485;a:2:{s:6:\"cfgkey\";s:43:\"SHOW_PRODUCT_INFO_MISSING_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:486;a:2:{s:6:\"cfgkey\";s:43:\"SHOW_PRODUCT_INFO_MISSING_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:487;a:2:{s:6:\"cfgkey\";s:34:\"SHOW_PRODUCT_INFO_MISSING_UPCOMING\";s:8:\"cfgvalue\";s:1:\"0\";}i:488;a:2:{s:6:\"cfgkey\";s:44:\"SHOW_PRODUCT_INFO_LISTING_BELOW_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:489;a:2:{s:6:\"cfgkey\";s:49:\"SHOW_PRODUCT_INFO_LISTING_BELOW_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:490;a:2:{s:6:\"cfgkey\";s:49:\"SHOW_PRODUCT_INFO_LISTING_BELOW_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:491;a:2:{s:6:\"cfgkey\";s:40:\"SHOW_PRODUCT_INFO_LISTING_BELOW_UPCOMING\";s:8:\"cfgvalue\";s:1:\"4\";}i:492;a:2:{s:6:\"cfgkey\";s:38:\"SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:493;a:2:{s:6:\"cfgkey\";s:43:\"SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:494;a:2:{s:6:\"cfgkey\";s:43:\"SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:495;a:2:{s:6:\"cfgkey\";s:30:\"SHOW_PRODUCT_INFO_ALL_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"1\";}i:496;a:2:{s:6:\"cfgkey\";s:23:\"DEFINE_MAIN_PAGE_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:497;a:2:{s:6:\"cfgkey\";s:24:\"DEFINE_CONTACT_US_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:498;a:2:{s:6:\"cfgkey\";s:21:\"DEFINE_PRIVACY_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:499;a:2:{s:6:\"cfgkey\";s:26:\"DEFINE_SHIPPINGINFO_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:500;a:2:{s:6:\"cfgkey\";s:24:\"DEFINE_CONDITIONS_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:501;a:2:{s:6:\"cfgkey\";s:30:\"DEFINE_CHECKOUT_SUCCESS_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:502;a:2:{s:6:\"cfgkey\";s:29:\"DEFINE_DISCOUNT_COUPON_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:503;a:2:{s:6:\"cfgkey\";s:22:\"DEFINE_SITE_MAP_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:504;a:2:{s:6:\"cfgkey\";s:28:\"DEFINE_PAGE_NOT_FOUND_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:505;a:2:{s:6:\"cfgkey\";s:20:\"DEFINE_PAGE_2_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:506;a:2:{s:6:\"cfgkey\";s:20:\"DEFINE_PAGE_3_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:507;a:2:{s:6:\"cfgkey\";s:20:\"DEFINE_PAGE_4_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:508;a:2:{s:6:\"cfgkey\";s:21:\"EZPAGES_STATUS_HEADER\";s:8:\"cfgvalue\";s:1:\"1\";}i:509;a:2:{s:6:\"cfgkey\";s:21:\"EZPAGES_STATUS_FOOTER\";s:8:\"cfgvalue\";s:1:\"1\";}i:510;a:2:{s:6:\"cfgkey\";s:22:\"EZPAGES_STATUS_SIDEBOX\";s:8:\"cfgvalue\";s:1:\"1\";}i:511;a:2:{s:6:\"cfgkey\";s:24:\"EZPAGES_SEPARATOR_HEADER\";s:8:\"cfgvalue\";s:14:\"&nbsp;::&nbsp;\";}i:512;a:2:{s:6:\"cfgkey\";s:24:\"EZPAGES_SEPARATOR_FOOTER\";s:8:\"cfgvalue\";s:14:\"&nbsp;::&nbsp;\";}i:513;a:2:{s:6:\"cfgkey\";s:30:\"EZPAGES_SHOW_PREV_NEXT_BUTTONS\";s:8:\"cfgvalue\";s:1:\"2\";}i:514;a:2:{s:6:\"cfgkey\";s:27:\"EZPAGES_SHOW_TABLE_CONTENTS\";s:8:\"cfgvalue\";s:1:\"1\";}i:515;a:2:{s:6:\"cfgkey\";s:35:\"EZPAGES_DISABLE_HEADER_DISPLAY_LIST\";s:8:\"cfgvalue\";s:0:\"\";}i:516;a:2:{s:6:\"cfgkey\";s:35:\"EZPAGES_DISABLE_FOOTER_DISPLAY_LIST\";s:8:\"cfgvalue\";s:0:\"\";}i:517;a:2:{s:6:\"cfgkey\";s:39:\"EZPAGES_DISABLE_LEFTCOLUMN_DISPLAY_LIST\";s:8:\"cfgvalue\";s:0:\"\";}i:518;a:2:{s:6:\"cfgkey\";s:40:\"EZPAGES_DISABLE_RIGHTCOLUMN_DISPLAY_LIST\";s:8:\"cfgvalue\";s:0:\"\";}i:519;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_SHIPPING_FEDEX_EXPRESS_TIMEOUT\";s:8:\"cfgvalue\";s:4:\"NONE\";}i:520;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_SHIPPING_FEDEX_EXPRESS_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:521;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_SHIPPING_FEDEX_EXPRESS_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:522;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_SHIPPING_FEDEX_EXPRESS_CURRENCY\";s:8:\"cfgvalue\";s:3:\"USD\";}i:523;a:2:{s:6:\"cfgkey\";s:48:\"MODULE_SHIPPING_FEDEX_EXPRESS_PRIORITY_OVERNIGHT\";s:8:\"cfgvalue\";s:5:\"false\";}i:524;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_SHIPPING_FEDEX_EXPRESS_2DAY\";s:8:\"cfgvalue\";s:4:\"true\";}i:525;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_SHIPPING_FEDEX_EXPRESS_CITY\";s:8:\"cfgvalue\";s:11:\"Fowlerville\";}i:526;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_EXPRESS_STATE\";s:8:\"cfgvalue\";s:2:\"MI\";}i:527;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_SHIPPING_FEDEX_EXPRESS_POSTAL\";s:8:\"cfgvalue\";s:5:\"48836\";}i:528;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_EXPRESS_PHONE\";s:8:\"cfgvalue\";s:12:\"800-899-9790\";}i:529;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_SHIPPING_FEDEX_EXPRESS_SERVER\";s:8:\"cfgvalue\";s:10:\"production\";}i:530;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_SHIPPING_FEDEX_EXPRESS_DROPOFF\";s:8:\"cfgvalue\";s:1:\"1\";}i:531;a:2:{s:6:\"cfgkey\";s:43:\"MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_DOM\";s:8:\"cfgvalue\";s:1:\"0\";}i:532;a:2:{s:6:\"cfgkey\";s:51:\"MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_PERCENT_DOM\";s:8:\"cfgvalue\";s:1:\"0\";}i:533;a:2:{s:6:\"cfgkey\";s:43:\"MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_INT\";s:8:\"cfgvalue\";s:1:\"0\";}i:534;a:2:{s:6:\"cfgkey\";s:51:\"MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_PERCENT_INT\";s:8:\"cfgvalue\";s:1:\"0\";}i:535;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_SHIPPING_FEDEX_EXPRESS_LIST_RATES\";s:8:\"cfgvalue\";s:5:\"False\";}i:536;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_SHIPPING_FEDEX_EXPRESS_RESIDENTIAL\";s:8:\"cfgvalue\";s:1:\"0\";}i:537;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_SHIPPING_FEDEX_EXPRESS_INSURE\";s:8:\"cfgvalue\";s:2:\"50\";}i:538;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_SHIPPING_FEDEX_EXPRESS_ENVELOPE\";s:8:\"cfgvalue\";s:5:\"False\";}i:539;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_SHIPPING_FEDEX_EXPRESS_WEIGHT_SORT\";s:8:\"cfgvalue\";s:11:\"High to Low\";}i:540;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_SHIPPING_FEDEX_EXPRESS_DIMENSIONS\";s:8:\"cfgvalue\";s:5:\"False\";}i:541;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_SHIPPING_FEDEX_EXPRESS_WEIGHT\";s:8:\"cfgvalue\";s:3:\"LBS\";}i:542;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_SHIPPING_FEDEX_EXPRESS_ADDRESS_1\";s:8:\"cfgvalue\";s:15:\"9079 Pierson Rd\";}i:543;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_SHIPPING_FEDEX_EXPRESS_ADDRESS_2\";s:8:\"cfgvalue\";s:4:\"NONE\";}i:544;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_SHIPPING_FEDEX_EXPRESS_ACCOUNT\";s:8:\"cfgvalue\";s:9:\"433328922\";}i:545;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_EXPRESS_METER\";s:8:\"cfgvalue\";s:7:\"6243286\";}i:546;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_SHIPPING_FEDEX_EXPRESS_CURL\";s:8:\"cfgvalue\";s:4:\"NONE\";}i:547;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_SHIPPING_FEDEX_EXPRESS_CURL_PROXY\";s:8:\"cfgvalue\";s:4:\"NONE\";}i:548;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_EXPRESS_DEBUG\";s:8:\"cfgvalue\";s:5:\"False\";}i:549;a:2:{s:6:\"cfgkey\";s:18:\"FEC_DROP_DOWN_LIST\";s:8:\"cfgvalue\";s:44:\"Option 1,Option 2,Option 3,Option 4,Option 5\";}i:550;a:2:{s:6:\"cfgkey\";s:48:\"MODULE_SHIPPING_FEDEX_EXPRESS_STANDARD_OVERNIGHT\";s:8:\"cfgvalue\";s:4:\"true\";}i:551;a:2:{s:6:\"cfgkey\";s:45:\"MODULE_SHIPPING_FEDEX_EXPRESS_FIRST_OVERNIGHT\";s:8:\"cfgvalue\";s:5:\"false\";}i:552;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_EXPRESS_SAVER\";s:8:\"cfgvalue\";s:4:\"true\";}i:553;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_SHIPPING_FEDEX_EXPRESS_INT_PRIORITY\";s:8:\"cfgvalue\";s:5:\"false\";}i:554;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_SHIPPING_FEDEX_EXPRESS_INT_ECONOMY\";s:8:\"cfgvalue\";s:4:\"true\";}i:555;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_SHIPPING_FEDEX_EXPRESS_INT_FIRST\";s:8:\"cfgvalue\";s:5:\"false\";}i:556;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_SHIPPING_FEDEX_EXPRESS_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:557;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_SHIPPING_FEDEX_GROUND_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:558;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_SHIPPING_FEDEX_GROUND_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:559;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_SHIPPING_FEDEX_GROUND_WEIGHT_SORT\";s:8:\"cfgvalue\";s:11:\"High to Low\";}i:560;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_SHIPPING_FEDEX_GROUND_TIMEOUT\";s:8:\"cfgvalue\";s:4:\"NONE\";}i:561;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_GROUND_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:562;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_SHIPPING_FEDEX_GROUND_ACCOUNT\";s:8:\"cfgvalue\";s:9:\"433328922\";}i:563;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_SHIPPING_FEDEX_GROUND_METER\";s:8:\"cfgvalue\";s:7:\"6243287\";}i:564;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_SHIPPING_FEDEX_GROUND_CURL\";s:8:\"cfgvalue\";s:4:\"NONE\";}i:565;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_SHIPPING_FEDEX_GROUND_CURL_PROXY\";s:8:\"cfgvalue\";s:4:\"NONE\";}i:566;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_SHIPPING_FEDEX_GROUND_DEBUG\";s:8:\"cfgvalue\";s:5:\"False\";}i:567;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_SHIPPING_FEDEX_GROUND_DIMENSIONS\";s:8:\"cfgvalue\";s:5:\"False\";}i:568;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_GROUND_WEIGHT\";s:8:\"cfgvalue\";s:3:\"LBS\";}i:569;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_SHIPPING_FEDEX_GROUND_ADDRESS_1\";s:8:\"cfgvalue\";s:15:\"9079 Pierson Rd\";}i:570;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_SHIPPING_FEDEX_GROUND_ADDRESS_2\";s:8:\"cfgvalue\";s:4:\"NONE\";}i:571;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_SHIPPING_FEDEX_GROUND_CITY\";s:8:\"cfgvalue\";s:11:\"Fowlerville\";}i:572;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_SHIPPING_FEDEX_GROUND_STATE\";s:8:\"cfgvalue\";s:2:\"MI\";}i:573;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_GROUND_POSTAL\";s:8:\"cfgvalue\";s:5:\"48836\";}i:574;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_SHIPPING_FEDEX_GROUND_PHONE\";s:8:\"cfgvalue\";s:12:\"800-899-9790\";}i:575;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_GROUND_SERVER\";s:8:\"cfgvalue\";s:10:\"production\";}i:576;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_SHIPPING_FEDEX_GROUND_DROPOFF\";s:8:\"cfgvalue\";s:1:\"1\";}i:577;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_DOM\";s:8:\"cfgvalue\";s:1:\"0\";}i:578;a:2:{s:6:\"cfgkey\";s:50:\"MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_PERCENT_DOM\";s:8:\"cfgvalue\";s:1:\"0\";}i:579;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_INT\";s:8:\"cfgvalue\";s:1:\"0\";}i:580;a:2:{s:6:\"cfgkey\";s:50:\"MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_PERCENT_INT\";s:8:\"cfgvalue\";s:1:\"0\";}i:581;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_SHIPPING_FEDEX_GROUND_LIST_RATES\";s:8:\"cfgvalue\";s:5:\"False\";}i:582;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_SHIPPING_FEDEX_GROUND_RESIDENTIAL\";s:8:\"cfgvalue\";s:1:\"0\";}i:583;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_GROUND_INSURE\";s:8:\"cfgvalue\";s:2:\"50\";}i:584;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_SHIPPING_FEDEX_GROUND_ENVELOPE\";s:8:\"cfgvalue\";s:5:\"False\";}i:585;a:2:{s:6:\"cfgkey\";s:19:\"FEC_MASTER_PASSWORD\";s:8:\"cfgvalue\";s:5:\"false\";}i:586;a:2:{s:6:\"cfgkey\";s:20:\"FEC_NOACCOUNT_SWITCH\";s:8:\"cfgvalue\";s:4:\"true\";}i:587;a:2:{s:6:\"cfgkey\";s:25:\"FEC_NOACCOUNT_ONLY_SWITCH\";s:8:\"cfgvalue\";s:4:\"true\";}i:588;a:2:{s:6:\"cfgkey\";s:23:\"FEC_NOACCOUNT_HIDEEMAIL\";s:8:\"cfgvalue\";s:4:\"true\";}i:589;a:2:{s:6:\"cfgkey\";s:20:\"FEC_NOACCOUNT_LOGOFF\";s:8:\"cfgvalue\";s:4:\"true\";}i:590;a:2:{s:6:\"cfgkey\";s:17:\"ACCOUNT_TELEPHONE\";s:8:\"cfgvalue\";s:4:\"true\";}i:591;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_PAYMENT_PAYPALWPP_CONFIRMED_ADDRESS\";s:8:\"cfgvalue\";s:2:\"No\";}i:592;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_PAYMENT_PAYPALWPP_SKIP_PAYMENT_PAGE\";s:8:\"cfgvalue\";s:3:\"Yes\";}i:593;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_PAYMENT_PAYPALWPP_NEW_ACCT_NOTIFY\";s:8:\"cfgvalue\";s:3:\"Yes\";}i:594;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_PAYMENT_PAYPALWPP_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:595;a:2:{s:6:\"cfgkey\";s:29:\"MODULE_PAYMENT_PAYPALWPP_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:596;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_PAYMENT_PAYPALWPP_ORDER_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"2\";}i:597;a:2:{s:6:\"cfgkey\";s:48:\"MODULE_PAYMENT_PAYPALWPP_ORDER_PENDING_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"1\";}i:598;a:2:{s:6:\"cfgkey\";s:43:\"MODULE_PAYMENT_PAYPALWPP_REFUNDED_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"1\";}i:599;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_PAYMENT_PAYPALWPP_PAGE_STYLE\";s:8:\"cfgvalue\";s:7:\"Primary\";}i:600;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_PAYMENT_PAYPALWPP_TRANSACTION_MODE\";s:8:\"cfgvalue\";s:10:\"Final Sale\";}i:601;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_PAYMENT_PAYPALWPP_CURRENCY\";s:8:\"cfgvalue\";s:17:\"Selected Currency\";}i:602;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_PAYMENT_PAYPALWPP_APIUSERNAME\";s:8:\"cfgvalue\";s:31:\"eorder_api1.adirondakchairs.net\";}i:603;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_PAYMENT_PAYPALWPP_APIPASSWORD\";s:8:\"cfgvalue\";s:16:\"5HQVAEE8H4X2RKLW\";}i:604;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_PAYMENT_PAYPALWPP_APISIGNATURE\";s:8:\"cfgvalue\";s:56:\"AzLXErO-POt3qvxnWvtGYH8oYbq4AQUYPjKlVW.S3aUcn8mckIQaMONm\";}i:605;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_PAYMENT_PAYPALWPP_PFUSER\";s:8:\"cfgvalue\";s:0:\"\";}i:606;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_PAYMENT_PAYPALWPP_PFPARTNER\";s:8:\"cfgvalue\";s:7:\"ZenCart\";}i:607;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_PAYMENT_PAYPALWPP_PFVENDOR\";s:8:\"cfgvalue\";s:0:\"\";}i:608;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_PAYMENT_PAYPALWPP_PFPASSWORD\";s:8:\"cfgvalue\";s:0:\"\";}i:609;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_PAYMENT_PAYPALWPP_MODULE_MODE\";s:8:\"cfgvalue\";s:6:\"PayPal\";}i:610;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_PAYMENT_PAYPALWPP_DEBUGGING\";s:8:\"cfgvalue\";s:8:\"Log File\";}i:611;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_PAYMENT_PAYPALDP_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:612;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_PAYMENT_PAYPALDP_SERVER\";s:8:\"cfgvalue\";s:4:\"live\";}i:613;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_PAYMENT_PAYPALDP_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"1\";}i:614;a:2:{s:6:\"cfgkey\";s:28:\"MODULE_PAYMENT_PAYPALDP_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:615;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_PAYMENT_PAYPALDP_ORDER_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"2\";}i:616;a:2:{s:6:\"cfgkey\";s:47:\"MODULE_PAYMENT_PAYPALDP_ORDER_PENDING_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"1\";}i:617;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_PAYMENT_PAYPALDP_TRANSACTION_MODE\";s:8:\"cfgvalue\";s:10:\"Final Sale\";}i:618;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_PAYMENT_PAYPALDP_CURRENCY\";s:8:\"cfgvalue\";s:17:\"Selected Currency\";}i:619;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_PAYMENT_PAYPALDP_PFUSER\";s:8:\"cfgvalue\";s:0:\"\";}i:620;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_PAYMENT_PAYPALDP_PFPARTNER\";s:8:\"cfgvalue\";s:7:\"ZenCart\";}i:621;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_PAYMENT_PAYPALDP_PFVENDOR\";s:8:\"cfgvalue\";s:0:\"\";}i:622;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_PAYMENT_PAYPALDP_PFPASSWORD\";s:8:\"cfgvalue\";s:0:\"\";}i:623;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_PAYMENT_PAYPALDP_MODULE_MODE\";s:8:\"cfgvalue\";s:6:\"PayPal\";}i:624;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_PAYMENT_PAYPALDP_DEBUGGING\";s:8:\"cfgvalue\";s:8:\"Log File\";}i:625;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_SHIPPING_FEDEX_EXPRESS_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:626;a:2:{s:6:\"cfgkey\";s:26:\"MODULE_SHIPPING_UPS_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:627;a:2:{s:6:\"cfgkey\";s:26:\"MODULE_SHIPPING_UPS_PICKUP\";s:8:\"cfgvalue\";s:2:\"CC\";}i:628;a:2:{s:6:\"cfgkey\";s:27:\"MODULE_SHIPPING_UPS_PACKAGE\";s:8:\"cfgvalue\";s:2:\"CP\";}i:629;a:2:{s:6:\"cfgkey\";s:23:\"MODULE_SHIPPING_UPS_RES\";s:8:\"cfgvalue\";s:3:\"RES\";}i:630;a:2:{s:6:\"cfgkey\";s:28:\"MODULE_SHIPPING_UPS_HANDLING\";s:8:\"cfgvalue\";s:1:\"0\";}i:631;a:2:{s:6:\"cfgkey\";s:29:\"MODULE_SHIPPING_UPS_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:632;a:2:{s:6:\"cfgkey\";s:29:\"MODULE_SHIPPING_UPS_TAX_BASIS\";s:8:\"cfgvalue\";s:8:\"Shipping\";}i:633;a:2:{s:6:\"cfgkey\";s:24:\"MODULE_SHIPPING_UPS_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:634;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_SHIPPING_UPS_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"2\";}i:635;a:2:{s:6:\"cfgkey\";s:25:\"MODULE_SHIPPING_UPS_TYPES\";s:8:\"cfgvalue\";s:19:\"2DAL, 3DS, GND, STD\";}i:636;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_SHIPPING_FEDEX_GROUND_HOME\";s:8:\"cfgvalue\";s:4:\"true\";}i:637;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_SHIPPING_FEDEX_GROUND_GROUND\";s:8:\"cfgvalue\";s:4:\"true\";}i:638;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_SHIPPING_FEDEX_GROUND_INT_HOME\";s:8:\"cfgvalue\";s:4:\"true\";}i:639;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_SHIPPING_FEDEX_GROUND_INT_GROUND\";s:8:\"cfgvalue\";s:4:\"true\";}i:640;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_SHIPPING_FEDEX_GROUND_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"1\";}i:641;a:2:{s:6:\"cfgkey\";s:19:\"SITEMAPXML_COMPRESS\";s:8:\"cfgvalue\";s:5:\"false\";}i:642;a:2:{s:6:\"cfgkey\";s:25:\"SITEMAPXML_LASTMOD_FORMAT\";s:8:\"cfgvalue\";s:4:\"date\";}i:643;a:2:{s:6:\"cfgkey\";s:29:\"SITEMAPXML_USE_EXISTING_FILES\";s:8:\"cfgvalue\";s:4:\"true\";}i:644;a:2:{s:6:\"cfgkey\";s:31:\"SITEMAPXML_USE_DEFAULT_LANGUAGE\";s:8:\"cfgvalue\";s:4:\"true\";}i:645;a:2:{s:6:\"cfgkey\";s:20:\"SITEMAPXML_PING_URLS\";s:8:\"cfgvalue\";s:248:\"Google => http://www.google.com/webmasters/sitemaps/ping?sitemap=%s; Yahoo! => http://search.yahooapis.com/SiteExplorerService/V1/ping?sitemap=%s; Ask.com => http://submissions.ask.com/ping?sitemap=%s; Microsoft => http://www.moreover.com/ping?u=%s\";}i:646;a:2:{s:6:\"cfgkey\";s:27:\"SITEMAPXML_PRODUCTS_ORDERBY\";s:8:\"cfgvalue\";s:39:\"products_sort_order ASC, last_date DESC\";}i:647;a:2:{s:6:\"cfgkey\";s:30:\"SITEMAPXML_PRODUCTS_CHANGEFREQ\";s:8:\"cfgvalue\";s:6:\"weekly\";}i:648;a:2:{s:6:\"cfgkey\";s:29:\"SITEMAPXML_CATEGORIES_ORDERBY\";s:8:\"cfgvalue\";s:30:\"sort_order ASC, last_date DESC\";}i:649;a:2:{s:6:\"cfgkey\";s:32:\"SITEMAPXML_CATEGORIES_CHANGEFREQ\";s:8:\"cfgvalue\";s:6:\"weekly\";}i:650;a:2:{s:6:\"cfgkey\";s:26:\"SITEMAPXML_REVIEWS_ORDERBY\";s:8:\"cfgvalue\";s:34:\"reviews_rating ASC, last_date DESC\";}i:651;a:2:{s:6:\"cfgkey\";s:29:\"SITEMAPXML_REVIEWS_CHANGEFREQ\";s:8:\"cfgvalue\";s:7:\"monthly\";}i:652;a:2:{s:6:\"cfgkey\";s:26:\"SITEMAPXML_EZPAGES_ORDERBY\";s:8:\"cfgvalue\";s:68:\"sidebox_sort_order ASC, header_sort_order ASC, footer_sort_order ASC\";}i:653;a:2:{s:6:\"cfgkey\";s:29:\"SITEMAPXML_EZPAGES_CHANGEFREQ\";s:8:\"cfgvalue\";s:6:\"weekly\";}i:654;a:2:{s:6:\"cfgkey\";s:31:\"SITEMAPXML_TESTIMONIALS_ORDERBY\";s:8:\"cfgvalue\";s:14:\"last_date DESC\";}i:655;a:2:{s:6:\"cfgkey\";s:34:\"SITEMAPXML_TESTIMONIALS_CHANGEFREQ\";s:8:\"cfgvalue\";s:6:\"weekly\";}}',1371601486),('zc_01816214277b5bb819a08194522eb8b9',_binary 'a:1:{i:0;a:4:{s:13:\"categories_id\";s:1:\"2\";s:15:\"categories_name\";s:17:\"Chairs & Ottomans\";s:9:\"parent_id\";s:1:\"0\";s:16:\"categories_image\";N;}}',1371601486),('zc_cdf3b099a6e5acca480ef40be6c382d2',_binary 'a:1:{i:0;a:4:{s:13:\"categories_id\";s:1:\"2\";s:15:\"categories_name\";s:17:\"Sillas y Otomanos\";s:9:\"parent_id\";s:1:\"0\";s:16:\"categories_image\";N;}}',1368854969);
/*!40000 ALTER TABLE `zen_db_cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_email_archive`
--

DROP TABLE IF EXISTS `zen_email_archive`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_email_archive` (
  `archive_id` int(11) NOT NULL AUTO_INCREMENT,
  `email_to_name` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email_to_address` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email_from_name` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email_from_address` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email_subject` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email_html` text COLLATE utf8_unicode_ci NOT NULL,
  `email_text` text COLLATE utf8_unicode_ci NOT NULL,
  `date_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `module` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`archive_id`),
  KEY `idx_email_to_address_zen` (`email_to_address`),
  KEY `idx_module_zen` (`module`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_email_archive`
--

LOCK TABLES `zen_email_archive` WRITE;
/*!40000 ALTER TABLE `zen_email_archive` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_email_archive` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_ezpages`
--

DROP TABLE IF EXISTS `zen_ezpages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_ezpages` (
  `pages_id` int(11) NOT NULL AUTO_INCREMENT,
  `languages_id` int(11) NOT NULL DEFAULT '1',
  `pages_title` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `alt_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `alt_url_external` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `pages_html_text` mediumtext COLLATE utf8_unicode_ci,
  `status_header` int(1) NOT NULL DEFAULT '1',
  `status_sidebox` int(1) NOT NULL DEFAULT '1',
  `status_footer` int(1) NOT NULL DEFAULT '1',
  `status_toc` int(1) NOT NULL DEFAULT '1',
  `header_sort_order` int(3) NOT NULL DEFAULT '0',
  `sidebox_sort_order` int(3) NOT NULL DEFAULT '0',
  `footer_sort_order` int(3) NOT NULL DEFAULT '0',
  `toc_sort_order` int(3) NOT NULL DEFAULT '0',
  `page_open_new_window` int(1) NOT NULL DEFAULT '0',
  `page_is_ssl` int(1) NOT NULL DEFAULT '0',
  `toc_chapter` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`pages_id`),
  KEY `idx_lang_id_zen` (`languages_id`),
  KEY `idx_ezp_status_header_zen` (`status_header`),
  KEY `idx_ezp_status_sidebox_zen` (`status_sidebox`),
  KEY `idx_ezp_status_footer_zen` (`status_footer`),
  KEY `idx_ezp_status_toc_zen` (`status_toc`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_ezpages`
--

LOCK TABLES `zen_ezpages` WRITE;
/*!40000 ALTER TABLE `zen_ezpages` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_ezpages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_featured`
--

DROP TABLE IF EXISTS `zen_featured`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_featured` (
  `featured_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `featured_date_added` datetime DEFAULT NULL,
  `featured_last_modified` datetime DEFAULT NULL,
  `expires_date` date NOT NULL DEFAULT '0001-01-01',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `featured_date_available` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`featured_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_date_avail_zen` (`featured_date_available`),
  KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_featured`
--

LOCK TABLES `zen_featured` WRITE;
/*!40000 ALTER TABLE `zen_featured` DISABLE KEYS */;
INSERT INTO `zen_featured` VALUES (2,6,'2010-02-09 11:19:56',NULL,'0001-01-01',NULL,1,'0001-01-01'),(3,1,'2010-02-09 11:20:02',NULL,'0001-01-01',NULL,1,'0001-01-01'),(4,3,'2010-02-09 11:20:12',NULL,'0001-01-01',NULL,1,'0001-01-01'),(5,2,'2010-02-09 11:20:18',NULL,'0001-01-01',NULL,1,'0001-01-01'),(6,7,'2010-02-09 11:20:25',NULL,'0001-01-01',NULL,1,'0001-01-01'),(7,5,'2010-02-09 11:20:31',NULL,'0001-01-01',NULL,1,'0001-01-01');
/*!40000 ALTER TABLE `zen_featured` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_files_uploaded`
--

DROP TABLE IF EXISTS `zen_files_uploaded`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_files_uploaded` (
  `files_uploaded_id` int(11) NOT NULL AUTO_INCREMENT,
  `sesskey` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_id` int(11) DEFAULT NULL,
  `files_uploaded_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`files_uploaded_id`),
  KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_files_uploaded`
--

LOCK TABLES `zen_files_uploaded` WRITE;
/*!40000 ALTER TABLE `zen_files_uploaded` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_files_uploaded` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_geo_zones`
--

DROP TABLE IF EXISTS `zen_geo_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_geo_zones` (
  `geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `geo_zone_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `geo_zone_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`geo_zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_geo_zones`
--

LOCK TABLES `zen_geo_zones` WRITE;
/*!40000 ALTER TABLE `zen_geo_zones` DISABLE KEYS */;
INSERT INTO `zen_geo_zones` VALUES (1,'Florida','Florida local sales tax zone',NULL,'2010-01-04 15:39:22');
/*!40000 ALTER TABLE `zen_geo_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_get_terms_to_filter`
--

DROP TABLE IF EXISTS `zen_get_terms_to_filter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_get_terms_to_filter` (
  `get_term_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `get_term_table` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
  `get_term_name_field` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`get_term_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_get_terms_to_filter`
--

LOCK TABLES `zen_get_terms_to_filter` WRITE;
/*!40000 ALTER TABLE `zen_get_terms_to_filter` DISABLE KEYS */;
INSERT INTO `zen_get_terms_to_filter` VALUES ('manufacturers_id','TABLE_MANUFACTURERS','manufacturers_name'),('music_genre_id','TABLE_MUSIC_GENRE','music_genre_name'),('record_company_id','TABLE_RECORD_COMPANY','record_company_name');
/*!40000 ALTER TABLE `zen_get_terms_to_filter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_group_pricing`
--

DROP TABLE IF EXISTS `zen_group_pricing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_group_pricing` (
  `group_id` int(11) NOT NULL AUTO_INCREMENT,
  `group_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `group_percentage` decimal(5,2) NOT NULL DEFAULT '0.00',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_group_pricing`
--

LOCK TABLES `zen_group_pricing` WRITE;
/*!40000 ALTER TABLE `zen_group_pricing` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_group_pricing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_languages`
--

DROP TABLE IF EXISTS `zen_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_languages` (
  `languages_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `code` char(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `directory` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sort_order` int(3) DEFAULT NULL,
  PRIMARY KEY (`languages_id`),
  KEY `idx_languages_name_zen` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_languages`
--

LOCK TABLES `zen_languages` WRITE;
/*!40000 ALTER TABLE `zen_languages` DISABLE KEYS */;
INSERT INTO `zen_languages` VALUES (1,'English','en','icon.gif','english',1),(2,'Spanish','sp','icon.gif','spanish',1);
/*!40000 ALTER TABLE `zen_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_layout_boxes`
--

DROP TABLE IF EXISTS `zen_layout_boxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_layout_boxes` (
  `layout_id` int(11) NOT NULL AUTO_INCREMENT,
  `layout_template` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `layout_box_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `layout_box_status` tinyint(1) NOT NULL DEFAULT '0',
  `layout_box_location` tinyint(1) NOT NULL DEFAULT '0',
  `layout_box_sort_order` int(11) NOT NULL DEFAULT '0',
  `layout_box_sort_order_single` int(11) NOT NULL DEFAULT '0',
  `layout_box_status_single` tinyint(4) NOT NULL DEFAULT '0',
  PRIMARY KEY (`layout_id`),
  KEY `idx_name_template_zen` (`layout_template`,`layout_box_name`),
  KEY `idx_layout_box_status_zen` (`layout_box_status`),
  KEY `idx_layout_box_sort_order_zen` (`layout_box_sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=103 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_layout_boxes`
--

LOCK TABLES `zen_layout_boxes` WRITE;
/*!40000 ALTER TABLE `zen_layout_boxes` DISABLE KEYS */;
INSERT INTO `zen_layout_boxes` VALUES (1,'default_template_settings','banner_box_all.php',1,1,5,0,0),(2,'default_template_settings','banner_box.php',1,0,300,1,127),(3,'default_template_settings','banner_box2.php',1,1,15,1,15),(4,'default_template_settings','best_sellers.php',1,1,30,70,1),(5,'default_template_settings','categories.php',1,0,10,10,1),(6,'default_template_settings','currencies.php',1,1,80,60,1),(7,'default_template_settings','document_categories.php',1,0,0,0,0),(8,'default_template_settings','ezpages.php',1,1,-1,2,1),(9,'default_template_settings','featured.php',1,0,45,0,0),(10,'default_template_settings','information.php',1,0,50,40,1),(11,'default_template_settings','languages.php',1,1,70,50,1),(12,'default_template_settings','manufacturers.php',1,0,30,20,1),(13,'default_template_settings','manufacturer_info.php',1,1,35,95,1),(14,'default_template_settings','more_information.php',1,0,200,200,1),(15,'default_template_settings','music_genres.php',1,1,0,0,0),(16,'default_template_settings','order_history.php',1,1,0,0,0),(17,'default_template_settings','product_notifications.php',1,1,55,85,1),(18,'default_template_settings','record_companies.php',1,1,0,0,0),(19,'default_template_settings','reviews.php',1,0,40,0,0),(20,'default_template_settings','search.php',1,1,10,0,0),(21,'default_template_settings','search_header.php',0,0,0,0,1),(22,'default_template_settings','shopping_cart.php',1,1,20,30,1),(23,'default_template_settings','specials.php',1,1,45,0,0),(24,'default_template_settings','tell_a_friend.php',1,1,65,0,0),(25,'default_template_settings','whats_new.php',1,0,20,0,0),(26,'default_template_settings','whos_online.php',1,1,200,200,1),(27,'template_default','banner_box_all.php',1,1,5,0,0),(28,'template_default','banner_box.php',1,0,300,1,127),(29,'template_default','banner_box2.php',1,1,15,1,15),(30,'template_default','best_sellers.php',1,1,30,70,1),(31,'template_default','categories.php',1,0,10,10,1),(32,'template_default','currencies.php',1,1,80,60,1),(33,'template_default','ezpages.php',1,1,-1,2,1),(34,'template_default','featured.php',1,0,45,0,0),(35,'template_default','information.php',1,0,50,40,1),(36,'template_default','languages.php',1,1,70,50,1),(37,'template_default','manufacturers.php',1,0,30,20,1),(38,'template_default','manufacturer_info.php',1,1,35,95,1),(39,'template_default','more_information.php',1,0,200,200,1),(40,'template_default','my_broken_box.php',1,0,0,0,0),(41,'template_default','order_history.php',1,1,0,0,0),(42,'template_default','product_notifications.php',1,1,55,85,1),(43,'template_default','reviews.php',1,0,40,0,0),(44,'template_default','search.php',1,1,10,0,0),(45,'template_default','search_header.php',0,0,0,0,1),(46,'template_default','shopping_cart.php',1,1,20,30,1),(47,'template_default','specials.php',1,1,45,0,0),(48,'template_default','tell_a_friend.php',1,1,65,0,0),(49,'template_default','whats_new.php',1,0,20,0,0),(50,'template_default','whos_online.php',1,1,200,200,1),(51,'classic','banner_box.php',1,0,300,1,127),(52,'classic','banner_box2.php',1,1,15,1,15),(53,'classic','banner_box_all.php',1,1,5,0,0),(54,'classic','best_sellers.php',1,1,30,70,1),(55,'classic','categories.php',1,0,10,10,1),(56,'classic','currencies.php',1,1,80,60,1),(57,'classic','document_categories.php',1,0,0,0,0),(58,'classic','ezpages.php',1,1,-1,2,1),(59,'classic','featured.php',1,0,45,0,0),(60,'classic','information.php',1,0,50,40,1),(61,'classic','languages.php',1,1,70,50,1),(62,'classic','manufacturers.php',1,0,30,20,1),(63,'classic','manufacturer_info.php',1,1,35,95,1),(64,'classic','more_information.php',1,0,200,200,1),(65,'classic','music_genres.php',1,1,0,0,0),(66,'classic','order_history.php',1,1,0,0,0),(67,'classic','product_notifications.php',1,1,55,85,1),(68,'classic','record_companies.php',1,1,0,0,0),(69,'classic','reviews.php',1,0,40,0,0),(70,'classic','search.php',1,1,10,0,0),(71,'classic','search_header.php',0,0,0,0,1),(72,'classic','shopping_cart.php',1,1,20,30,1),(73,'classic','specials.php',1,1,45,0,0),(74,'classic','tell_a_friend.php',1,1,65,0,0),(75,'classic','whats_new.php',1,0,20,0,0),(76,'classic','whos_online.php',1,1,200,200,1),(77,'adk','banner_box.php',1,0,300,1,1),(78,'adk','banner_box2.php',0,1,15,1,0),(79,'adk','banner_box_all.php',0,1,5,0,0),(80,'adk','best_sellers.php',0,1,30,70,0),(81,'adk','categories.php',1,0,10,10,1),(82,'adk','currencies.php',1,1,80,60,1),(83,'adk','document_categories.php',1,0,0,0,0),(84,'adk','ezpages.php',1,1,-1,2,1),(85,'adk','featured.php',0,0,45,0,1),(86,'adk','information.php',1,0,50,40,1),(87,'adk','languages.php',1,1,0,0,1),(88,'adk','manufacturer_info.php',0,1,35,95,0),(89,'adk','manufacturers.php',0,0,30,20,0),(90,'adk','more_information.php',1,0,200,200,1),(91,'adk','music_genres.php',0,1,0,0,0),(92,'adk','order_history.php',1,1,0,0,0),(93,'adk','product_notifications.php',0,1,55,85,0),(94,'adk','record_companies.php',1,1,0,0,0),(95,'adk','reviews.php',0,0,40,0,0),(96,'adk','search.php',0,1,10,2,0),(97,'adk','search_header.php',0,1,0,0,0),(98,'adk','shopping_cart.php',1,1,20,30,1),(99,'adk','specials.php',1,1,45,0,0),(100,'adk','tell_a_friend.php',0,1,65,0,0),(101,'adk','whats_new.php',0,0,20,0,0),(102,'adk','whos_online.php',0,1,200,200,0);
/*!40000 ALTER TABLE `zen_layout_boxes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_manufacturers`
--

DROP TABLE IF EXISTS `zen_manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_manufacturers` (
  `manufacturers_id` int(11) NOT NULL AUTO_INCREMENT,
  `manufacturers_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `manufacturers_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturers_id`),
  KEY `idx_mfg_name_zen` (`manufacturers_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_manufacturers`
--

LOCK TABLES `zen_manufacturers` WRITE;
/*!40000 ALTER TABLE `zen_manufacturers` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_manufacturers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_manufacturers_info`
--

DROP TABLE IF EXISTS `zen_manufacturers_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_manufacturers_info` (
  `manufacturers_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `manufacturers_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturers_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_manufacturers_info`
--

LOCK TABLES `zen_manufacturers_info` WRITE;
/*!40000 ALTER TABLE `zen_manufacturers_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_manufacturers_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_media_clips`
--

DROP TABLE IF EXISTS `zen_media_clips`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_clips` (
  `clip_id` int(11) NOT NULL AUTO_INCREMENT,
  `media_id` int(11) NOT NULL DEFAULT '0',
  `clip_type` smallint(6) NOT NULL DEFAULT '0',
  `clip_filename` text COLLATE utf8_unicode_ci NOT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`clip_id`),
  KEY `idx_media_id_zen` (`media_id`),
  KEY `idx_clip_type_zen` (`clip_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_clips`
--

LOCK TABLES `zen_media_clips` WRITE;
/*!40000 ALTER TABLE `zen_media_clips` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_media_clips` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_media_manager`
--

DROP TABLE IF EXISTS `zen_media_manager`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_manager` (
  `media_id` int(11) NOT NULL AUTO_INCREMENT,
  `media_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`media_id`),
  KEY `idx_media_name_zen` (`media_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_manager`
--

LOCK TABLES `zen_media_manager` WRITE;
/*!40000 ALTER TABLE `zen_media_manager` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_media_manager` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_media_to_products`
--

DROP TABLE IF EXISTS `zen_media_to_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_to_products` (
  `media_id` int(11) NOT NULL DEFAULT '0',
  `product_id` int(11) NOT NULL DEFAULT '0',
  KEY `idx_media_product_zen` (`media_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_to_products`
--

LOCK TABLES `zen_media_to_products` WRITE;
/*!40000 ALTER TABLE `zen_media_to_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_media_to_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_media_types`
--

DROP TABLE IF EXISTS `zen_media_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_types` (
  `type_id` int(11) NOT NULL AUTO_INCREMENT,
  `type_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `type_ext` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`type_id`),
  KEY `idx_type_name_zen` (`type_name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_types`
--

LOCK TABLES `zen_media_types` WRITE;
/*!40000 ALTER TABLE `zen_media_types` DISABLE KEYS */;
INSERT INTO `zen_media_types` VALUES (1,'MP3','.mp3');
/*!40000 ALTER TABLE `zen_media_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_meta_tags_categories_description`
--

DROP TABLE IF EXISTS `zen_meta_tags_categories_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_meta_tags_categories_description` (
  `categories_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `metatags_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `metatags_keywords` text COLLATE utf8_unicode_ci,
  `metatags_description` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`categories_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_meta_tags_categories_description`
--

LOCK TABLES `zen_meta_tags_categories_description` WRITE;
/*!40000 ALTER TABLE `zen_meta_tags_categories_description` DISABLE KEYS */;
INSERT INTO `zen_meta_tags_categories_description` VALUES (2,1,'Rustic Adirondak Chairs for Cabin, Lodge & Resort','Rugged Adirondack Chairs, Rugged Adirondak chairs, Rustic Adirondack Chairs, Rustic Adirondak Chairs, Rugged Outdoor Furniture, Rustic Outdoor Furniture, Resort Seating, Resort Chairs, Vintage Wood Adirondacks, Vintage Wood, Old Adirondack Chairs, Old Adirondak Chairs, Antique Wood, adirondak, adirondack chairs, adirondak chairs, adirondac, aderondack, aderondak, online store, Catalogue, Lodge, Cabin, Lake, Seashore, Mountain, Reclaimed, Recaptured, Western, Classic, Historical, Recycled, Rugged Resort Seating, Notch Back Adirondak','Adirondak Chairs are rustic, elegant and ultra sturdy. Crafted with reclaimed antique wood, they\'re the perfect choice for rustic, outdoor cabin, lodge and resort chairs. Knots, graining and old nail holes are prominent, giving it a very rustic look.'),(2,2,'Sillas RÃºsticas de Adirondak para la Cabina, La Casa de Campo y el Centro TurÃ­stico','Sillas rugosas de Adirondack, sillas rugosas de Adirondak, sillas rÃºsticas de Adirondack, sillas rÃºsticas de Adirondak, muebles al aire libre rugosos, muebles al aire libre rÃºsticos, asiento del centro turÃ­stico, sillas del centro turÃ­stico, Adirondacks de madera de la vendimia, madera de la vendimia, sillas viejas de Adirondack, sillas viejas de Adirondak, madera antigua, adirondak, sillas del adirondack, sillas del adirondak, adirondac, aderondack, aderondak, almacÃ©n en lÃ­nea, catÃ¡logo, casa de campo, cabina, lago, costa, montaÃ±a, asiento reclamado, recobrado, occidental, clÃ¡sico, histÃ³rico, reciclado, rugoso del centro turÃ­stico, silla clÃ¡sica de Adirondak','Las sillas de Adirondak son rÃºsticas, elegantes y ultra robustas. Hecho a mano con madera antigua reclamada, they\' con referencia a la opciÃ³n perfecta para las sillas rÃºsticas, al aire libre de la cabina, de la casa de campo y del centro turÃ­stico. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica.');
/*!40000 ALTER TABLE `zen_meta_tags_categories_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_meta_tags_products_description`
--

DROP TABLE IF EXISTS `zen_meta_tags_products_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_meta_tags_products_description` (
  `products_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `metatags_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `metatags_keywords` text COLLATE utf8_unicode_ci,
  `metatags_description` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`products_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_meta_tags_products_description`
--

LOCK TABLES `zen_meta_tags_products_description` WRITE;
/*!40000 ALTER TABLE `zen_meta_tags_products_description` DISABLE KEYS */;
INSERT INTO `zen_meta_tags_products_description` VALUES (4,1,'Adirondak Furniture | Ottoman','Rugged Adirondack Chairs, Rugged Adirondak chairs, Rustic Adirondack Chairs, Rustic Adirondak Chairs, Rugged Outdoor Furniture, Rustic Outdoor Furniture, Resort Seating, Resort Chairs, Vintage Wood Adirondacks, Vintage Wood, Old Adirondack Chairs, Old Adirondak Chairs, Antique Wood, adirondak, adirondack chairs, adirondak chairs, adirondac, aderondack, aderondak, online store, Catalogue, Lodge, Cabin, Lake, Seashore, Mountain, Reclaimed, Recaptured, Western, Classic, Historical, Recycled, Rugged Resort Seating, Ottoman','Like our chairs, the matching Adirondak Ottoman is rustic, elegant and ultra sturdy. Crafted with reclaimed antique wood, the Adirondak Ottoman is the perfect companion to our rustic, outdoor cabin, lodge and resort chairs. The Ottoman is crafted with the same antique wood as your chair set. This ottoman is shown with a Natural (weathered wood) finish. It is also available with a clear spar finish.'),(7,1,'| Rustic Cabin, Lodge & Resort Furniture','Rugged Adirondack Chairs, Rugged Adirondak chairs, Rustic Adirondack Chairs, Rustic Adirondak Chairs, Rugged Outdoor Furniture, Rustic Outdoor Furniture, Resort Seating, Resort Chairs, Vintage Wood Adirondacks, Vintage Wood, Old Adirondack Chairs, Old Adirondak Chairs, Antique Wood, adirondak, adirondack chairs, adirondak chairs, adirondac, aderondack, aderondak, online store, Catalogue, Lodge, Cabin, Lake, Seashore, Mountain, Reclaimed, Recaptured, Western, Classic, Historical, Recycled, Rugged Resort Seating, Notch Back Adirondak','The Notch Back Adirondak Chair is rustic, elegant and ultra sturdy. Crafted with reclaimed antique wood, it\'s the perfect choice for rustic, outdoor cabin, lodge and resort chairs. The Notch Back Chair has a unique Staggered Back design with a Classic front leg brace. All Notch Back wooden components are planed, weather-checked relief remaining. Knots, graining and old nail holes are prominent, giving it a rustic, yet very elegant, look.'),(5,1,'| Rustic Cabin, Lodge & Resort Furniture','Rugged Adirondack Chairs, Rugged Adirondak chairs, Rustic Adirondack Chairs, Rustic Adirondak Chairs, Rugged Outdoor Furniture, Rustic Outdoor Furniture, Resort Seating, Resort Chairs, Vintage Wood Adirondacks, Vintage Wood, Old Adirondack Chairs, Old Adirondak Chairs, Antique Wood, adirondak, adirondack chairs, adirondak chairs, adirondac, aderondack, aderondak, online store, Catalogue, Lodge, Cabin, Lake, Seashore, Mountain, Reclaimed, Recaptured, Western, Classic, Historical, Recycled, Rugged Resort Seating, Classic Adirondak Chair','The Classic Adirondak Chair is rustic, elegant and ultra sturdy. Crafted with reclaimed antique wood, The Classic Adirondak Chair the perfect choice for rustic, outdoor cabin, lodge and resort Seating. Knots, graining and old nail holes are prominent, giving it a very rustic look.'),(2,1,'| Rustic Cabin, Lodge & Resort Furniture','Rugged Adirondack Chairs, Rugged Adirondak chairs, Rustic Adirondack Chairs, Rustic Adirondak Chairs, Rugged Outdoor Furniture, Rustic Outdoor Furniture, Resort Seating, Resort Chairs, Vintage Wood Adirondacks, Vintage Wood, Old Adirondack Chairs, Old Adirondak Chairs, Antique Wood, adirondak, adirondack chairs, adirondak chairs, adirondac, aderondack, aderondak, online store, Catalogue, Lodge, Cabin, Lake, Seashore, Mountain, Reclaimed, Recaptured, Western, Classic, Historical, Recycled, Rugged Resort Seating, Santa Fe Adirondak Chair','The Santa Fe Adirondak Chair is rustic, elegant and ultra sturdy. Crafted with reclaimed antique wood, the Santa Fe Adirondak is the perfect choice for rustic, outdoor cabin, lodge and resort chairs. The Santa Fe Chair has a unique Notch Back design with a Classic front leg brace. Knots, graining and old nail holes are prominent, giving it a very rustic look.'),(3,1,'| Rustic Cabin, Lodge & Resort Furniture','Rugged Adirondack Chairs, Rugged Adirondak chairs, Rustic Adirondack Chairs, Rustic Adirondak Chairs, Rugged Outdoor Furniture, Rustic Outdoor Furniture, Resort Seating, Resort Chairs, Vintage Wood Adirondacks, Vintage Wood, Old Adirondack Chairs, Old Adirondak Chairs, Antique Wood, adirondak, adirondack chairs, adirondak chairs, adirondac, aderondack, aderondak, online store, Catalogue, Lodge, Cabin, Lake, Seashore, Mountain, Reclaimed, Recaptured, Western, Classic, Historical, Recycled, Rugged Resort Seating, Rancher Adirondak Chair','The Rancher Adirondak Chair is rustic, elegant and ultra sturdy. Crafted with reclaimed antique wood, the Rancher Adirondak is the perfect choice for rustic, outdoor cabin, lodge and resort chairs. The Rancher features a five slat Fan Back and Classic front leg brace. Knots, graining and old nail holes are prominent, giving it a very rustic look.'),(1,1,'| Rustic Cabin, Lodge & Resort Furniture','Rugged Adirondack Chairs, Rugged Adirondak chairs, Rustic Adirondack Chairs, Rustic Adirondak Chairs, Rugged Outdoor Furniture, Rustic Outdoor Furniture, Resort Seating, Resort Chairs, Vintage Wood Adirondacks, Vintage Wood, Old Adirondack Chairs, Old Adirondak Chairs, Antique Wood, adirondak, adirondack chairs, adirondak chairs, adirondac, aderondack, aderondak, online store, Catalogue, Lodge, Cabin, Lake, Seashore, Mountain, Reclaimed, Recaptured, Western, Classic, Historical, Recycled, Rugged Resort Seating, Old West Adirondak Chair','The Old West Adirondak Chair is rustic, elegant and ultra sturdy. Crafted with reclaimed antique wood, it\'s the perfect choice for rustic, outdoor cabin, lodge and resort chairs. It is also available with a clear spar finish. The Old West Chair has a unique, Western Style, front leg brace. Knots, graining and old nail holes are prominent, giving it a very rustic look.'),(6,1,'| Rustic Cabin, Lodge & Resort Furniture','Rugged Adirondack Chairs, Rugged Adirondak chairs, Rustic Adirondack Chairs, Rustic Adirondak Chairs, Rugged Outdoor Furniture, Rustic Outdoor Furniture, Resort Seating, Resort Chairs, Vintage Wood Adirondacks, Vintage Wood, Old Adirondack Chairs, Old Adirondak Chairs, Antique Wood, adirondak, adirondack chairs, adirondak chairs, adirondac, aderondack, aderondak, online store, Catalogue, Lodge, Cabin, Lake, Seashore, Mountain, Reclaimed, Recaptured, Western, Classic, Historical, Recycled, Rugged Resort Seating, High Country Adirondak Chair','The HighCountry Adirondak Chair is rustic, elegant and ultra sturdy. Crafted with reclaimed antique wood, the High Country Adirondak is the perfect choice for rustic, outdoor cabin, lodge and resort chairs. We call it \"High Country\" because it is a taller adirondack chair designed for taller persons. The seat height is 3\" higher than other styles making for easier egress. Knots, graining and old nail holes are prominent, giving it a very rustic look.'),(4,2,'Muebles de Adirondak | Otomano','Sillas rugosas de Adirondack, sillas rugosas de Adirondak, sillas rÃºsticas de Adirondack, sillas rÃºsticas de Adirondak, muebles al aire libre rugosos, muebles al aire libre rÃºsticos, asiento del centro turÃ­stico, sillas del centro turÃ­stico, Adirondacks de madera de la vendimia, madera de la vendimia, sillas viejas de Adirondack, sillas viejas de Adirondak, madera antigua, adirondak, sillas del adirondack, sillas del adirondak, adirondac, aderondack, aderondak, almacÃ©n en lÃ­nea, catÃ¡logo, casa de campo, cabina, lago, costa, montaÃ±a, asiento reclamado, recobrado, occidental, clÃ¡sico, histÃ³rico, reciclado, rugoso del centro turÃ­stico, Silla Notch Back de Adirondak, Otomano','Como nuestras sillas, el otomano de Adirondak que empareja es rÃºstico, elegante y ultra robusto. Hecho a mano con madera antigua reclamada, el otomano de Adirondak es el compaÃ±ero perfecto a nuestras sillas rÃºsticas, al aire libre de la cabina, de la casa de campo y del centro turÃ­stico. El otomano se hace a mano con la misma madera antigua que su sistema de la silla. Este otomano se demuestra con un final natural (de madera resistida). EstÃ¡ tambiÃ©n disponible con un final claro del mÃ¡stil.'),(7,2,'| Muebles rÃºsticos de la cabina, de la casa de campo y del centro turÃ­stico','Sillas rugosas de Adirondack, sillas rugosas de Adirondak, sillas rÃºsticas de Adirondack, sillas rÃºsticas de Adirondak, muebles al aire libre rugosos, muebles al aire libre rÃºsticos, asiento del centro turÃ­stico, sillas del centro turÃ­stico, Adirondacks de madera de la vendimia, madera de la vendimia, sillas viejas de Adirondack, sillas viejas de Adirondak, madera antigua, adirondak, sillas del adirondack, sillas del adirondak, adirondac, aderondack, aderondak, almacÃ©n en lÃ­nea, catÃ¡logo, casa de campo, cabina, lago, costa, montaÃ±a, asiento reclamado, recobrado, occidental, clÃ¡sico, histÃ³rico, reciclado, rugoso del centro turÃ­stico, Silla Notch Back de Adirondak','La Silla de Notch Back Adirondak es rÃºstica, elegante y ultra robusta. Hecho a mano con madera antigua reclamada, it\' s la opciÃ³n perfecta para las sillas rÃºsticas, al aire libre de la cabina, de la casa de campo y del centro turÃ­stico. La silla de Notch Back tiene un diseÃ±o trasero escalonado Ãºnico con un apoyo delantero clÃ¡sico de la pierna. Se planean el sigue habiendo todos los componentes de madera de la parte posterior de la muesca, tiempo-comprobado de la relevaciÃ³n. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole un rÃºstico, con todo muy elegante, mirada.'),(5,2,'| Muebles rÃºsticos de la cabina, de la casa de campo y del centro turÃ­stico','Sillas rugosas de Adirondack, sillas rugosas de Adirondak, sillas rÃºsticas de Adirondack, sillas rÃºsticas de Adirondak, muebles al aire libre rugosos, muebles al aire libre rÃºsticos, asiento del centro turÃ­stico, sillas del centro turÃ­stico, Adirondacks de madera de la vendimia, madera de la vendimia, sillas viejas de Adirondack, sillas viejas de Adirondak, madera antigua, adirondak, sillas del adirondack, sillas del adirondak, adirondac, aderondack, aderondak, almacÃ©n en lÃ­nea, catÃ¡logo, casa de campo, cabina, lago, costa, montaÃ±a, asiento reclamado, recobrado, occidental, clÃ¡sico, histÃ³rico, reciclado, rugoso del centro turÃ­stico, silla clÃ¡sica de Adirondak','Silla Adirondak Clasico es rÃºstico, elegante y ultra robusto. Hecho a mano con madera antigua reclamada, la Silla Adirondak Clasico es la opciÃ³n perfecta para las sillas rÃºsticas, al aire libre de la cabina, de la casa de campo y del centro turÃ­stico. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica.'),(2,2,'| Muebles rÃºsticos de la cabina, de la casa de campo y del centro turÃ­stico','Sillas rugosas de Adirondack, sillas rugosas de Adirondak, sillas rÃºsticas de Adirondack, sillas rÃºsticas de Adirondak, muebles al aire libre rugosos, muebles al aire libre rÃºsticos, asiento del centro turÃ­stico, sillas del centro turÃ­stico, Adirondacks de madera de la vendimia, madera de la vendimia, sillas viejas de Adirondack, sillas viejas de Adirondak, madera antigua, adirondak, sillas del adirondack, sillas del adirondak, adirondac, aderondack, aderondak, almacÃ©n en lÃ­nea, catÃ¡logo, casa de campo, cabina, lago, costa, montaÃ±a, asiento reclamado, recobrado, occidental, clÃ¡sico, histÃ³rico, reciclado, rugoso del centro turÃ­stico, Silla Santa Fe de Adirondak','La silla de Santa Fe Adirondak es rÃºstica, elegante y ultra robusta. Hecho a mano con madera antigua reclamada, it\' s la opciÃ³n perfecta para las sillas rÃºsticas, al aire libre de la cabina, de la casa de campo y del centro turÃ­stico. La silla de Santa Fe tiene un diseÃ±o Ãºnico de la parte posterior de la muesca con un apoyo delantero clÃ¡sico de la pierna. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica.'),(3,2,'| Muebles rÃºsticos de la cabina, de la casa de campo y del centro turÃ­stico','Sillas rugosas de Adirondack, sillas rugosas de Adirondak, sillas rÃºsticas de Adirondack, sillas rÃºsticas de Adirondak, muebles al aire libre rugosos, muebles al aire libre rÃºsticos, asiento del centro turÃ­stico, sillas del centro turÃ­stico, Adirondacks de madera de la vendimia, madera de la vendimia, sillas viejas de Adirondack, sillas viejas de Adirondak, madera antigua, adirondak, sillas del adirondack, sillas del adirondak, adirondac, aderondack, aderondak, almacÃ©n en lÃ­nea, catÃ¡logo, casa de campo, cabina, lago, costa, montaÃ±a, asiento reclamado, recobrado, occidental, clÃ¡sico, histÃ³rico, reciclado, rugoso del centro turÃ­stico, Silla Ranchero de Adirondak','La Silla de Adirondak del Ranchero es rÃºstica, elegante y ultra robusta. Hecho a mano con madera antigua reclamada, it\' s la opciÃ³n perfecta para las sillas rÃºsticas, al aire libre de la cabina, de la casa de campo y del centro turÃ­stico. El ranchero ofrece una parte posterior del ventilador de cinco listones y un apoyo delantero clÃ¡sico de la pierna. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica.'),(1,2,'| Muebles rÃºsticos de la cabina, de la casa de campo y del centro turÃ­stico','Sillas rugosas de Adirondack, sillas rugosas de Adirondak, sillas rÃºsticas de Adirondack, sillas rÃºsticas de Adirondak, muebles al aire libre rugosos, muebles al aire libre rÃºsticos, asiento del centro turÃ­stico, sillas del centro turÃ­stico, Adirondacks de madera de la vendimia, madera de la vendimia, sillas viejas de Adirondack, sillas viejas de Adirondak, madera antigua, adirondak, sillas del adirondack, sillas del adirondak, adirondac, aderondack, aderondak, almacÃ©n en lÃ­nea, catÃ¡logo, casa de campo, cabina, lago, costa, montaÃ±a, asiento reclamado, recobrado, occidental, clÃ¡sico, histÃ³rico, reciclado, rugoso del centro turÃ­stico, Silla del Oeste Vieja de Adirondak','La Silla del Oeste Vieja de Adirondak es rÃºstica, elegante y ultra robusta. Hecho a mano con madera antigua reclamada, it\' s la opciÃ³n perfecta para las sillas rÃºsticas, al aire libre de la cabina, de la casa de campo y del centro turÃ­stico. EstÃ¡ tambiÃ©n disponible con un final claro del mÃ¡stil. La silla del oeste vieja tiene un estilo Ãºnico, occidental, apoyo delantero de la pierna. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica.'),(6,2,'| Muebles rÃºsticos de la cabina, de la casa de campo y del centro turÃ­stico','Sillas rugosas de Adirondack, sillas rugosas de Adirondak, sillas rÃºsticas de Adirondack, sillas rÃºsticas de Adirondak, muebles al aire libre rugosos, muebles al aire libre rÃºsticos, asiento del centro turÃ­stico, sillas del centro turÃ­stico, Adirondacks de madera de la vendimia, madera de la vendimia, sillas viejas de Adirondack, sillas viejas de Adirondak, madera antigua, adirondak, sillas del adirondack, sillas del adirondak, adirondac, aderondack, aderondak, almacÃ©n en lÃ­nea, catÃ¡logo, casa de campo, cabina, lago, costa, montaÃ±a, asiento reclamado, recobrado, occidental, clÃ¡sico, histÃ³rico, reciclado, rugoso del centro turÃ­stico, Silla Alto Pais de Adirondak, High Country Adirondak Chair','La Silla de High Country (Alto Pais) Adirondak es rÃºstica, elegante y ultra robusta. Hecho a mano con madera antigua reclamada, el alto paÃ­s Adirondak es la opciÃ³n perfecta para las sillas rÃºsticas, al aire libre de la cabina, de la casa de campo y del centro turÃ­stico. Lo llamamos \" High Country\" porque es una silla mÃ¡s alta del adirondack diseÃ±ada para personas mÃ¡s altas. La altura de asiento es 3\" mÃ¡s arriba que otros estilos que hacen para una salida mÃ¡s fÃ¡cil. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica.');
/*!40000 ALTER TABLE `zen_meta_tags_products_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_music_genre`
--

DROP TABLE IF EXISTS `zen_music_genre`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_music_genre` (
  `music_genre_id` int(11) NOT NULL AUTO_INCREMENT,
  `music_genre_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`music_genre_id`),
  KEY `idx_music_genre_name_zen` (`music_genre_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_music_genre`
--

LOCK TABLES `zen_music_genre` WRITE;
/*!40000 ALTER TABLE `zen_music_genre` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_music_genre` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_newsletters`
--

DROP TABLE IF EXISTS `zen_newsletters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_newsletters` (
  `newsletters_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `content` text COLLATE utf8_unicode_ci NOT NULL,
  `content_html` text COLLATE utf8_unicode_ci NOT NULL,
  `module` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_sent` datetime DEFAULT NULL,
  `status` int(1) DEFAULT NULL,
  `locked` int(1) DEFAULT '0',
  PRIMARY KEY (`newsletters_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_newsletters`
--

LOCK TABLES `zen_newsletters` WRITE;
/*!40000 ALTER TABLE `zen_newsletters` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_newsletters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_nochex_apc_transactions`
--

DROP TABLE IF EXISTS `zen_nochex_apc_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_nochex_apc_transactions` (
  `nochex_apc_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `nc_transaction_id` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `nc_transaction_date` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `nc_to_email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `nc_from_email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `nc_order_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `nc_custom` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `nc_amount` decimal(9,2) NOT NULL,
  `nc_security_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `nc_status` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
  `nochex_response` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`nochex_apc_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_nochex_apc_transactions`
--

LOCK TABLES `zen_nochex_apc_transactions` WRITE;
/*!40000 ALTER TABLE `zen_nochex_apc_transactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_nochex_apc_transactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_nochex_sessions`
--

DROP TABLE IF EXISTS `zen_nochex_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_nochex_sessions` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `session_id` text COLLATE utf8_unicode_ci NOT NULL,
  `saved_session` mediumblob NOT NULL,
  `expiry` int(17) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_session_id_zen` (`session_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_nochex_sessions`
--

LOCK TABLES `zen_nochex_sessions` WRITE;
/*!40000 ALTER TABLE `zen_nochex_sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_nochex_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders`
--

DROP TABLE IF EXISTS `zen_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders` (
  `orders_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `customers_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_company` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_street_address` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_suburb` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_city` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_postcode` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_state` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_country` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_telephone` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_email_address` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_address_format_id` int(5) NOT NULL DEFAULT '0',
  `delivery_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `delivery_company` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `delivery_street_address` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `delivery_suburb` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `delivery_city` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `delivery_postcode` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `delivery_state` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `delivery_country` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `delivery_address_format_id` int(5) NOT NULL DEFAULT '0',
  `billing_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `billing_company` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `billing_street_address` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `billing_suburb` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `billing_city` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `billing_postcode` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `billing_state` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `billing_country` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `billing_address_format_id` int(5) NOT NULL DEFAULT '0',
  `payment_method` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_module_code` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `shipping_method` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `shipping_module_code` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `coupon_code` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `cc_type` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cc_owner` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cc_number` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cc_expires` varchar(4) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cc_cvv` blob,
  `last_modified` datetime DEFAULT NULL,
  `date_purchased` datetime DEFAULT NULL,
  `orders_status` int(5) NOT NULL DEFAULT '0',
  `orders_date_finished` datetime DEFAULT NULL,
  `currency` char(3) COLLATE utf8_unicode_ci DEFAULT NULL,
  `currency_value` decimal(14,6) DEFAULT NULL,
  `order_total` decimal(14,2) DEFAULT NULL,
  `order_tax` decimal(14,2) DEFAULT NULL,
  `paypal_ipn_id` int(11) NOT NULL DEFAULT '0',
  `ip_address` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `dropdown` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `gift_message` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `checkbox` int(1) DEFAULT NULL,
  `COWOA_order` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`orders_id`),
  KEY `idx_status_orders_cust_zen` (`orders_status`,`orders_id`,`customers_id`),
  KEY `idx_date_purchased_zen` (`date_purchased`)
) ENGINE=MyISAM AUTO_INCREMENT=11134 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders`
--

LOCK TABLES `zen_orders` WRITE;
/*!40000 ALTER TABLE `zen_orders` DISABLE KEYS */;
INSERT INTO `zen_orders` VALUES (1,4,'Joe Buyer','','1234 E D St','','Lakes','33186','Florida','United States','222-333-5555','joe@shmo.com',2,'Joe Buyer','','1234 E D St','','Lakes','33186','Florida','United States',2,'Joe Buyer','','1234 E D St','','Lakes','33186','Florida','United States',2,'Check/Money Order','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-01-12 13:13:02',1,NULL,'USD',1.000000,290.78,0.00,0,'74.233.160.91 - 74.233.160.91','','',NULL,1),(2,5,'flee dee','','123 d st','','fff','33186','Florida','United States','555-888-9999','jhbrake@nsconstruct.com',2,'flee dee','','123 d st','','fff','33186','Florida','United States',2,'flee dee','','123 d st','','fff','33186','Florida','United States',2,'Check/Money Order','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-01-12 13:16:19',1,NULL,'USD',1.000000,346.48,0.00,0,'74.233.160.91 - 74.233.160.91','','',NULL,1),(3,6,'John Buyer','','12345 SE West Rd','','Miami','33186','Florida','United States','222-333-4444','jbrake@nsconstruct.com',2,'John Buyer','','12345 SE West Rd','','Miami','33186','Florida','United States',2,'John Buyer','','12345 SE West Rd','','Miami','33186','Florida','United States',2,'Check/Money Order','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-01-12 15:34:36',1,NULL,'USD',1.000000,346.48,0.00,0,'74.233.160.91 - 74.233.160.91',NULL,NULL,NULL,1),(4,7,'joe buyre','','1234 b street e','','miami','33186','Florida','United States','222-444-5555','jbrake@nsconstruct.com',2,'joe buyre','','1234 b street e','','miami','33186','Florida','United States',2,'joe buyre','','1234 b street e','','miami','33186','Florida','United States',2,'Check/Money Order','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-01-12 16:12:44',1,NULL,'USD',1.000000,1185.52,0.00,0,'74.233.160.91 - 74.233.160.91',NULL,NULL,NULL,1),(5,12,'John Brake','','9079 Pierson Road','','Fowlerville','48836','Michigan','United States','2482406863','jhbrake@live.com',2,'John Brake','','9079 Pierson Road','','Fowlerville','48836','MI','United States',2,'John Brake','','9079 Pierson Road','','Fowlerville','48836','MI','United States',2,'Credit Card','paypaldp','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','Visa','John Brake','4447XXXXXXXX7991','1110',NULL,NULL,'2010-01-27 15:04:24',1,NULL,'USD',1.000000,35.58,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,1),(11124,13,'John Brake','','9079 Pierson Rd','','Fowlerville','48836','Michigan','United States','','jhbrake@nsconstruct.com',2,'John Brake','','9079 Pierson Rd','','Fowlerville','48836','Michigan','United States',2,'John Brake','','9079 Pierson Rd','','Fowlerville','48836','Michigan','United States',2,'PayPal','paypalwpp','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-01-27 15:22:33',2,NULL,'USD',1.000000,35.58,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,0),(11125,14,'Johnny BHuy','','1234 E West Street','','Miami','33186','Florida','United States','8002222222','jbrake@nsconstruct.com',2,'Johnny BHuy','','1234 E West Street','','Miami','33186','Florida','United States',2,'Johnny BHuy','','1234 E West Street','','Miami','33186','Florida','United States',2,'Check/Money Order','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-01-27 17:51:13',1,NULL,'USD',1.000000,208.63,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,1),(11126,15,'Juanita Frenita','','9125 South North Street Ave','','Lake Wobegone','48239','Michigan','United States','212-555-8899','adirondak@mycbay.com',2,'Juanita Frenita','','9125 South North Street Ave','','Lake Wobegone','48239','Michigan','United States',2,'Juanita Frenita','','9125 South North Street Ave','','Lake Wobegone','48239','Michigan','United States',2,'Cheque/Giro Postal','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-02-14 21:35:52',1,NULL,'USD',1.000000,337.05,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,1),(11127,16,'Juan freno','','9785 B street','','miami','33186','Florida','United States','2229998877','sam@mycbay.com',2,'Juan freno','','9785 B street','','miami','33186','Florida','United States',2,'Juan freno','','9785 B street','','miami','33186','Florida','United States',2,'Cheque/Giro Postal','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-02-14 22:04:08',1,NULL,'USD',1.000000,345.06,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,1),(11128,17,'jose Buyerio','','546 n c','','Miami','33186','Florida','United States','5555555555','jack@aaasurvival.com',2,'jose Buyerio','','546 n c','','Miami','33186','Florida','United States',2,'jose Buyerio','','546 n c','','Miami','33186','Florida','United States',2,'Cheque/Giro Postal','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-02-14 22:19:50',1,NULL,'USD',1.000000,345.06,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,1),(11129,19,'Joe Von Buynow','','12345 West East Street','','Lake Wobegone','33186','Florida','United States','212-555-8998','jhbrake@comcast.net',2,'Joe Von Buynow','','12345 West East Street','','Lake Wobegone','33186','Florida','United States',2,'Joe Von Buynow','','12345 West East Street','','Lake Wobegone','33186','Florida','United States',2,'Check/Money Order','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-05-27 22:41:30',1,NULL,'USD',1.000000,890.40,0.00,0,'67.142.161.25 - 67.142.161.25',NULL,NULL,NULL,1),(11130,20,'nat Bat','','54321 b Street','','mar','33186','Florida','United States','2456668794','jhbrake@comcast.net',2,'nat Bat','','54321 b Street','','mar','33186','Florida','United States',2,'nat Bat','','54321 b Street','','mar','33186','Florida','United States',2,'Check/Money Order','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-05-27 23:23:19',1,NULL,'USD',1.000000,890.40,0.00,0,'67.142.161.25 - 67.142.161.25',NULL,NULL,NULL,1),(11131,21,'jb borer','','12361 sw 106 st','','miami','33186','Florida','United States','212-555-6666','jhbrake@comcast.net',2,'jb borer','','12361 sw 106 st','','miami','33186','Florida','United States',2,'jb borer','','12361 sw 106 st','','miami','33186','Florida','United States',2,'Check/Money Order','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-05-28 09:07:32',1,NULL,'USD',1.000000,455.89,0.00,0,'67.142.161.22 - 67.142.161.22',NULL,NULL,NULL,1),(11132,24,'John Brake','','9079 Pierson Rd','','Fowlerville','48836','Michigan','United States','2482406863','jbrake@nsconstruct.com',2,'John Brake','','9079 Pierson Rd','','Fowlerville','48836','MI','United States',2,'John Brake','','9079 Pierson Rd','','Fowlerville','48836','MI','United States',2,'Credit Card','paypaldp','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','Visa','John Brake','4447XXXXXXXX3600','0312',NULL,NULL,'2010-07-11 21:11:44',1,NULL,'USD',1.000000,209.09,0.00,0,'67.142.161.19 - 67.142.161.19',NULL,NULL,NULL,1),(11133,14,'Johnny BHuy','','1234 E West Street','','Miami','33186','Florida','United States','8002222222','jbrake@nsconstruct.com',2,'John Brake','','9079 Pierson Rd','','Fowlerville','48836','Michigan','United States',2,'Johnny BHuy','','1234 E West Street','','Miami','33186','Florida','United States',2,'PayPal','paypalwpp','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-07-11 21:39:51',1,NULL,'USD',1.000000,209.09,0.00,0,'67.142.161.19 - 67.142.161.19',NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `zen_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_products`
--

DROP TABLE IF EXISTS `zen_orders_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_products` (
  `orders_products_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `products_id` int(11) NOT NULL DEFAULT '0',
  `products_model` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `final_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_tax` decimal(7,4) NOT NULL DEFAULT '0.0000',
  `products_quantity` float NOT NULL DEFAULT '0',
  `onetime_charges` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_priced_by_attribute` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
  `products_prid` tinytext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`orders_products_id`),
  KEY `idx_orders_id_prod_id_zen` (`orders_id`,`products_id`)
) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_products`
--

LOCK TABLES `zen_orders_products` WRITE;
/*!40000 ALTER TABLE `zen_orders_products` DISABLE KEYS */;
INSERT INTO `zen_orders_products` VALUES (1,1,3,'ADK-r-h-uf','Rancher Adirondak Chair',255.0000,255.0000,0.0000,1,0.0000,1,0,0,0,'3'),(2,2,6,'ADK-hc-h-f','High Country Adirondak Chair',310.0000,310.0000,0.0000,1,0.0000,1,0,0,0,'6'),(3,3,6,'ADK-hc-h-f','High Country Adirondak Chair',310.0000,310.0000,0.0000,1,0.0000,1,0,0,0,'6'),(4,4,5,'ADK-c-h-uf','Classic Adirondak Chair',255.0000,255.0000,0.0000,4,0.0000,1,0,0,0,'5'),(5,5,8,'test123','Sandbox Test Unit',25.0000,25.0000,0.0000,1,0.0000,0,0,0,0,'8'),(6,11124,8,'test123','Sandbox Test Unit',25.0000,25.0000,0.0000,1,0.0000,0,0,0,0,'8'),(7,11125,4,'ADK-ott-uf','Adirondak Ottoman',195.0000,195.0000,0.0000,1,0.0000,0,0,0,0,'4'),(8,11126,6,'ADK-hc-h-f','Silla Adirondak de High Country',320.0000,320.0000,0.0000,1,0.0000,0,0,0,0,'6:96f5ac9d5831c8bcda934274478794dc'),(9,11127,7,'ADK-nb-h-f','Silla de Notch Back Adirondak',315.0000,315.0000,0.0000,1,0.0000,0,0,0,0,'7:2f2392473f5f592adc99b6ed6f125ae6'),(10,11128,7,'ADK-nb-h-f','Silla de Notch Back Adirondak',315.0000,315.0000,0.0000,1,0.0000,0,0,0,0,'7:2f2392473f5f592adc99b6ed6f125ae6'),(11,11129,7,'ADK-nb-h-f','Notch Back Adirondak Chair',435.0000,435.0000,0.0000,1,0.0000,0,0,0,0,'7:3a08ad28a5a20962e77032024dab1649'),(12,11129,5,'ADK-c-h-uf','Classic Adirondak Chair',410.0000,410.0000,0.0000,1,0.0000,0,0,0,0,'5:11daa10f79cbfc9671c2f3f1d90538df'),(13,11130,1,'ADK-ow-h-f','Old West Adirondak Chair',410.0000,410.0000,0.0000,1,0.0000,0,0,0,0,'1:c19627d640715884751498d9ac533c42'),(14,11130,7,'ADK-nb-h-f','Notch Back Adirondak Chair',435.0000,435.0000,0.0000,1,0.0000,0,0,0,0,'7:3a08ad28a5a20962e77032024dab1649'),(15,11131,6,'ADK-hc-h-f','High Country Adirondak Chair',425.0000,425.0000,0.0000,1,0.0000,0,0,0,0,'6:82fe835e4ca43ace085b0e0b5e4bc32f'),(16,11132,4,'ADK-ott-uf','Adirondak Ottoman',195.0000,195.0000,0.0000,1,0.0000,0,0,0,0,'4:0100755e3ca6c67bee92ca5c62a8c928'),(17,11133,4,'ADK-ott-uf','Adirondak Ottoman',195.0000,195.0000,0.0000,1,0.0000,0,0,0,0,'4:0100755e3ca6c67bee92ca5c62a8c928');
/*!40000 ALTER TABLE `zen_orders_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_products_attributes`
--

DROP TABLE IF EXISTS `zen_orders_products_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_products_attributes` (
  `orders_products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_id` int(11) NOT NULL DEFAULT '0',
  `products_options` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_options_values` text COLLATE utf8_unicode_ci NOT NULL,
  `options_values_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `price_prefix` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `product_attribute_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_attributes_weight` float NOT NULL DEFAULT '0',
  `products_attributes_weight_prefix` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `attributes_discounted` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_base_included` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_qty_prices` text COLLATE utf8_unicode_ci,
  `attributes_qty_prices_onetime` text COLLATE utf8_unicode_ci,
  `attributes_price_words` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_words_free` int(4) NOT NULL DEFAULT '0',
  `attributes_price_letters` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_letters_free` int(4) NOT NULL DEFAULT '0',
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  `products_prid` tinytext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`orders_products_attributes_id`),
  KEY `idx_orders_id_prod_id_zen` (`orders_id`,`orders_products_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_products_attributes`
--

LOCK TABLES `zen_orders_products_attributes` WRITE;
/*!40000 ALTER TABLE `zen_orders_products_attributes` DISABLE KEYS */;
INSERT INTO `zen_orders_products_attributes` VALUES (1,11126,8,'Hogar','Acabado',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,2,3,'6:96f5ac9d5831c8bcda934274478794dc'),(2,11127,9,'Hogar','Acabado',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,2,3,'7:2f2392473f5f592adc99b6ed6f125ae6'),(3,11128,10,'Hogar','Acabado',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,2,3,'7:2f2392473f5f592adc99b6ed6f125ae6'),(4,11129,11,'Finish','Natural (Unfinished)',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,3,6,'7:3a08ad28a5a20962e77032024dab1649'),(5,11129,12,'Finish','Natural (Unfinished)',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,3,6,'5:11daa10f79cbfc9671c2f3f1d90538df'),(6,11130,13,'Finish','Natural (Unfinished)',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,3,6,'1:c19627d640715884751498d9ac533c42'),(7,11130,14,'Finish','Natural (Unfinished)',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,3,6,'7:3a08ad28a5a20962e77032024dab1649'),(8,11131,15,'Finish','Spar Finish',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,3,7,'6:82fe835e4ca43ace085b0e0b5e4bc32f'),(9,11132,16,'Finish','Spar Finish',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,3,7,'4:0100755e3ca6c67bee92ca5c62a8c928'),(10,11133,17,'Finish','Spar Finish',0.0000,'+',1,0,'+',1,1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,3,7,'4:0100755e3ca6c67bee92ca5c62a8c928');
/*!40000 ALTER TABLE `zen_orders_products_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_products_download`
--

DROP TABLE IF EXISTS `zen_orders_products_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_products_download` (
  `orders_products_download_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_filename` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `download_maxdays` int(2) NOT NULL DEFAULT '0',
  `download_count` int(2) NOT NULL DEFAULT '0',
  `products_prid` tinytext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`orders_products_download_id`),
  KEY `idx_orders_id_zen` (`orders_id`),
  KEY `idx_orders_products_id_zen` (`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_products_download`
--

LOCK TABLES `zen_orders_products_download` WRITE;
/*!40000 ALTER TABLE `zen_orders_products_download` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_orders_products_download` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_status`
--

DROP TABLE IF EXISTS `zen_orders_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_status` (
  `orders_status_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `orders_status_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`orders_status_id`,`language_id`),
  KEY `idx_orders_status_name_zen` (`orders_status_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_status`
--

LOCK TABLES `zen_orders_status` WRITE;
/*!40000 ALTER TABLE `zen_orders_status` DISABLE KEYS */;
INSERT INTO `zen_orders_status` VALUES (1,1,'Pending'),(2,1,'Processing'),(3,1,'Delivered'),(4,1,'Update'),(1,2,'Pending'),(2,2,'Processing'),(3,2,'Delivered'),(4,2,'Update');
/*!40000 ALTER TABLE `zen_orders_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_status_history`
--

DROP TABLE IF EXISTS `zen_orders_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_status_history` (
  `orders_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_status_id` int(5) NOT NULL DEFAULT '0',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `customer_notified` int(1) DEFAULT '0',
  `comments` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`orders_status_history_id`),
  KEY `idx_orders_id_status_id_zen` (`orders_id`,`orders_status_id`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_status_history`
--

LOCK TABLES `zen_orders_status_history` WRITE;
/*!40000 ALTER TABLE `zen_orders_status_history` DISABLE KEYS */;
INSERT INTO `zen_orders_status_history` VALUES (1,1,1,'2010-01-12 13:13:02',1,''),(2,2,1,'2010-01-12 13:16:19',1,''),(3,3,1,'2010-01-12 15:34:36',1,''),(4,4,1,'2010-01-12 16:12:44',1,''),(5,5,2,'2010-01-27 15:04:24',1,'Test the special instructions'),(6,5,2,'2010-01-27 15:04:24',0,'Transaction ID: 68X16031VN261504R \nPayment Type: Credit Card (WPP) \nTimestamp: 2010-01-27T21:04:26Z \nPayment Status: Completed \nAVS Code: A\nCVV2 Code: M\nAmount: 35.58 USD '),(7,5,1,'2010-01-27 15:12:35',0,'PayPal status: Refunded  @ 13:12:26 Jan 27, 2010 PST\n Parent Trans ID:68X16031VN261504R\n Trans ID:7BV5037382939383P\n Amount: -35.58 USD'),(8,11124,2,'2010-01-27 15:22:33',1,''),(9,11124,2,'2010-01-27 15:22:33',0,'Transaction ID: 5K291360FH824315W \nPayment Type: PayPal Express Checkout (instant) \nTimestamp: 2010-01-27T21:22:34Z \nPayment Status: Completed \nAmount: 35.58 USD '),(10,11125,1,'2010-01-27 17:51:13',1,''),(11,11126,1,'2010-02-14 21:35:52',1,''),(12,11127,1,'2010-02-14 22:04:08',1,''),(13,11128,1,'2010-02-14 22:19:50',1,''),(14,11129,1,'2010-05-27 22:41:30',1,''),(15,11130,1,'2010-05-27 23:23:19',1,''),(16,11131,1,'2010-05-28 09:07:32',1,''),(17,11132,2,'2010-07-11 21:11:44',1,'SANDBOX SALE'),(18,11132,2,'2010-07-11 21:11:44',0,'Transaction ID: 89P00925US8524518 \nPayment Type: Credit Card (WPP) \nTimestamp: 2010-07-12T02:11:51Z \nPayment Status: Completed \nAVS Code: Y\nCVV2 Code: M\nAmount: 209.09 USD '),(19,11132,1,'2010-07-11 21:34:03',0,'PayPal status: Refunded  @ 19:34:02 Jul 11, 2010 PDT\n Parent Trans ID:89P00925US8524518\n Trans ID:9N546991XD7271109\n Amount: -209.09 USD'),(20,11133,2,'2010-07-11 21:39:51',1,'SANDBOX SALE 2 PAYPAL EXPRESS'),(21,11133,2,'2010-07-11 21:39:51',0,'Transaction ID: 7NC85267PG806401A \nPayment Type: PayPal Express Checkout (instant) \nTimestamp: 2010-07-12T02:39:58Z \nPayment Status: Completed \nAmount: 209.09 USD '),(22,11133,1,'2010-07-11 21:48:07',0,'PayPal status: Refunded  @ 19:48:10 Jul 11, 2010 PDT\n Parent Trans ID:7NC85267PG806401A\n Trans ID:29T15672E9978990B\n Amount: -209.09 USD');
/*!40000 ALTER TABLE `zen_orders_status_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_total`
--

DROP TABLE IF EXISTS `zen_orders_total`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_total` (
  `orders_total_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `text` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `value` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `class` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`orders_total_id`),
  KEY `idx_ot_orders_id_zen` (`orders_id`),
  KEY `idx_ot_class_zen` (`class`)
) ENGINE=MyISAM AUTO_INCREMENT=46 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_total`
--

LOCK TABLES `zen_orders_total` WRITE;
/*!40000 ALTER TABLE `zen_orders_total` DISABLE KEYS */;
INSERT INTO `zen_orders_total` VALUES (1,1,'Sub-Total:','$255.00',255.0000,'ot_subtotal',100),(2,1,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$35.78',35.7800,'ot_shipping',200),(3,1,'Total:','$290.78',290.7800,'ot_total',999),(4,2,'Sub-Total:','$310.00',310.0000,'ot_subtotal',100),(5,2,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$36.48',36.4800,'ot_shipping',200),(6,2,'Total:','$346.48',346.4800,'ot_total',999),(7,3,'Sub-Total:','$310.00',310.0000,'ot_subtotal',100),(8,3,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$36.48',36.4800,'ot_shipping',200),(9,3,'Total:','$346.48',346.4800,'ot_total',999),(10,4,'Sub-Total:','$1,020.00',1020.0000,'ot_subtotal',100),(11,4,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$165.52',165.5200,'ot_shipping',200),(12,4,'Total:','$1,185.52',1185.5200,'ot_total',999),(13,5,'Sub-Total:','$25.00',25.0000,'ot_subtotal',100),(14,5,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$10.58',10.5800,'ot_shipping',200),(15,5,'Total:','$35.58',35.5800,'ot_total',999),(16,11124,'Sub-Total:','$25.00',25.0000,'ot_subtotal',100),(17,11124,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$10.58',10.5800,'ot_shipping',200),(18,11124,'Total:','$35.58',35.5800,'ot_total',999),(19,11125,'Sub-Total:','$195.00',195.0000,'ot_subtotal',100),(20,11125,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$13.63',13.6300,'ot_shipping',200),(21,11125,'Total:','$208.63',208.6300,'ot_total',999),(22,11126,'Subtotal:','$320.00',320.0000,'ot_subtotal',100),(23,11126,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$17.05',17.0500,'ot_shipping',200),(24,11126,'Total:','$337.05',337.0500,'ot_total',999),(25,11127,'Subtotal:','$315.00',315.0000,'ot_subtotal',100),(26,11127,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$30.06',30.0600,'ot_shipping',200),(27,11127,'Total:','$345.06',345.0600,'ot_total',999),(28,11128,'Subtotal:','$315.00',315.0000,'ot_subtotal',100),(29,11128,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$30.06',30.0600,'ot_shipping',200),(30,11128,'Total:','$345.06',345.0600,'ot_total',999),(31,11129,'Sub-Total:','$845.00',845.0000,'ot_subtotal',100),(32,11129,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$45.40',45.4000,'ot_shipping',200),(33,11129,'Total:','$890.40',890.4000,'ot_total',999),(34,11130,'Sub-Total:','$845.00',845.0000,'ot_subtotal',100),(35,11130,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$45.40',45.4000,'ot_shipping',200),(36,11130,'Total:','$890.40',890.4000,'ot_total',999),(37,11131,'Sub-Total:','$425.00',425.0000,'ot_subtotal',100),(38,11131,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$30.89',30.8900,'ot_shipping',200),(39,11131,'Total:','$455.89',455.8900,'ot_total',999),(40,11132,'Sub-Total:','$195.00',195.0000,'ot_subtotal',100),(41,11132,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$14.09',14.0900,'ot_shipping',200),(42,11132,'Total:','$209.09',209.0900,'ot_total',999),(43,11133,'Sub-Total:','$195.00',195.0000,'ot_subtotal',100),(44,11133,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$14.09',14.0900,'ot_shipping',200),(45,11133,'Total:','$209.09',209.0900,'ot_total',999);
/*!40000 ALTER TABLE `zen_orders_total` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal`
--

DROP TABLE IF EXISTS `zen_paypal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal` (
  `paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `txn_type` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `module_name` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `module_mode` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `reason_code` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_type` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_status` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `pending_reason` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `invoice` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
  `mc_currency` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_business_name` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_street` varchar(254) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_city` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_state` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_zip` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_country` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_status` varchar(11) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payer_email` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_status` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `business` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `receiver_email` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `receiver_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `txn_id` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `parent_txn_id` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
  `mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
  `mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
  `payment_gross` decimal(7,2) DEFAULT NULL,
  `payment_fee` decimal(7,2) DEFAULT NULL,
  `settle_amount` decimal(7,2) DEFAULT NULL,
  `settle_currency` char(3) COLLATE utf8_unicode_ci DEFAULT NULL,
  `exchange_rate` decimal(4,2) DEFAULT NULL,
  `notify_version` decimal(2,1) NOT NULL DEFAULT '0.0',
  `verify_sign` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal`
--

LOCK TABLES `zen_paypal` WRITE;
/*!40000 ALTER TABLE `zen_paypal` DISABLE KEYS */;
INSERT INTO `zen_paypal` VALUES (1,5,'cart','paypaldp','PayPal','','Credit Card (WPP)','Completed','','','USD','','','','','','','','','','','','','','2010-01-27 21:04:26','','MODULE_PAYMENT_PAYPALDP_APIUSERNAME','','68X16031VN261504R','',1,35.58,0.00,NULL,NULL,0.00,'USD',1.00,0.0,'','0001-01-01 00:00:00','2010-01-27 15:04:24','{Record generated by payment module}'),(2,5,'parent','paypal (ipn-handler)','IPN','refund','instant','Refunded','','','USD','John','Brake','','John Brake','9079 Pierson Road','Fowlerville','MI','48836','United States','','jhbrake@live.com','3WDAQDAM5ZY9A','','2010-01-27 13:12:26','eorder@adirondakchairs.net','eorder@adirondakchairs.net','2H5JR9R6C3V4C','7BV5037382939383P','68X16031VN261504R',0,-35.58,-1.33,NULL,NULL,0.00,'',0.00,2.9,'AUaxvSojqajxsiGA9qXfGuCulUctAuUMlOpyImTXJ9-eiFRR5ZbgVnSW','0001-01-01 00:00:00','2010-01-27 15:12:35',''),(3,6,'cart','paypalwpp','PayPal','None','PayPal Express Checkout (instant)','Completed','None','EC-665848512A577540F','USD','John','Brake','','John Brake','9079 Pierson Rd','Fowlerville','MI','48836','','Confirmed','jhbrake@nsconstruct.com','4VKJCKRHGWFFW','unverified','2010-01-27 21:22:34','','eorder.adirondakchairs.net','','5K291360FH824315W','',1,35.58,1.33,NULL,NULL,0.00,'USD',1.00,0.0,'','0001-01-01 00:00:00','2010-01-27 15:22:33','{Record generated by payment module}'),(4,11132,'cart','paypaldp','PayPal','','Credit Card (WPP)','Completed','','','USD','','','','','','','','','','','','','','2010-07-12 02:11:51','','MODULE_PAYMENT_PAYPALDP_APIUSERNAME','','89P00925US8524518','',1,209.09,0.00,NULL,NULL,0.00,'USD',1.00,0.0,'','0001-01-01 00:00:00','2010-07-11 21:11:44','{Record generated by payment module}'),(5,11132,'parent','paypal (ipn-handler)','IPN','refund','instant','Refunded','','','USD','John','Brake','','John Brake','9079 Pierson Rd','Fowlerville','MI','48836','United States','','jbrake@nsconstruct.com','P6HRNYU6CEQ54','','2010-07-11 19:34:02','eorder@adirondakchairs.net','eorder@adirondakchairs.net','2H5JR9R6C3V4C','9N546991XD7271109','89P00925US8524518',0,-209.09,-6.36,NULL,NULL,0.00,'',0.00,3.0,'An5ns1Kso7MWUdW4ErQKJJJ4qi4-AcZBp2DedHjMFFh2Hz6XaOq4VFa.','0001-01-01 00:00:00','2010-07-11 21:34:03',''),(6,11133,'cart','paypalwpp','PayPal','None','PayPal Express Checkout (instant)','Completed','None','EC-8P495553G5262550W','USD','John','Brake','','John Brake','9079 Pierson Rd','Fowlerville','MI','48836','','Confirmed','jbrake@nsconstruct.com','HED2VXNX8SAZ2','unverified','2010-07-12 02:39:58','','eorder.adirondakchairs.net','','7NC85267PG806401A','',1,209.09,6.36,NULL,NULL,0.00,'USD',1.00,0.0,'','0001-01-01 00:00:00','2010-07-11 21:39:51','{Record generated by payment module}'),(7,11133,'parent','paypal (ipn-handler)','IPN','refund','instant','Refunded','','','USD','John','Brake','','John Brake','9079 Pierson Rd','Fowlerville','MI','48836','United States','','jbrake@nsconstruct.com','HED2VXNX8SAZ2','','2010-07-11 19:48:10','','eorder@adirondakchairs.net','2H5JR9R6C3V4C','29T15672E9978990B','7NC85267PG806401A',0,-209.09,-6.36,NULL,NULL,0.00,'',0.00,3.0,'AFcWxV21C7fd0v3bYYYRCpSSRl31A5s.UJtzaFLN-GDW7eL-u8nqikin','0001-01-01 00:00:00','2010-07-11 21:48:07','');
/*!40000 ALTER TABLE `zen_paypal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal_payment_status`
--

DROP TABLE IF EXISTS `zen_paypal_payment_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_payment_status` (
  `payment_status_id` int(11) NOT NULL AUTO_INCREMENT,
  `payment_status_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`payment_status_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_payment_status`
--

LOCK TABLES `zen_paypal_payment_status` WRITE;
/*!40000 ALTER TABLE `zen_paypal_payment_status` DISABLE KEYS */;
INSERT INTO `zen_paypal_payment_status` VALUES (1,'Completed'),(2,'Pending'),(3,'Failed'),(4,'Denied'),(5,'Refunded'),(6,'Canceled_Reversal'),(7,'Reversed');
/*!40000 ALTER TABLE `zen_paypal_payment_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal_payment_status_history`
--

DROP TABLE IF EXISTS `zen_paypal_payment_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_payment_status_history` (
  `payment_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `paypal_ipn_id` int(11) NOT NULL DEFAULT '0',
  `txn_id` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `parent_txn_id` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_status` varchar(17) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `pending_reason` varchar(14) COLLATE utf8_unicode_ci DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`payment_status_history_id`),
  KEY `idx_paypal_ipn_id_zen` (`paypal_ipn_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_payment_status_history`
--

LOCK TABLES `zen_paypal_payment_status_history` WRITE;
/*!40000 ALTER TABLE `zen_paypal_payment_status_history` DISABLE KEYS */;
INSERT INTO `zen_paypal_payment_status_history` VALUES (1,1,'7BV5037382939383P','68X16031VN261504R','Refunded','','2010-01-27 15:12:35'),(2,4,'9N546991XD7271109','89P00925US8524518','Refunded','','2010-07-11 21:34:03'),(3,6,'29T15672E9978990B','7NC85267PG806401A','Refunded','','2010-07-11 21:48:07');
/*!40000 ALTER TABLE `zen_paypal_payment_status_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal_session`
--

DROP TABLE IF EXISTS `zen_paypal_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_session` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `session_id` text COLLATE utf8_unicode_ci NOT NULL,
  `saved_session` mediumblob NOT NULL,
  `expiry` int(17) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_session_id_zen` (`session_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_session`
--

LOCK TABLES `zen_paypal_session` WRITE;
/*!40000 ALTER TABLE `zen_paypal_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_paypal_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal_testing`
--

DROP TABLE IF EXISTS `zen_paypal_testing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_testing` (
  `paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `custom` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `txn_type` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `module_name` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `module_mode` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `reason_code` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_type` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_status` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `pending_reason` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `invoice` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
  `mc_currency` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_business_name` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_street` varchar(254) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_city` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_state` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_zip` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_country` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_status` varchar(11) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payer_email` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_status` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `business` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `receiver_email` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `receiver_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `txn_id` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `parent_txn_id` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
  `mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
  `mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
  `payment_gross` decimal(7,2) DEFAULT NULL,
  `payment_fee` decimal(7,2) DEFAULT NULL,
  `settle_amount` decimal(7,2) DEFAULT NULL,
  `settle_currency` char(3) COLLATE utf8_unicode_ci DEFAULT NULL,
  `exchange_rate` decimal(4,2) DEFAULT NULL,
  `notify_version` decimal(2,1) NOT NULL DEFAULT '0.0',
  `verify_sign` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_testing`
--

LOCK TABLES `zen_paypal_testing` WRITE;
/*!40000 ALTER TABLE `zen_paypal_testing` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_paypal_testing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_product_music_extra`
--

DROP TABLE IF EXISTS `zen_product_music_extra`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_music_extra` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `artists_id` int(11) NOT NULL DEFAULT '0',
  `record_company_id` int(11) NOT NULL DEFAULT '0',
  `music_genre_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_id`),
  KEY `idx_music_genre_id_zen` (`music_genre_id`),
  KEY `idx_artists_id_zen` (`artists_id`),
  KEY `idx_record_company_id_zen` (`record_company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_music_extra`
--

LOCK TABLES `zen_product_music_extra` WRITE;
/*!40000 ALTER TABLE `zen_product_music_extra` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_product_music_extra` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_product_type_layout`
--

DROP TABLE IF EXISTS `zen_product_type_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_type_layout` (
  `configuration_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_title` text COLLATE utf8_unicode_ci NOT NULL,
  `configuration_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `configuration_value` text COLLATE utf8_unicode_ci NOT NULL,
  `configuration_description` text COLLATE utf8_unicode_ci NOT NULL,
  `product_type_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(5) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `use_function` text COLLATE utf8_unicode_ci,
  `set_function` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`configuration_id`),
  UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
  KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
  KEY `idx_type_id_sort_order_zen` (`product_type_id`,`sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=149 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_type_layout`
--

LOCK TABLES `zen_product_type_layout` WRITE;
/*!40000 ALTER TABLE `zen_product_type_layout` DISABLE KEYS */;
INSERT INTO `zen_product_type_layout` VALUES (1,'Show Model Number','SHOW_PRODUCT_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',1,1,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(2,'Show Weight','SHOW_PRODUCT_INFO_WEIGHT','1','Display Weight on Product Info 0= off 1= on',1,2,'2010-05-27 21:58:39','2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(3,'Show Attribute Weight','SHOW_PRODUCT_INFO_WEIGHT_ATTRIBUTES','0','Display Attribute Weight on Product Info 0= off 1= on',1,3,'2010-01-11 16:45:06','2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(4,'Show Manufacturer','SHOW_PRODUCT_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',1,4,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(5,'Show Quantity in Shopping Cart','SHOW_PRODUCT_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',1,5,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(6,'Show Quantity in Stock','SHOW_PRODUCT_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',1,6,'2010-01-11 16:45:23','2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(7,'Show Product Reviews Count','SHOW_PRODUCT_INFO_REVIEWS_COUNT','0','Display Product Reviews Count on Product Info 0= off 1= on',1,7,'2010-05-27 21:59:03','2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(8,'Show Product Reviews Button','SHOW_PRODUCT_INFO_REVIEWS','0','Display Product Reviews Button on Product Info 0= off 1= on',1,8,'2010-05-27 21:59:17','2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(9,'Show Date Available','SHOW_PRODUCT_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',1,9,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(10,'Show Date Added','SHOW_PRODUCT_INFO_DATE_ADDED','0','Display Date Added on Product Info 0= off 1= on',1,10,'2010-01-11 16:45:43','2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(11,'Show Product URL','SHOW_PRODUCT_INFO_URL','1','Display URL on Product Info 0= off 1= on',1,11,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(12,'Show Product Additional Images','SHOW_PRODUCT_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',1,13,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(13,'Show Starting At text on Price','SHOW_PRODUCT_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',1,12,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(14,'Show Product Tell a Friend button','SHOW_PRODUCT_INFO_TELL_A_FRIEND','0','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',1,15,'2010-01-24 18:57:05','2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(15,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',1,16,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(16,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',1,100,NULL,'2010-01-04 15:39:23','',''),(17,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',1,101,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(18,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',1,102,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(19,'Show Model Number','SHOW_PRODUCT_MUSIC_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',2,1,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(20,'Show Weight','SHOW_PRODUCT_MUSIC_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',2,2,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(21,'Show Attribute Weight','SHOW_PRODUCT_MUSIC_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',2,3,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(22,'Show Artist','SHOW_PRODUCT_MUSIC_INFO_ARTIST','1','Display Artists Name on Product Info 0= off 1= on',2,4,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(23,'Show Music Genre','SHOW_PRODUCT_MUSIC_INFO_GENRE','1','Display Music Genre on Product Info 0= off 1= on',2,4,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(24,'Show Record Company','SHOW_PRODUCT_MUSIC_INFO_RECORD_COMPANY','1','Display Record Company on Product Info 0= off 1= on',2,4,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(25,'Show Quantity in Shopping Cart','SHOW_PRODUCT_MUSIC_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',2,5,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(26,'Show Quantity in Stock','SHOW_PRODUCT_MUSIC_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',2,6,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(27,'Show Product Reviews Count','SHOW_PRODUCT_MUSIC_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',2,7,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(28,'Show Product Reviews Button','SHOW_PRODUCT_MUSIC_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',2,8,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(29,'Show Date Available','SHOW_PRODUCT_MUSIC_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',2,9,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(30,'Show Date Added','SHOW_PRODUCT_MUSIC_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',2,10,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(31,'Show Starting At text on Price','SHOW_PRODUCT_MUSIC_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',2,12,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(32,'Show Product Additional Images','SHOW_PRODUCT_MUSIC_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',2,13,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(33,'Show Product Tell a Friend button','SHOW_PRODUCT_MUSIC_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',2,15,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(34,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_MUSIC_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',2,16,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(35,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_MUSIC_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',2,100,NULL,'2010-01-04 15:39:23','',''),(36,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_MUSIC_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',2,101,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(37,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_MUSIC_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',2,102,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(38,'Show Product Reviews Count','SHOW_DOCUMENT_GENERAL_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',3,7,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(39,'Show Product Reviews Button','SHOW_DOCUMENT_GENERAL_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',3,8,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(40,'Show Date Available','SHOW_DOCUMENT_GENERAL_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',3,9,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(41,'Show Date Added','SHOW_DOCUMENT_GENERAL_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',3,10,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(42,'Show Product Tell a Friend button','SHOW_DOCUMENT_GENERAL_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',3,15,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(43,'Show Product URL','SHOW_DOCUMENT_GENERAL_INFO_URL','1','Display URL on Product Info 0= off 1= on',3,11,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(44,'Show Product Additional Images','SHOW_DOCUMENT_GENERAL_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',3,13,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(45,'Show Model Number','SHOW_DOCUMENT_PRODUCT_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',4,1,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(46,'Show Weight','SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',4,2,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(47,'Show Attribute Weight','SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',4,3,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(48,'Show Manufacturer','SHOW_DOCUMENT_PRODUCT_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',4,4,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(49,'Show Quantity in Shopping Cart','SHOW_DOCUMENT_PRODUCT_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',4,5,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(50,'Show Quantity in Stock','SHOW_DOCUMENT_PRODUCT_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',4,6,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(51,'Show Product Reviews Count','SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',4,7,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(52,'Show Product Reviews Button','SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',4,8,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(53,'Show Date Available','SHOW_DOCUMENT_PRODUCT_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',4,9,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(54,'Show Date Added','SHOW_DOCUMENT_PRODUCT_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',4,10,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(55,'Show Product URL','SHOW_DOCUMENT_PRODUCT_INFO_URL','1','Display URL on Product Info 0= off 1= on',4,11,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(56,'Show Product Additional Images','SHOW_DOCUMENT_PRODUCT_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',4,13,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(57,'Show Starting At text on Price','SHOW_DOCUMENT_PRODUCT_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',4,12,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(58,'Show Product Tell a Friend button','SHOW_DOCUMENT_PRODUCT_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',4,15,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(59,'Product Free Shipping Image Status - Catalog','SHOW_DOCUMENT_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',4,16,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(60,'Product Price Tax Class Default - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',4,100,NULL,'2010-01-04 15:39:23','',''),(61,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',4,101,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(62,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',4,102,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(63,'Show Model Number','SHOW_PRODUCT_FREE_SHIPPING_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',5,1,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(64,'Show Weight','SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',5,2,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(65,'Show Attribute Weight','SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',5,3,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(66,'Show Manufacturer','SHOW_PRODUCT_FREE_SHIPPING_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',5,4,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(67,'Show Quantity in Shopping Cart','SHOW_PRODUCT_FREE_SHIPPING_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',5,5,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(68,'Show Quantity in Stock','SHOW_PRODUCT_FREE_SHIPPING_INFO_QUANTITY','1','Display Quantity in Stock on Product Info 0= off 1= on',5,6,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(69,'Show Product Reviews Count','SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',5,7,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(70,'Show Product Reviews Button','SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',5,8,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(71,'Show Date Available','SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_AVAILABLE','0','Display Date Available on Product Info 0= off 1= on',5,9,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(72,'Show Date Added','SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',5,10,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(73,'Show Product URL','SHOW_PRODUCT_FREE_SHIPPING_INFO_URL','1','Display URL on Product Info 0= off 1= on',5,11,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(74,'Show Product Additional Images','SHOW_PRODUCT_FREE_SHIPPING_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',5,13,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(75,'Show Starting At text on Price','SHOW_PRODUCT_FREE_SHIPPING_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',5,12,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(76,'Show Product Tell a Friend button','SHOW_PRODUCT_FREE_SHIPPING_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',5,15,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(77,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_FREE_SHIPPING_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','1','Show the Free Shipping image/text in the catalog?',5,16,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(78,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',5,100,NULL,'2010-01-04 15:39:23','',''),(79,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',5,101,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(80,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','1','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',5,102,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(81,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',1,50,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(82,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',1,51,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(83,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',1,52,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(84,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',1,53,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(85,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',1,54,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(86,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',2,50,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(87,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',2,51,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(88,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_MUSIC_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',2,52,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(89,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',2,53,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(90,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',2,54,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(91,'Show Metatags Title Default - Document Title','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_STATUS','1','Display Document Title in Meta Tags Title 0= off 1= on',3,50,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(92,'Show Metatags Title Default - Document Name','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Document Name in Meta Tags Title 0= off 1= on',3,51,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(93,'Show Metatags Title Default - Document Tagline','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Document Tagline in Meta Tags Title 0= off 1= on',3,54,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(94,'Show Metatags Title Default - Document Title','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_STATUS','1','Display Document Title in Meta Tags Title 0= off 1= on',4,50,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(95,'Show Metatags Title Default - Document Name','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Document Name in Meta Tags Title 0= off 1= on',4,51,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(96,'Show Metatags Title Default - Document Model','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_MODEL_STATUS','1','Display Document Model in Meta Tags Title 0= off 1= on',4,52,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(97,'Show Metatags Title Default - Document Price','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRICE_STATUS','1','Display Document Price in Meta Tags Title 0= off 1= on',4,53,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(98,'Show Metatags Title Default - Document Tagline','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Document Tagline in Meta Tags Title 0= off 1= on',4,54,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(99,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',5,50,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(100,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',5,51,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(101,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',5,52,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(102,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',5,53,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(103,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',5,54,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(104,'PRODUCT Attribute is Display Only - Default','DEFAULT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY','0','PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',1,200,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(105,'PRODUCT Attribute is Free - Default','DEFAULT_PRODUCT_ATTRIBUTE_IS_FREE','1','PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',1,201,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(106,'PRODUCT Attribute is Default - Default','DEFAULT_PRODUCT_ATTRIBUTES_DEFAULT','0','PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',1,202,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(107,'PRODUCT Attribute is Discounted - Default','DEFAULT_PRODUCT_ATTRIBUTES_DISCOUNTED','1','PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',1,203,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(108,'PRODUCT Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED','1','PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',1,204,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(109,'PRODUCT Attribute is Required - Default','DEFAULT_PRODUCT_ATTRIBUTES_REQUIRED','0','PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',1,205,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(110,'PRODUCT Attribute Price Prefix - Default','DEFAULT_PRODUCT_PRICE_PREFIX','1','PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',1,206,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(111,'PRODUCT Attribute Weight Prefix - Default','DEFAULT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',1,207,'2010-01-11 16:47:02','2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(112,'MUSIC Attribute is Display Only - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISPLAY_ONLY','0','MUSIC Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',2,200,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(113,'MUSIC Attribute is Free - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTE_IS_FREE','1','MUSIC Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',2,201,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(114,'MUSIC Attribute is Default - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DEFAULT','0','MUSIC Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',2,202,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(115,'MUSIC Attribute is Discounted - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISCOUNTED','1','MUSIC Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',2,203,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(116,'MUSIC Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_PRICE_BASE_INCLUDED','1','MUSIC Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',2,204,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(117,'MUSIC Attribute is Required - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_REQUIRED','0','MUSIC Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',2,205,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(118,'MUSIC Attribute Price Prefix - Default','DEFAULT_PRODUCT_MUSIC_PRICE_PREFIX','1','MUSIC Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',2,206,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(119,'MUSIC Attribute Weight Prefix - Default','DEFAULT_PRODUCT_MUSIC_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','MUSIC Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',2,207,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(120,'DOCUMENT GENERAL Attribute is Display Only - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISPLAY_ONLY','0','DOCUMENT GENERAL Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',3,200,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(121,'DOCUMENT GENERAL Attribute is Free - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTE_IS_FREE','1','DOCUMENT GENERAL Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',3,201,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(122,'DOCUMENT GENERAL Attribute is Default - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DEFAULT','0','DOCUMENT GENERAL Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',3,202,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(123,'DOCUMENT GENERAL Attribute is Discounted - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISCOUNTED','1','DOCUMENT GENERAL Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',3,203,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(124,'DOCUMENT GENERAL Attribute is Included in Base Price - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_PRICE_BASE_INCLUDED','1','DOCUMENT GENERAL Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',3,204,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(125,'DOCUMENT GENERAL Attribute is Required - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_REQUIRED','0','DOCUMENT GENERAL Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',3,205,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(126,'DOCUMENT GENERAL Attribute Price Prefix - Default','DEFAULT_DOCUMENT_GENERAL_PRICE_PREFIX','1','DOCUMENT GENERAL Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',3,206,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(127,'DOCUMENT GENERAL Attribute Weight Prefix - Default','DEFAULT_DOCUMENT_GENERAL_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','DOCUMENT GENERAL Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',3,207,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(128,'DOCUMENT PRODUCT Attribute is Display Only - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY','0','DOCUMENT PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',4,200,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(129,'DOCUMENT PRODUCT Attribute is Free - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTE_IS_FREE','1','DOCUMENT PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',4,201,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(130,'DOCUMENT PRODUCT Attribute is Default - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DEFAULT','0','DOCUMENT PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',4,202,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(131,'DOCUMENT PRODUCT Attribute is Discounted - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISCOUNTED','1','DOCUMENT PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',4,203,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(132,'DOCUMENT PRODUCT Attribute is Included in Base Price - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED','1','DOCUMENT PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',4,204,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(133,'DOCUMENT PRODUCT Attribute is Required - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_REQUIRED','0','DOCUMENT PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',4,205,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(134,'DOCUMENT PRODUCT Attribute Price Prefix - Default','DEFAULT_DOCUMENT_PRODUCT_PRICE_PREFIX','1','DOCUMENT PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',4,206,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(135,'DOCUMENT PRODUCT Attribute Weight Prefix - Default','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','DOCUMENT PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',4,207,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(136,'PRODUCT FREE SHIPPING Attribute is Display Only - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISPLAY_ONLY','0','PRODUCT FREE SHIPPING Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',5,201,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(137,'PRODUCT FREE SHIPPING Attribute is Free - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTE_IS_FREE','1','PRODUCT FREE SHIPPING Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',5,201,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(138,'PRODUCT FREE SHIPPING Attribute is Default - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DEFAULT','0','PRODUCT FREE SHIPPING Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',5,202,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(139,'PRODUCT FREE SHIPPING Attribute is Discounted - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISCOUNTED','1','PRODUCT FREE SHIPPING Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',5,203,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(140,'PRODUCT FREE SHIPPING Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_PRICE_BASE_INCLUDED','1','PRODUCT FREE SHIPPING Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',5,204,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(141,'PRODUCT FREE SHIPPING Attribute is Required - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_REQUIRED','0','PRODUCT FREE SHIPPING Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',5,205,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(142,'PRODUCT FREE SHIPPING Attribute Price Prefix - Default','DEFAULT_PRODUCT_FREE_SHIPPING_PRICE_PREFIX','1','PRODUCT FREE SHIPPING Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',5,206,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(143,'PRODUCT FREE SHIPPING Attribute Weight Prefix - Default','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','PRODUCT FREE SHIPPING Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',5,207,NULL,'2010-01-04 15:39:23',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(144,'Show Dimensions','SHOW_PRODUCT_INFO_DIMENSIONS','1','Show product dimensions on product info page (requires Numinix Product Fields)?',1,17,'2010-05-27 22:28:38','2010-01-10 13:05:21',NULL,'zen_cfg_select_option(array(\'1\', \'0\'),'),(145,'Show Diameter','SHOW_PRODUCT_INFO_DIAMETER','0','Show product diameter on product info page (requires Numinix Product Fields)?',1,17,NULL,'2010-01-10 13:05:21',NULL,'zen_cfg_select_option(array(\'1\', \'0\'),'),(146,'Show Conversions','SHOW_PRODUCT_INFO_CONVERSIONS','0','Show weight and dimension conversions on product info page (requires Numinix Product Fields)?',1,17,NULL,'2010-01-10 13:05:21',NULL,'zen_cfg_select_option(array(\'1\', \'0\'),'),(147,'Show Smaller Units','SHOW_PRODUCT_INFO_SMALLER_UNITS','0','Show weight and dimensions as g/oz? (requires Numinix Product Fields)?',1,17,NULL,'2010-01-10 13:05:21',NULL,'zen_cfg_select_option(array(\'1\', \'0\'),'),(148,'Show Actual Weight','SHOW_PRODUCT_INFO_ACTUAL_WEIGHT','1','Show products actual weight on product info page (requires Numinix Product Fields)?',1,17,'2010-05-27 21:59:53','2010-01-10 13:05:21',NULL,'zen_cfg_select_option(array(\'1\', \'0\'),');
/*!40000 ALTER TABLE `zen_product_type_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_product_types`
--

DROP TABLE IF EXISTS `zen_product_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_types` (
  `type_id` int(11) NOT NULL AUTO_INCREMENT,
  `type_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `type_handler` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `type_master_type` int(11) NOT NULL DEFAULT '1',
  `allow_add_to_cart` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `default_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`type_id`),
  KEY `idx_type_master_type_zen` (`type_master_type`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_types`
--

LOCK TABLES `zen_product_types` WRITE;
/*!40000 ALTER TABLE `zen_product_types` DISABLE KEYS */;
INSERT INTO `zen_product_types` VALUES (1,'Product - Seating','product',1,'Y','','2010-01-04 15:39:23','2010-01-11 16:44:17'),(2,'Product - Music','product_music',1,'Y','','2010-01-04 15:39:23','2010-01-04 15:39:23'),(3,'Document - General','document_general',3,'N','','2010-01-04 15:39:23','2010-01-04 15:39:23'),(4,'Document - Product','document_product',3,'Y','','2010-01-04 15:39:23','2010-01-04 15:39:23'),(5,'Product - Free Shipping','product_free_shipping',1,'Y','','2010-01-04 15:39:23','2010-01-04 15:39:23');
/*!40000 ALTER TABLE `zen_product_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_product_types_to_category`
--

DROP TABLE IF EXISTS `zen_product_types_to_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_types_to_category` (
  `product_type_id` int(11) NOT NULL DEFAULT '0',
  `category_id` int(11) NOT NULL DEFAULT '0',
  KEY `idx_category_id_zen` (`category_id`),
  KEY `idx_product_type_id_zen` (`product_type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_types_to_category`
--

LOCK TABLES `zen_product_types_to_category` WRITE;
/*!40000 ALTER TABLE `zen_product_types_to_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_product_types_to_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products`
--

DROP TABLE IF EXISTS `zen_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products` (
  `products_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_type` int(11) NOT NULL DEFAULT '1',
  `products_quantity` float NOT NULL DEFAULT '0',
  `products_model` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_upc` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_isbn` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_ean` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_asin` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_epier` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_ebay` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_amazon` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_na` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_sa` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_eu` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_af` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_as` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_au` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_ebid` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_virtual` tinyint(1) NOT NULL DEFAULT '0',
  `products_date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `products_last_modified` datetime DEFAULT NULL,
  `products_date_available` datetime DEFAULT NULL,
  `products_weight` float NOT NULL DEFAULT '0',
  `products_actual_weight` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_weight_type` enum('lbs','kgs') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'lbs',
  `products_dim_type` enum('in','cm') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'cm',
  `products_length` decimal(6,2) NOT NULL DEFAULT '36.00',
  `products_width` decimal(6,2) NOT NULL DEFAULT '24.00',
  `products_height` decimal(6,2) NOT NULL DEFAULT '16.00',
  `products_ready_to_ship` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1',
  `products_status` tinyint(1) NOT NULL DEFAULT '0',
  `products_tax_class_id` int(11) NOT NULL DEFAULT '0',
  `manufacturers_id` int(11) DEFAULT NULL,
  `products_ordered` float NOT NULL DEFAULT '0',
  `products_quantity_order_min` float NOT NULL DEFAULT '1',
  `products_quantity_order_units` float NOT NULL DEFAULT '1',
  `products_priced_by_attribute` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_call` tinyint(1) NOT NULL DEFAULT '0',
  `products_quantity_mixed` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_always_free_shipping` tinyint(1) NOT NULL DEFAULT '0',
  `products_qty_box_status` tinyint(1) NOT NULL DEFAULT '1',
  `products_quantity_order_max` float NOT NULL DEFAULT '0',
  `products_sort_order` int(11) NOT NULL DEFAULT '0',
  `products_discount_type` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
  `products_price_sorter` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `master_categories_id` int(11) NOT NULL DEFAULT '0',
  `products_mixed_discount_quantity` tinyint(1) NOT NULL DEFAULT '1',
  `metatags_title_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_products_name_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_model_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_price_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_title_tagline_status` tinyint(1) NOT NULL DEFAULT '0',
  `products_phrases` varchar(503) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_keywords` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_category` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_condition` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_EHF` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'none',
  `products_barcode` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_diameter` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`products_id`),
  KEY `idx_products_date_added_zen` (`products_date_added`),
  KEY `idx_products_status_zen` (`products_status`),
  KEY `idx_products_date_available_zen` (`products_date_available`),
  KEY `idx_products_ordered_zen` (`products_ordered`),
  KEY `idx_products_model_zen` (`products_model`),
  KEY `idx_products_price_sorter_zen` (`products_price_sorter`),
  KEY `idx_master_categories_id_zen` (`master_categories_id`),
  KEY `idx_products_sort_order_zen` (`products_sort_order`),
  KEY `idx_manufacturers_id_zen` (`manufacturers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products`
--

LOCK TABLES `zen_products` WRITE;
/*!40000 ALTER TABLE `zen_products` DISABLE KEYS */;
INSERT INTO `zen_products` VALUES (1,1,9,'ADK-ow-h-f','','','','','','',NULL,'','','','','','','','oldWest_01.jpg',410.0000,0,'2010-01-06 18:23:27','2010-05-27 22:24:34',NULL,38,'38','lbs','in',36.00,24.00,12.00,'1',1,0,0,1,1,1,0,0,0,1,0,1,0,3,0,0,410.0000,2,1,1,1,0,0,0,NULL,NULL,NULL,'','none','',''),(2,1,9,'ADK-sf-h-f','','','','','','',NULL,'','','','','','','','santaFe_01.jpg',410.0000,0,'2010-01-06 20:51:57','2010-05-27 22:26:12',NULL,38,'38','lbs','in',36.00,24.00,12.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,410.0000,2,1,1,1,0,0,0,NULL,NULL,NULL,'','none','',''),(3,1,9,'ADK-r-h-uf','','','','','','',NULL,'','','','','','','','rancher_01.jpg',410.0000,0,'2010-01-08 12:48:22','2010-05-27 22:25:21',NULL,38,'38','lbs','in',36.00,24.00,12.00,'1',1,0,0,1,1,1,0,0,0,1,0,1,0,4,0,0,410.0000,2,1,1,1,0,0,0,NULL,NULL,NULL,'','none','',''),(4,1,9,'ADK-ott-uf','','','','','','',NULL,'','','','','','','','ott_01.jpg',195.0000,0,'2010-01-08 12:54:44','2010-02-15 12:15:43',NULL,11,'11','lbs','in',24.00,24.00,16.00,'1',1,0,0,3,1,1,0,0,0,1,0,1,0,7,0,0,195.0000,2,1,1,0,0,0,0,NULL,NULL,NULL,'','none','',''),(5,1,9,'ADK-c-h-uf','','','','','','',NULL,'','','','','','','','classic_01.jpg',410.0000,0,'2010-01-08 13:05:09','2010-05-27 22:22:49',NULL,38,'38','lbs','in',36.00,24.00,12.00,'1',1,0,0,5,1,1,0,0,0,1,0,1,0,1,0,0,410.0000,2,1,1,1,0,0,0,NULL,NULL,NULL,'','none','',''),(6,1,9,'ADK-hc-h-f','','','','','','',NULL,'','','','','','','','hiCtry_01.jpg',425.0000,0,'2010-01-08 13:25:25','2010-05-27 22:23:36',NULL,39,'39','lbs','in',36.00,24.00,12.00,'1',1,0,0,4,1,1,0,0,0,1,0,1,0,2,0,0,425.0000,2,0,1,1,0,0,0,NULL,NULL,NULL,'','none','',''),(7,1,9,'ADK-nb-h-f','','','','','','',NULL,'','','','','','','','notBk_01.jpg',435.0000,0,'2010-01-21 08:48:04','2010-05-27 22:26:48',NULL,39,'38','lbs','in',36.00,24.00,12.00,'1',1,0,0,4,1,1,0,0,0,1,0,1,0,6,0,0,435.0000,2,1,1,1,0,0,0,NULL,NULL,NULL,'','none','','');
/*!40000 ALTER TABLE `zen_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_attributes`
--

DROP TABLE IF EXISTS `zen_products_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_attributes` (
  `products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `options_id` int(11) NOT NULL DEFAULT '0',
  `options_values_id` int(11) NOT NULL DEFAULT '0',
  `options_values_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `price_prefix` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_options_sort_order` int(11) NOT NULL DEFAULT '0',
  `product_attribute_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_attributes_weight` float NOT NULL DEFAULT '0',
  `products_attributes_weight_prefix` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `attributes_display_only` tinyint(1) NOT NULL DEFAULT '0',
  `attributes_default` tinyint(1) NOT NULL DEFAULT '0',
  `attributes_discounted` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `attributes_price_base_included` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_qty_prices` text COLLATE utf8_unicode_ci,
  `attributes_qty_prices_onetime` text COLLATE utf8_unicode_ci,
  `attributes_price_words` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_words_free` int(4) NOT NULL DEFAULT '0',
  `attributes_price_letters` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_letters_free` int(4) NOT NULL DEFAULT '0',
  `attributes_required` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_attributes_id`),
  KEY `idx_id_options_id_values_zen` (`products_id`,`options_id`,`options_values_id`),
  KEY `idx_opt_sort_order_zen` (`products_options_sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_attributes`
--

LOCK TABLES `zen_products_attributes` WRITE;
/*!40000 ALTER TABLE `zen_products_attributes` DISABLE KEYS */;
INSERT INTO `zen_products_attributes` VALUES (29,5,3,6,0.0000,'+',3,1,0,'+',0,0,1,'attributes/naturalFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(49,6,3,6,0.0000,'+',3,1,0,'+',0,0,1,'attributes/naturalFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(50,6,3,7,0.0000,'+',1,1,0,'+',0,0,1,'attributes/varnFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(52,7,3,7,0.0000,'+',1,1,0,'+',0,0,1,'attributes/varnFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(48,4,3,7,0.0000,'+',1,1,0,'+',0,0,1,'attributes/varnFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(41,1,3,6,0.0000,'+',3,1,0,'+',0,0,1,'attributes/naturalFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(42,1,3,7,0.0000,'+',1,1,0,'+',0,0,1,'attributes/varnFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(45,3,3,6,0.0000,'+',3,1,0,'+',0,0,1,'attributes/naturalFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(46,3,3,7,0.0000,'+',1,1,0,'+',0,0,1,'attributes/varnFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(47,4,3,6,0.0000,'+',3,1,0,'+',0,0,1,'attributes/naturalFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(43,2,3,6,0.0000,'+',3,1,0,'+',0,0,1,'attributes/naturalFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(44,2,3,7,0.0000,'+',1,1,0,'+',0,0,1,'attributes/varnFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(40,5,3,7,0.0000,'+',1,1,0,'+',0,0,1,'attributes/varnFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(51,7,3,6,0.0000,'+',3,1,0,'+',0,0,1,'attributes/naturalFinish300.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0);
/*!40000 ALTER TABLE `zen_products_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_attributes_download`
--

DROP TABLE IF EXISTS `zen_products_attributes_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_attributes_download` (
  `products_attributes_id` int(11) NOT NULL DEFAULT '0',
  `products_attributes_filename` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_attributes_maxdays` int(2) DEFAULT '0',
  `products_attributes_maxcount` int(2) DEFAULT '0',
  PRIMARY KEY (`products_attributes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_attributes_download`
--

LOCK TABLES `zen_products_attributes_download` WRITE;
/*!40000 ALTER TABLE `zen_products_attributes_download` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_products_attributes_download` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_description`
--

DROP TABLE IF EXISTS `zen_products_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_description` (
  `products_id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_description` text COLLATE utf8_unicode_ci,
  `products_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_viewed` int(5) DEFAULT '0',
  PRIMARY KEY (`products_id`,`language_id`),
  KEY `idx_products_name_zen` (`products_name`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_description`
--

LOCK TABLES `zen_products_description` WRITE;
/*!40000 ALTER TABLE `zen_products_description` DISABLE KEYS */;
INSERT INTO `zen_products_description` VALUES (1,1,'Old West Adirondak Chair','The Old West Chair is crafted with reclaimed antique wood and displayed here with a clear spar finish. It has a unique, Western Style, front leg brace. Knots, graining and old nail holes are prominent, giving it a very rustic look. \r\n<br /><br />\r\nThe Old West Chair is also available Unfinished (Natural). <br /><br />\r\n<span class = \"checkout_featured\"> STYLE FEATURED IN THE PHOTO: Home, Finished</span>','adirondakchairs.net/index.php?main_page=product_info&cPath=2&products_id=1',1544),(2,1,'Santa Fe Adirondak Chair','The Santa Fe Chair is crafted with reclaimed antique wood and displayed here with a clear spar finish. It has a unique Notch Back design with a Classic front leg brace. Knots, graining and old nail holes are prominent, giving it a very rustic look. \r\n<br /><br />\r\nThe Santa Fe Chair is also available Unfinished (Natural).','images/',1170),(3,1,'Rancher Adirondak Chair','The Rancher is crafted with reclaimed antique wood and displayed here without a finish. Like cedar, if left natural and exposed to the elements, the wood recaptures a natural, gray, weathered wood patina. It features a five slat Fan Back and Classic front leg brace. Knots, graining and old nail holes are prominent, giving it a very rustic look. \r\n<br /><br />\r\nThe Rancher is also available Finished','',1550),(4,1,'Adirondak Ottoman','The Matching Ottoman is crafted with the same antique wood as your chair set.  This ottoman is shown with a Natural (weathered wood) finish. It is also available with a clear spar finish.','',1014),(5,1,'Classic Adirondak Chair','The Classic Fan Back is crafted with reclaimed antique wood and displayed here without a finish. Like cedar, if left natural and exposed to the elements, the wood will recapture a natural, gray, weathered wood patina. Knots, graining and old nail holes are prominent, giving it a very rustic look. \r\n<br /><br />\r\nThe Classic Fan Back is also available Finished.','adirondakchairs.net/index.php?main_page=product_info&cPath=2&products_id=5',1900),(6,1,'High Country Adirondak Chair','The High Country Western Fan Back Chair is crafted with reclaimed antique wood and displayed here with a spar finish. We call it \"High Country\" because it\'s our taller adirondack chair designed for tall persons. The seat height is 3\" higher than other styles making for easier egress. Knots, graining and old nail holes are prominent, giving it a very rustic look. \r\n<br /><br />\r\nThe High Country Western Fan Back is also available Unfinished (Natural','',1863),(7,1,'Notch Back Adirondak Chair','The Notch Back Chair is crafted with reclaimed antique wood and displayed here with a clear spar finish. It has a unique Staggered Back design with a Classic front leg brace. All Notch Back wooden components are planed, weather-checked relief remaining. Knots, graining and old nail holes are prominent, giving it a rustic, yet very elegant, look. \r\n<br /><br />\r\nThe Notch Back Chair is also available Unfinished (Natural).','',1764),(1,2,'Silla del Oeste Vieja de Adirondak','La Silla del Oeste Vieja se hace a mano con madera antigua reclamada y se exhibe aquÃ­ con un final claro del mÃ¡stil. Tiene un estilo Ãºnico, occidental, apoyo delantero de la pierna. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica. \r\n<br /><br />\r\nThe Old West Chair estÃ¡ tambiÃ©n inacabado disponible (natural). <br /><br />\r\n<span class = \"checkout_featured\"> ESTILO OFRECIDO EN LA FOTO: Hogar, Acabado</span>','adirondakchairs.net/index.php?main_page=product_info&cPath=2&products_id=1&number_of_uploads=0&language=sp',461),(2,2,'Silla Santa Fe de Adirondak','La Silla de Santa Fe se hace a mano con madera antigua reclamada y se exhibe aquÃ­ con un final claro del mÃ¡stil. Tiene un diseÃ±o Ãºnico de la parte posterior de la muesca con un apoyo delantero clÃ¡sico de la pierna. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica.\r\n<br /><br />\r\nLa Silla de Santa Fe es tambiÃ©n inacabada disponible (natural).','images/',163),(3,2,'Silla Ranchero de Adirondak','La Silla Ranchero se hace a mano con madera antigua reclamada y se exhibe aquÃ­ sin un final. Como cedro, si estÃ¡ ida natural y expuesta a los elementos, la madera recobra una pÃ¡tina de madera natural, gris, resistida. Ofrece una parte posterior del ventilador de cinco listones y un apoyo delantero clÃ¡sico de la pierna. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica. \r\n<br /><br />\r\nEl Ranchero estÃ¡ tambiÃ©n disponible Acabado.','',238),(4,2,'Otomano de Adirondak','El otomano que empareja se hace a mano con la misma madera antigua que su sistema de la silla. Este otomano se demuestra con un final natural (de madera resistida). EstÃ¡ tambiÃ©n disponible con un final claro del mÃ¡stil.','',111),(5,2,'Silla Clasica de Adirondak','La Silla \"Fan Back\" ClÃ¡sica  se hace a mano con madera antigua reclamada y se exhibe aquÃ­ sin un final. Como cedro, si estÃ¡ ida natural y expuesta a los elementos, la madera recobra una pÃ¡tina de madera natural, gris, resistida. Los nudos, la granulaciÃ³n y los viejos agujeros del clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica. \r\n\r\n<br /><br />\r\n\r\nLa parte posteriora clÃ¡sica del ventilador estÃ¡ tambiÃ©n disponible acabada.','adirondakchairs.net/index.php?main_page=product_info&cPath=2&products_id=5&number_of_uploads=0&language=sp',236),(6,2,'Silla Adirondak de High Country','La Silla High Country se hace a mano con madera antigua reclamada y se exhibe aquÃ­ con un final del mÃ¡stil. Lo llamamos \"High Country\" (paÃ­s alto) porque es nuestra silla mÃ¡s alta del adirondack diseÃ±ada para las personas altas. La altura del asiento es 3 pulgadas mÃ¡s arriba que otros estilos que hacen para una salida mÃ¡s fÃ¡cil. Los nudos, la granulaciÃ³n y los viejos agujeros del clavo son prominentes, dÃ¡ndole una mirada muy rÃºstica. \r\n\r\n<br /><br />\r\n\r\nLa Silla High Country es tambiÃ©n inacabada disponible (natural).','',171),(7,2,'Silla de Notch Back Adirondak','La Silla de Notch Back se hace a mano con madera antigua reclamada y se exhibe aquÃ­ con un final claro del mÃ¡stil. Tiene un diseÃ±o trasero escalonado Ãºnico con un apoyo delantero clÃ¡sico de la pierna. Se planean el sigue habiendo todos los componentes de madera de la parte posterior de la muesca, tiempo-comprobado de la relevaciÃ³n. Los nudos, la granulaciÃ³n y los viejos agujeros de clavo son prominentes, dÃ¡ndole un rÃºstico, con todo muy elegante, mirada. \r\n<br /><br />\r\nLa Silla de NotchBack es tambiÃ©n inacabada disponible (natural).','',324);
/*!40000 ALTER TABLE `zen_products_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_discount_quantity`
--

DROP TABLE IF EXISTS `zen_products_discount_quantity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_discount_quantity` (
  `discount_id` int(4) NOT NULL DEFAULT '0',
  `products_id` int(11) NOT NULL DEFAULT '0',
  `discount_qty` float NOT NULL DEFAULT '0',
  `discount_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  KEY `idx_id_qty_zen` (`products_id`,`discount_qty`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_discount_quantity`
--

LOCK TABLES `zen_products_discount_quantity` WRITE;
/*!40000 ALTER TABLE `zen_products_discount_quantity` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_products_discount_quantity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_notifications`
--

DROP TABLE IF EXISTS `zen_products_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_notifications` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`products_id`,`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_notifications`
--

LOCK TABLES `zen_products_notifications` WRITE;
/*!40000 ALTER TABLE `zen_products_notifications` DISABLE KEYS */;
INSERT INTO `zen_products_notifications` VALUES (8,13,'2010-01-27 15:22:57');
/*!40000 ALTER TABLE `zen_products_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_options`
--

DROP TABLE IF EXISTS `zen_products_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_options` (
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_options_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_options_sort_order` int(11) NOT NULL DEFAULT '0',
  `products_options_type` int(5) NOT NULL DEFAULT '0',
  `products_options_length` smallint(2) NOT NULL DEFAULT '32',
  `products_options_comment` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_options_size` smallint(2) NOT NULL DEFAULT '32',
  `products_options_images_per_row` int(2) DEFAULT '5',
  `products_options_images_style` int(1) DEFAULT '0',
  `products_options_rows` smallint(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`products_options_id`,`language_id`),
  KEY `idx_lang_id_zen` (`language_id`),
  KEY `idx_products_options_sort_order_zen` (`products_options_sort_order`),
  KEY `idx_products_options_name_zen` (`products_options_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options`
--

LOCK TABLES `zen_products_options` WRITE;
/*!40000 ALTER TABLE `zen_products_options` DISABLE KEYS */;
INSERT INTO `zen_products_options` VALUES (2,1,'Home',0,2,32,'',32,0,0,0),(1,1,'Commercial',1,2,32,'',32,0,0,0),(2,2,'Hogar',0,2,32,'',32,0,0,1),(1,2,'Comercial',1,2,32,'',32,0,0,1),(3,2,'Finish',0,0,32,'',32,0,0,0),(3,1,'Finish',0,0,32,'',32,0,0,0);
/*!40000 ALTER TABLE `zen_products_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_options_types`
--

DROP TABLE IF EXISTS `zen_products_options_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_options_types` (
  `products_options_types_id` int(11) NOT NULL DEFAULT '0',
  `products_options_types_name` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`products_options_types_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options_types`
--

LOCK TABLES `zen_products_options_types` WRITE;
/*!40000 ALTER TABLE `zen_products_options_types` DISABLE KEYS */;
INSERT INTO `zen_products_options_types` VALUES (0,'Dropdown'),(1,'Text'),(2,'Radio'),(3,'Checkbox'),(4,'File'),(5,'Read Only');
/*!40000 ALTER TABLE `zen_products_options_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_options_values`
--

DROP TABLE IF EXISTS `zen_products_options_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_options_values` (
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_options_values_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_options_values_sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_options_values_id`,`language_id`),
  KEY `idx_products_options_values_name_zen` (`products_options_values_name`),
  KEY `idx_products_options_values_sort_order_zen` (`products_options_values_sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options_values`
--

LOCK TABLES `zen_products_options_values` WRITE;
/*!40000 ALTER TABLE `zen_products_options_values` DISABLE KEYS */;
INSERT INTO `zen_products_options_values` VALUES (0,1,'TEXT',0),(2,1,'Unfinished (Natural)',0),(1,1,'Finished',0),(3,1,'Finished',0),(4,1,'Unfinished (Natural)',0),(0,2,'TEXT',0),(2,2,'Inacabado (Natural)',0),(1,2,'Acabado',0),(3,2,'Acabado',0),(4,2,'Inacabado (Natural)',0),(6,1,'Natural (Unfinished)',3),(7,1,'Spar Finish',1),(7,2,'Spar Finish',1),(6,2,'Natural Unfinished)',3);
/*!40000 ALTER TABLE `zen_products_options_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_options_values_to_products_options`
--

DROP TABLE IF EXISTS `zen_products_options_values_to_products_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_options_values_to_products_options` (
  `products_options_values_to_products_options_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_options_values_to_products_options_id`),
  KEY `idx_products_options_id_zen` (`products_options_id`),
  KEY `idx_products_options_values_id_zen` (`products_options_values_id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options_values_to_products_options`
--

LOCK TABLES `zen_products_options_values_to_products_options` WRITE;
/*!40000 ALTER TABLE `zen_products_options_values_to_products_options` DISABLE KEYS */;
INSERT INTO `zen_products_options_values_to_products_options` VALUES (8,2,4),(7,2,3),(5,1,1),(6,1,2),(11,3,7),(10,3,6);
/*!40000 ALTER TABLE `zen_products_options_values_to_products_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_to_categories`
--

DROP TABLE IF EXISTS `zen_products_to_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_to_categories` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `categories_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_id`,`categories_id`),
  KEY `idx_cat_prod_id_zen` (`categories_id`,`products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_to_categories`
--

LOCK TABLES `zen_products_to_categories` WRITE;
/*!40000 ALTER TABLE `zen_products_to_categories` DISABLE KEYS */;
INSERT INTO `zen_products_to_categories` VALUES (1,2),(2,2),(3,2),(4,2),(5,2),(6,2),(7,2);
/*!40000 ALTER TABLE `zen_products_to_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_project_version`
--

DROP TABLE IF EXISTS `zen_project_version`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_project_version` (
  `project_version_id` tinyint(3) NOT NULL AUTO_INCREMENT,
  `project_version_key` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_major` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_minor` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_patch1` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_patch2` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_patch1_source` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_patch2_source` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_comment` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_date_applied` datetime NOT NULL DEFAULT '0001-01-01 01:01:01',
  PRIMARY KEY (`project_version_id`),
  UNIQUE KEY `idx_project_version_key_zen` (`project_version_key`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_project_version`
--

LOCK TABLES `zen_project_version` WRITE;
/*!40000 ALTER TABLE `zen_project_version` DISABLE KEYS */;
INSERT INTO `zen_project_version` VALUES (1,'Zen-Cart Main','1','3.8','','','','','Fresh Installation','2010-01-04 15:39:23'),(2,'Zen-Cart Database','1','3.8','','','','','Fresh Installation','2010-01-04 15:39:23');
/*!40000 ALTER TABLE `zen_project_version` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_project_version_history`
--

DROP TABLE IF EXISTS `zen_project_version_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_project_version_history` (
  `project_version_id` tinyint(3) NOT NULL AUTO_INCREMENT,
  `project_version_key` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_major` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_minor` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_patch` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_comment` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_date_applied` datetime NOT NULL DEFAULT '0001-01-01 01:01:01',
  PRIMARY KEY (`project_version_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_project_version_history`
--

LOCK TABLES `zen_project_version_history` WRITE;
/*!40000 ALTER TABLE `zen_project_version_history` DISABLE KEYS */;
INSERT INTO `zen_project_version_history` VALUES (1,'Zen-Cart Main','1','3.8','','Fresh Installation','2010-01-04 15:39:23'),(2,'Zen-Cart Database','1','3.8','','Fresh Installation','2010-01-04 15:39:23');
/*!40000 ALTER TABLE `zen_project_version_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_query_builder`
--

DROP TABLE IF EXISTS `zen_query_builder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_query_builder` (
  `query_id` int(11) NOT NULL AUTO_INCREMENT,
  `query_category` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `query_name` varchar(80) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `query_description` text COLLATE utf8_unicode_ci NOT NULL,
  `query_string` text COLLATE utf8_unicode_ci NOT NULL,
  `query_keys_list` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`query_id`),
  UNIQUE KEY `query_name` (`query_name`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_query_builder`
--

LOCK TABLES `zen_query_builder` WRITE;
/*!40000 ALTER TABLE `zen_query_builder` DISABLE KEYS */;
INSERT INTO `zen_query_builder` VALUES (1,'email','All Customers','Returns all customers name and email address for sending mass emails (ie: for newsletters, coupons, GVs, messages, etc).','select customers_email_address, customers_firstname, customers_lastname from TABLE_CUSTOMERS order by customers_lastname, customers_firstname, customers_email_address',''),(2,'email,newsletters','All Newsletter Subscribers','Returns name and email address of newsletter subscribers','select customers_firstname, customers_lastname, customers_email_address from TABLE_CUSTOMERS where customers_newsletter = \'1\'',''),(3,'email,newsletters','Dormant Customers (>3months) (Subscribers)','Subscribers who HAVE purchased something, but have NOT purchased for at least three months.','select o.date_purchased, c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id AND c.customers_newsletter = 1 GROUP BY c.customers_email_address HAVING max(o.date_purchased) <= subdate(now(),INTERVAL 3 MONTH) ORDER BY c.customers_lastname, c.customers_firstname ASC',''),(4,'email,newsletters','Active customers in past 3 months (Subscribers)','Newsletter subscribers who are also active customers (purchased something) in last 3 months.','select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o where c.customers_newsletter = \'1\' AND c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address order by c.customers_lastname, c.customers_firstname ASC',''),(5,'email,newsletters','Active customers in past 3 months (Regardless of subscription status)','All active customers (purchased something) in last 3 months, ignoring newsletter-subscription status.','select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address order by c.customers_lastname, c.customers_firstname ASC',''),(6,'email,newsletters','Administrator','Just the email account of the current administrator','select \'ADMIN\' as customers_firstname, admin_name as customers_lastname, admin_email as customers_email_address from TABLE_ADMIN where admin_id = $SESSION:admin_id',''),(7,'email,newsletters','Customers who have never completed a purchase','For sending newsletter to all customers who registered but have never completed a purchase','SELECT DISTINCT c.customers_email_address as customers_email_address, c.customers_lastname as customers_lastname, c.customers_firstname as customers_firstname FROM TABLE_CUSTOMERS c LEFT JOIN  TABLE_ORDERS o ON c.customers_id=o.customers_id WHERE o.date_purchased IS NULL',''),(8,'email,newsletters','Permanent Account Holders Only','Send email only to permanent account holders ','select customers_email_address, customers_firstname, customers_lastname from TABLE_CUSTOMERS where COWOA_account != 1 order by customers_lastname, customers_firstname, customers_email_address','');
/*!40000 ALTER TABLE `zen_query_builder` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_record_artists`
--

DROP TABLE IF EXISTS `zen_record_artists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_artists` (
  `artists_id` int(11) NOT NULL AUTO_INCREMENT,
  `artists_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `artists_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`artists_id`),
  KEY `idx_rec_artists_name_zen` (`artists_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_artists`
--

LOCK TABLES `zen_record_artists` WRITE;
/*!40000 ALTER TABLE `zen_record_artists` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_record_artists` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_record_artists_info`
--

DROP TABLE IF EXISTS `zen_record_artists_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_artists_info` (
  `artists_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `artists_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`artists_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_artists_info`
--

LOCK TABLES `zen_record_artists_info` WRITE;
/*!40000 ALTER TABLE `zen_record_artists_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_record_artists_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_record_company`
--

DROP TABLE IF EXISTS `zen_record_company`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_company` (
  `record_company_id` int(11) NOT NULL AUTO_INCREMENT,
  `record_company_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `record_company_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`record_company_id`),
  KEY `idx_rec_company_name_zen` (`record_company_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_company`
--

LOCK TABLES `zen_record_company` WRITE;
/*!40000 ALTER TABLE `zen_record_company` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_record_company` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_record_company_info`
--

DROP TABLE IF EXISTS `zen_record_company_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_company_info` (
  `record_company_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `record_company_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`record_company_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_company_info`
--

LOCK TABLES `zen_record_company_info` WRITE;
/*!40000 ALTER TABLE `zen_record_company_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_record_company_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_reviews`
--

DROP TABLE IF EXISTS `zen_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_reviews` (
  `reviews_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `customers_id` int(11) DEFAULT NULL,
  `customers_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `reviews_rating` int(1) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `reviews_read` int(5) NOT NULL DEFAULT '0',
  `status` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`reviews_id`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_customers_id_zen` (`customers_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_date_added_zen` (`date_added`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_reviews`
--

LOCK TABLES `zen_reviews` WRITE;
/*!40000 ALTER TABLE `zen_reviews` DISABLE KEYS */;
INSERT INTO `zen_reviews` VALUES (1,3,NULL,'Mariana Brake',4,'2010-01-11 08:37:07',NULL,456,1);
/*!40000 ALTER TABLE `zen_reviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_reviews_description`
--

DROP TABLE IF EXISTS `zen_reviews_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_reviews_description` (
  `reviews_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `reviews_text` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`reviews_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_reviews_description`
--

LOCK TABLES `zen_reviews_description` WRITE;
/*!40000 ALTER TABLE `zen_reviews_description` DISABLE KEYS */;
INSERT INTO `zen_reviews_description` VALUES (1,1,'Simple and clean.');
/*!40000 ALTER TABLE `zen_reviews_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_salemaker_sales`
--

DROP TABLE IF EXISTS `zen_salemaker_sales`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_salemaker_sales` (
  `sale_id` int(11) NOT NULL AUTO_INCREMENT,
  `sale_status` tinyint(4) NOT NULL DEFAULT '0',
  `sale_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sale_deduction_value` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_deduction_type` tinyint(4) NOT NULL DEFAULT '0',
  `sale_pricerange_from` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_pricerange_to` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_specials_condition` tinyint(4) NOT NULL DEFAULT '0',
  `sale_categories_selected` text COLLATE utf8_unicode_ci,
  `sale_categories_all` text COLLATE utf8_unicode_ci,
  `sale_date_start` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_end` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_added` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_last_modified` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_status_change` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`sale_id`),
  KEY `idx_sale_status_zen` (`sale_status`),
  KEY `idx_sale_date_start_zen` (`sale_date_start`),
  KEY `idx_sale_date_end_zen` (`sale_date_end`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_salemaker_sales`
--

LOCK TABLES `zen_salemaker_sales` WRITE;
/*!40000 ALTER TABLE `zen_salemaker_sales` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_salemaker_sales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_sessions`
--

DROP TABLE IF EXISTS `zen_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_sessions` (
  `sesskey` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  `expiry` int(11) unsigned NOT NULL DEFAULT '0',
  `value` mediumblob NOT NULL,
  PRIMARY KEY (`sesskey`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_sessions`
--

LOCK TABLES `zen_sessions` WRITE;
/*!40000 ALTER TABLE `zen_sessions` DISABLE KEYS */;
INSERT INTO `zen_sessions` VALUES ('f8b1884c52f77b944c1e41e860301edc',1368863767,_binary 'securityToken|s:32:\"4230dfba4850105f3f115b298c729b10\";customers_host_address|s:44:\"173.192.235.226-static.reverse.softlayer.com\";cartID|s:0:\"\";cart|O:12:\"shoppingCart\":8:{s:8:\"contents\";a:0:{}s:5:\"total\";i:0;s:6:\"weight\";i:0;s:12:\"content_type\";b:0;s:18:\"free_shipping_item\";i:0;s:20:\"free_shipping_weight\";i:0;s:19:\"free_shipping_price\";i:0;s:9:\"observers\";a:0:{}}navigation|O:17:\"navigationHistory\":3:{s:4:\"path\";a:1:{i:0;a:4:{s:4:\"page\";s:5:\"index\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:2:{s:9:\"amp;cPath\";s:1:\"2\";s:15:\"amp;products_id\";s:1:\"6\";}s:4:\"post\";a:0:{}}}s:8:\"snapshot\";a:0:{}s:9:\"observers\";a:0:{}}check_valid|s:4:\"true\";language|s:7:\"english\";languages_id|s:1:\"1\";languages_code|s:2:\"en\";currency|s:3:\"USD\";today_is|s:10:\"2013-05-18\";updateExpirations|b:1;session_counter|b:1;customers_ip_address|s:15:\"173.192.235.226\";'),('ab631c183dfe5870f83eb9a3eb08b0a7',1368863762,_binary 'securityToken|s:32:\"b6b2a9428854502fc0bb729701faed43\";customers_host_address|s:44:\"173.192.235.226-static.reverse.softlayer.com\";cartID|s:0:\"\";cart|O:12:\"shoppingCart\":8:{s:8:\"contents\";a:0:{}s:5:\"total\";i:0;s:6:\"weight\";i:0;s:12:\"content_type\";b:0;s:18:\"free_shipping_item\";i:0;s:20:\"free_shipping_weight\";i:0;s:19:\"free_shipping_price\";i:0;s:9:\"observers\";a:0:{}}navigation|O:17:\"navigationHistory\":3:{s:4:\"path\";a:1:{i:0;a:4:{s:4:\"page\";s:5:\"index\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:2:{s:9:\"amp;cPath\";s:1:\"2\";s:15:\"amp;products_id\";s:1:\"7\";}s:4:\"post\";a:0:{}}}s:8:\"snapshot\";a:0:{}s:9:\"observers\";a:0:{}}check_valid|s:4:\"true\";language|s:7:\"english\";languages_id|s:1:\"1\";languages_code|s:2:\"en\";currency|s:3:\"USD\";today_is|s:10:\"2013-05-18\";updateExpirations|b:1;session_counter|b:1;customers_ip_address|s:15:\"173.192.235.226\";'),('fd926716af492fe8aa3b65e254a360cd',1368863779,_binary 'securityToken|s:32:\"f11b7c6a9a876ac373200fc1423dc1fd\";customers_host_address|s:44:\"173.192.235.226-static.reverse.softlayer.com\";cartID|s:0:\"\";cart|O:12:\"shoppingCart\":8:{s:8:\"contents\";a:0:{}s:5:\"total\";i:0;s:6:\"weight\";i:0;s:12:\"content_type\";b:0;s:18:\"free_shipping_item\";i:0;s:20:\"free_shipping_weight\";i:0;s:19:\"free_shipping_price\";i:0;s:9:\"observers\";a:0:{}}navigation|O:17:\"navigationHistory\":3:{s:4:\"path\";a:1:{i:0;a:4:{s:4:\"page\";s:5:\"index\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";s:0:\"\";s:4:\"post\";a:0:{}}}s:8:\"snapshot\";a:0:{}s:9:\"observers\";a:0:{}}check_valid|s:4:\"true\";language|s:7:\"english\";languages_id|s:1:\"1\";languages_code|s:2:\"en\";currency|s:3:\"USD\";today_is|s:10:\"2013-05-18\";updateExpirations|b:1;session_counter|b:1;customers_ip_address|s:15:\"173.192.235.226\";'),('b29eed632427c24ebcc2ee151ceec0fb',1368863774,_binary 'securityToken|s:32:\"b774e79d6e5d7cf88707666e7625c9fc\";customers_host_address|s:44:\"173.192.235.226-static.reverse.softlayer.com\";cartID|s:0:\"\";cart|O:12:\"shoppingCart\":8:{s:8:\"contents\";a:0:{}s:5:\"total\";i:0;s:6:\"weight\";i:0;s:12:\"content_type\";b:0;s:18:\"free_shipping_item\";i:0;s:20:\"free_shipping_weight\";i:0;s:19:\"free_shipping_price\";i:0;s:9:\"observers\";a:0:{}}navigation|O:17:\"navigationHistory\":3:{s:4:\"path\";a:1:{i:0;a:4:{s:4:\"page\";s:5:\"index\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:2:{s:9:\"amp;cPath\";s:1:\"2\";s:15:\"amp;products_id\";s:1:\"5\";}s:4:\"post\";a:0:{}}}s:8:\"snapshot\";a:0:{}s:9:\"observers\";a:0:{}}check_valid|s:4:\"true\";language|s:7:\"english\";languages_id|s:1:\"1\";languages_code|s:2:\"en\";currency|s:3:\"USD\";today_is|s:10:\"2013-05-18\";updateExpirations|b:1;session_counter|b:1;customers_ip_address|s:15:\"173.192.235.226\";');
/*!40000 ALTER TABLE `zen_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_specials`
--

DROP TABLE IF EXISTS `zen_specials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_specials` (
  `specials_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `specials_new_products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `specials_date_added` datetime DEFAULT NULL,
  `specials_last_modified` datetime DEFAULT NULL,
  `expires_date` date NOT NULL DEFAULT '0001-01-01',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `specials_date_available` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`specials_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_date_avail_zen` (`specials_date_available`),
  KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_specials`
--

LOCK TABLES `zen_specials` WRITE;
/*!40000 ALTER TABLE `zen_specials` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_specials` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_tax_class`
--

DROP TABLE IF EXISTS `zen_tax_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_tax_class` (
  `tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_class_title` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `tax_class_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`tax_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_tax_class`
--

LOCK TABLES `zen_tax_class` WRITE;
/*!40000 ALTER TABLE `zen_tax_class` DISABLE KEYS */;
INSERT INTO `zen_tax_class` VALUES (1,'Taxable Goods','The following types of products are included: non-food, services, etc',NULL,'2010-01-04 15:39:23');
/*!40000 ALTER TABLE `zen_tax_class` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_tax_rates`
--

DROP TABLE IF EXISTS `zen_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_tax_rates` (
  `tax_rates_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_zone_id` int(11) NOT NULL DEFAULT '0',
  `tax_class_id` int(11) NOT NULL DEFAULT '0',
  `tax_priority` int(5) DEFAULT '1',
  `tax_rate` decimal(7,4) NOT NULL DEFAULT '0.0000',
  `tax_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`tax_rates_id`),
  KEY `idx_tax_zone_id_zen` (`tax_zone_id`),
  KEY `idx_tax_class_id_zen` (`tax_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_tax_rates`
--

LOCK TABLES `zen_tax_rates` WRITE;
/*!40000 ALTER TABLE `zen_tax_rates` DISABLE KEYS */;
INSERT INTO `zen_tax_rates` VALUES (1,1,1,1,7.0000,'FL TAX 7.0%','2010-01-04 15:39:23','2010-01-04 15:39:23');
/*!40000 ALTER TABLE `zen_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_template_select`
--

DROP TABLE IF EXISTS `zen_template_select`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_template_select` (
  `template_id` int(11) NOT NULL AUTO_INCREMENT,
  `template_dir` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `template_language` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`template_id`),
  KEY `idx_tpl_lang_zen` (`template_language`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_template_select`
--

LOCK TABLES `zen_template_select` WRITE;
/*!40000 ALTER TABLE `zen_template_select` DISABLE KEYS */;
INSERT INTO `zen_template_select` VALUES (1,'adk','0');
/*!40000 ALTER TABLE `zen_template_select` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_upgrade_exceptions`
--

DROP TABLE IF EXISTS `zen_upgrade_exceptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_upgrade_exceptions` (
  `upgrade_exception_id` smallint(5) NOT NULL AUTO_INCREMENT,
  `sql_file` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `reason` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `errordate` datetime DEFAULT '0001-01-01 00:00:00',
  `sqlstatement` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`upgrade_exception_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_upgrade_exceptions`
--

LOCK TABLES `zen_upgrade_exceptions` WRITE;
/*!40000 ALTER TABLE `zen_upgrade_exceptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `zen_upgrade_exceptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_whos_online`
--

DROP TABLE IF EXISTS `zen_whos_online`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_whos_online` (
  `customer_id` int(11) DEFAULT NULL,
  `full_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `session_id` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `ip_address` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `time_entry` varchar(14) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `time_last_click` varchar(14) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_page_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `host_address` text COLLATE utf8_unicode_ci NOT NULL,
  `user_agent` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  KEY `idx_ip_address_zen` (`ip_address`),
  KEY `idx_session_id_zen` (`session_id`),
  KEY `idx_customer_id_zen` (`customer_id`),
  KEY `idx_time_entry_zen` (`time_entry`),
  KEY `idx_time_last_click_zen` (`time_last_click`),
  KEY `idx_last_page_url_zen` (`last_page_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_whos_online`
--

LOCK TABLES `zen_whos_online` WRITE;
/*!40000 ALTER TABLE `zen_whos_online` DISABLE KEYS */;
INSERT INTO `zen_whos_online` VALUES (0,'&yen;Spider','','119.63.196.96','1371601486','1371601486','/index.php?main_page=page_2','119.63.196.96','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)');
/*!40000 ALTER TABLE `zen_whos_online` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_zen_upgrade_exceptions`
--

DROP TABLE IF EXISTS `zen_zen_upgrade_exceptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_zen_upgrade_exceptions` (
  `upgrade_exception_id` smallint(5) NOT NULL AUTO_INCREMENT,
  `sql_file` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `reason` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `errordate` datetime DEFAULT '0001-01-01 00:00:00',
  `sqlstatement` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`upgrade_exception_id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_zen_upgrade_exceptions`
--

LOCK TABLES `zen_zen_upgrade_exceptions` WRITE;
/*!40000 ALTER TABLE `zen_zen_upgrade_exceptions` DISABLE KEYS */;
INSERT INTO `zen_zen_upgrade_exceptions` VALUES (1,'SQLPATCH','Cannot ADD column products_epier because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_epier varchar(32) NULL default NULL after products_model;'),(2,'SQLPATCH','Cannot ADD column products_ebay because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_ebay varchar(32) NULL default NULL after products_epier;'),(3,'SQLPATCH','Cannot ADD column products_ebid because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_ebid varchar(32) NULL default NULL after products_ebay;'),(4,'SQLPATCH','Cannot ADD column products_sh_na because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_sh_na varchar(32) NULL default NULL;'),(5,'SQLPATCH','Cannot ADD column products_sh_sa because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_sh_sa varchar(32) NULL default NULL after products_sh_na;'),(6,'SQLPATCH','Cannot ADD column products_sh_eu because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_sh_eu varchar(32) NULL default NULL after products_sh_sa;'),(7,'SQLPATCH','Cannot ADD column products_sh_af because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_sh_af varchar(32) NULL default NULL after products_sh_eu;'),(8,'SQLPATCH','Cannot ADD column products_sh_as because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_sh_as varchar(32) NULL default NULL after products_sh_af;'),(9,'SQLPATCH','Cannot ADD column products_sh_au because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_sh_au varchar(32) NULL default NULL after products_sh_as;'),(10,'SQLPATCH','Cannot ADD column products_weight_type because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_weight_type ENUM(\'lbs\',\'kgs\') NOT NULL default \'kgs\' after products_weight;'),(11,'SQLPATCH','Cannot ADD column products_dim_type because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_dim_type ENUM(\'in\',\'cm\') NOT NULL default \'cm\' after products_weight_type;'),(12,'SQLPATCH','Cannot ADD column products_length because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_length DECIMAL(6,2) NULL default NULL after products_dim_type;'),(13,'SQLPATCH','Cannot ADD column products_width because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_width DECIMAL(6,2) NULL default NULL after products_length;'),(14,'SQLPATCH','Cannot ADD column products_height because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_height DECIMAL(6,2) NULL default NULL after products_width;'),(15,'SQLPATCH','Cannot ADD column products_ready_to_ship because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_ready_to_ship ENUM(\'0\',\'1\') NOT NULL default \'1\' after products_height;'),(16,'SQLPATCH','Cannot ADD column products_upc because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_upc varchar(32) NULL default NULL after products_model;'),(17,'SQLPATCH','Cannot ADD column products_isbn because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_isbn varchar(32) NULL default NULL after products_upc;'),(18,'SQLPATCH','Cannot ADD column products_category because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_category varchar(32) NULL default NULL;'),(19,'SQLPATCH','Cannot ADD column products_condition because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_condition varchar(32) NULL default NULL after products_category;'),(20,'SQLPATCH','Cannot ADD column products_EHF because it already exists.','2010-01-10 13:05:21','ALTER TABLE products ADD products_EHF varchar(100) NOT NULL default \'none\' after products_condition;');
/*!40000 ALTER TABLE `zen_zen_upgrade_exceptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_zones`
--

DROP TABLE IF EXISTS `zen_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_zones` (
  `zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `zone_country_id` int(11) NOT NULL DEFAULT '0',
  `zone_code` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `zone_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`zone_id`),
  KEY `idx_zone_country_id_zen` (`zone_country_id`),
  KEY `idx_zone_code_zen` (`zone_code`)
) ENGINE=MyISAM AUTO_INCREMENT=190 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_zones`
--

LOCK TABLES `zen_zones` WRITE;
/*!40000 ALTER TABLE `zen_zones` DISABLE KEYS */;
INSERT INTO `zen_zones` VALUES (1,223,'AL','Alabama'),(2,223,'AK','Alaska'),(3,223,'AS','American Samoa'),(4,223,'AZ','Arizona'),(5,223,'AR','Arkansas'),(6,223,'AF','Armed Forces Africa'),(7,223,'AA','Armed Forces Americas'),(8,223,'AC','Armed Forces Canada'),(9,223,'AE','Armed Forces Europe'),(10,223,'AM','Armed Forces Middle East'),(11,223,'AP','Armed Forces Pacific'),(12,223,'CA','California'),(13,223,'CO','Colorado'),(14,223,'CT','Connecticut'),(15,223,'DE','Delaware'),(16,223,'DC','District of Columbia'),(17,223,'FM','Federated States Of Micronesia'),(18,223,'FL','Florida'),(19,223,'GA','Georgia'),(20,223,'GU','Guam'),(21,223,'HI','Hawaii'),(22,223,'ID','Idaho'),(23,223,'IL','Illinois'),(24,223,'IN','Indiana'),(25,223,'IA','Iowa'),(26,223,'KS','Kansas'),(27,223,'KY','Kentucky'),(28,223,'LA','Louisiana'),(29,223,'ME','Maine'),(30,223,'MH','Marshall Islands'),(31,223,'MD','Maryland'),(32,223,'MA','Massachusetts'),(33,223,'MI','Michigan'),(34,223,'MN','Minnesota'),(35,223,'MS','Mississippi'),(36,223,'MO','Missouri'),(37,223,'MT','Montana'),(38,223,'NE','Nebraska'),(39,223,'NV','Nevada'),(40,223,'NH','New Hampshire'),(41,223,'NJ','New Jersey'),(42,223,'NM','New Mexico'),(43,223,'NY','New York'),(44,223,'NC','North Carolina'),(45,223,'ND','North Dakota'),(46,223,'MP','Northern Mariana Islands'),(47,223,'OH','Ohio'),(48,223,'OK','Oklahoma'),(49,223,'OR','Oregon'),(50,163,'PW','Palau'),(51,223,'PA','Pennsylvania'),(52,223,'PR','Puerto Rico'),(53,223,'RI','Rhode Island'),(54,223,'SC','South Carolina'),(55,223,'SD','South Dakota'),(56,223,'TN','Tennessee'),(57,223,'TX','Texas'),(58,223,'UT','Utah'),(59,223,'VT','Vermont'),(60,223,'VI','Virgin Islands'),(61,223,'VA','Virginia'),(62,223,'WA','Washington'),(63,223,'WV','West Virginia'),(64,223,'WI','Wisconsin'),(65,223,'WY','Wyoming'),(66,38,'AB','Alberta'),(67,38,'BC','British Columbia'),(68,38,'MB','Manitoba'),(69,38,'NL','Newfoundland'),(70,38,'NB','New Brunswick'),(71,38,'NS','Nova Scotia'),(72,38,'NT','Northwest Territories'),(73,38,'NU','Nunavut'),(74,38,'ON','Ontario'),(75,38,'PE','Prince Edward Island'),(76,38,'QC','Quebec'),(77,38,'SK','Saskatchewan'),(78,38,'YT','Yukon Territory'),(79,81,'NDS','Niedersachsen'),(80,81,'BAW','Baden WÃ¼rtemberg'),(81,81,'BAY','Bayern'),(82,81,'BER','Berlin'),(83,81,'BRG','Brandenburg'),(84,81,'BRE','Bremen'),(85,81,'HAM','Hamburg'),(86,81,'HES','Hessen'),(87,81,'MEC','Mecklenburg-Vorpommern'),(88,81,'NRW','Nordrhein-Westfalen'),(89,81,'RHE','Rheinland-Pfalz'),(90,81,'SAR','Saarland'),(91,81,'SAS','Sachsen'),(92,81,'SAC','Sachsen-Anhalt'),(93,81,'SCN','Schleswig-Holstein'),(94,81,'THE','Thringen'),(95,14,'WI','Wien'),(96,14,'NO','Niedersterreich'),(97,14,'OO','Obersterreich'),(98,14,'SB','Salzburg'),(99,14,'KN','KÃ¤rnten'),(100,14,'ST','Steiermark'),(101,14,'TI','Tirol'),(102,14,'BL','Burgenland'),(103,14,'VB','Voralberg'),(104,204,'AG','Aargau'),(105,204,'AI','Appenzell Innerrhoden'),(106,204,'AR','Appenzell Ausserrhoden'),(107,204,'BE','Bern'),(108,204,'BL','Basel-Landschaft'),(109,204,'BS','Basel-Stadt'),(110,204,'FR','Freiburg'),(111,204,'GE','Genf'),(112,204,'GL','Glarus'),(113,204,'JU','Graubnden'),(114,204,'JU','Jura'),(115,204,'LU','Luzern'),(116,204,'NE','Neuenburg'),(117,204,'NW','Nidwalden'),(118,204,'OW','Obwalden'),(119,204,'SG','St. Gallen'),(120,204,'SH','Schaffhausen'),(121,204,'SO','Solothurn'),(122,204,'SZ','Schwyz'),(123,204,'TG','Thurgau'),(124,204,'TI','Tessin'),(125,204,'UR','Uri'),(126,204,'VD','Waadt'),(127,204,'VS','Wallis'),(128,204,'ZG','Zug'),(129,204,'ZH','Zrich'),(130,195,'A Corua','A Corua'),(131,195,'Alava','Alava'),(132,195,'Albacete','Albacete'),(133,195,'Alicante','Alicante'),(134,195,'Almeria','Almeria'),(135,195,'Asturias','Asturias'),(136,195,'Avila','Avila'),(137,195,'Badajoz','Badajoz'),(138,195,'Baleares','Baleares'),(139,195,'Barcelona','Barcelona'),(140,195,'Burgos','Burgos'),(141,195,'Caceres','Caceres'),(142,195,'Cadiz','Cadiz'),(143,195,'Cantabria','Cantabria'),(144,195,'Castellon','Castellon'),(145,195,'Ceuta','Ceuta'),(146,195,'Ciudad Real','Ciudad Real'),(147,195,'Cordoba','Cordoba'),(148,195,'Cuenca','Cuenca'),(149,195,'Girona','Girona'),(150,195,'Granada','Granada'),(151,195,'Guadalajara','Guadalajara'),(152,195,'Guipuzcoa','Guipuzcoa'),(153,195,'Huelva','Huelva'),(154,195,'Huesca','Huesca'),(155,195,'Jaen','Jaen'),(156,195,'La Rioja','La Rioja'),(157,195,'Las Palmas','Las Palmas'),(158,195,'Leon','Leon'),(159,195,'Lleida','Lleida'),(160,195,'Lugo','Lugo'),(161,195,'Madrid','Madrid'),(162,195,'Malaga','Malaga'),(163,195,'Melilla','Melilla'),(164,195,'Murcia','Murcia'),(165,195,'Navarra','Navarra'),(166,195,'Ourense','Ourense'),(167,195,'Palencia','Palencia'),(168,195,'Pontevedra','Pontevedra'),(169,195,'Salamanca','Salamanca'),(170,195,'Santa Cruz de Tenerife','Santa Cruz de Tenerife'),(171,195,'Segovia','Segovia'),(172,195,'Sevilla','Sevilla'),(173,195,'Soria','Soria'),(174,195,'Tarragona','Tarragona'),(175,195,'Teruel','Teruel'),(176,195,'Toledo','Toledo'),(177,195,'Valencia','Valencia'),(178,195,'Valladolid','Valladolid'),(179,195,'Vizcaya','Vizcaya'),(180,195,'Zamora','Zamora'),(181,195,'Zaragoza','Zaragoza'),(182,13,'ACT','Australian Capital Territory'),(183,13,'NSW','New South Wales'),(184,13,'NT','Northern Territory'),(185,13,'QLD','Queensland'),(186,13,'SA','South Australia'),(187,13,'TAS','Tasmania'),(188,13,'VIC','Victoria'),(189,13,'WA','Western Australia');
/*!40000 ALTER TABLE `zen_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_zones_to_geo_zones`
--

DROP TABLE IF EXISTS `zen_zones_to_geo_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_zones_to_geo_zones` (
  `association_id` int(11) NOT NULL AUTO_INCREMENT,
  `zone_country_id` int(11) NOT NULL DEFAULT '0',
  `zone_id` int(11) DEFAULT NULL,
  `geo_zone_id` int(11) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`association_id`),
  KEY `idx_zones_zen` (`geo_zone_id`,`zone_country_id`,`zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_zones_to_geo_zones`
--

LOCK TABLES `zen_zones_to_geo_zones` WRITE;
/*!40000 ALTER TABLE `zen_zones_to_geo_zones` DISABLE KEYS */;
INSERT INTO `zen_zones_to_geo_zones` VALUES (1,223,18,1,NULL,'2010-01-04 15:39:23');
/*!40000 ALTER TABLE `zen_zones_to_geo_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'adironda_zc1'
--

--
-- Dumping routines for database 'adironda_zc1'
--
/*!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 2026-05-10 13:56:54
