-- MySQL dump 10.13  Distrib 5.1.30, for pc-linux-gnu (i686)
--
-- Host: localhost    Database: newmedia_zc6
-- ------------------------------------------------------
-- Server version	5.1.30

/*!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`;
SET @saved_cs_client     = @@character_set_client;
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=41 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 (1,1,'',NULL,'Karen','Beardsley','29 Persoonia Lane','','4562','Doonan','',13,185),(19,19,'',NULL,'Sugiartha','Ida Bagus Made','Jl Raya Padang Galak','','888888','Denpasar','Bali',100,0),(4,4,'',NULL,'Steve','Beardsley','29 Persoonia Lane','','4562','Doonan','',13,185),(17,17,'',NULL,'Mark','New','po box 777','','4563','Cooroy','',13,185),(18,18,'',NULL,'Debra','Lefkowitz','157 Duke Road','','4562','Doonan','',13,185),(20,20,'',NULL,'Audrey','Johnson','P O Box 61','','4562','Eumundi','',13,185),(21,21,'',NULL,'Katy','Alder','9 Falcon Crescent','','4563','Cooroy','',13,185),(22,22,'',NULL,'David','Coorey','11 Bogan Street','Albion','4010','Brisbane','',13,185),(23,23,'',NULL,'Denise','Daffara','17 Satinwood Place','','4557','Mountain Creek','',13,185),(24,24,'',NULL,'Jan','Carlson','1786 Sandy Ck Road','Downsfield','5470','gympie','',13,185),(25,25,'',NULL,'Dawn','Glynn','Clifden Gorge Road','Eastern Bush no 2RD Otautau','9653','Invercargill','Southland',153,0),(26,26,'',NULL,'rose','harrison','4 bathurst street','gymea','2227','sydney','',13,183),(27,27,'',NULL,'Kelli','Mac','65 Neeraway Road','','4562','Eerwah Vale','',13,185),(28,28,'',NULL,'Ron','Weideman','27 Wren St','','4007','Ascot','',13,185),(29,29,'',NULL,'Ellen','Stapleton','11 Trundle St','','4051','Brisbane','',13,185),(30,30,'',NULL,'Bron','Hayes','1/9 Sunseeker Close','Noosaville','4566','4566','',13,185),(31,31,'',NULL,'Sandra','Kruc k','386 Western Avenue','PO Box 161','4560','Montville','',13,185),(32,32,'',NULL,'Emma','Geddes','68 Nyes Cres','','4556','Buderim','',13,185),(33,33,'',NULL,'Sue','Fraser','31 Blackmores Road','','2477','Alstonville','',13,183),(34,34,'',NULL,'Jackie','Pataki','11 Dixon St','','3144','Malvern','',13,188),(35,35,'',NULL,'Mary','Greenwood','Unit 247','21 Walters Street','4670','Bundaberg North','',13,185),(36,36,'',NULL,'Lauren','Rushton','xxxxx','','2250','Matcham','',13,183),(37,37,'',NULL,'Catherine','Ciccotto','12 Hay St','','4565','Tewantin','',13,185),(38,38,'',NULL,'Louise','Rottier','unit 3404, 923 David Low Way','','4564','Marcoola','',13,185),(39,39,'',NULL,'Tracey','Sterling','P. O. Box 1257','','4565','Tewantin','',13,185),(40,40,'',NULL,'BERNADETTE','Lack','652Tallebudgera Ck Rd','Tallebudgera Valley','4228','Gold Coast','',13,185);
/*!40000 ALTER TABLE `zen_address_book` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_address_format`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 (1,'hggaller','mark@newmediastudio.com.au','ab3d9766cc77a2ccda7ae801450d1365:0f',1),(2,'nms','mark@newmediastudio.com.au','fcfc6a772e6636094a24bf5de70309b4:45',1),(3,'concept','mark@newmediastudio.com.au','6aa06d579f30911c525c189a8b3aab12:72',1),(10,'otaoda','admin@localhost','351683ea4e19efe34874b501fdbf9792:9b',1);
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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=16524 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 (14557,'2009-12-04 00:59:20',1,'store_manager.php','','124.148.45.194'),(14558,'2009-12-04 01:01:06',0,'login.php ','','124.148.55.45'),(14559,'2009-12-04 02:11:44',1,'logoff.php','','124.148.45.194'),(14560,'2009-12-04 02:11:45',0,'login.php ','','124.148.45.194'),(14561,'2009-12-04 02:35:47',0,'login.php ','','124.148.55.45'),(14562,'2009-12-04 02:35:49',0,'login.php ','','124.148.55.45'),(14563,'2009-12-04 02:47:50',0,'login.php ','','124.148.55.45'),(14564,'2009-12-04 06:13:42',0,'login.php ','','124.148.55.45'),(14565,'2009-12-04 17:29:40',0,'login.php ','','124.148.45.194'),(14566,'2009-12-04 22:12:29',0,'login.php hggaller','','124.148.45.194'),(14567,'2009-12-04 22:12:48',1,'categories.php','','124.148.45.194'),(14568,'2009-12-04 22:12:53',1,'categories.php','cPath=5&','124.148.45.194'),(14569,'2009-12-04 22:13:07',1,'categories.php','cPath=5&cID=113&action=move_category&','124.148.45.194'),(14570,'2009-12-04 22:13:23',1,'categories.php','action=move_category_confirm&cPath=5&','124.148.45.194'),(14571,'2009-12-04 22:13:24',1,'categories.php','cPath=96&','124.148.45.194'),(14572,'2009-12-04 22:16:58',1,'categories.php','cPath=95&','124.148.45.194'),(14573,'2009-12-04 22:17:05',1,'categories.php','cPath=6&','124.148.45.194'),(14574,'2009-12-04 22:17:16',1,'categories.php','cPath=6&cID=95&action=edit_category&','124.148.45.194'),(14575,'2009-12-04 22:21:19',1,'categories.php','cPath=6&cID=95&','124.148.45.194'),(14576,'2009-12-04 22:21:34',1,'categories.php','cPath=113&','124.148.45.194'),(14577,'2009-12-04 22:21:42',1,'categories.php','cPath=96&','124.148.45.194'),(14578,'2009-12-04 22:21:46',1,'categories.php','cPath=96&cID=113&action=edit_category&','124.148.45.194'),(14579,'2009-12-04 22:22:19',1,'categories.php','cPath=96&cID=113&','124.148.45.194'),(14580,'2009-12-04 22:22:29',1,'categories.php','cPath=6&','124.148.45.194'),(14581,'2009-12-04 22:22:36',1,'categories.php','cPath=6&cID=95&action=edit_category&','124.148.45.194'),(14582,'2009-12-04 23:08:49',1,'categories.php','action=update_category&cPath=6&','124.148.45.194'),(14583,'2009-12-04 23:09:52',1,'categories.php','action=update_category&cPath=6&','124.148.45.194'),(14584,'2009-12-04 23:09:53',1,'categories.php','cPath=6&cID=95&','124.148.45.194'),(14585,'2009-12-04 23:11:05',1,'categories.php','cPath=6&cID=95&action=edit_category&','124.148.45.194'),(14586,'2009-12-04 23:11:36',1,'categories.php','action=update_category&cPath=6&','124.148.45.194'),(14587,'2009-12-04 23:11:37',1,'categories.php','cPath=6&cID=95&','124.148.45.194'),(14588,'2009-12-04 23:11:43',1,'categories.php','cPath=6_95&','124.148.45.194'),(14589,'2009-12-04 23:11:52',1,'categories.php','cPath=6&cID=95&','124.148.45.194'),(14590,'2009-12-04 23:11:57',1,'categories.php','cPath=6&cID=95&action=edit_category&','124.148.45.194'),(14591,'2009-12-04 23:14:41',1,'categories.php','action=update_category&cPath=6&','124.148.45.194'),(14592,'2009-12-04 23:14:41',1,'categories.php','cPath=6&cID=95&','124.148.45.194'),(14593,'2009-12-04 23:15:27',1,'categories.php','cPath=6&cID=95&action=edit_category&','124.148.45.194'),(14594,'2009-12-04 23:17:57',1,'categories.php','cPath=6&cID=95&','124.148.45.194'),(14595,'2009-12-04 23:18:03',1,'categories.php','cPath=6&cID=95&action=edit_category&','124.148.45.194'),(14596,'2009-12-04 23:18:54',1,'categories.php','action=update_category&cPath=6&','124.148.45.194'),(14597,'2009-12-04 23:18:54',1,'categories.php','cPath=6&cID=95&','124.148.45.194'),(14598,'2009-12-04 23:19:21',1,'categories.php','cPath=6&cID=95&action=edit_category&','124.148.45.194'),(14599,'2009-12-04 23:19:47',1,'categories.php','action=update_category&cPath=6&','124.148.45.194'),(14600,'2009-12-04 23:19:48',1,'categories.php','cPath=6&cID=95&','124.148.45.194'),(14601,'2009-12-04 23:20:13',1,'categories.php','cPath=6&cID=95&action=move_category&','124.148.45.194'),(14602,'2009-12-04 23:20:25',1,'categories.php','cPath=5&','124.148.45.194'),(14603,'2009-12-04 23:20:58',1,'categories.php','cPath=6&','124.148.45.194'),(14604,'2009-12-04 23:21:06',1,'categories.php','cPath=6&cID=95&action=move_category&','124.148.45.194'),(14605,'2009-12-04 23:21:17',1,'categories.php','action=move_category_confirm&cPath=6&','124.148.45.194'),(14606,'2009-12-04 23:21:18',1,'categories.php','cPath=5&','124.148.45.194'),(14607,'2009-12-04 23:22:54',1,'categories.php','cPath=5&cID=95&action=edit_category&','124.148.45.194'),(14608,'2009-12-04 23:23:10',1,'categories.php','action=update_category&cPath=5&','124.148.45.194'),(14609,'2009-12-04 23:23:10',1,'categories.php','cPath=5&cID=95&','124.148.45.194'),(14610,'2009-12-04 23:24:39',1,'categories.php','cPath=96&','124.148.45.194'),(14611,'2009-12-04 23:24:44',1,'categories.php','cPath=96&cID=82&action=edit_category&','124.148.45.194'),(14612,'2009-12-04 23:27:58',1,'categories.php','cPath=96&cID=82&','124.148.45.194'),(14613,'2009-12-04 23:28:03',1,'categories.php','cPath=96&cID=113&action=edit_category&','124.148.45.194'),(14614,'2009-12-04 23:28:19',1,'categories.php','cPath=96&cID=113&','124.148.45.194'),(14615,'2009-12-04 23:28:25',1,'categories.php','cPath=5&','124.148.45.194'),(14616,'2009-12-04 23:28:27',1,'categories.php','cPath=5&cID=95&action=edit_category&','124.148.45.194'),(14617,'2009-12-04 23:29:06',1,'categories.php','action=update_category&cPath=5&','124.148.45.194'),(14618,'2009-12-04 23:29:06',1,'categories.php','cPath=5&cID=95&','124.148.45.194'),(14619,'2009-12-04 23:54:11',1,'categories.php','cPath=96&','124.148.45.194'),(14620,'2009-12-04 23:54:18',1,'categories.php','cPath=96&cID=55&action=edit_category&','124.148.45.194'),(14621,'2009-12-04 23:56:04',1,'categories.php','','124.148.45.194'),(14622,'2009-12-04 23:56:11',1,'categories.php','cPath=4&','124.148.45.194'),(14623,'2009-12-04 23:56:17',1,'categories.php','cPath=4_96&','124.148.45.194'),(14624,'2009-12-04 23:56:22',1,'categories.php','cPath=4_96&cID=113&action=edit_category&','124.148.45.194'),(14625,'2009-12-04 23:56:46',1,'categories.php','cPath=4_96&cID=113&','124.148.45.194'),(14626,'2009-12-04 23:57:04',1,'categories.php','action=update_category&cPath=96&','124.148.45.194'),(14627,'2009-12-04 23:57:05',1,'categories.php','cPath=96&cID=55&','124.148.45.194'),(14628,'2009-12-04 23:57:11',1,'categories.php','cPath=96_55&','124.148.45.194'),(14629,'2009-12-04 23:57:18',1,'categories.php','cPath=96&cID=55&action=edit_category&','124.148.45.194'),(14630,'2009-12-04 23:57:46',1,'categories.php','action=update_category&cPath=96&','124.148.45.194'),(14631,'2009-12-04 23:57:46',1,'categories.php','cPath=96&cID=55&','124.148.45.194'),(14632,'2009-12-04 23:58:00',1,'categories.php','cPath=6&','124.148.45.194'),(14633,'2009-12-04 23:58:05',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.45.194'),(14634,'2009-12-05 00:13:23',1,'categories.php','action=update_category&cPath=6&','124.148.45.194'),(14635,'2009-12-05 00:13:23',1,'categories.php','cPath=6&cID=83&','124.148.45.194'),(14636,'2009-12-05 00:14:30',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.45.194'),(14637,'2009-12-05 00:14:54',1,'categories.php','action=update_category&cPath=6&','124.148.45.194'),(14638,'2009-12-05 00:14:55',1,'categories.php','cPath=6&cID=83&','124.148.45.194'),(14639,'2009-12-05 00:15:26',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.45.194'),(14640,'2009-12-05 00:16:11',1,'categories.php','action=update_category&cPath=6&','124.148.45.194'),(14641,'2009-12-05 00:16:11',1,'categories.php','cPath=6&cID=83&','124.148.45.194'),(14642,'2009-12-05 00:17:06',1,'categories.php','cPath=5&','124.148.45.194'),(14643,'2009-12-05 00:17:52',1,'categories.php','cPath=7&','124.148.45.194'),(14644,'2009-12-05 00:17:57',1,'categories.php','cPath=7&action=new_category&','124.148.45.194'),(14645,'2009-12-05 00:23:42',1,'categories.php','action=insert_category&cPath=7&','124.148.45.194'),(14646,'2009-12-05 00:23:42',1,'categories.php','cPath=7&cID=123&','124.148.45.194'),(14647,'2009-12-05 00:23:50',1,'categories.php','cPath=7&cID=8&action=edit_category&','124.148.45.194'),(14648,'2009-12-05 00:24:22',1,'categories.php','cPath=7&cID=8&','124.148.45.194'),(14649,'2009-12-05 00:30:58',1,'categories.php','cPath=7&cID=123&action=edit_category&','124.148.45.194'),(14650,'2009-12-05 00:35:10',1,'categories.php','action=update_category&cPath=7&','124.148.45.194'),(14651,'2009-12-05 00:35:25',1,'categories.php','cPath=7&cID=123&action=edit_category&','124.148.45.194'),(14652,'2009-12-05 00:35:54',1,'categories.php','action=update_category&cPath=7&','124.148.45.194'),(14653,'2009-12-05 00:35:54',1,'categories.php','cPath=7&cID=123&','124.148.45.194'),(14654,'2009-12-05 00:35:58',1,'logoff.php','','124.148.45.194'),(14655,'2009-12-05 00:35:58',0,'login.php ','','124.148.45.194'),(14656,'2009-12-05 00:36:51',0,'login.php ','','124.148.45.194'),(14657,'2009-12-05 00:37:16',0,'login.php hggaller','','124.148.45.194'),(14658,'2009-12-05 00:37:21',1,'categories.php','','124.148.45.194'),(14659,'2009-12-05 00:37:25',1,'categories.php','cPath=7&','124.148.45.194'),(14660,'2009-12-05 00:37:30',1,'categories.php','cPath=7_123&','124.148.45.194'),(14661,'2009-12-05 00:37:36',1,'categories.php','cPath=7&cID=123&action=edit_category&','124.148.45.194'),(14662,'2009-12-05 00:39:10',1,'categories.php','action=update_category&cPath=7&','124.148.45.194'),(14663,'2009-12-05 00:39:16',1,'categories.php','cPath=7&cID=123&action=edit_category&','124.148.45.194'),(14664,'2009-12-05 00:40:10',1,'categories.php','action=update_category&cPath=7&','124.148.45.194'),(14665,'2009-12-05 00:40:18',1,'categories.php','cPath=7&cID=123&action=edit_category&','124.148.45.194'),(14666,'2009-12-05 00:41:40',1,'categories.php','action=update_category&cPath=7&','124.148.45.194'),(14667,'2009-12-05 00:41:41',1,'categories.php','cPath=7&cID=123&','124.148.45.194'),(14668,'2009-12-05 00:42:12',1,'categories.php','cPath=7&cID=123&action=edit_category&','124.148.45.194'),(14669,'2009-12-05 00:42:39',1,'categories.php','action=update_category&cPath=7&','124.148.45.194'),(14670,'2009-12-05 00:42:39',1,'categories.php','cPath=7&cID=123&','124.148.45.194'),(14671,'2009-12-05 00:43:17',1,'logoff.php','','124.148.45.194'),(14672,'2009-12-05 00:43:18',0,'login.php ','','124.148.45.194'),(14673,'2009-12-05 02:32:28',0,'login.php ','','124.148.55.45'),(14674,'2009-12-05 02:35:32',0,'login.php ','','124.148.55.45'),(14675,'2009-12-05 04:29:26',0,'login.php ','','124.148.55.45'),(14676,'2009-12-05 04:51:42',0,'login.php ','','124.148.55.45'),(14677,'2009-12-05 05:19:44',0,'login.php ','','124.148.55.45'),(14678,'2009-12-05 06:07:41',0,'login.php ','','124.148.55.45'),(14679,'2009-12-05 16:18:59',0,'login.php ','','124.148.55.45'),(14680,'2009-12-05 16:20:28',0,'login.php ','','124.148.55.45'),(14681,'2009-12-05 16:22:50',0,'login.php ','','124.148.55.45'),(14682,'2009-12-05 21:43:39',0,'login.php ','','124.148.55.45'),(14683,'2009-12-05 22:13:22',0,'login.php ','','124.148.55.45'),(14684,'2009-12-05 22:32:50',0,'login.php ','','124.148.55.45'),(14685,'2009-12-05 23:07:03',0,'login.php ','','124.148.55.45'),(14686,'2009-12-06 15:58:03',0,'login.php ','','124.148.55.45'),(14687,'2009-12-06 21:51:39',0,'login.php ','','124.148.55.45'),(14688,'2009-12-06 22:22:44',0,'login.php ','','124.148.55.45'),(14689,'2009-12-07 00:12:59',0,'login.php ','','124.148.55.45'),(14690,'2009-12-07 00:27:17',0,'login.php ','','124.148.55.45'),(14691,'2009-12-07 01:14:37',0,'login.php ','','124.148.55.45'),(14692,'2009-12-07 01:34:13',0,'login.php ','','124.148.55.45'),(14693,'2009-12-07 04:41:18',0,'login.php ','','124.148.55.45'),(14694,'2009-12-07 05:01:32',0,'login.php ','','124.148.55.45'),(14695,'2009-12-07 05:01:33',0,'login.php ','','124.148.55.45'),(14696,'2009-12-07 05:10:04',0,'login.php ','','124.148.55.45'),(14697,'2009-12-07 15:55:52',0,'login.php ','','124.148.55.45'),(14698,'2009-12-07 15:55:52',0,'login.php ','','124.148.55.45'),(14699,'2009-12-07 16:01:46',0,'login.php ','','124.148.55.45'),(14700,'2009-12-07 17:17:10',0,'login.php ','','124.148.55.45'),(14701,'2009-12-07 17:59:45',0,'login.php ','','124.148.55.45'),(14702,'2009-12-07 19:54:50',0,'password_forgotten.php ','','95.211.27.5'),(14703,'2009-12-07 19:54:51',0,'login.php ','','95.211.27.5'),(14704,'2009-12-07 19:54:52',0,'login.php ','','95.211.27.5'),(14705,'2009-12-07 19:54:53',0,'login.php ','','95.211.27.5'),(14706,'2009-12-07 19:54:53',0,'login.php ','','95.211.27.5'),(14707,'2009-12-07 19:54:55',0,'login.php ','','95.211.27.5'),(14708,'2009-12-07 19:54:56',0,'login.php ','','95.211.27.5'),(14709,'2009-12-07 19:54:56',0,'login.php ','','95.211.27.5'),(14710,'2009-12-07 19:54:57',0,'login.php ','','95.211.27.5'),(14711,'2009-12-07 19:54:58',0,'login.php ','','95.211.27.5'),(14712,'2009-12-07 19:54:59',0,'login.php ','','95.211.27.5'),(14713,'2009-12-07 20:41:36',0,'login.php ','','124.148.55.45'),(14714,'2009-12-08 03:13:57',0,'login.php ','','124.148.55.45'),(14715,'2009-12-08 04:04:50',0,'login.php ','','124.148.55.45'),(14716,'2009-12-09 06:51:36',0,'login.php ','','124.148.55.45'),(14717,'2009-12-09 17:41:02',0,'login.php ','','124.148.55.45'),(14718,'2009-12-09 17:41:02',0,'login.php ','','124.148.55.45'),(14719,'2009-12-10 15:40:27',0,'login.php ','','124.148.55.45'),(14720,'2009-12-10 15:40:27',0,'login.php ','','124.148.55.45'),(14721,'2009-12-10 15:40:29',0,'login.php ','','124.148.55.45'),(14722,'2009-12-10 15:59:39',0,'login.php ','','124.148.55.45'),(14723,'2009-12-10 16:16:48',0,'login.php ','','124.148.55.45'),(14724,'2009-12-10 17:12:39',0,'login.php ','','124.148.55.45'),(14725,'2009-12-10 20:50:37',0,'login.php ','','124.148.55.45'),(14726,'2009-12-10 20:50:38',0,'login.php ','','124.148.55.45'),(14727,'2009-12-11 17:04:37',0,'login.php ','','124.148.45.194'),(14728,'2009-12-12 05:43:55',0,'login.php ','','124.148.55.45'),(14729,'2009-12-12 05:59:56',0,'login.php ','','124.148.55.45'),(14730,'2009-12-12 06:13:26',0,'login.php ','','124.148.55.45'),(14731,'2009-12-12 17:47:36',0,'login.php ','','124.148.55.45'),(14732,'2009-12-12 21:04:53',0,'login.php ','','124.148.55.45'),(14733,'2009-12-12 21:05:12',0,'login.php ','','124.148.55.45'),(14734,'2009-12-12 22:05:23',0,'login.php ','','124.148.55.45'),(14735,'2009-12-12 22:49:31',0,'login.php ','','124.148.55.45'),(14736,'2009-12-13 01:35:59',0,'login.php ','','124.148.55.45'),(14737,'2009-12-13 01:39:56',0,'login.php ','','124.148.55.45'),(14738,'2009-12-13 01:57:09',0,'login.php ','','124.148.55.45'),(14739,'2009-12-13 02:06:47',0,'login.php ','','124.148.55.45'),(14740,'2009-12-13 02:07:01',0,'login.php ','','124.148.55.45'),(14741,'2009-12-13 02:07:51',0,'login.php ','','124.148.55.45'),(14742,'2009-12-13 02:29:12',0,'login.php ','','124.148.55.45'),(14743,'2009-12-13 02:42:09',0,'login.php ','','124.148.55.45'),(14744,'2009-12-13 04:24:59',0,'login.php ','','124.148.55.45'),(14745,'2009-12-13 04:25:16',0,'login.php ','','124.148.55.45'),(14746,'2009-12-13 16:40:50',0,'login.php ','','124.148.55.45'),(14747,'2009-12-13 19:22:11',0,'login.php ','','124.148.55.45'),(14748,'2009-12-13 19:32:12',0,'login.php ','','124.148.55.45'),(14749,'2009-12-13 20:03:28',0,'login.php ','','124.148.55.45'),(14750,'2009-12-13 20:11:55',0,'login.php ','','124.148.55.45'),(14751,'2009-12-13 20:14:26',0,'login.php ','','124.148.55.45'),(14752,'2009-12-14 06:49:44',0,'login.php ','','124.148.55.45'),(14753,'2009-12-14 18:42:54',0,'login.php ','','124.148.55.45'),(14754,'2009-12-14 20:12:56',0,'login.php ','','124.148.55.45'),(14755,'2009-12-15 03:59:01',0,'login.php ','','124.148.55.45'),(14756,'2009-12-15 06:45:07',0,'login.php hggaller','','124.148.55.45'),(14757,'2009-12-15 06:45:36',1,'categories.php','','124.148.55.45'),(14758,'2009-12-15 06:45:47',1,'categories.php','cPath=6&','124.148.55.45'),(14759,'2009-12-15 06:45:52',1,'categories.php','cPath=6_83&','124.148.55.45'),(14760,'2009-12-15 06:45:58',1,'product.php','page=1&product_type=1&cPath=6_83&pID=504&action=new_product&','124.148.55.45'),(14761,'2009-12-15 08:15:11',1,'product.php','cPath=6_83&product_type=1&pID=504&action=new_product_preview&page=1&','124.148.55.45'),(14762,'2009-12-15 08:15:51',1,'product.php','cPath=6_83&product_type=1&pID=504&action=update_product&page=1&','124.148.55.45'),(14763,'2009-12-15 08:15:53',1,'categories.php','cPath=6_83&pID=504&page=1&','124.148.55.45'),(14764,'2009-12-15 08:18:04',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=72&y=6&','124.148.55.45'),(14765,'2009-12-15 08:18:05',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=72&y=6&','124.148.55.45'),(14766,'2009-12-15 08:29:30',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14767,'2009-12-15 08:29:41',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14768,'2009-12-15 08:29:42',1,'categories.php','cPath=6_83&pID=655&','124.148.55.45'),(14769,'2009-12-15 08:29:49',1,'categories.php','action=setflag&flag=0&pID=655&cPath=6_83&page=1&','124.148.55.45'),(14770,'2009-12-15 08:29:51',1,'categories.php','cPath=6_83&pID=655&page=1&','124.148.55.45'),(14771,'2009-12-15 08:30:08',1,'product.php','page=1&product_type=1&cPath=6_83&pID=504&action=new_product&','124.148.55.45'),(14772,'2009-12-15 08:30:44',1,'product.php','cPath=6_83&product_type=1&pID=504&action=new_product_preview&page=1&','124.148.55.45'),(14773,'2009-12-15 08:30:51',1,'product.php','cPath=6_83&product_type=1&pID=504&action=update_product&page=1&','124.148.55.45'),(14774,'2009-12-15 08:30:52',1,'categories.php','cPath=6_83&pID=504&page=1&','124.148.55.45'),(14775,'2009-12-15 08:30:59',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=65&y=11&','124.148.55.45'),(14776,'2009-12-15 08:31:00',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=65&y=11&','124.148.55.45'),(14777,'2009-12-15 08:35:04',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14778,'2009-12-15 08:36:07',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14779,'2009-12-15 08:36:07',1,'categories.php','cPath=6_83&pID=656&','124.148.55.45'),(14780,'2009-12-15 08:36:12',1,'categories.php','action=setflag&flag=0&pID=656&cPath=6_83&page=1&','124.148.55.45'),(14781,'2009-12-15 08:36:13',1,'categories.php','cPath=6_83&pID=656&page=1&','124.148.55.45'),(14782,'2009-12-15 08:36:54',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=83&y=10&','124.148.55.45'),(14783,'2009-12-15 08:36:55',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=83&y=10&','124.148.55.45'),(14784,'2009-12-15 08:44:03',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14785,'2009-12-15 08:44:10',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14786,'2009-12-15 08:44:11',1,'categories.php','cPath=6_83&pID=657&','124.148.55.45'),(14787,'2009-12-15 08:44:16',1,'categories.php','action=setflag&flag=0&pID=657&cPath=6_83&page=1&','124.148.55.45'),(14788,'2009-12-15 08:44:17',1,'categories.php','cPath=6_83&pID=657&page=1&','124.148.55.45'),(14789,'2009-12-15 08:50:01',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=65&y=13&','124.148.55.45'),(14790,'2009-12-15 08:50:02',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=65&y=13&','124.148.55.45'),(14791,'2009-12-15 08:55:22',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14792,'2009-12-15 08:55:33',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14793,'2009-12-15 08:55:35',1,'categories.php','cPath=6_83&pID=658&','124.148.55.45'),(14794,'2009-12-15 08:55:42',1,'categories.php','action=setflag&flag=0&pID=658&cPath=6_83&page=1&','124.148.55.45'),(14795,'2009-12-15 08:55:43',1,'categories.php','cPath=6_83&pID=658&page=1&','124.148.55.45'),(14796,'2009-12-15 08:58:44',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=57&y=10&','124.148.55.45'),(14797,'2009-12-15 08:58:45',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=57&y=10&','124.148.55.45'),(14798,'2009-12-15 09:00:31',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14799,'2009-12-15 09:00:43',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14800,'2009-12-15 09:00:44',1,'categories.php','cPath=6_83&pID=659&','124.148.55.45'),(14801,'2009-12-15 09:00:49',1,'categories.php','action=setflag&flag=0&pID=659&cPath=6_83&page=1&','124.148.55.45'),(14802,'2009-12-15 09:00:51',1,'categories.php','cPath=6_83&pID=659&page=1&','124.148.55.45'),(14803,'2009-12-15 09:01:07',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=80&y=12&','124.148.55.45'),(14804,'2009-12-15 09:01:08',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=80&y=12&','124.148.55.45'),(14805,'2009-12-15 09:02:57',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14806,'2009-12-15 09:03:03',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14807,'2009-12-15 09:03:04',1,'categories.php','cPath=6_83&pID=660&','124.148.55.45'),(14808,'2009-12-15 09:03:08',1,'categories.php','action=setflag&flag=0&pID=660&cPath=6_83&page=1&','124.148.55.45'),(14809,'2009-12-15 09:03:09',1,'categories.php','cPath=6_83&pID=660&page=1&','124.148.55.45'),(14810,'2009-12-15 09:04:27',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=54&y=13&','124.148.55.45'),(14811,'2009-12-15 09:04:29',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=54&y=13&','124.148.55.45'),(14812,'2009-12-15 09:12:55',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14813,'2009-12-15 09:13:14',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14814,'2009-12-15 09:13:19',1,'categories.php','cPath=6_83&pID=661&','124.148.55.45'),(14815,'2009-12-15 09:15:24',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=51&y=14&','124.148.55.45'),(14816,'2009-12-15 09:15:25',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=51&y=14&','124.148.55.45'),(14817,'2009-12-15 09:17:57',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14818,'2009-12-15 09:18:07',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14819,'2009-12-15 09:18:09',1,'categories.php','cPath=6_83&pID=662&','124.148.55.45'),(14820,'2009-12-15 09:18:26',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=38&y=5&','124.148.55.45'),(14821,'2009-12-15 09:18:28',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=38&y=5&','124.148.55.45'),(14822,'2009-12-15 09:20:11',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14823,'2009-12-15 09:20:21',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14824,'2009-12-15 09:20:22',1,'categories.php','cPath=6_83&pID=663&','124.148.55.45'),(14825,'2009-12-15 09:20:27',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=44&y=11&','124.148.55.45'),(14826,'2009-12-15 09:20:27',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=44&y=11&','124.148.55.45'),(14827,'2009-12-15 09:21:42',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14828,'2009-12-15 09:21:51',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14829,'2009-12-15 09:21:52',1,'categories.php','cPath=6_83&pID=664&','124.148.55.45'),(14830,'2009-12-15 09:21:59',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=65&y=6&','124.148.55.45'),(14831,'2009-12-15 09:22:00',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=65&y=6&','124.148.55.45'),(14832,'2009-12-15 09:23:27',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14833,'2009-12-15 09:23:45',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14834,'2009-12-15 09:23:46',1,'categories.php','cPath=6_83&pID=665&','124.148.55.45'),(14835,'2009-12-15 09:23:55',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=70&y=12&','124.148.55.45'),(14836,'2009-12-15 09:23:56',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=70&y=12&','124.148.55.45'),(14837,'2009-12-15 09:25:24',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14838,'2009-12-15 09:25:31',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14839,'2009-12-15 09:25:32',1,'categories.php','cPath=6_83&pID=666&','124.148.55.45'),(14840,'2009-12-15 09:25:39',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=35&y=11&','124.148.55.45'),(14841,'2009-12-15 09:25:40',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=35&y=11&','124.148.55.45'),(14842,'2009-12-15 09:26:48',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14843,'2009-12-15 09:26:57',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14844,'2009-12-15 09:26:58',1,'categories.php','cPath=6_83&pID=667&','124.148.55.45'),(14845,'2009-12-15 09:27:05',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=34&y=6&','124.148.55.45'),(14846,'2009-12-15 09:27:05',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=34&y=6&','124.148.55.45'),(14847,'2009-12-15 09:28:19',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14848,'2009-12-15 09:28:29',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14849,'2009-12-15 09:28:31',1,'categories.php','cPath=6_83&pID=668&','124.148.55.45'),(14850,'2009-12-15 09:28:44',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=42&y=10&','124.148.55.45'),(14851,'2009-12-15 09:28:45',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=42&y=10&','124.148.55.45'),(14852,'2009-12-15 09:29:54',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14853,'2009-12-15 09:30:03',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14854,'2009-12-15 09:30:04',1,'categories.php','cPath=6_83&pID=669&','124.148.55.45'),(14855,'2009-12-15 09:30:11',1,'categories.php','product_type=1&cPath=6_83&action=new_product&x=33&y=12&','124.148.55.45'),(14856,'2009-12-15 09:30:13',1,'product.php','product_type=1&cPath=6_83&action=new_product&x=33&y=12&','124.148.55.45'),(14857,'2009-12-15 09:31:36',1,'product.php','cPath=6_83&product_type=1&action=new_product_preview&','124.148.55.45'),(14858,'2009-12-15 09:31:44',1,'product.php','cPath=6_83&product_type=1&action=insert_product&','124.148.55.45'),(14859,'2009-12-15 09:31:48',1,'categories.php','cPath=6_83&pID=670&','124.148.55.45'),(14860,'2009-12-15 09:31:55',1,'product.php','cPath=6_83&product_type=1&pID=670&action=new_product&','124.148.55.45'),(14861,'2009-12-15 09:32:17',1,'product.php','cPath=6_83&product_type=1&pID=670&action=new_product_preview&','124.148.55.45'),(14862,'2009-12-15 09:32:25',1,'product.php','cPath=6_83&product_type=1&pID=670&action=update_product&','124.148.55.45'),(14863,'2009-12-15 09:32:49',1,'product.php','cPath=6_83&product_type=1&pID=670&action=new_product_preview&','124.148.55.45'),(14864,'2009-12-15 09:32:54',1,'product.php','cPath=6_83&product_type=1&pID=670&action=update_product&','124.148.55.45'),(14865,'2009-12-15 09:32:55',1,'categories.php','cPath=6_83&pID=670&','124.148.55.45'),(14866,'2009-12-15 09:33:00',1,'categories.php','cPath=6&cID=83&','124.148.55.45'),(14867,'2009-12-15 09:33:16',1,'categories.php','action=setflag_categories&flag=0&cID=90&cPath=6&','124.148.55.45'),(14868,'2009-12-15 09:33:20',1,'categories.php','action=update_category_status&cPath=6&cID=90&','124.148.55.45'),(14869,'2009-12-15 09:33:21',1,'categories.php','cPath=6&cID=90&','124.148.55.45'),(14870,'2009-12-15 09:33:28',1,'categories.php','cPath=6_83&','124.148.55.45'),(14871,'2009-12-15 09:33:52',1,'product.php','page=1&product_type=1&cPath=6_83&pID=665&action=new_product&','124.148.55.45'),(14872,'2009-12-15 09:34:13',1,'product.php','cPath=6_83&product_type=1&pID=665&action=new_product_preview&page=1&','124.148.55.45'),(14873,'2009-12-15 09:34:18',1,'product.php','cPath=6_83&product_type=1&pID=665&action=update_product&page=1&','124.148.55.45'),(14874,'2009-12-15 09:34:19',1,'categories.php','cPath=6_83&pID=665&page=1&','124.148.55.45'),(14875,'2009-12-15 09:35:06',1,'categories.php','action=setflag&flag=0&pID=663&cPath=6_83&page=1&','124.148.55.45'),(14876,'2009-12-15 09:35:07',1,'categories.php','action=setflag&flag=0&pID=661&cPath=6_83&page=1&','124.148.55.45'),(14877,'2009-12-15 09:35:08',1,'categories.php','action=setflag&flag=0&pID=662&cPath=6_83&page=1&','124.148.55.45'),(14878,'2009-12-15 09:35:09',1,'categories.php','action=setflag&flag=0&pID=664&cPath=6_83&page=1&','124.148.55.45'),(14879,'2009-12-15 09:35:10',1,'categories.php','cPath=6_83&pID=664&page=1&','124.148.55.45'),(14880,'2009-12-15 09:35:10',1,'categories.php','action=setflag&flag=0&pID=665&cPath=6_83&page=1&','124.148.55.45'),(14881,'2009-12-15 09:35:11',1,'categories.php','action=setflag&flag=0&pID=666&cPath=6_83&page=1&','124.148.55.45'),(14882,'2009-12-15 09:35:12',1,'categories.php','action=setflag&flag=0&pID=667&cPath=6_83&page=1&','124.148.55.45'),(14883,'2009-12-15 09:35:14',1,'categories.php','action=setflag&flag=0&pID=668&cPath=6_83&page=1&','124.148.55.45'),(14884,'2009-12-15 09:35:15',1,'categories.php','cPath=6_83&pID=668&page=1&','124.148.55.45'),(14885,'2009-12-15 09:35:21',1,'categories.php','cPath=6_83&page=2&','124.148.55.45'),(14886,'2009-12-15 09:35:26',1,'categories.php','action=setflag&flag=0&pID=669&cPath=6_83&page=2&','124.148.55.45'),(14887,'2009-12-15 09:35:27',1,'categories.php','action=setflag&flag=0&pID=670&cPath=6_83&page=2&','124.148.55.45'),(14888,'2009-12-15 09:35:27',1,'categories.php','cPath=6_83&pID=670&page=2&','124.148.55.45'),(14889,'2009-12-15 09:35:49',1,'categories.php','cPath=5&','124.148.55.45'),(14890,'2009-12-15 09:36:17',1,'categories.php','cPath=6&','124.148.55.45'),(14891,'2009-12-15 09:36:24',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.55.45'),(14892,'2009-12-15 09:39:15',1,'categories.php','cPath=6&cID=83&','124.148.55.45'),(14893,'2009-12-15 09:39:29',1,'categories.php','cPath=8&','124.148.55.45'),(14894,'2009-12-15 09:39:50',1,'categories.php','action=setflag&flag=0&pID=501&cPath=8&page=1&','124.148.55.45'),(14895,'2009-12-15 09:39:51',1,'categories.php','cPath=8&pID=501&page=1&','124.148.55.45'),(14896,'2009-12-15 09:39:59',1,'categories.php','action=setflag&flag=0&pID=503&cPath=8&page=1&','124.148.55.45'),(14897,'2009-12-15 09:40:00',1,'categories.php','cPath=8&pID=503&page=1&','124.148.55.45'),(14898,'2009-12-15 09:40:07',1,'categories.php','cPath=8&page=2&','124.148.55.45'),(14899,'2009-12-15 09:40:52',1,'categories.php','action=setflag&flag=0&pID=133&cPath=8&page=2&','124.148.55.45'),(14900,'2009-12-15 09:40:53',1,'categories.php','cPath=8&pID=133&page=2&','124.148.55.45'),(14901,'2009-12-15 09:41:57',1,'categories.php','cPath=8&page=1&','124.148.55.45'),(14902,'2009-12-15 09:42:08',1,'categories.php','action=setflag&flag=0&pID=354&cPath=8&page=1&','124.148.55.45'),(14903,'2009-12-15 09:42:10',1,'categories.php','action=setflag&flag=0&pID=500&cPath=8&page=1&','124.148.55.45'),(14904,'2009-12-15 09:42:15',1,'categories.php','cPath=8&pID=500&page=1&','124.148.55.45'),(14905,'2009-12-15 09:42:37',1,'categories.php','cPath=7&','124.148.55.45'),(14906,'2009-12-15 09:43:28',1,'categories.php','cPath=7_8&','124.148.55.45'),(14907,'2009-12-15 09:43:34',1,'categories.php','action=setflag&flag=0&pID=505&cPath=7_8&page=1&','124.148.55.45'),(14908,'2009-12-15 09:43:35',1,'categories.php','cPath=7_8&pID=505&page=1&','124.148.55.45'),(14909,'2009-12-15 09:44:10',1,'categories.php','action=setflag&flag=1&pID=503&cPath=7_8&page=1&','124.148.55.45'),(14910,'2009-12-15 09:44:11',1,'categories.php','cPath=7_8&pID=503&page=1&','124.148.55.45'),(14911,'2009-12-15 09:45:07',1,'product.php','cPath=7_8&product_type=1&pID=573&action=new_product&','124.148.55.45'),(14912,'2009-12-15 09:45:48',1,'product.php','cPath=7_8&product_type=1&pID=573&action=new_product_preview&','124.148.55.45'),(14913,'2009-12-15 09:45:52',1,'product.php','cPath=7_8&product_type=1&pID=573&action=update_product&','124.148.55.45'),(14914,'2009-12-15 09:45:53',1,'categories.php','cPath=7_8&pID=573&','124.148.55.45'),(14915,'2009-12-15 09:46:07',1,'product.php','cPath=7_8&product_type=1&pID=317&action=new_product&','124.148.55.45'),(14916,'2009-12-15 09:46:30',1,'product.php','cPath=7_8&product_type=1&pID=317&action=new_product_preview&','124.148.55.45'),(14917,'2009-12-15 09:46:35',1,'product.php','cPath=7_8&product_type=1&pID=317&action=update_product&','124.148.55.45'),(14918,'2009-12-15 09:46:36',1,'categories.php','cPath=7_8&pID=317&','124.148.55.45'),(14919,'2009-12-15 09:47:59',1,'categories.php','cPath=7_8&page=2&','124.148.55.45'),(14920,'2009-12-15 09:48:12',1,'categories.php','action=setflag&flag=0&pID=497&cPath=7_8&page=2&','124.148.55.45'),(14921,'2009-12-15 09:48:14',1,'categories.php','cPath=7_8&pID=497&page=2&','124.148.55.45'),(14922,'2009-12-15 09:50:03',1,'logoff.php','','124.148.55.45'),(14923,'2009-12-15 09:50:05',0,'login.php ','','124.148.55.45'),(14924,'2009-12-15 17:36:43',0,'login.php ','','124.148.55.45'),(14925,'2009-12-15 17:43:56',0,'login.php hggaller','','124.148.55.45'),(14926,'2009-12-15 17:44:11',1,'categories.php','','124.148.55.45'),(14927,'2009-12-15 17:44:19',1,'categories.php','cPath=6&','124.148.55.45'),(14928,'2009-12-15 17:44:38',1,'categories.php','cPath=6_83&','124.148.55.45'),(14929,'2009-12-15 17:45:35',1,'product.php','cPath=6_83&product_type=1&pID=656&action=new_product&','124.148.55.45'),(14930,'2009-12-15 17:46:51',1,'product.php','cPath=6_83&product_type=1&pID=656&action=new_product_preview&','124.148.55.45'),(14931,'2009-12-15 17:47:00',1,'product.php','cPath=6_83&product_type=1&pID=656&action=update_product&','124.148.55.45'),(14932,'2009-12-15 17:47:01',1,'categories.php','cPath=6_83&pID=656&','124.148.55.45'),(14933,'2009-12-15 17:47:07',1,'product.php','page=1&product_type=1&cPath=6_83&pID=657&action=new_product&','124.148.55.45'),(14934,'2009-12-15 17:47:48',1,'product.php','cPath=6_83&product_type=1&pID=657&action=new_product_preview&page=1&','124.148.55.45'),(14935,'2009-12-15 17:47:52',1,'product.php','cPath=6_83&product_type=1&pID=657&action=update_product&page=1&','124.148.55.45'),(14936,'2009-12-15 17:47:53',1,'categories.php','cPath=6_83&pID=657&page=1&','124.148.55.45'),(14937,'2009-12-15 17:48:04',1,'product.php','page=1&product_type=1&cPath=6_83&pID=658&action=new_product&','124.148.55.45'),(14938,'2009-12-15 17:54:33',1,'product.php','cPath=6_83&product_type=1&pID=658&action=new_product_preview&page=1&','124.148.55.45'),(14939,'2009-12-15 17:54:37',1,'product.php','cPath=6_83&product_type=1&pID=658&action=update_product&page=1&','124.148.55.45'),(14940,'2009-12-15 17:54:38',1,'categories.php','cPath=6_83&pID=658&page=1&','124.148.55.45'),(14941,'2009-12-15 17:54:43',1,'product.php','page=1&product_type=1&cPath=6_83&pID=659&action=new_product&','124.148.55.45'),(14942,'2009-12-15 17:54:56',1,'categories.php','cPath=6_83&pID=659&page=1&','124.148.55.45'),(14943,'2009-12-15 17:55:03',1,'product.php','page=1&product_type=1&cPath=6_83&pID=504&action=new_product&','124.148.55.45'),(14944,'2009-12-15 17:56:08',1,'product.php','cPath=6_83&product_type=1&pID=504&action=new_product_preview&page=1&','124.148.55.45'),(14945,'2009-12-15 17:56:13',1,'product.php','cPath=6_83&product_type=1&pID=504&action=update_product&page=1&','124.148.55.45'),(14946,'2009-12-15 17:56:14',1,'categories.php','cPath=6_83&pID=504&page=1&','124.148.55.45'),(14947,'2009-12-15 17:56:20',1,'product.php','page=1&product_type=1&cPath=6_83&pID=655&action=new_product&','124.148.55.45'),(14948,'2009-12-15 17:58:00',1,'product.php','cPath=6_83&product_type=1&pID=655&action=new_product_preview&page=1&','124.148.55.45'),(14949,'2009-12-15 17:58:06',1,'product.php','cPath=6_83&product_type=1&pID=655&action=update_product&page=1&','124.148.55.45'),(14950,'2009-12-15 17:58:06',1,'categories.php','cPath=6_83&pID=655&page=1&','124.148.55.45'),(14951,'2009-12-15 17:58:12',1,'product.php','page=1&product_type=1&cPath=6_83&pID=660&action=new_product&','124.148.55.45'),(14952,'2009-12-15 18:00:05',1,'product.php','cPath=6_83&product_type=1&pID=660&action=new_product_preview&page=1&','124.148.55.45'),(14953,'2009-12-15 18:00:08',1,'product.php','cPath=6_83&product_type=1&pID=660&action=update_product&page=1&','124.148.55.45'),(14954,'2009-12-15 18:00:09',1,'categories.php','cPath=6_83&pID=660&page=1&','124.148.55.45'),(14955,'2009-12-15 18:00:26',1,'product.php','page=1&product_type=1&cPath=6_83&pID=665&action=new_product&','124.148.55.45'),(14956,'2009-12-15 18:03:36',1,'product.php','cPath=6_83&product_type=1&pID=665&action=new_product_preview&page=1&','124.148.55.45'),(14957,'2009-12-15 18:03:45',1,'product.php','cPath=6_83&product_type=1&pID=665&action=update_product&page=1&','124.148.55.45'),(14958,'2009-12-15 18:03:46',1,'categories.php','cPath=6_83&pID=665&page=1&','124.148.55.45'),(14959,'2009-12-15 18:03:59',1,'categories.php','cPath=6_83&page=2&','124.148.55.45'),(14960,'2009-12-15 18:04:06',1,'product.php','cPath=6_83&product_type=1&pID=670&action=new_product&','124.148.55.45'),(14961,'2009-12-15 18:04:27',1,'product.php','cPath=6_83&product_type=1&pID=670&action=new_product_preview&','124.148.55.45'),(14962,'2009-12-15 18:04:45',1,'product.php','cPath=6_83&product_type=1&pID=670&action=update_product&','124.148.55.45'),(14963,'2009-12-15 18:04:45',1,'categories.php','cPath=6_83&pID=670&','124.148.55.45'),(14964,'2009-12-15 18:05:02',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(14965,'2009-12-15 18:09:50',1,'logoff.php','','124.148.55.45'),(14966,'2009-12-15 18:09:51',0,'login.php ','','124.148.55.45'),(14967,'2009-12-15 18:26:58',0,'login.php hggaller','','124.148.55.45'),(14968,'2009-12-15 18:27:21',1,'categories.php','','124.148.55.45'),(14969,'2009-12-15 18:27:45',1,'categories.php','cPath=6&','124.148.55.45'),(14970,'2009-12-15 18:27:49',1,'categories.php','cPath=6_83&','124.148.55.45'),(14971,'2009-12-15 18:27:57',1,'product.php','page=1&product_type=1&cPath=6_83&pID=660&action=new_product&','124.148.55.45'),(14972,'2009-12-15 18:29:29',1,'product.php','cPath=6_83&product_type=1&pID=660&action=new_product_preview&page=1&','124.148.55.45'),(14973,'2009-12-15 18:30:21',1,'product.php','cPath=6_83&product_type=1&pID=660&action=update_product&page=1&','124.148.55.45'),(14974,'2009-12-15 18:30:22',1,'categories.php','cPath=6_83&pID=660&page=1&','124.148.55.45'),(14975,'2009-12-15 18:39:23',1,'logoff.php','','124.148.55.45'),(14976,'2009-12-15 18:39:24',0,'login.php ','','124.148.55.45'),(14977,'2009-12-16 08:14:33',0,'login.php ','','124.148.55.45'),(14978,'2009-12-16 08:14:34',0,'login.php ','','124.148.55.45'),(14979,'2009-12-16 08:14:51',0,'login.php hggaller','','124.148.55.45'),(14980,'2009-12-16 08:15:26',1,'categories.php','','124.148.55.45'),(14981,'2009-12-16 08:15:31',1,'categories.php','cPath=6&','124.148.55.45'),(14982,'2009-12-16 08:15:37',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.55.45'),(14983,'2009-12-16 08:16:28',1,'categories.php','cPath=6&cID=83&','124.148.55.45'),(14984,'2009-12-16 08:16:36',1,'categories.php','cPath=6_83&','124.148.55.45'),(14985,'2009-12-16 08:16:55',1,'product.php','page=1&product_type=1&cPath=6_83&pID=663&action=new_product&','124.148.55.45'),(14986,'2009-12-16 08:17:52',1,'product.php','cPath=6_83&product_type=1&pID=663&action=new_product_preview&page=1&','124.148.55.45'),(14987,'2009-12-16 08:17:59',1,'product.php','cPath=6_83&product_type=1&pID=663&action=update_product&page=1&','124.148.55.45'),(14988,'2009-12-16 08:17:59',1,'categories.php','cPath=6_83&pID=663&page=1&','124.148.55.45'),(14989,'2009-12-16 08:18:09',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(14990,'2009-12-16 08:18:18',1,'product.php','cPath=6_83&product_type=1&pID=661&action=new_product&','124.148.55.45'),(14991,'2009-12-16 08:18:38',1,'product.php','cPath=6_83&product_type=1&pID=661&action=new_product_preview&','124.148.55.45'),(14992,'2009-12-16 08:18:45',1,'product.php','cPath=6_83&product_type=1&pID=661&action=update_product&','124.148.55.45'),(14993,'2009-12-16 08:18:45',1,'categories.php','cPath=6_83&pID=661&','124.148.55.45'),(14994,'2009-12-16 08:18:50',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(14995,'2009-12-16 08:18:58',1,'product.php','cPath=6_83&product_type=1&pID=662&action=new_product&','124.148.55.45'),(14996,'2009-12-16 08:19:22',1,'product.php','cPath=6_83&product_type=1&pID=662&action=new_product_preview&','124.148.55.45'),(14997,'2009-12-16 08:19:29',1,'product.php','cPath=6_83&product_type=1&pID=662&action=update_product&','124.148.55.45'),(14998,'2009-12-16 08:19:30',1,'categories.php','cPath=6_83&pID=662&','124.148.55.45'),(14999,'2009-12-16 08:19:37',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(15000,'2009-12-16 08:19:44',1,'product.php','page=1&product_type=1&cPath=6_83&pID=664&action=new_product&','124.148.55.45'),(15001,'2009-12-16 08:20:00',1,'product.php','cPath=6_83&product_type=1&pID=664&action=new_product_preview&page=1&','124.148.55.45'),(15002,'2009-12-16 08:20:05',1,'product.php','cPath=6_83&product_type=1&pID=664&action=update_product&page=1&','124.148.55.45'),(15003,'2009-12-16 08:20:05',1,'categories.php','cPath=6_83&pID=664&page=1&','124.148.55.45'),(15004,'2009-12-16 08:20:13',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(15005,'2009-12-16 08:20:17',1,'product.php','page=1&product_type=1&cPath=6_83&pID=665&action=new_product&','124.148.55.45'),(15006,'2009-12-16 08:20:36',1,'product.php','cPath=6_83&product_type=1&pID=665&action=new_product_preview&page=1&','124.148.55.45'),(15007,'2009-12-16 08:20:40',1,'product.php','cPath=6_83&product_type=1&pID=665&action=update_product&page=1&','124.148.55.45'),(15008,'2009-12-16 08:20:41',1,'categories.php','cPath=6_83&pID=665&page=1&','124.148.55.45'),(15009,'2009-12-16 08:20:47',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(15010,'2009-12-16 08:20:57',1,'product.php','cPath=6_83&product_type=1&pID=666&action=new_product&','124.148.55.45'),(15011,'2009-12-16 08:21:18',1,'product.php','cPath=6_83&product_type=1&pID=666&action=new_product_preview&','124.148.55.45'),(15012,'2009-12-16 08:21:25',1,'product.php','cPath=6_83&product_type=1&pID=666&action=update_product&','124.148.55.45'),(15013,'2009-12-16 08:21:25',1,'categories.php','cPath=6_83&pID=666&','124.148.55.45'),(15014,'2009-12-16 08:21:31',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(15015,'2009-12-16 08:21:36',1,'product.php','page=1&product_type=1&cPath=6_83&pID=667&action=new_product&','124.148.55.45'),(15016,'2009-12-16 08:21:51',1,'product.php','cPath=6_83&product_type=1&pID=667&action=new_product_preview&page=1&','124.148.55.45'),(15017,'2009-12-16 08:21:56',1,'product.php','cPath=6_83&product_type=1&pID=667&action=update_product&page=1&','124.148.55.45'),(15018,'2009-12-16 08:21:58',1,'categories.php','cPath=6_83&pID=667&page=1&','124.148.55.45'),(15019,'2009-12-16 08:22:05',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(15020,'2009-12-16 08:22:12',1,'product.php','page=1&product_type=1&cPath=6_83&pID=668&action=new_product&','124.148.55.45'),(15021,'2009-12-16 08:22:27',1,'product.php','cPath=6_83&product_type=1&pID=668&action=new_product_preview&page=1&','124.148.55.45'),(15022,'2009-12-16 08:22:33',1,'product.php','cPath=6_83&product_type=1&pID=668&action=update_product&page=1&','124.148.55.45'),(15023,'2009-12-16 08:22:33',1,'categories.php','cPath=6_83&pID=668&page=1&','124.148.55.45'),(15024,'2009-12-16 08:22:39',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(15025,'2009-12-16 08:22:49',1,'product.php','page=1&product_type=1&cPath=6_83&pID=669&action=new_product&','124.148.55.45'),(15026,'2009-12-16 08:23:10',1,'product.php','cPath=6_83&product_type=1&pID=669&action=new_product_preview&page=1&','124.148.55.45'),(15027,'2009-12-16 08:23:13',1,'product.php','cPath=6_83&product_type=1&pID=669&action=update_product&page=1&','124.148.55.45'),(15028,'2009-12-16 08:23:15',1,'categories.php','cPath=6_83&pID=669&page=1&','124.148.55.45'),(15029,'2009-12-16 08:23:28',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(15030,'2009-12-16 08:23:33',1,'product.php','page=1&product_type=1&cPath=6_83&pID=670&action=new_product&','124.148.55.45'),(15031,'2009-12-16 08:23:56',1,'product.php','cPath=6_83&product_type=1&pID=670&action=new_product_preview&page=1&','124.148.55.45'),(15032,'2009-12-16 08:24:00',1,'product.php','cPath=6_83&product_type=1&pID=670&action=update_product&page=1&','124.148.55.45'),(15033,'2009-12-16 08:24:01',1,'categories.php','cPath=6_83&pID=670&page=1&','124.148.55.45'),(15034,'2009-12-16 08:24:06',1,'categories.php','action=setflag&flag=1&pID=670&cPath=6_83&page=2&','124.148.55.45'),(15035,'2009-12-16 08:24:07',1,'categories.php','cPath=6_83&pID=670&page=2&','124.148.55.45'),(15036,'2009-12-16 08:24:07',1,'categories.php','action=setflag&flag=1&pID=669&cPath=6_83&page=2&','124.148.55.45'),(15037,'2009-12-16 08:24:08',1,'categories.php','cPath=6_83&pID=669&page=2&','124.148.55.45'),(15038,'2009-12-16 08:24:12',1,'categories.php','cPath=6_83&page=1&','124.148.55.45'),(15039,'2009-12-16 08:24:17',1,'categories.php','action=setflag&flag=1&pID=656&cPath=6_83&page=1&','124.148.55.45'),(15040,'2009-12-16 08:24:17',1,'categories.php','cPath=6_83&pID=656&page=1&','124.148.55.45'),(15041,'2009-12-16 08:24:18',1,'categories.php','action=setflag&flag=1&pID=657&cPath=6_83&page=1&','124.148.55.45'),(15042,'2009-12-16 08:24:19',1,'categories.php','action=setflag&flag=1&pID=658&cPath=6_83&page=1&','124.148.55.45'),(15043,'2009-12-16 08:24:20',1,'categories.php','action=setflag&flag=1&pID=659&cPath=6_83&page=1&','124.148.55.45'),(15044,'2009-12-16 08:24:21',1,'categories.php','action=setflag&flag=1&pID=504&cPath=6_83&page=1&','124.148.55.45'),(15045,'2009-12-16 08:24:22',1,'categories.php','action=setflag&flag=1&pID=655&cPath=6_83&page=1&','124.148.55.45'),(15046,'2009-12-16 08:24:22',1,'categories.php','action=setflag&flag=1&pID=660&cPath=6_83&page=1&','124.148.55.45'),(15047,'2009-12-16 08:24:24',1,'categories.php','cPath=6_83&pID=660&page=1&','124.148.55.45'),(15048,'2009-12-16 08:24:24',1,'categories.php','action=setflag&flag=1&pID=663&cPath=6_83&page=1&','124.148.55.45'),(15049,'2009-12-16 08:24:25',1,'categories.php','action=setflag&flag=1&pID=661&cPath=6_83&page=1&','124.148.55.45'),(15050,'2009-12-16 08:24:26',1,'categories.php','action=setflag&flag=1&pID=662&cPath=6_83&page=1&','124.148.55.45'),(15051,'2009-12-16 08:24:27',1,'categories.php','action=setflag&flag=1&pID=664&cPath=6_83&page=1&','124.148.55.45'),(15052,'2009-12-16 08:24:28',1,'categories.php','cPath=6_83&pID=662&page=1&','124.148.55.45'),(15053,'2009-12-16 08:24:29',1,'categories.php','action=setflag&flag=1&pID=665&cPath=6_83&page=1&','124.148.55.45'),(15054,'2009-12-16 08:24:30',1,'categories.php','cPath=6_83&pID=665&page=1&','124.148.55.45'),(15055,'2009-12-16 08:24:31',1,'categories.php','action=setflag&flag=1&pID=666&cPath=6_83&page=1&','124.148.55.45'),(15056,'2009-12-16 08:24:32',1,'categories.php','action=setflag&flag=1&pID=667&cPath=6_83&page=1&','124.148.55.45'),(15057,'2009-12-16 08:24:33',1,'categories.php','action=setflag&flag=1&pID=668&cPath=6_83&page=1&','124.148.55.45'),(15058,'2009-12-16 08:24:34',1,'categories.php','cPath=6_83&pID=668&page=1&','124.148.55.45'),(15059,'2009-12-16 08:28:13',1,'logoff.php','','124.148.55.45'),(15060,'2009-12-16 08:28:14',0,'login.php ','','124.148.55.45'),(15061,'2009-12-16 17:01:57',0,'login.php ','','124.148.55.45'),(15062,'2009-12-16 20:14:19',0,'login.php ','','124.148.55.45'),(15063,'2009-12-16 20:24:36',0,'login.php ','','124.148.55.45'),(15064,'2009-12-17 00:38:12',0,'login.php ','','124.148.55.45'),(15065,'2009-12-17 00:46:47',0,'login.php ','','124.148.55.45'),(15066,'2009-12-17 16:21:46',0,'login.php ','','124.148.55.45'),(15067,'2009-12-17 16:24:45',0,'login.php ','','124.148.55.45'),(15068,'2009-12-17 17:23:38',0,'login.php ','','124.148.55.45'),(15069,'2009-12-17 17:23:42',0,'login.php ','','124.148.55.45'),(15070,'2009-12-17 17:24:13',0,'login.php ','','124.148.55.45'),(15071,'2009-12-17 17:53:35',0,'login.php ','','124.148.55.45'),(15072,'2009-12-17 18:46:56',0,'login.php ','','124.148.55.45'),(15073,'2009-12-17 18:46:56',0,'login.php ','','124.148.55.45'),(15074,'2009-12-17 19:09:12',0,'login.php ','','124.148.55.45'),(15075,'2009-12-17 19:20:13',0,'login.php ','','124.148.55.45'),(15076,'2009-12-17 19:20:17',0,'login.php ','','124.148.55.45'),(15077,'2009-12-17 19:41:02',0,'login.php ','','124.148.55.45'),(15078,'2009-12-17 19:41:02',0,'login.php ','','124.148.55.45'),(15079,'2009-12-17 20:34:53',0,'login.php ','','124.148.55.45'),(15080,'2009-12-17 21:00:05',0,'login.php ','','124.148.55.45'),(15081,'2009-12-17 21:00:15',0,'login.php hggaller','','124.148.55.45'),(15082,'2009-12-17 21:00:23',1,'categories.php','','124.148.55.45'),(15083,'2009-12-17 21:00:29',1,'categories.php','cPath=6&','124.148.55.45'),(15084,'2009-12-17 21:00:35',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.55.45'),(15085,'2009-12-17 21:02:49',1,'categories.php','action=update_category&cPath=6&','124.148.55.45'),(15086,'2009-12-17 21:02:50',1,'categories.php','cPath=6&cID=83&','124.148.55.45'),(15087,'2009-12-17 21:02:59',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.55.45'),(15088,'2009-12-17 21:04:10',1,'categories.php','action=update_category&cPath=6&','124.148.55.45'),(15089,'2009-12-17 21:04:11',1,'categories.php','cPath=6&cID=83&','124.148.55.45'),(15090,'2009-12-17 21:09:07',1,'categories.php','cPath=6_81&','124.148.55.45'),(15091,'2009-12-17 21:09:19',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.55.45'),(15092,'2009-12-17 21:29:19',0,'login.php ','','124.148.55.45'),(15093,'2009-12-17 21:39:06',1,'categories.php','action=update_category&cPath=6&','124.148.55.45'),(15094,'2009-12-17 21:39:08',1,'categories.php','cPath=6&cID=83&','124.148.55.45'),(15095,'2009-12-17 21:39:54',0,'login.php ','','124.148.55.45'),(15096,'2009-12-17 21:43:55',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.55.45'),(15097,'2009-12-17 21:45:14',1,'categories.php','action=update_category&cPath=6&','124.148.55.45'),(15098,'2009-12-17 21:45:15',1,'categories.php','cPath=6&cID=83&','124.148.55.45'),(15099,'2009-12-17 21:45:56',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.55.45'),(15100,'2009-12-17 21:50:31',1,'categories.php','action=update_category&cPath=6&','124.148.55.45'),(15101,'2009-12-17 21:50:32',1,'categories.php','cPath=6&cID=83&','124.148.55.45'),(15102,'2009-12-17 21:51:33',1,'categories.php','cPath=6&cID=83&action=edit_category&','124.148.55.45'),(15103,'2009-12-17 21:52:45',1,'categories.php','action=update_category&cPath=6&','124.148.55.45'),(15104,'2009-12-17 21:52:46',1,'categories.php','cPath=6&cID=83&','124.148.55.45'),(15105,'2009-12-17 21:59:36',0,'login.php ','','124.148.55.45'),(15106,'2009-12-17 22:13:24',0,'login.php ','','124.148.55.45'),(15107,'2009-12-20 18:41:04',0,'login.php ','','124.148.55.45'),(15108,'2009-12-20 19:03:35',0,'login.php ','','124.148.55.45'),(15109,'2009-12-21 02:32:44',0,'login.php ','','124.148.55.45'),(15110,'2009-12-21 20:02:29',0,'login.php ','','124.148.55.45'),(15111,'2009-12-21 22:23:45',0,'login.php ','','124.148.55.45'),(15112,'2009-12-21 22:23:49',0,'login.php ','','124.148.55.45'),(15113,'2009-12-21 23:13:35',0,'login.php ','','124.148.55.45'),(15114,'2009-12-21 23:13:37',0,'login.php ','','124.148.55.45'),(15115,'2009-12-22 00:59:55',0,'login.php ','','124.148.55.45'),(15116,'2009-12-22 00:59:55',0,'login.php ','','124.148.55.45'),(15117,'2009-12-22 18:05:16',0,'login.php ','','124.148.45.194'),(15118,'2009-12-22 18:42:16',0,'login.php hggaller','','124.148.45.194'),(15119,'2009-12-22 19:00:49',1,'categories.php','','124.148.45.194'),(15120,'2009-12-22 19:00:53',1,'categories.php','cPath=6&','124.148.45.194'),(15121,'2009-12-22 19:00:58',1,'categories.php','cPath=6_83&','124.148.45.194'),(15122,'2009-12-22 19:01:02',1,'product.php','page=1&product_type=1&cPath=6_83&pID=657&action=new_product&','124.148.45.194'),(15123,'2009-12-22 19:01:24',1,'product.php','cPath=6_83&product_type=1&pID=657&action=new_product_preview&page=1&','124.148.45.194'),(15124,'2009-12-22 19:01:29',1,'product.php','cPath=6_83&product_type=1&pID=657&action=update_product&page=1&','124.148.45.194'),(15125,'2009-12-22 19:01:29',1,'categories.php','cPath=6_83&pID=657&page=1&','124.148.45.194'),(15126,'2009-12-22 19:01:37',1,'categories.php','','124.148.45.194'),(15127,'2009-12-22 19:01:40',1,'categories.php','cPath=7&','124.148.45.194'),(15128,'2009-12-22 19:01:45',1,'categories.php','cPath=7_34&','124.148.45.194'),(15129,'2009-12-22 19:01:51',1,'product.php','page=1&product_type=1&cPath=7_34&pID=443&action=new_product&','124.148.45.194'),(15130,'2009-12-22 19:02:04',1,'categories.php','cPath=7_34&pID=443&page=1&','124.148.45.194'),(15131,'2009-12-22 19:02:07',1,'product.php','page=1&product_type=1&cPath=7_34&pID=443&action=new_product&','124.148.45.194'),(15132,'2009-12-22 19:02:19',1,'product.php','cPath=7_34&product_type=1&pID=443&action=new_product_preview&page=1&','124.148.45.194'),(15133,'2009-12-22 19:02:25',1,'product.php','cPath=7_34&product_type=1&pID=443&action=update_product&page=1&','124.148.45.194'),(15134,'2009-12-22 19:02:25',1,'categories.php','cPath=7_34&pID=443&page=1&','124.148.45.194'),(15135,'2009-12-23 03:23:00',1,'logoff.php','','124.148.45.194'),(15136,'2009-12-23 03:23:02',0,'login.php ','','124.148.45.194'),(15137,'2009-12-23 23:08:31',0,'login.php ','','124.148.55.45'),(15138,'2009-12-23 23:08:45',0,'login.php ','','124.148.55.45'),(15139,'2009-12-23 23:08:53',0,'login.php ','','124.148.55.45'),(15140,'2009-12-23 23:09:28',0,'login.php ','','124.148.55.45'),(15141,'2009-12-23 23:29:40',0,'login.php ','','124.148.55.45'),(15142,'2009-12-24 00:07:12',0,'login.php ','','124.148.55.45'),(15143,'2009-12-27 21:04:01',0,'login.php ','','124.148.55.45'),(15144,'2009-12-27 23:44:48',0,'login.php ','','124.148.55.45'),(15145,'2009-12-28 17:00:15',0,'login.php ','','124.148.55.45'),(15146,'2009-12-28 17:00:16',0,'login.php ','','124.148.55.45'),(15147,'2009-12-28 20:01:19',0,'login.php ','','124.148.55.45'),(15148,'2009-12-28 20:01:21',0,'login.php ','','124.148.55.45'),(15149,'2009-12-28 20:14:44',0,'login.php ','','124.148.55.45'),(15150,'2009-12-28 20:54:38',0,'login.php ','','124.148.55.45'),(15151,'2009-12-28 20:54:38',0,'login.php ','','124.148.55.45'),(15152,'2009-12-28 21:07:13',0,'login.php ','','124.148.55.45'),(15153,'2009-12-28 21:54:58',0,'login.php ','','124.148.55.45'),(15154,'2009-12-28 21:56:54',0,'login.php ','','124.148.55.45'),(15155,'2009-12-29 02:37:38',0,'login.php ','','124.148.55.45'),(15156,'2009-12-29 03:07:06',0,'login.php ','','124.148.55.45'),(15157,'2009-12-29 03:46:15',0,'login.php ','','124.148.55.45'),(15158,'2009-12-29 04:26:17',0,'login.php ','','124.148.55.45'),(15159,'2009-12-29 06:14:27',0,'login.php ','','124.148.55.45'),(15160,'2009-12-29 17:55:52',0,'login.php ','','124.148.55.45'),(15161,'2009-12-29 17:58:38',0,'login.php ','','124.148.55.45'),(15162,'2009-12-29 18:56:41',0,'login.php ','','124.148.55.45'),(15163,'2009-12-29 19:30:28',0,'login.php ','','124.148.45.194'),(15164,'2009-12-29 23:52:11',0,'login.php ','','124.148.45.194'),(15165,'2009-12-29 23:52:29',0,'login.php hggaller','','124.148.45.194'),(15166,'2009-12-29 23:52:39',1,'categories.php','','124.148.45.194'),(15167,'2009-12-29 23:52:43',1,'categories.php','cPath=7&','124.148.45.194'),(15168,'2009-12-29 23:52:48',1,'categories.php','cPath=7_86&','124.148.45.194'),(15169,'2009-12-29 23:55:37',1,'product.php','page=1&product_type=1&cPath=7_86&pID=576&action=new_product&','124.148.45.194'),(15170,'2009-12-29 23:55:57',1,'product.php','cPath=7_86&product_type=1&pID=576&action=new_product_preview&page=1&','124.148.45.194'),(15171,'2009-12-29 23:56:01',1,'product.php','cPath=7_86&product_type=1&pID=576&action=update_product&page=1&','124.148.45.194'),(15172,'2009-12-29 23:56:02',1,'categories.php','cPath=7_86&pID=576&page=1&','124.148.45.194'),(15173,'2009-12-30 00:02:07',1,'categories.php','x=41&y=14&product_type=1&cPath=7_86&action=new_product&','124.148.45.194'),(15174,'2009-12-30 00:02:07',1,'product.php','x=41&y=14&product_type=1&cPath=7_86&action=new_product&','124.148.45.194'),(15175,'2009-12-30 00:04:13',1,'product.php','cPath=7_86&product_type=1&action=new_product_preview&','124.148.45.194'),(15176,'2009-12-30 00:04:24',1,'product.php','cPath=7_86&product_type=1&action=insert_product&','124.148.45.194'),(15177,'2009-12-30 00:04:25',1,'categories.php','cPath=7_86&pID=671&','124.148.45.194'),(15178,'2009-12-30 00:04:49',1,'product.php','page=1&product_type=1&cPath=7_86&pID=576&action=new_product&','124.148.45.194'),(15179,'2009-12-30 00:05:04',1,'product.php','cPath=7_86&product_type=1&pID=576&action=new_product_preview&page=1&','124.148.45.194'),(15180,'2009-12-30 00:05:14',1,'product.php','cPath=7_86&product_type=1&pID=576&action=update_product&page=1&','124.148.45.194'),(15181,'2009-12-30 00:05:16',1,'categories.php','cPath=7_86&pID=576&page=1&','124.148.45.194'),(15182,'2009-12-30 00:10:55',1,'categories.php','x=60&y=12&product_type=1&cPath=7_86&action=new_product&','124.148.45.194'),(15183,'2009-12-30 00:10:55',1,'product.php','x=60&y=12&product_type=1&cPath=7_86&action=new_product&','124.148.45.194'),(15184,'2009-12-30 00:26:27',1,'categories.php','cPath=7_86&','124.148.45.194'),(15185,'2009-12-30 00:26:41',1,'categories.php','cPath=31&','124.148.45.194'),(15186,'2009-12-30 00:26:48',1,'categories.php','x=40&y=8&product_type=1&cPath=31&action=new_product&','124.148.45.194'),(15187,'2009-12-30 00:26:48',1,'product.php','x=40&y=8&product_type=1&cPath=31&action=new_product&','124.148.45.194'),(15188,'2009-12-30 00:31:35',1,'product.php','cPath=31&product_type=1&action=new_product_preview&','124.148.45.194'),(15189,'2009-12-30 00:31:44',1,'product.php','cPath=31&product_type=1&action=insert_product&','124.148.45.194'),(15190,'2009-12-30 00:31:45',1,'categories.php','cPath=31&pID=672&','124.148.45.194'),(15191,'2009-12-30 00:31:52',1,'categories.php','x=50&y=13&product_type=1&cPath=31&action=new_product&','124.148.45.194'),(15192,'2009-12-30 00:31:53',1,'product.php','x=50&y=13&product_type=1&cPath=31&action=new_product&','124.148.45.194'),(15193,'2009-12-30 00:32:33',1,'product.php','cPath=31&product_type=1&action=new_product_preview&','124.148.45.194'),(15194,'2009-12-30 17:54:58',0,'login.php ','','124.148.55.45'),(15195,'2009-12-30 20:17:17',0,'login.php ','','124.148.45.194'),(15196,'2009-12-31 02:29:29',0,'login.php hggaller','','124.148.45.194'),(15197,'2009-12-31 02:29:37',1,'categories.php','','124.148.45.194'),(15198,'2009-12-31 02:29:42',1,'categories.php','cPath=6&','124.148.45.194'),(15199,'2009-12-31 02:29:48',1,'categories.php','cPath=6_83&','124.148.45.194'),(15200,'2009-12-31 02:29:53',1,'product.php','page=1&product_type=1&cPath=6_83&pID=658&action=new_product&','124.148.45.194'),(15201,'2009-12-31 02:30:11',1,'product.php','cPath=6_83&product_type=1&pID=658&action=new_product_preview&page=1&','124.148.45.194'),(15202,'2009-12-31 02:30:20',1,'product.php','cPath=6_83&product_type=1&pID=658&action=update_product&page=1&','124.148.45.194'),(15203,'2009-12-31 02:30:20',1,'categories.php','cPath=6_83&pID=658&page=1&','124.148.45.194'),(15204,'2009-12-31 03:10:59',1,'logoff.php','','124.148.45.194'),(15205,'2009-12-31 03:11:00',0,'login.php ','','124.148.45.194'),(15206,'2009-12-31 03:14:44',0,'login.php ','','124.148.45.194'),(15207,'2009-12-31 03:15:19',0,'login.php hggaller','','124.148.45.194'),(15208,'2009-12-31 03:16:04',1,'logoff.php','','124.148.45.194'),(15209,'2009-12-31 03:16:05',0,'login.php ','','124.148.45.194'),(15210,'2010-01-01 18:58:36',0,'login.php ','','124.148.45.194'),(15211,'2010-01-01 18:58:58',0,'login.php hggaller','','124.148.45.194'),(15212,'2010-01-01 22:29:44',1,'categories.php','','124.148.45.194'),(15213,'2010-01-01 22:29:52',1,'categories.php','cPath=4&','124.148.45.194'),(15214,'2010-01-01 22:29:56',1,'categories.php','cPath=4_96&','124.148.45.194'),(15215,'2010-01-01 22:30:00',1,'categories.php','cPath=4_96_76&','124.148.45.194'),(15216,'2010-01-01 22:30:05',1,'product.php','page=1&product_type=1&cPath=4_96_76&pID=359&action=new_product&','124.148.45.194'),(15217,'2010-01-01 22:30:21',1,'product.php','cPath=4_96_76&product_type=1&pID=359&action=new_product_preview&page=1&','124.148.45.194'),(15218,'2010-01-01 22:30:27',1,'product.php','cPath=4_96_76&product_type=1&pID=359&action=update_product&page=1&','124.148.45.194'),(15219,'2010-01-01 22:30:28',1,'categories.php','cPath=4_96_76&pID=359&page=1&','124.148.45.194'),(15220,'2010-01-01 22:30:43',1,'categories.php','cPath=1&','124.148.45.194'),(15221,'2010-01-01 22:30:47',1,'product.php','page=1&product_type=1&cPath=1&pID=399&action=new_product&','124.148.45.194'),(15222,'2010-01-01 22:31:01',1,'product.php','cPath=1&product_type=1&pID=399&action=new_product_preview&page=1&','124.148.45.194'),(15223,'2010-01-01 22:31:06',1,'product.php','cPath=1&product_type=1&pID=399&action=update_product&page=1&','124.148.45.194'),(15224,'2010-01-01 22:31:07',1,'categories.php','cPath=1&pID=399&page=1&','124.148.45.194'),(15225,'2010-01-01 22:31:19',1,'categories.php','cPath=30&','124.148.45.194'),(15226,'2010-01-01 22:31:23',1,'categories.php','cPath=30_119&','124.148.45.194'),(15227,'2010-01-01 22:31:26',1,'product.php','page=1&product_type=1&cPath=30_119&pID=634&action=new_product&','124.148.45.194'),(15228,'2010-01-01 22:31:41',1,'product.php','cPath=30_119&product_type=1&pID=634&action=new_product_preview&page=1&','124.148.45.194'),(15229,'2010-01-01 22:31:48',1,'product.php','cPath=30_119&product_type=1&pID=634&action=update_product&page=1&','124.148.45.194'),(15230,'2010-01-01 22:31:49',1,'categories.php','cPath=30_119&pID=634&page=1&','124.148.45.194'),(15231,'2010-01-01 22:32:06',1,'categories.php','cPath=83&','124.148.45.194'),(15232,'2010-01-02 01:45:26',1,'categories.php','x=77&y=11&product_type=1&cPath=83&action=new_product&','124.148.45.194'),(15233,'2010-01-02 01:45:27',1,'product.php','x=77&y=11&product_type=1&cPath=83&action=new_product&','124.148.45.194'),(15234,'2010-01-02 02:38:49',1,'product.php','cPath=83&product_type=1&action=new_product_preview&','124.148.45.194'),(15235,'2010-01-02 02:38:58',1,'product.php','cPath=83&product_type=1&action=insert_product&','124.148.45.194'),(15236,'2010-01-02 02:38:59',1,'categories.php','cPath=83&pID=673&','124.148.45.194'),(15237,'2010-01-02 02:40:55',1,'categories.php','x=43&y=14&product_type=1&cPath=83&action=new_product&','124.148.45.194'),(15238,'2010-01-02 02:40:55',1,'product.php','x=43&y=14&product_type=1&cPath=83&action=new_product&','124.148.45.194'),(15239,'2010-01-02 02:42:34',1,'product.php','cPath=83&product_type=1&action=new_product_preview&','124.148.45.194'),(15240,'2010-01-02 02:42:47',1,'product.php','cPath=83&product_type=1&action=insert_product&','124.148.45.194'),(15241,'2010-01-02 02:42:48',1,'categories.php','cPath=83&pID=674&','124.148.45.194'),(15242,'2010-01-02 02:43:17',1,'categories.php','cPath=14&','124.148.45.194'),(15243,'2010-01-02 02:43:29',1,'categories.php','action=setflag&flag=0&pID=428&cPath=14&page=1&','124.148.45.194'),(15244,'2010-01-02 02:43:29',1,'categories.php','cPath=14&pID=428&page=1&','124.148.45.194'),(15245,'2010-01-02 02:44:08',1,'categories.php','action=setflag&flag=0&pID=431&cPath=14&page=1&','124.148.45.194'),(15246,'2010-01-02 02:44:08',1,'categories.php','cPath=14&pID=431&page=1&','124.148.45.194'),(15247,'2010-01-02 02:44:15',1,'categories.php','cPath=14&page=2&','124.148.45.194'),(15248,'2010-01-02 02:44:19',1,'categories.php','action=setflag&flag=0&pID=429&cPath=14&page=2&','124.148.45.194'),(15249,'2010-01-02 02:44:20',1,'categories.php','cPath=14&pID=429&page=2&','124.148.45.194'),(15250,'2010-01-02 02:44:44',1,'categories.php','cPath=31&','124.148.45.194'),(15251,'2010-01-02 02:45:02',1,'product.php','page=1&product_type=1&cPath=31&pID=672&action=new_product&','124.148.45.194'),(15252,'2010-01-02 02:45:12',1,'categories.php','cPath=31&pID=672&page=1&','124.148.45.194'),(15253,'2010-01-02 02:45:17',1,'categories.php','x=36&y=8&product_type=1&cPath=31&action=new_product&','124.148.45.194'),(15254,'2010-01-02 02:45:17',1,'product.php','x=36&y=8&product_type=1&cPath=31&action=new_product&','124.148.45.194'),(15255,'2010-01-02 02:46:13',1,'product.php','cPath=31&product_type=1&action=new_product_preview&','124.148.45.194'),(15256,'2010-01-02 02:46:23',1,'product.php','cPath=31&product_type=1&action=insert_product&','124.148.45.194'),(15257,'2010-01-02 02:46:24',1,'categories.php','cPath=31&pID=675&','124.148.45.194'),(15258,'2010-01-02 02:46:40',1,'categories.php','cPath=7&','124.148.45.194'),(15259,'2010-01-02 02:46:51',1,'categories.php','cPath=7&cID=59&action=edit_category&','124.148.45.194'),(15260,'2010-01-02 02:49:53',1,'categories.php','cPath=7&cID=59&','124.148.45.194'),(15261,'2010-01-02 02:49:59',1,'categories.php','cPath=7_31&','124.148.45.194'),(15262,'2010-01-02 02:50:09',1,'categories.php','cPath=7&cID=31&action=edit_category&','124.148.45.194'),(15263,'2010-01-02 02:53:45',1,'categories.php','action=update_category&cPath=7&','124.148.45.194'),(15264,'2010-01-02 02:53:47',1,'categories.php','cPath=7&cID=31&','124.148.45.194'),(15265,'2010-01-02 02:54:28',1,'categories.php','cPath=7&cID=31&action=edit_category&','124.148.45.194'),(15266,'2010-01-02 02:55:11',1,'categories.php','cPath=7&cID=31&','124.148.45.194'),(15267,'2010-01-02 02:55:23',1,'categories.php','cPath=7&cID=8&action=edit_category&','124.148.45.194'),(15268,'2010-01-02 02:55:52',1,'categories.php','cPath=7&cID=8&','124.148.45.194'),(15269,'2010-01-02 02:56:01',1,'categories.php','cPath=7&cID=2&action=edit_category&','124.148.45.194'),(15270,'2010-01-02 02:56:18',1,'categories.php','cPath=7&cID=2&','124.148.45.194'),(15271,'2010-01-02 02:56:25',1,'categories.php','cPath=7&cID=31&action=edit_category&','124.148.45.194'),(15272,'2010-01-02 02:56:41',1,'categories.php','action=update_category&cPath=7&','124.148.45.194'),(15273,'2010-01-02 02:56:42',1,'categories.php','cPath=7&cID=31&','124.148.45.194'),(15274,'2010-01-02 02:57:21',1,'categories.php','cPath=14&','124.148.45.194'),(15275,'2010-01-02 03:18:19',1,'categories.php','x=42&y=15&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15276,'2010-01-02 03:18:20',1,'product.php','x=42&y=15&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15277,'2010-01-02 03:21:48',1,'product.php','cPath=14&product_type=1&action=new_product_preview&','124.148.45.194'),(15278,'2010-01-02 03:22:00',1,'product.php','cPath=14&product_type=1&action=insert_product&','124.148.45.194'),(15279,'2010-01-02 03:22:01',1,'categories.php','cPath=14&pID=676&','124.148.45.194'),(15280,'2010-01-02 03:22:07',1,'categories.php','x=86&y=9&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15281,'2010-01-02 03:22:07',1,'product.php','x=86&y=9&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15282,'2010-01-02 03:24:05',1,'product.php','cPath=14&product_type=1&action=new_product_preview&','124.148.45.194'),(15283,'2010-01-02 03:24:28',1,'product.php','cPath=14&product_type=1&action=insert_product&','124.148.45.194'),(15284,'2010-01-02 03:24:29',1,'categories.php','cPath=14&pID=677&','124.148.45.194'),(15285,'2010-01-02 03:24:36',1,'categories.php','x=48&y=15&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15286,'2010-01-02 03:24:36',1,'product.php','x=48&y=15&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15287,'2010-01-02 03:25:32',1,'product.php','cPath=14&product_type=1&action=new_product_preview&','124.148.45.194'),(15288,'2010-01-02 03:25:43',1,'product.php','cPath=14&product_type=1&action=insert_product&','124.148.45.194'),(15289,'2010-01-02 03:25:44',1,'categories.php','cPath=14&pID=678&','124.148.45.194'),(15290,'2010-01-02 03:25:52',1,'categories.php','x=76&y=11&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15291,'2010-01-02 03:25:52',1,'product.php','x=76&y=11&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15292,'2010-01-02 03:26:44',1,'product.php','cPath=14&product_type=1&action=new_product_preview&','124.148.45.194'),(15293,'2010-01-02 03:26:55',1,'product.php','cPath=14&product_type=1&action=insert_product&','124.148.45.194'),(15294,'2010-01-02 03:26:55',1,'categories.php','cPath=14&pID=679&','124.148.45.194'),(15295,'2010-01-02 03:27:02',1,'categories.php','x=66&y=14&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15296,'2010-01-02 03:27:02',1,'product.php','x=66&y=14&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15297,'2010-01-02 03:28:03',1,'product.php','cPath=14&product_type=1&action=new_product_preview&','124.148.45.194'),(15298,'2010-01-02 03:28:13',1,'product.php','cPath=14&product_type=1&action=insert_product&','124.148.45.194'),(15299,'2010-01-02 03:28:13',1,'categories.php','cPath=14&pID=680&','124.148.45.194'),(15300,'2010-01-02 03:28:19',1,'categories.php','x=66&y=10&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15301,'2010-01-02 03:28:19',1,'product.php','x=66&y=10&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15302,'2010-01-02 03:29:37',1,'product.php','cPath=14&product_type=1&action=new_product_preview&','124.148.45.194'),(15303,'2010-01-02 03:29:47',1,'product.php','cPath=14&product_type=1&action=insert_product&','124.148.45.194'),(15304,'2010-01-02 03:29:47',1,'categories.php','cPath=14&pID=681&','124.148.45.194'),(15305,'2010-01-02 03:29:53',1,'categories.php','x=54&y=4&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15306,'2010-01-02 03:29:54',1,'product.php','x=54&y=4&product_type=1&cPath=14&action=new_product&','124.148.45.194'),(15307,'2010-01-02 03:31:16',1,'product.php','cPath=14&product_type=1&action=new_product_preview&','124.148.45.194'),(15308,'2010-01-02 03:31:42',1,'product.php','cPath=14&product_type=1&action=insert_product&','124.148.45.194'),(15309,'2010-01-02 03:31:43',1,'categories.php','cPath=14&pID=682&','124.148.45.194'),(15310,'2010-01-02 03:32:46',1,'logoff.php','','124.148.45.194'),(15311,'2010-01-02 03:32:47',0,'login.php ','','124.148.45.194'),(15312,'2010-01-02 05:04:31',0,'login.php ','','124.148.55.45'),(15313,'2010-01-02 05:10:31',0,'login.php ','','124.148.55.45'),(15314,'2010-01-02 05:25:24',0,'login.php ','','124.148.55.45'),(15315,'2010-01-04 07:21:30',0,'login.php ','','124.148.55.45'),(15316,'2010-01-04 08:52:11',0,'login.php hggaller','','124.148.55.45'),(15317,'2010-01-04 08:52:21',1,'categories.php','','124.148.55.45'),(15318,'2010-01-04 08:52:48',1,'categories.php','cPath=6&','124.148.55.45'),(15319,'2010-01-04 08:52:56',1,'categories.php','cPath=6&cID=83&action=move_category&','124.148.55.45'),(15320,'2010-01-04 08:53:22',1,'categories.php','action=move_category_confirm&cPath=6&','124.148.55.45'),(15321,'2010-01-04 08:53:24',1,'categories.php','cPath=5&','124.148.55.45'),(15322,'2010-01-04 08:54:14',1,'categories.php','cPath=5&cID=95&action=move_category&','124.148.55.45'),(15323,'2010-01-04 08:54:28',1,'categories.php','action=move_category_confirm&cPath=5&','124.148.55.45'),(15324,'2010-01-04 08:54:29',1,'categories.php','cPath=96&','124.148.55.45'),(15325,'2010-01-04 08:55:20',1,'categories.php','cPath=96&cID=95&action=edit_category&','124.148.55.45'),(15326,'2010-01-04 08:55:33',1,'categories.php','action=update_category&cPath=96&','124.148.55.45'),(15327,'2010-01-04 08:55:35',1,'categories.php','cPath=96&cID=95&','124.148.55.45'),(15328,'2010-01-04 09:21:37',1,'logoff.php','','124.148.55.45'),(15329,'2010-01-04 09:21:38',0,'login.php ','','124.148.55.45'),(15330,'2010-01-04 16:27:11',0,'login.php ','','124.148.55.45'),(15331,'2010-01-04 22:33:31',0,'login.php ','','124.148.55.45'),(15332,'2010-01-04 22:37:16',0,'login.php ','','124.148.55.45'),(15333,'2010-01-04 22:40:31',0,'login.php ','','124.148.55.45'),(15334,'2010-01-04 22:40:40',0,'login.php otmail.com','','124.148.55.45'),(15335,'2010-01-05 03:54:01',0,'login.php ','','124.148.45.194'),(15336,'2010-01-05 03:54:22',0,'login.php hggaller','','124.148.45.194'),(15337,'2010-01-05 03:54:36',1,'categories.php','','124.148.45.194'),(15338,'2010-01-05 03:54:42',1,'categories.php','cPath=5&','124.148.45.194'),(15339,'2010-01-05 03:54:46',1,'categories.php','cPath=5_83&','124.148.45.194'),(15340,'2010-01-05 03:55:00',1,'product.php','cPath=5_83&product_type=1&pID=656&action=new_product&','124.148.45.194'),(15341,'2010-01-05 03:55:34',1,'product.php','cPath=5_83&product_type=1&pID=656&action=new_product_preview&','124.148.45.194'),(15342,'2010-01-05 03:55:45',1,'product.php','cPath=5_83&product_type=1&pID=656&action=update_product&','124.148.45.194'),(15343,'2010-01-05 03:55:46',1,'categories.php','cPath=5_83&pID=656&','124.148.45.194'),(15344,'2010-01-05 03:56:12',1,'logoff.php','','124.148.45.194'),(15345,'2010-01-05 03:56:13',0,'login.php ','','124.148.45.194'),(15346,'2010-01-05 19:44:03',0,'login.php ','','124.148.41.179'),(15347,'2010-01-06 18:15:04',0,'login.php ','','124.148.41.179'),(15348,'2010-01-06 18:27:50',0,'login.php ','','124.148.41.179'),(15349,'2010-01-06 19:01:29',0,'login.php ','','124.148.41.179'),(15350,'2010-01-07 05:54:10',0,'login.php ','','124.148.41.179'),(15351,'2010-01-07 20:45:06',0,'login.php ','','124.148.45.194'),(15352,'2010-01-08 17:29:14',0,'login.php ','','124.148.41.179'),(15353,'2010-01-08 17:57:03',0,'login.php ','','124.148.41.179'),(15354,'2010-01-08 20:26:59',0,'login.php ','','124.148.41.179'),(15355,'2010-01-09 18:50:25',0,'login.php ','','124.148.41.179'),(15356,'2010-01-09 19:07:54',0,'login.php ','','124.148.41.179'),(15357,'2010-01-10 18:31:51',0,'login.php ','','124.148.41.179'),(15358,'2010-01-10 21:46:58',0,'login.php ','','124.148.41.179'),(15359,'2010-01-10 21:47:01',0,'login.php ','','124.148.41.179'),(15360,'2010-01-10 21:47:05',0,'login.php ','','124.148.41.179'),(15361,'2010-01-10 21:47:36',0,'login.php ','','124.148.41.179'),(15362,'2010-01-11 18:39:34',0,'login.php ','','124.148.34.70'),(15363,'2010-01-11 18:42:06',0,'login.php ','','124.148.34.70'),(15364,'2010-01-11 19:12:43',0,'login.php ','','124.148.34.70'),(15365,'2010-01-11 20:31:41',0,'login.php ','','124.148.34.70'),(15366,'2010-01-11 20:53:12',0,'login.php ','','124.148.34.70'),(15367,'2010-01-11 21:16:28',0,'login.php ','','124.148.34.70'),(15368,'2010-01-11 21:27:44',0,'login.php ','','124.148.34.70'),(15369,'2010-01-11 21:29:13',0,'login.php ','','124.148.34.70'),(15370,'2010-01-11 21:39:13',0,'login.php ','','124.148.34.70'),(15371,'2010-01-12 04:45:45',0,'login.php ','','124.148.34.70'),(15372,'2010-01-12 04:46:44',0,'login.php ','','124.148.34.70'),(15373,'2010-01-12 05:32:05',0,'login.php ','action=process&','209.17.186.226'),(15374,'2010-01-12 05:49:56',0,'login.php ','','124.148.34.70'),(15375,'2010-01-12 07:19:35',0,'login.php ','','124.148.34.70'),(15376,'2010-01-12 18:18:16',0,'login.php ','','124.148.45.194'),(15377,'2010-01-13 02:16:37',0,'login.php hggaller','','124.148.45.194'),(15378,'2010-01-13 02:16:43',1,'categories.php','','124.148.45.194'),(15379,'2010-01-13 02:16:47',1,'categories.php','cPath=7&','124.148.45.194'),(15380,'2010-01-13 02:16:54',1,'categories.php','cPath=7_34&','124.148.45.194'),(15381,'2010-01-13 02:16:59',1,'product.php','page=1&product_type=1&cPath=7_34&pID=628&action=new_product&','124.148.45.194'),(15382,'2010-01-13 02:17:25',1,'product.php','cPath=7_34&product_type=1&pID=628&action=new_product_preview&page=1&','124.148.45.194'),(15383,'2010-01-13 02:17:29',1,'product.php','cPath=7_34&product_type=1&pID=628&action=update_product&page=1&','124.148.45.194'),(15384,'2010-01-13 02:17:30',1,'categories.php','cPath=7_34&pID=628&page=1&','124.148.45.194'),(15385,'2010-01-13 02:17:37',1,'logoff.php','','124.148.45.194'),(15386,'2010-01-13 02:17:38',0,'login.php ','','124.148.45.194'),(15387,'2010-01-13 03:34:25',0,'login.php ','action=process&','209.17.186.226'),(15388,'2010-01-13 05:08:31',0,'login.php ','','124.148.34.70'),(15389,'2010-01-13 05:34:34',0,'login.php ','','124.148.34.70'),(15390,'2010-01-14 19:54:39',0,'login.php ','','124.148.45.194'),(15391,'2010-01-14 20:00:12',0,'login.php ','','124.148.45.194'),(15392,'2010-01-14 21:20:35',0,'login.php hggaller','','124.148.45.194'),(15393,'2010-01-14 21:20:42',1,'categories.php','','124.148.45.194'),(15394,'2010-01-14 21:20:45',1,'categories.php','cPath=7&','124.148.45.194'),(15395,'2010-01-14 21:20:50',1,'categories.php','cPath=7_19&','124.148.45.194'),(15396,'2010-01-14 21:20:57',1,'categories.php','cPath=7_19&page=2&','124.148.45.194'),(15397,'2010-01-14 21:21:04',1,'product.php','cPath=7_19&product_type=1&pID=266&action=new_product&','124.148.45.194'),(15398,'2010-01-14 21:21:17',1,'product.php','cPath=7_19&product_type=1&pID=266&action=new_product_preview&','124.148.45.194'),(15399,'2010-01-14 21:21:21',1,'product.php','cPath=7_19&product_type=1&pID=266&action=update_product&','124.148.45.194'),(15400,'2010-01-14 21:21:21',1,'categories.php','cPath=7_19&pID=266&','124.148.45.194'),(15401,'2010-01-14 21:21:30',1,'categories.php','','124.148.45.194'),(15402,'2010-01-14 21:21:34',1,'categories.php','cPath=29&','124.148.45.194'),(15403,'2010-01-14 21:21:39',1,'categories.php','cPath=29&cID=57&action=edit_category&','124.148.45.194'),(15404,'2010-01-14 21:24:05',1,'categories.php','action=update_category&cPath=29&','124.148.45.194'),(15405,'2010-01-14 21:24:05',1,'categories.php','cPath=29&cID=57&','124.148.45.194'),(15406,'2010-01-14 21:25:05',1,'logoff.php','','124.148.45.194'),(15407,'2010-01-14 21:25:06',0,'login.php ','','124.148.45.194'),(15408,'2010-01-15 03:46:36',0,'password_forgotten.php ','action=execute&','202.182.48.30'),(15409,'2010-01-16 01:30:54',0,'login.php ','','124.148.34.70'),(15410,'2010-01-16 03:26:38',0,'login.php ','','124.148.34.70'),(15411,'2010-01-16 03:26:38',0,'login.php ','','124.148.34.70'),(15412,'2010-01-16 03:38:56',0,'login.php ','','124.148.34.70'),(15413,'2010-01-16 19:21:04',0,'login.php ','','124.148.45.194'),(15414,'2010-01-16 21:44:10',0,'login.php hggaller','','124.148.45.194'),(15415,'2010-01-16 21:47:15',1,'define_pages_editor.php','','124.148.45.194'),(15416,'2010-01-16 21:47:23',1,'define_pages_editor.php','define_it=5&action=new_page&','124.148.45.194'),(15417,'2010-01-16 21:48:33',1,'define_pages_editor.php','','124.148.45.194'),(15418,'2010-01-16 21:48:39',1,'define_pages_editor.php','define_it=5&action=new_page&','124.148.45.194'),(15419,'2010-01-16 22:08:46',1,'define_pages_editor.php','','124.148.45.194'),(15420,'2010-01-16 22:08:55',1,'define_pages_editor.php','define_it=5&action=new_page&','124.148.45.194'),(15421,'2010-01-16 22:09:47',1,'define_pages_editor.php','','124.148.45.194'),(15422,'2010-01-16 22:33:35',1,'logoff.php','','124.148.45.194'),(15423,'2010-01-16 22:33:36',0,'login.php ','','124.148.45.194'),(15424,'2010-01-17 00:32:11',0,'login.php ','','124.148.34.70'),(15425,'2010-01-17 02:22:27',0,'login.php ','','124.148.34.70'),(15426,'2010-01-17 02:22:27',0,'login.php ','','124.148.34.70'),(15427,'2010-01-17 02:22:32',0,'login.php ','','124.148.34.70'),(15428,'2010-01-17 22:37:51',0,'login.php ','','124.148.34.70'),(15429,'2010-01-17 23:17:22',0,'login.php ','','124.148.34.70'),(15430,'2010-01-17 23:18:12',0,'login.php ','','124.148.34.70'),(15431,'2010-01-18 00:16:55',0,'login.php ','','124.148.34.70'),(15432,'2010-01-20 23:16:38',0,'login.php ','','124.148.45.194'),(15433,'2010-01-20 23:16:58',0,'login.php hggaller','','124.148.45.194'),(15434,'2010-01-20 23:19:47',1,'categories.php','','124.148.45.194'),(15435,'2010-01-20 23:19:59',1,'categories.php','cPath=29&','124.148.45.194'),(15436,'2010-01-20 23:20:04',1,'categories.php','cPath=29_30&','124.148.45.194'),(15437,'2010-01-20 23:20:11',1,'categories.php','cPath=29_30_119&','124.148.45.194'),(15438,'2010-01-20 23:20:17',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=634&action=new_product&','124.148.45.194'),(15439,'2010-01-21 01:24:12',1,'product.php','cPath=29_30_119&product_type=1&pID=634&action=new_product_preview&page=1&','124.148.45.194'),(15440,'2010-01-21 01:24:15',1,'logoff.php','','124.148.45.194'),(15441,'2010-01-21 01:24:17',0,'login.php ','','124.148.45.194'),(15442,'2010-01-21 01:24:40',0,'login.php hggaller','','124.148.45.194'),(15443,'2010-01-21 01:24:53',1,'categories.php','','124.148.45.194'),(15444,'2010-01-21 01:25:00',1,'categories.php','cPath=29&','124.148.45.194'),(15445,'2010-01-21 01:25:04',1,'categories.php','cPath=29_30&','124.148.45.194'),(15446,'2010-01-21 01:25:07',1,'categories.php','cPath=29_30_119&','124.148.45.194'),(15447,'2010-01-21 01:25:11',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=634&action=new_product&','124.148.45.194'),(15448,'2010-01-21 01:26:03',1,'product.php','cPath=29_30_119&product_type=1&pID=634&action=new_product_preview&page=1&','124.148.45.194'),(15449,'2010-01-21 01:26:07',1,'product.php','cPath=29_30_119&product_type=1&pID=634&action=update_product&page=1&','124.148.45.194'),(15450,'2010-01-21 01:26:07',1,'categories.php','cPath=29_30_119&pID=634&page=1&','124.148.45.194'),(15451,'2010-01-21 01:26:14',1,'logoff.php','','124.148.45.194'),(15452,'2010-01-21 01:26:15',0,'login.php ','','124.148.45.194'),(15453,'2010-01-22 18:19:15',0,'login.php ','','124.148.34.70'),(15454,'2010-01-25 03:51:17',0,'login.php ','','124.148.34.70'),(15455,'2010-01-25 04:23:43',0,'login.php ','','124.148.34.70'),(15456,'2010-01-26 04:24:44',0,'password_forgotten.php ','action=execute&','202.182.48.30'),(15457,'2010-01-26 19:30:41',0,'login.php ','','124.148.45.194'),(15458,'2010-01-26 19:31:04',0,'login.php hggaller','','124.148.45.194'),(15459,'2010-01-26 19:48:08',1,'categories.php','','124.148.45.194'),(15460,'2010-01-26 19:53:21',1,'categories.php','cPath=5&','124.148.45.194'),(15461,'2010-01-26 19:53:26',1,'categories.php','cPath=5&cID=83&action=edit_category&','124.148.45.194'),(15462,'2010-01-26 19:57:55',1,'categories.php','action=update_category&cPath=5&','124.148.45.194'),(15463,'2010-01-26 19:57:56',1,'categories.php','cPath=5&cID=83&','124.148.45.194'),(15464,'2010-01-26 19:58:41',1,'categories.php','cPath=5&cID=83&action=edit_category&','124.148.45.194'),(15465,'2010-01-26 19:59:13',1,'categories.php','action=update_category&cPath=5&','124.148.45.194'),(15466,'2010-01-26 19:59:13',1,'categories.php','cPath=5&cID=83&','124.148.45.194'),(15467,'2010-01-26 19:59:46',1,'categories.php','cPath=5&cID=83&action=edit_category&','124.148.45.194'),(15468,'2010-01-26 20:01:39',1,'categories.php','action=update_category&cPath=5&','124.148.45.194'),(15469,'2010-01-26 20:01:39',1,'categories.php','cPath=5&cID=83&','124.148.45.194'),(15470,'2010-01-26 20:02:50',1,'logoff.php','','124.148.45.194'),(15471,'2010-01-26 20:02:51',0,'login.php ','','124.148.45.194'),(15472,'2010-01-27 19:32:53',0,'login.php ','','124.148.45.194'),(15473,'2010-01-27 23:33:57',0,'login.php ','','124.148.45.194'),(15474,'2010-01-28 04:01:14',0,'login.php ','','124.148.34.70'),(15475,'2010-01-29 18:23:40',0,'login.php ','','124.148.45.194'),(15476,'2010-01-30 23:59:00',0,'login.php ','','124.148.34.70'),(15477,'2010-01-31 03:48:01',0,'login.php ','','124.148.34.70'),(15478,'2010-01-31 04:38:20',0,'login.php ','','124.148.34.70'),(15479,'2010-01-31 04:47:14',0,'login.php ','','124.148.34.70'),(15480,'2010-02-01 19:06:40',0,'login.php ','','124.148.45.194'),(15481,'2010-02-02 19:50:50',0,'login.php ','','124.148.45.194'),(15482,'2010-02-02 19:51:10',0,'login.php hggaller','','124.148.45.194'),(15483,'2010-02-02 19:54:58',1,'categories.php','','124.148.45.194'),(15484,'2010-02-02 19:57:02',1,'categories.php','cPath=5&','124.148.45.194'),(15485,'2010-02-02 19:57:07',1,'categories.php','cPath=5_83&','124.148.45.194'),(15486,'2010-02-02 19:57:16',1,'categories.php','cPath=5_83&page=2&','124.148.45.194'),(15487,'2010-02-02 19:57:20',1,'categories.php','cPath=5_83&page=1&','124.148.45.194'),(15488,'2010-02-02 19:57:24',1,'product.php','page=1&product_type=1&cPath=5_83&pID=662&action=new_product&','124.148.45.194'),(15489,'2010-02-02 19:57:51',1,'product.php','cPath=5_83&product_type=1&pID=662&action=new_product_preview&page=1&','124.148.45.194'),(15490,'2010-02-02 19:58:02',1,'product.php','cPath=5_83&product_type=1&pID=662&action=update_product&page=1&','124.148.45.194'),(15491,'2010-02-02 19:58:03',1,'categories.php','cPath=5_83&pID=662&page=1&','124.148.45.194'),(15492,'2010-02-02 19:59:46',1,'categories.php','','124.148.45.194'),(15493,'2010-02-02 19:59:51',1,'categories.php','cPath=7&','124.148.45.194'),(15494,'2010-02-02 20:00:04',1,'categories.php','cPath=7_122&','124.148.45.194'),(15495,'2010-02-02 20:00:07',1,'product.php','page=1&product_type=1&cPath=7_122&pID=644&action=new_product&','124.148.45.194'),(15496,'2010-02-02 20:00:22',1,'product.php','cPath=7_122&product_type=1&pID=644&action=new_product_preview&page=1&','124.148.45.194'),(15497,'2010-02-02 20:00:29',1,'product.php','cPath=7_122&product_type=1&pID=644&action=update_product&page=1&','124.148.45.194'),(15498,'2010-02-02 20:00:30',1,'categories.php','cPath=7_122&pID=644&page=1&','124.148.45.194'),(15499,'2010-02-02 20:00:50',1,'categories.php','cPath=119&','124.148.45.194'),(15500,'2010-02-02 20:01:00',1,'product.php','page=1&product_type=1&cPath=119&pID=375&action=new_product&','124.148.45.194'),(15501,'2010-02-02 21:43:27',1,'product.php','cPath=119&product_type=1&pID=375&action=new_product_preview&page=1&','124.148.45.194'),(15502,'2010-02-02 21:43:36',1,'product.php','cPath=119&product_type=1&pID=375&action=update_product&page=1&','124.148.45.194'),(15503,'2010-02-02 21:43:37',1,'categories.php','cPath=119&pID=375&page=1&','124.148.45.194'),(15504,'2010-02-02 21:43:51',1,'product.php','page=1&product_type=1&cPath=119&pID=376&action=new_product&','124.148.45.194'),(15505,'2010-02-02 21:44:14',1,'product.php','cPath=119&product_type=1&pID=376&action=new_product_preview&page=1&','124.148.45.194'),(15506,'2010-02-02 21:44:23',1,'product.php','cPath=119&product_type=1&pID=376&action=update_product&page=1&','124.148.45.194'),(15507,'2010-02-02 21:44:23',1,'categories.php','cPath=119&pID=376&page=1&','124.148.45.194'),(15508,'2010-02-02 21:44:40',1,'product.php','page=1&product_type=1&cPath=119&pID=634&action=new_product&','124.148.45.194'),(15509,'2010-02-02 21:45:43',1,'product.php','cPath=119&product_type=1&pID=634&action=new_product_preview&page=1&','124.148.45.194'),(15510,'2010-02-02 21:45:49',1,'product.php','cPath=119&product_type=1&pID=634&action=update_product&page=1&','124.148.45.194'),(15511,'2010-02-02 21:45:49',1,'categories.php','cPath=119&pID=634&page=1&','124.148.45.194'),(15512,'2010-02-02 21:49:44',1,'logoff.php','','124.148.45.194'),(15513,'2010-02-02 21:49:45',0,'login.php ','','124.148.45.194'),(15514,'2010-02-05 00:39:47',0,'login.php ','','124.148.45.194'),(15515,'2010-02-05 07:19:22',0,'login.php ','','124.148.34.70'),(15516,'2010-02-06 18:12:14',0,'login.php ','','124.148.45.194'),(15517,'2010-02-06 21:32:21',0,'login.php ','','124.148.34.70'),(15518,'2010-02-06 23:49:49',0,'login.php ','','124.148.34.70'),(15519,'2010-02-07 00:27:57',0,'login.php ','','124.148.34.70'),(15520,'2010-02-07 00:29:26',0,'login.php ','','124.148.34.70'),(15521,'2010-02-07 02:00:38',0,'login.php ','','124.148.34.70'),(15522,'2010-02-09 07:22:44',0,'login.php ','','124.148.34.70'),(15523,'2010-02-10 08:19:22',0,'login.php ','','124.148.34.70'),(15524,'2010-02-10 23:14:04',0,'login.php ','','124.148.45.194'),(15525,'2010-02-10 23:14:18',0,'login.php hggaller','','124.148.45.194'),(15526,'2010-02-10 23:20:33',1,'categories.php','','124.148.45.194'),(15527,'2010-02-10 23:20:36',1,'categories.php','cPath=29&','124.148.45.194'),(15528,'2010-02-10 23:20:39',1,'categories.php','cPath=29_30&','124.148.45.194'),(15529,'2010-02-10 23:20:42',1,'categories.php','cPath=29_30_119&','124.148.45.194'),(15530,'2010-02-10 23:21:22',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=145&action=new_product&','124.148.45.194'),(15531,'2010-02-10 23:21:44',1,'product.php','cPath=29_30_119&product_type=1&pID=145&action=new_product_preview&page=1&','124.148.45.194'),(15532,'2010-02-10 23:21:52',1,'product.php','cPath=29_30_119&product_type=1&pID=145&action=update_product&page=1&','124.148.45.194'),(15533,'2010-02-10 23:21:52',1,'categories.php','cPath=29_30_119&pID=145&page=1&','124.148.45.194'),(15534,'2010-02-10 23:21:57',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=146&action=new_product&','124.148.45.194'),(15535,'2010-02-10 23:22:10',1,'product.php','cPath=29_30_119&product_type=1&pID=146&action=new_product_preview&page=1&','124.148.45.194'),(15536,'2010-02-10 23:22:16',1,'product.php','cPath=29_30_119&product_type=1&pID=146&action=update_product&page=1&','124.148.45.194'),(15537,'2010-02-10 23:22:17',1,'categories.php','cPath=29_30_119&pID=146&page=1&','124.148.45.194'),(15538,'2010-02-10 23:22:21',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=148&action=new_product&','124.148.45.194'),(15539,'2010-02-10 23:22:53',1,'product.php','cPath=29_30_119&product_type=1&pID=148&action=new_product_preview&page=1&','124.148.45.194'),(15540,'2010-02-10 23:22:57',1,'product.php','cPath=29_30_119&product_type=1&pID=148&action=update_product&page=1&','124.148.45.194'),(15541,'2010-02-10 23:22:58',1,'categories.php','cPath=29_30_119&pID=148&page=1&','124.148.45.194'),(15542,'2010-02-10 23:23:02',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=633&action=new_product&','124.148.45.194'),(15543,'2010-02-10 23:23:13',1,'product.php','cPath=29_30_119&product_type=1&pID=633&action=new_product_preview&page=1&','124.148.45.194'),(15544,'2010-02-10 23:23:20',1,'product.php','cPath=29_30_119&product_type=1&pID=633&action=update_product&page=1&','124.148.45.194'),(15545,'2010-02-10 23:23:21',1,'categories.php','cPath=29_30_119&pID=633&page=1&','124.148.45.194'),(15546,'2010-02-10 23:23:28',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=149&action=new_product&','124.148.45.194'),(15547,'2010-02-10 23:23:44',1,'product.php','cPath=29_30_119&product_type=1&pID=149&action=new_product_preview&page=1&','124.148.45.194'),(15548,'2010-02-10 23:23:48',1,'product.php','cPath=29_30_119&product_type=1&pID=149&action=update_product&page=1&','124.148.45.194'),(15549,'2010-02-10 23:23:49',1,'categories.php','cPath=29_30_119&pID=149&page=1&','124.148.45.194'),(15550,'2010-02-10 23:23:58',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=637&action=new_product&','124.148.45.194'),(15551,'2010-02-10 23:24:10',1,'product.php','cPath=29_30_119&product_type=1&pID=637&action=new_product_preview&page=1&','124.148.45.194'),(15552,'2010-02-10 23:24:17',1,'product.php','cPath=29_30_119&product_type=1&pID=637&action=update_product&page=1&','124.148.45.194'),(15553,'2010-02-10 23:24:18',1,'categories.php','cPath=29_30_119&pID=637&page=1&','124.148.45.194'),(15554,'2010-02-10 23:24:24',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=147&action=new_product&','124.148.45.194'),(15555,'2010-02-10 23:24:38',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=147&action=new_product&','124.148.45.194'),(15556,'2010-02-10 23:25:19',1,'product.php','cPath=29_30_119&product_type=1&pID=147&action=new_product_preview&page=1&','124.148.45.194'),(15557,'2010-02-10 23:25:28',1,'product.php','cPath=29_30_119&product_type=1&pID=147&action=update_product&page=1&','124.148.45.194'),(15558,'2010-02-10 23:25:28',1,'categories.php','cPath=29_30_119&pID=147&page=1&','124.148.45.194'),(15559,'2010-02-10 23:25:45',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=150&action=new_product&','124.148.45.194'),(15560,'2010-02-10 23:25:57',1,'product.php','cPath=29_30_119&product_type=1&pID=150&action=new_product_preview&page=1&','124.148.45.194'),(15561,'2010-02-10 23:26:00',1,'product.php','cPath=29_30_119&product_type=1&pID=150&action=update_product&page=1&','124.148.45.194'),(15562,'2010-02-10 23:26:00',1,'categories.php','cPath=29_30_119&pID=150&page=1&','124.148.45.194'),(15563,'2010-02-10 23:26:06',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=373&action=new_product&','124.148.45.194'),(15564,'2010-02-10 23:26:23',1,'product.php','cPath=29_30_119&product_type=1&pID=373&action=new_product_preview&page=1&','124.148.45.194'),(15565,'2010-02-10 23:26:27',1,'product.php','cPath=29_30_119&product_type=1&pID=373&action=update_product&page=1&','124.148.45.194'),(15566,'2010-02-10 23:26:28',1,'categories.php','cPath=29_30_119&pID=373&page=1&','124.148.45.194'),(15567,'2010-02-10 23:26:34',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=635&action=new_product&','124.148.45.194'),(15568,'2010-02-10 23:26:45',1,'product.php','cPath=29_30_119&product_type=1&pID=635&action=new_product_preview&page=1&','124.148.45.194'),(15569,'2010-02-10 23:26:57',1,'product.php','cPath=29_30_119&product_type=1&pID=635&action=update_product&page=1&','124.148.45.194'),(15570,'2010-02-10 23:26:58',1,'categories.php','cPath=29_30_119&pID=635&page=1&','124.148.45.194'),(15571,'2010-02-10 23:27:03',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=151&action=new_product&','124.148.45.194'),(15572,'2010-02-10 23:27:13',1,'product.php','cPath=29_30_119&product_type=1&pID=151&action=new_product_preview&page=1&','124.148.45.194'),(15573,'2010-02-10 23:27:19',1,'product.php','cPath=29_30_119&product_type=1&pID=151&action=update_product&page=1&','124.148.45.194'),(15574,'2010-02-10 23:27:19',1,'categories.php','cPath=29_30_119&pID=151&page=1&','124.148.45.194'),(15575,'2010-02-10 23:27:24',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=636&action=new_product&','124.148.45.194'),(15576,'2010-02-10 23:27:43',1,'product.php','cPath=29_30_119&product_type=1&pID=636&action=new_product_preview&page=1&','124.148.45.194'),(15577,'2010-02-10 23:27:50',1,'product.php','cPath=29_30_119&product_type=1&pID=636&action=update_product&page=1&','124.148.45.194'),(15578,'2010-02-10 23:27:51',1,'categories.php','cPath=29_30_119&pID=636&page=1&','124.148.45.194'),(15579,'2010-02-10 23:27:55',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=375&action=new_product&','124.148.45.194'),(15580,'2010-02-10 23:28:10',1,'categories.php','cPath=29_30_119&pID=375&page=1&','124.148.45.194'),(15581,'2010-02-10 23:28:16',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=376&action=new_product&','124.148.45.194'),(15582,'2010-02-10 23:28:22',1,'product.php','page=1&product_type=1&cPath=29_30_119&pID=376&action=new_product&','124.148.45.194'),(15583,'2010-02-10 23:28:39',1,'categories.php','cPath=29_30_119&pID=376&page=1&','124.148.45.194'),(15584,'2010-02-10 23:28:46',1,'categories.php','cPath=121&','124.148.45.194'),(15585,'2010-02-10 23:28:49',1,'product.php','page=1&product_type=1&cPath=121&pID=642&action=new_product&','124.148.45.194'),(15586,'2010-02-10 23:29:01',1,'product.php','cPath=121&product_type=1&pID=642&action=new_product_preview&page=1&','124.148.45.194'),(15587,'2010-02-10 23:29:08',1,'product.php','cPath=121&product_type=1&pID=642&action=update_product&page=1&','124.148.45.194'),(15588,'2010-02-10 23:29:09',1,'categories.php','cPath=121&pID=642&page=1&','124.148.45.194'),(15589,'2010-02-10 23:29:27',1,'categories.php','cPath=122&','124.148.45.194'),(15590,'2010-02-10 23:29:31',1,'product.php','page=1&product_type=1&cPath=122&pID=644&action=new_product&','124.148.45.194'),(15591,'2010-02-10 23:30:59',1,'categories.php','cPath=122&pID=644&page=1&','124.148.45.194'),(15592,'2010-02-10 23:31:06',1,'logoff.php','','124.148.45.194'),(15593,'2010-02-10 23:31:07',0,'login.php ','','124.148.45.194'),(15594,'2010-02-11 02:52:08',0,'login.php ','','124.148.34.70'),(15595,'2010-02-16 17:41:46',0,'login.php ','','124.148.45.194'),(15596,'2010-02-16 17:42:21',0,'login.php hggaller','','124.148.45.194'),(15597,'2010-02-16 17:54:43',1,'categories.php','','124.148.45.194'),(15598,'2010-02-16 17:54:53',1,'categories.php','cPath=5&','124.148.45.194'),(15599,'2010-02-16 17:55:01',1,'categories.php','cPath=5&cID=83&action=move_category&','124.148.45.194'),(15600,'2010-02-16 17:55:11',1,'categories.php','action=move_category_confirm&cPath=5&','124.148.45.194'),(15601,'2010-02-16 17:55:12',1,'categories.php','cPath=98&','124.148.45.194'),(15602,'2010-02-16 17:55:22',1,'categories.php','','124.148.45.194'),(15603,'2010-02-16 17:55:47',1,'categories.php','cPath=4&','124.148.45.194'),(15604,'2010-02-16 17:55:51',1,'categories.php','action=setflag_categories&flag=1&cID=98&cPath=4&','124.148.45.194'),(15605,'2010-02-16 17:55:55',1,'categories.php','action=update_category_status&cPath=4&cID=98&','124.148.45.194'),(15606,'2010-02-16 17:55:56',1,'categories.php','cPath=4&cID=98&','124.148.45.194'),(15607,'2010-02-16 17:56:01',1,'categories.php','','124.148.45.194'),(15608,'2010-02-16 18:50:24',0,'login.php ','','124.148.102.199'),(15609,'2010-02-16 19:55:13',0,'login.php ','','124.148.102.199'),(15610,'2010-02-16 19:56:36',0,'login.php ','','124.148.102.199'),(15611,'2010-02-16 20:15:23',0,'login.php ','','124.148.102.199'),(15612,'2010-02-16 20:54:33',1,'categories.php','cPath=7&','124.148.45.194'),(15613,'2010-02-16 20:54:44',1,'categories.php','cPath=7_31&','124.148.45.194'),(15614,'2010-02-16 20:54:49',1,'product.php','page=1&product_type=1&cPath=7_31&pID=574&action=new_product&','124.148.45.194'),(15615,'2010-02-16 20:55:25',1,'product.php','cPath=7_31&product_type=1&pID=574&action=new_product_preview&page=1&','124.148.45.194'),(15616,'2010-02-16 20:55:28',1,'product.php','cPath=7_31&product_type=1&pID=574&action=update_product&page=1&','124.148.45.194'),(15617,'2010-02-16 20:55:29',1,'categories.php','cPath=7_31&pID=574&page=1&','124.148.45.194'),(15618,'2010-02-16 20:55:43',1,'categories.php','','124.148.45.194'),(15619,'2010-02-16 20:56:49',1,'categories.php','cPath=7&','124.148.45.194'),(15620,'2010-02-16 20:58:51',1,'categories.php','cPath=7_31&','124.148.45.194'),(15621,'2010-02-16 20:58:58',1,'product.php','page=1&product_type=1&cPath=7_31&pID=223&action=new_product&','124.148.45.194'),(15622,'2010-02-16 20:59:12',1,'product.php','cPath=7_31&product_type=1&pID=223&action=new_product_preview&page=1&','124.148.45.194'),(15623,'2010-02-16 20:59:16',1,'product.php','cPath=7_31&product_type=1&pID=223&action=update_product&page=1&','124.148.45.194'),(15624,'2010-02-16 20:59:16',1,'categories.php','cPath=7_31&pID=223&page=1&','124.148.45.194'),(15625,'2010-02-16 20:59:21',1,'product.php','page=1&product_type=1&cPath=7_31&pID=672&action=new_product&','124.148.45.194'),(15626,'2010-02-16 20:59:34',1,'product.php','cPath=7_31&product_type=1&pID=672&action=new_product_preview&page=1&','124.148.45.194'),(15627,'2010-02-16 20:59:38',1,'product.php','cPath=7_31&product_type=1&pID=672&action=update_product&page=1&','124.148.45.194'),(15628,'2010-02-16 20:59:39',1,'categories.php','cPath=7_31&pID=672&page=1&','124.148.45.194'),(15629,'2010-02-16 20:59:43',1,'product.php','page=1&product_type=1&cPath=7_31&pID=675&action=new_product&','124.148.45.194'),(15630,'2010-02-16 20:59:55',1,'product.php','cPath=7_31&product_type=1&pID=675&action=new_product_preview&page=1&','124.148.45.194'),(15631,'2010-02-16 20:59:59',1,'product.php','cPath=7_31&product_type=1&pID=675&action=update_product&page=1&','124.148.45.194'),(15632,'2010-02-16 21:00:00',1,'categories.php','cPath=7_31&pID=675&page=1&','124.148.45.194'),(15633,'2010-02-16 21:02:06',1,'product.php','page=1&product_type=1&cPath=7_31&pID=450&action=new_product&','124.148.45.194'),(15634,'2010-02-16 21:02:14',1,'categories.php','cPath=7_31&pID=450&page=1&','124.148.45.194'),(15635,'2010-02-16 21:02:26',1,'categories.php','cPath=66&','124.148.45.194'),(15636,'2010-02-16 21:02:29',1,'product.php','page=1&product_type=1&cPath=66&pID=447&action=new_product&','124.148.45.194'),(15637,'2010-02-16 21:02:40',1,'product.php','cPath=66&product_type=1&pID=447&action=new_product_preview&page=1&','124.148.45.194'),(15638,'2010-02-16 21:02:45',1,'product.php','cPath=66&product_type=1&pID=447&action=update_product&page=1&','124.148.45.194'),(15639,'2010-02-16 21:02:45',1,'categories.php','cPath=66&pID=447&page=1&','124.148.45.194'),(15640,'2010-02-16 22:28:36',1,'logoff.php','','124.148.45.194'),(15641,'2010-02-16 22:28:36',0,'login.php ','','124.148.45.194'),(15642,'2010-02-17 03:19:36',0,'password_forgotten.php ','action=insert&','84.19.190.28'),(15643,'2010-02-17 03:19:40',0,'password_forgotten.php ','action=insert&','84.19.190.28'),(15644,'2010-02-17 18:10:12',0,'login.php ','','124.148.45.194'),(15645,'2010-02-17 21:41:48',0,'password_forgotten.php ','action=execute&','202.70.54.112'),(15646,'2010-02-18 03:21:45',0,'login.php ','','124.148.102.199'),(15647,'2010-02-18 19:14:31',0,'login.php ','','124.148.45.194'),(15648,'2010-02-19 18:32:58',0,'login.php ','','124.148.45.194'),(15649,'2010-02-19 20:04:48',0,'login.php ','','124.148.45.194'),(15650,'2010-02-23 06:07:23',0,'login.php ','','124.148.85.16'),(15651,'2010-02-23 06:24:00',0,'login.php ','','124.148.85.16'),(15652,'2010-02-23 06:24:02',0,'login.php ','','124.148.85.16'),(15653,'2010-02-23 06:24:04',0,'login.php ','','124.148.85.16'),(15654,'2010-02-25 16:07:21',0,'login.php ','','124.148.85.16'),(15655,'2010-02-26 17:41:26',0,'login.php ','','124.148.45.194'),(15656,'2010-02-28 00:00:20',0,'password_forgotten.php ','action=insert&','79.170.94.87'),(15657,'2010-03-02 17:46:44',0,'login.php ','','124.148.45.194'),(15658,'2010-03-05 19:31:24',0,'login.php ','','124.148.112.76'),(15659,'2010-03-12 17:33:47',0,'login.php ','','125.166.165.28'),(15660,'2010-03-12 17:34:11',0,'password_forgotten.php ','action=execute&','125.166.165.28'),(15661,'2010-03-12 17:34:21',0,'login.php oche_an3h','','125.166.165.28'),(15662,'2010-03-12 17:34:31',15,'define_pages_editor.php','','125.166.165.28'),(15663,'2010-03-12 17:34:32',15,'admin.php','','125.166.165.28'),(15664,'2010-03-12 17:34:35',15,'define_pages_editor.php','reset_editor=1&action=set_editor&','125.166.165.28'),(15665,'2010-03-12 17:34:36',15,'define_pages_editor.php','','125.166.165.28'),(15666,'2010-03-12 17:34:40',15,'admin.php','page=1&adminID=15&','125.166.165.28'),(15667,'2010-03-12 17:34:41',15,'admin.php','page=1&adminID=15&action=delete&','125.166.165.28'),(15668,'2010-03-12 17:34:43',15,'define_pages_editor.php','define_it=3&action=new_page&','125.166.165.28'),(15669,'2010-03-12 17:34:45',15,'admin.php','page=1&adminID=15&action=deleteconfirm&','125.166.165.28'),(15670,'2010-03-12 17:34:46',15,'admin.php','page=1&','125.166.165.28'),(15671,'2010-03-12 17:35:18',15,'define_pages_editor.php','lngdir=english&filename=define_contact_us.php&action=save&','125.166.165.28'),(15672,'2010-03-12 17:35:19',15,'define_pages_editor.php','','125.166.165.28'),(15673,'2010-03-12 17:52:52',15,'define_pages_editor.php','define_it=3&action=new_page&','125.166.165.28'),(15674,'2010-03-12 17:52:57',15,'define_pages_editor.php','lngdir=english&filename=define_contact_us.php&action=save&','125.166.165.28'),(15675,'2010-03-12 17:52:58',15,'define_pages_editor.php','','125.166.165.28'),(15676,'2010-03-12 17:53:00',15,'logoff.php','','125.166.165.28'),(15677,'2010-03-12 17:53:01',0,'login.php ','','125.166.165.28'),(15678,'2010-03-12 18:12:06',0,'login.php ','','124.148.48.153'),(15679,'2010-03-12 20:56:08',0,'login.php hggaller','','124.148.48.153'),(15680,'2010-03-12 20:56:47',1,'categories.php','','124.148.48.153'),(15681,'2010-03-12 20:56:56',1,'categories.php','cPath=7&','124.148.48.153'),(15682,'2010-03-12 20:57:00',1,'categories.php','cPath=7_91&','124.148.48.153'),(15683,'2010-03-12 20:57:06',1,'product.php','page=1&product_type=1&cPath=7_91&pID=548&action=new_product&','124.148.48.153'),(15684,'2010-03-12 20:57:23',1,'product.php','cPath=7_91&product_type=1&pID=548&action=new_product_preview&page=1&','124.148.48.153'),(15685,'2010-03-12 20:57:26',1,'product.php','cPath=7_91&product_type=1&pID=548&action=update_product&page=1&','124.148.48.153'),(15686,'2010-03-12 20:57:27',1,'categories.php','cPath=7_91&pID=548&page=1&','124.148.48.153'),(15687,'2010-03-12 20:58:22',1,'categories.php','','124.148.48.153'),(15688,'2010-03-12 20:58:25',1,'categories.php','cPath=7&','124.148.48.153'),(15689,'2010-03-12 20:58:31',1,'categories.php','cPath=7_121&','124.148.48.153'),(15690,'2010-03-12 20:58:35',1,'product.php','page=1&product_type=1&cPath=7_121&pID=642&action=new_product&','124.148.48.153'),(15691,'2010-03-12 20:58:46',1,'categories.php','','124.148.48.153'),(15692,'2010-03-12 20:59:42',1,'categories.php','cPath=7&','124.148.48.153'),(15693,'2010-03-12 20:59:46',1,'categories.php','cPath=7_8&','124.148.48.153'),(15694,'2010-03-12 21:23:05',1,'categories.php','cPath=7_8&page=2&','124.148.48.153'),(15695,'2010-03-12 21:29:21',1,'categories.php','cPath=7_8&page=1&','124.148.48.153'),(15696,'2010-03-12 21:32:49',1,'product.php','page=1&product_type=1&cPath=7_8&pID=626&action=new_product&','124.148.48.153'),(15697,'2010-03-12 21:33:06',1,'product.php','cPath=7_8&product_type=1&pID=626&action=new_product_preview&page=1&','124.148.48.153'),(15698,'2010-03-12 21:33:19',1,'product.php','cPath=7_8&product_type=1&pID=626&action=update_product&page=1&','124.148.48.153'),(15699,'2010-03-12 21:33:19',1,'categories.php','cPath=7_8&pID=626&page=1&','124.148.48.153'),(15700,'2010-03-12 21:35:31',1,'categories.php','cPath=7_8&page=2&','124.148.48.153'),(15701,'2010-03-12 21:35:41',1,'categories.php','cPath=7_8&page=3&','124.148.48.153'),(15702,'2010-03-12 21:35:56',1,'categories.php','page=1&cPath=7_8&','124.148.48.153'),(15703,'2010-03-12 21:36:03',1,'product.php','page=1&product_type=1&cPath=7_8&pID=505&action=new_product&','124.148.48.153'),(15704,'2010-03-12 21:36:13',1,'product.php','cPath=7_8&product_type=1&pID=505&action=new_product_preview&page=1&','124.148.48.153'),(15705,'2010-03-12 21:36:22',1,'product.php','cPath=7_8&product_type=1&pID=505&action=update_product&page=1&','124.148.48.153'),(15706,'2010-03-12 21:36:22',1,'categories.php','cPath=7_8&pID=505&page=1&','124.148.48.153'),(15707,'2010-03-12 21:36:32',1,'categories.php','page=1&cPath=7_8&','124.148.48.153'),(15708,'2010-03-12 21:36:39',1,'product.php','cPath=7_8&product_type=1&pID=501&action=new_product&','124.148.48.153'),(15709,'2010-03-12 21:36:47',1,'product.php','cPath=7_8&product_type=1&pID=501&action=new_product_preview&','124.148.48.153'),(15710,'2010-03-12 21:36:55',1,'product.php','cPath=7_8&product_type=1&pID=501&action=update_product&','124.148.48.153'),(15711,'2010-03-12 21:36:55',1,'categories.php','cPath=7_8&pID=501&','124.148.48.153'),(15712,'2010-03-12 21:37:06',1,'categories.php','page=1&cPath=7_8&','124.148.48.153'),(15713,'2010-03-12 21:37:34',1,'product.php','page=1&product_type=1&cPath=7_8&pID=539&action=new_product&','124.148.48.153'),(15714,'2010-03-12 21:37:44',1,'product.php','cPath=7_8&product_type=1&pID=539&action=new_product_preview&page=1&','124.148.48.153'),(15715,'2010-03-12 21:37:48',1,'product.php','cPath=7_8&product_type=1&pID=539&action=update_product&page=1&','124.148.48.153'),(15716,'2010-03-12 21:37:48',1,'categories.php','cPath=7_8&pID=539&page=1&','124.148.48.153'),(15717,'2010-03-12 21:38:00',1,'product.php','page=1&product_type=1&cPath=7_8&pID=538&action=new_product&','124.148.48.153'),(15718,'2010-03-12 21:38:13',1,'product.php','cPath=7_8&product_type=1&pID=538&action=new_product_preview&page=1&','124.148.48.153'),(15719,'2010-03-12 21:38:23',1,'product.php','cPath=7_8&product_type=1&pID=538&action=update_product&page=1&','124.148.48.153'),(15720,'2010-03-12 21:38:24',1,'categories.php','cPath=7_8&pID=538&page=1&','124.148.48.153'),(15721,'2010-03-12 21:38:40',1,'product.php','page=1&product_type=1&cPath=7_8&pID=537&action=new_product&','124.148.48.153'),(15722,'2010-03-12 21:38:53',1,'product.php','cPath=7_8&product_type=1&pID=537&action=new_product_preview&page=1&','124.148.48.153'),(15723,'2010-03-12 21:39:13',1,'product.php','cPath=7_8&product_type=1&pID=537&action=update_product&page=1&','124.148.48.153'),(15724,'2010-03-12 21:39:14',1,'categories.php','cPath=7_8&pID=537&page=1&','124.148.48.153'),(15725,'2010-03-12 21:39:32',1,'product.php','page=1&product_type=1&cPath=7_8&pID=573&action=new_product&','124.148.48.153'),(15726,'2010-03-12 21:39:43',1,'product.php','cPath=7_8&product_type=1&pID=573&action=new_product_preview&page=1&','124.148.48.153'),(15727,'2010-03-12 21:39:50',1,'product.php','cPath=7_8&product_type=1&pID=573&action=update_product&page=1&','124.148.48.153'),(15728,'2010-03-12 21:39:51',1,'categories.php','cPath=7_8&pID=573&page=1&','124.148.48.153'),(15729,'2010-03-12 21:39:59',1,'product.php','page=1&product_type=1&cPath=7_8&pID=536&action=new_product&','124.148.48.153'),(15730,'2010-03-12 21:40:18',1,'product.php','cPath=7_8&product_type=1&pID=536&action=new_product_preview&page=1&','124.148.48.153'),(15731,'2010-03-12 21:40:22',1,'product.php','cPath=7_8&product_type=1&pID=536&action=update_product&page=1&','124.148.48.153'),(15732,'2010-03-12 21:40:22',1,'categories.php','cPath=7_8&pID=536&page=1&','124.148.48.153'),(15733,'2010-03-12 21:40:29',1,'product.php','page=1&product_type=1&cPath=7_8&pID=503&action=new_product&','124.148.48.153'),(15734,'2010-03-12 21:40:43',1,'product.php','cPath=7_8&product_type=1&pID=503&action=new_product_preview&page=1&','124.148.48.153'),(15735,'2010-03-12 21:40:50',1,'product.php','cPath=7_8&product_type=1&pID=503&action=update_product&page=1&','124.148.48.153'),(15736,'2010-03-12 21:40:51',1,'categories.php','cPath=7_8&pID=503&page=1&','124.148.48.153'),(15737,'2010-03-12 21:43:33',1,'categories.php','cPath=7_8&page=2&','124.148.48.153'),(15738,'2010-03-12 21:43:52',1,'product.php','page=2&product_type=1&cPath=7_8&pID=497&action=new_product&','124.148.48.153'),(15739,'2010-03-12 21:44:01',1,'product.php','cPath=7_8&product_type=1&pID=497&action=new_product_preview&page=2&','124.148.48.153'),(15740,'2010-03-12 21:44:07',1,'product.php','cPath=7_8&product_type=1&pID=497&action=update_product&page=2&','124.148.48.153'),(15741,'2010-03-12 21:44:08',1,'categories.php','cPath=7_8&pID=497&page=2&','124.148.48.153'),(15742,'2010-03-12 21:44:15',1,'categories.php','cPath=7_8&page=3&','124.148.48.153'),(15743,'2010-03-12 21:44:26',1,'categories.php','cPath=7_8&page=2&','124.148.48.153'),(15744,'2010-03-12 21:44:42',1,'categories.php','cPath=7_8&page=1&','124.148.48.153'),(15745,'2010-03-12 21:44:55',1,'product.php','page=1&product_type=1&cPath=7_8&pID=354&action=new_product&','124.148.48.153'),(15746,'2010-03-12 21:45:04',1,'product.php','cPath=7_8&product_type=1&pID=354&action=new_product_preview&page=1&','124.148.48.153'),(15747,'2010-03-12 21:45:09',1,'product.php','cPath=7_8&product_type=1&pID=354&action=update_product&page=1&','124.148.48.153'),(15748,'2010-03-12 21:45:09',1,'categories.php','cPath=7_8&pID=354&page=1&','124.148.48.153'),(15749,'2010-03-12 21:45:18',1,'categories.php','cPath=7_8&page=1&','124.148.48.153'),(15750,'2010-03-12 21:45:27',1,'product.php','page=1&product_type=1&cPath=7_8&pID=500&action=new_product&','124.148.48.153'),(15751,'2010-03-12 21:45:36',1,'product.php','cPath=7_8&product_type=1&pID=500&action=new_product_preview&page=1&','124.148.48.153'),(15752,'2010-03-12 21:45:43',1,'product.php','cPath=7_8&product_type=1&pID=500&action=update_product&page=1&','124.148.48.153'),(15753,'2010-03-12 21:45:43',1,'categories.php','cPath=7_8&pID=500&page=1&','124.148.48.153'),(15754,'2010-03-12 21:45:52',1,'categories.php','cPath=7_8&page=2&','124.148.48.153'),(15755,'2010-03-12 21:46:00',1,'product.php','page=2&product_type=1&cPath=7_8&pID=497&action=new_product&','124.148.48.153'),(15756,'2010-03-12 21:46:08',1,'product.php','cPath=7_8&product_type=1&pID=497&action=new_product_preview&page=2&','124.148.48.153'),(15757,'2010-03-12 21:46:15',1,'product.php','cPath=7_8&product_type=1&pID=497&action=update_product&page=2&','124.148.48.153'),(15758,'2010-03-12 21:46:16',1,'categories.php','cPath=7_8&pID=497&page=2&','124.148.48.153'),(15759,'2010-03-12 21:46:25',1,'categories.php','cPath=7_8&page=1&','124.148.48.153'),(15760,'2010-03-12 21:46:29',1,'product.php','page=1&product_type=1&cPath=7_8&pID=133&action=new_product&','124.148.48.153'),(15761,'2010-03-12 21:46:40',1,'product.php','cPath=7_8&product_type=1&pID=133&action=new_product_preview&page=1&','124.148.48.153'),(15762,'2010-03-12 21:46:45',1,'product.php','cPath=7_8&product_type=1&pID=133&action=update_product&page=1&','124.148.48.153'),(15763,'2010-03-12 21:46:45',1,'categories.php','cPath=7_8&pID=133&page=1&','124.148.48.153'),(15764,'2010-03-12 21:47:01',1,'product.php','cPath=7_8&product_type=1&pID=62&action=new_product&','124.148.48.153'),(15765,'2010-03-12 21:47:10',1,'product.php','cPath=7_8&product_type=1&pID=62&action=new_product_preview&','124.148.48.153'),(15766,'2010-03-12 21:47:13',1,'product.php','cPath=7_8&product_type=1&pID=62&action=update_product&','124.148.48.153'),(15767,'2010-03-12 21:47:13',1,'categories.php','cPath=7_8&pID=62&','124.148.48.153'),(15768,'2010-03-12 21:56:38',1,'categories.php','cPath=7_8&page=1&','124.148.48.153'),(15769,'2010-03-12 21:56:56',1,'product.php','page=1&product_type=1&cPath=7_8&pID=7&action=new_product&','124.148.48.153'),(15770,'2010-03-12 21:57:10',1,'product.php','cPath=7_8&product_type=1&pID=7&action=new_product_preview&page=1&','124.148.48.153'),(15771,'2010-03-12 21:57:13',1,'product.php','cPath=7_8&product_type=1&pID=7&action=update_product&page=1&','124.148.48.153'),(15772,'2010-03-12 21:57:13',1,'categories.php','cPath=7_8&pID=7&page=1&','124.148.48.153'),(15773,'2010-03-12 21:57:19',1,'product.php','page=1&product_type=1&cPath=7_8&pID=350&action=new_product&','124.148.48.153'),(15774,'2010-03-12 21:57:27',1,'product.php','cPath=7_8&product_type=1&pID=350&action=new_product_preview&page=1&','124.148.48.153'),(15775,'2010-03-12 21:57:31',1,'product.php','cPath=7_8&product_type=1&pID=350&action=update_product&page=1&','124.148.48.153'),(15776,'2010-03-12 21:57:32',1,'categories.php','cPath=7_8&pID=350&page=1&','124.148.48.153'),(15777,'2010-03-12 21:57:39',1,'product.php','page=1&product_type=1&cPath=7_8&pID=349&action=new_product&','124.148.48.153'),(15778,'2010-03-12 21:57:50',1,'product.php','cPath=7_8&product_type=1&pID=349&action=new_product_preview&page=1&','124.148.48.153'),(15779,'2010-03-12 21:57:54',1,'product.php','cPath=7_8&product_type=1&pID=349&action=update_product&page=1&','124.148.48.153'),(15780,'2010-03-12 21:57:54',1,'categories.php','cPath=7_8&pID=349&page=1&','124.148.48.153'),(15781,'2010-03-12 21:58:01',1,'product.php','page=1&product_type=1&cPath=7_8&pID=136&action=new_product&','124.148.48.153'),(15782,'2010-03-12 21:58:11',1,'product.php','cPath=7_8&product_type=1&pID=136&action=new_product_preview&page=1&','124.148.48.153'),(15783,'2010-03-12 21:58:14',1,'product.php','cPath=7_8&product_type=1&pID=136&action=update_product&page=1&','124.148.48.153'),(15784,'2010-03-12 21:58:15',1,'categories.php','cPath=7_8&pID=136&page=1&','124.148.48.153'),(15785,'2010-03-12 21:58:29',1,'product.php','page=1&product_type=1&cPath=7_8&pID=351&action=new_product&','124.148.48.153'),(15786,'2010-03-12 21:58:37',1,'product.php','cPath=7_8&product_type=1&pID=351&action=new_product_preview&page=1&','124.148.48.153'),(15787,'2010-03-12 21:58:42',1,'product.php','cPath=7_8&product_type=1&pID=351&action=update_product&page=1&','124.148.48.153'),(15788,'2010-03-12 21:58:42',1,'categories.php','cPath=7_8&pID=351&page=1&','124.148.48.153'),(15789,'2010-03-12 21:58:51',1,'product.php','page=1&product_type=1&cPath=7_8&pID=317&action=new_product&','124.148.48.153'),(15790,'2010-03-12 23:03:14',1,'product.php','cPath=7_8&product_type=1&pID=317&action=new_product_preview&page=1&','124.148.48.153'),(15791,'2010-03-12 23:03:19',1,'product.php','cPath=7_8&product_type=1&pID=317&action=update_product&page=1&','124.148.48.153'),(15792,'2010-03-12 23:03:23',1,'categories.php','cPath=7_8&pID=317&page=1&','124.148.48.153'),(15793,'2010-03-12 23:03:32',1,'product.php','page=1&product_type=1&cPath=7_8&pID=352&action=new_product&','124.148.48.153'),(15794,'2010-03-12 23:03:41',1,'product.php','cPath=7_8&product_type=1&pID=352&action=new_product_preview&page=1&','124.148.48.153'),(15795,'2010-03-12 23:03:45',1,'product.php','cPath=7_8&product_type=1&pID=352&action=update_product&page=1&','124.148.48.153'),(15796,'2010-03-12 23:03:45',1,'categories.php','cPath=7_8&pID=352&page=1&','124.148.48.153'),(15797,'2010-03-12 23:03:51',1,'product.php','page=1&product_type=1&cPath=7_8&pID=499&action=new_product&','124.148.48.153'),(15798,'2010-03-12 23:04:00',1,'product.php','cPath=7_8&product_type=1&pID=499&action=new_product_preview&page=1&','124.148.48.153'),(15799,'2010-03-12 23:04:03',1,'product.php','cPath=7_8&product_type=1&pID=499&action=update_product&page=1&','124.148.48.153'),(15800,'2010-03-12 23:04:06',1,'categories.php','cPath=7_8&pID=499&page=1&','124.148.48.153'),(15801,'2010-03-12 23:04:13',1,'product.php','page=1&product_type=1&cPath=7_8&pID=626&action=new_product&','124.148.48.153'),(15802,'2010-03-12 23:04:23',1,'product.php','cPath=7_8&product_type=1&pID=626&action=new_product_preview&page=1&','124.148.48.153'),(15803,'2010-03-12 23:04:26',1,'product.php','cPath=7_8&product_type=1&pID=626&action=update_product&page=1&','124.148.48.153'),(15804,'2010-03-12 23:04:26',1,'categories.php','cPath=7_8&pID=626&page=1&','124.148.48.153'),(15805,'2010-03-12 23:04:39',1,'product.php','page=1&product_type=1&cPath=7_8&pID=539&action=new_product&','124.148.48.153'),(15806,'2010-03-12 23:04:47',1,'product.php','cPath=7_8&product_type=1&pID=539&action=new_product_preview&page=1&','124.148.48.153'),(15807,'2010-03-12 23:04:51',1,'product.php','cPath=7_8&product_type=1&pID=539&action=update_product&page=1&','124.148.48.153'),(15808,'2010-03-12 23:04:51',1,'categories.php','cPath=7_8&pID=539&page=1&','124.148.48.153'),(15809,'2010-03-12 23:04:57',1,'product.php','page=1&product_type=1&cPath=7_8&pID=538&action=new_product&','124.148.48.153'),(15810,'2010-03-12 23:05:05',1,'product.php','cPath=7_8&product_type=1&pID=538&action=new_product_preview&page=1&','124.148.48.153'),(15811,'2010-03-12 23:05:08',1,'product.php','cPath=7_8&product_type=1&pID=538&action=update_product&page=1&','124.148.48.153'),(15812,'2010-03-12 23:05:09',1,'categories.php','cPath=7_8&pID=538&page=1&','124.148.48.153'),(15813,'2010-03-12 23:05:29',1,'product.php','page=1&product_type=1&cPath=7_8&pID=537&action=new_product&','124.148.48.153'),(15814,'2010-03-12 23:05:38',1,'product.php','cPath=7_8&product_type=1&pID=537&action=new_product_preview&page=1&','124.148.48.153'),(15815,'2010-03-12 23:05:42',1,'product.php','cPath=7_8&product_type=1&pID=537&action=update_product&page=1&','124.148.48.153'),(15816,'2010-03-12 23:05:42',1,'categories.php','cPath=7_8&pID=537&page=1&','124.148.48.153'),(15817,'2010-03-12 23:05:54',1,'product.php','page=1&product_type=1&cPath=7_8&pID=573&action=new_product&','124.148.48.153'),(15818,'2010-03-12 23:06:51',1,'product.php','cPath=7_8&product_type=1&pID=573&action=new_product_preview&page=1&','124.148.48.153'),(15819,'2010-03-12 23:06:55',1,'product.php','cPath=7_8&product_type=1&pID=573&action=update_product&page=1&','124.148.48.153'),(15820,'2010-03-12 23:06:55',1,'categories.php','cPath=7_8&pID=573&page=1&','124.148.48.153'),(15821,'2010-03-12 23:07:03',1,'product.php','page=1&product_type=1&cPath=7_8&pID=536&action=new_product&','124.148.48.153'),(15822,'2010-03-12 23:07:12',1,'product.php','cPath=7_8&product_type=1&pID=536&action=new_product_preview&page=1&','124.148.48.153'),(15823,'2010-03-12 23:07:19',1,'product.php','cPath=7_8&product_type=1&pID=536&action=update_product&page=1&','124.148.48.153'),(15824,'2010-03-12 23:07:21',1,'categories.php','cPath=7_8&pID=536&page=1&','124.148.48.153'),(15825,'2010-03-12 23:07:29',1,'product.php','page=1&product_type=1&cPath=7_8&pID=503&action=new_product&','124.148.48.153'),(15826,'2010-03-12 23:07:38',1,'product.php','cPath=7_8&product_type=1&pID=503&action=new_product_preview&page=1&','124.148.48.153'),(15827,'2010-03-12 23:07:41',1,'product.php','cPath=7_8&product_type=1&pID=503&action=update_product&page=1&','124.148.48.153'),(15828,'2010-03-12 23:07:42',1,'categories.php','cPath=7_8&pID=503&page=1&','124.148.48.153'),(15829,'2010-03-12 23:59:57',1,'logoff.php','','124.148.48.153'),(15830,'2010-03-12 23:59:58',0,'login.php ','','124.148.48.153'),(15831,'2010-03-13 19:12:33',0,'login.php ','','124.148.48.153'),(15832,'2010-03-13 19:13:45',0,'login.php ','','124.148.48.153'),(15833,'2010-03-13 19:35:44',0,'login.php ','','124.148.48.153'),(15834,'2010-03-13 20:25:47',0,'login.php ','','124.148.48.153'),(15835,'2010-03-14 18:39:00',0,'login.php ','','124.148.112.76'),(15836,'2010-03-16 18:39:31',0,'login.php ','','124.148.88.11'),(15837,'2010-03-16 18:48:10',0,'login.php hggaller','','124.148.88.11'),(15838,'2010-03-17 00:54:46',1,'logoff.php','','124.148.88.11'),(15839,'2010-03-17 00:54:46',0,'login.php ','','124.148.88.11'),(15840,'2010-03-17 19:55:09',0,'login.php ','','124.148.88.11'),(15841,'2010-03-17 19:55:18',0,'login.php ','','124.148.88.11'),(15842,'2010-03-18 02:42:46',0,'login.php ','','124.148.61.180'),(15843,'2010-03-18 06:29:54',0,'login.php hggaller','','124.148.61.180'),(15844,'2010-03-18 06:36:09',1,'newsletters.php','','124.148.61.180'),(15845,'2010-03-18 06:36:39',1,'newsletters.php','action=new&','124.148.61.180'),(15846,'2010-03-18 06:45:50',1,'newsletters.php','action=insert&','124.148.61.180'),(15847,'2010-03-18 06:45:52',1,'newsletters.php','nID=2&','124.148.61.180'),(15848,'2010-03-18 06:46:09',1,'newsletters.php','page=1&nID=2&action=send&','124.148.61.180'),(15849,'2010-03-18 06:46:30',1,'newsletters.php','page=1&nID=2&action=confirm&','124.148.61.180'),(15850,'2010-03-18 06:46:39',1,'newsletters.php','page=1&nID=2&','124.148.61.180'),(15851,'2010-03-18 06:46:46',1,'newsletters.php','page=1&nID=2&action=preview&','124.148.61.180'),(15852,'2010-03-18 06:46:59',1,'newsletters.php','page=1&nID=2&','124.148.61.180'),(15853,'2010-03-18 06:47:10',1,'newsletters.php','page=1&nID=2&action=send&','124.148.61.180'),(15854,'2010-03-18 06:50:23',1,'newsletters.php','page=1&nID=2&action=confirm&','124.148.61.180'),(15855,'2010-03-18 06:54:12',1,'newsletters.php','page=1&nID=2&action=confirm_send&','124.148.61.180'),(15856,'2010-03-18 06:54:34',1,'newsletters.php','page=1&nID=2&action=confirm_send&audience_selected=Administrator&cl_page=2&cl_offset=0&cl_queue=20&cl_refresh=20&','124.148.61.180'),(15857,'2010-03-18 06:54:40',1,'newsletters.php','page=1&nID=2&','124.148.61.180'),(15858,'2010-03-18 06:56:51',1,'customers.php','','124.148.61.180'),(15859,'2010-03-18 06:57:25',1,'customers.php','page=2&','124.148.61.180'),(15860,'2010-03-18 06:57:36',1,'customers.php','page=2&cID=4&','124.148.61.180'),(15861,'2010-03-18 06:57:45',1,'mail.php','origin=customers.php&mode=NONSSL&selected_box=tools&customer=steve@thegalleryeumundi.com.au&cID=4&','124.148.61.180'),(15862,'2010-03-18 06:58:34',1,'mail.php','action=preview&','124.148.61.180'),(15863,'2010-03-18 06:58:44',1,'mail.php','action=send_email_to_user&','124.148.61.180'),(15864,'2010-03-18 06:59:05',1,'mail.php','action=send_email_to_user_queue&cl_page=2&cl_offset=0&cl_queue=20&cl_refresh=20&','124.148.61.180'),(15865,'2010-03-18 06:59:57',1,'mail.php','','124.148.61.180'),(15866,'2010-03-18 07:01:43',1,'newsletters.php','','124.148.61.180'),(15867,'2010-03-18 07:01:52',1,'newsletters.php','page=1&nID=2&action=send&','124.148.61.180'),(15868,'2010-03-18 07:02:14',1,'newsletters.php','page=1&nID=2&action=confirm&','124.148.61.180'),(15869,'2010-03-18 07:02:23',1,'newsletters.php','page=1&nID=2&','124.148.61.180'),(15870,'2010-03-18 07:04:25',1,'newsletters.php','page=1&nID=1&','124.148.61.180'),(15871,'2010-03-18 07:04:28',1,'newsletters.php','page=1&nID=2&','124.148.61.180'),(15872,'2010-03-18 07:04:36',1,'newsletters.php','page=1&nID=2&action=preview&','124.148.61.180'),(15873,'2010-03-18 07:04:43',1,'newsletters.php','page=1&nID=2&','124.148.61.180'),(15874,'2010-03-18 07:04:59',1,'newsletters.php','page=1&nID=2&action=send&','124.148.61.180'),(15875,'2010-03-18 07:13:49',1,'newsletters.php','page=1&nID=2&action=confirm&','124.148.61.180'),(15876,'2010-03-18 07:16:24',1,'newsletters.php','page=1&nID=2&','124.148.61.180'),(15877,'2010-03-18 07:42:37',1,'logoff.php','','124.148.61.180'),(15878,'2010-03-18 07:42:38',0,'login.php ','','124.148.61.180'),(15879,'2010-03-18 07:42:47',0,'login.php ','','124.148.61.180'),(15880,'2010-03-18 07:43:14',0,'login.php hggaller','','124.148.61.180'),(15881,'2010-03-18 08:08:07',1,'logoff.php','','124.148.61.180'),(15882,'2010-03-18 08:08:08',0,'login.php ','','124.148.61.180'),(15883,'2010-03-18 20:40:18',0,'login.php ','','124.148.88.11'),(15884,'2010-03-19 07:01:55',0,'login.php ','','124.148.61.180'),(15885,'2010-03-19 08:33:36',0,'login.php hggaller','','124.148.61.180'),(15886,'2010-03-19 08:36:35',1,'categories.php','','124.148.61.180'),(15887,'2010-03-19 08:37:01',1,'customers.php','','124.148.61.180'),(15888,'2010-03-19 08:37:28',1,'customers.php','page=2&','124.148.61.180'),(15889,'2010-03-19 08:37:35',1,'customers.php','page=2&cID=4&','124.148.61.180'),(15890,'2010-03-19 08:38:07',1,'categories.php','','124.148.61.180'),(15891,'2010-03-19 08:38:22',1,'categories.php','cPath=4&','124.148.61.180'),(15892,'2010-03-19 08:38:26',1,'categories.php','cPath=4_98&','124.148.61.180'),(15893,'2010-03-19 08:39:20',1,'categories.php','cPath=4_98_83&','124.148.61.180'),(15894,'2010-03-19 08:40:07',1,'product.php','cPath=4_98_83&product_type=1&pID=659&action=copy_to&','124.148.61.180'),(15895,'2010-03-19 08:40:21',1,'product.php','action=copy_to_confirm&cPath=4_98_83&page=1&','124.148.61.180'),(15896,'2010-03-19 08:40:22',1,'categories.php','cPath=8&pID=683&page=1&','124.148.61.180'),(15897,'2010-03-19 08:40:31',1,'product.php','page=1&product_type=1&cPath=8&pID=683&action=new_product&','124.148.61.180'),(15898,'2010-03-19 08:40:46',1,'product.php','cPath=8&product_type=1&pID=683&action=new_product_preview&page=1&','124.148.61.180'),(15899,'2010-03-19 08:40:52',1,'product.php','cPath=8&product_type=1&pID=683&action=update_product&page=1&','124.148.61.180'),(15900,'2010-03-19 08:40:53',1,'categories.php','cPath=8&pID=683&page=1&','124.148.61.180'),(15901,'2010-03-19 08:41:55',1,'categories.php','action=setflag&flag=1&pID=683&cPath=8&page=1&','124.148.61.180'),(15902,'2010-03-19 08:41:56',1,'categories.php','cPath=8&pID=683&page=1&','124.148.61.180'),(15903,'2010-03-19 08:42:03',1,'categories.php','cPath=83&','124.148.61.180'),(15904,'2010-03-19 08:44:12',1,'product.php','cPath=83&product_type=1&pID=673&action=move_product&','124.148.61.180'),(15905,'2010-03-19 08:44:28',1,'product.php','action=move_product_confirm&cPath=83&page=1&','124.148.61.180'),(15906,'2010-03-19 08:44:30',1,'categories.php','cPath=8&pID=673&page=1&','124.148.61.180'),(15907,'2010-03-19 08:44:49',1,'product.php','page=1&product_type=1&cPath=8&pID=673&action=new_product&','124.148.61.180'),(15908,'2010-03-19 08:45:46',1,'categories.php','cPath=8&pID=673&page=1&','124.148.61.180'),(15909,'2010-03-19 08:46:14',1,'categories.php','cPath=83&','124.148.61.180'),(15910,'2010-03-19 08:47:03',1,'product.php','cPath=83&product_type=1&pID=656&action=copy_to&','124.148.61.180'),(15911,'2010-03-19 08:47:31',1,'product.php','action=copy_to_confirm&cPath=83&page=1&','124.148.61.180'),(15912,'2010-03-19 08:47:36',1,'categories.php','cPath=8&pID=684&page=1&','124.148.61.180'),(15913,'2010-03-19 08:51:07',1,'categories.php','cPath=8&pID=684&page=1&','124.148.61.180'),(15914,'2010-03-19 08:51:25',1,'product.php','page=1&product_type=1&cPath=8&pID=684&action=new_product&','124.148.61.180'),(15915,'2010-03-19 08:51:53',1,'product.php','cPath=8&product_type=1&pID=684&action=new_product_preview&page=1&','124.148.61.180'),(15916,'2010-03-19 08:51:57',1,'product.php','cPath=8&product_type=1&pID=684&action=update_product&page=1&','124.148.61.180'),(15917,'2010-03-19 08:51:58',1,'categories.php','cPath=8&pID=684&page=1&','124.148.61.180'),(15918,'2010-03-19 08:52:12',1,'product.php','page=1&product_type=1&cPath=8&pID=673&action=new_product&','124.148.61.180'),(15919,'2010-03-19 08:52:22',1,'categories.php','cPath=8&pID=673&page=1&','124.148.61.180'),(15920,'2010-03-19 08:52:27',1,'product.php','cPath=8&product_type=1&pID=673&action=copy_to&','124.148.61.180'),(15921,'2010-03-19 08:52:41',1,'product.php','action=copy_to_confirm&cPath=8&page=1&','124.148.61.180'),(15922,'2010-03-19 08:52:42',1,'categories.php','cPath=83&pID=685&page=1&','124.148.61.180'),(15923,'2010-03-19 08:53:02',1,'categories.php','action=setflag&flag=1&pID=685&cPath=83&page=1&','124.148.61.180'),(15924,'2010-03-19 08:53:05',1,'categories.php','cPath=83&pID=685&page=1&','124.148.61.180'),(15925,'2010-03-19 08:54:40',1,'product.php','cPath=83&product_type=1&pID=660&action=copy_to&','124.148.61.180'),(15926,'2010-03-19 08:54:54',1,'product.php','action=copy_to_confirm&cPath=83&page=1&','124.148.61.180'),(15927,'2010-03-19 08:54:55',1,'categories.php','cPath=8&pID=686&page=1&','124.148.61.180'),(15928,'2010-03-19 08:55:15',1,'product.php','page=1&product_type=1&cPath=8&pID=686&action=new_product&','124.148.61.180'),(15929,'2010-03-19 08:55:26',1,'product.php','cPath=8&product_type=1&pID=686&action=new_product_preview&page=1&','124.148.61.180'),(15930,'2010-03-19 08:55:30',1,'product.php','cPath=8&product_type=1&pID=686&action=update_product&page=1&','124.148.61.180'),(15931,'2010-03-19 08:55:31',1,'categories.php','cPath=8&pID=686&page=1&','124.148.61.180'),(15932,'2010-03-19 08:55:43',1,'product.php','page=1&product_type=1&cPath=8&pID=684&action=new_product&','124.148.61.180'),(15933,'2010-03-19 08:56:01',1,'product.php','cPath=8&product_type=1&pID=684&action=new_product_preview&page=1&','124.148.61.180'),(15934,'2010-03-19 08:56:07',1,'product.php','cPath=8&product_type=1&pID=684&action=update_product&page=1&','124.148.61.180'),(15935,'2010-03-19 08:56:08',1,'categories.php','cPath=8&pID=684&page=1&','124.148.61.180'),(15936,'2010-03-19 08:56:16',1,'product.php','cPath=8&product_type=1&pID=673&action=new_product&','124.148.61.180'),(15937,'2010-03-19 08:56:25',1,'product.php','cPath=8&product_type=1&pID=673&action=new_product_preview&','124.148.61.180'),(15938,'2010-03-19 08:57:16',1,'product.php','cPath=8&product_type=1&pID=673&action=update_product&','124.148.61.180'),(15939,'2010-03-19 08:57:16',1,'categories.php','cPath=8&pID=673&','124.148.61.180'),(15940,'2010-03-19 08:57:28',1,'categories.php','cPath=83&','124.148.61.180'),(15941,'2010-03-19 08:59:26',1,'product.php','cPath=83&product_type=1&pID=674&action=copy_to&','124.148.61.180'),(15942,'2010-03-19 08:59:43',1,'product.php','action=copy_to_confirm&cPath=83&page=1&','124.148.61.180'),(15943,'2010-03-19 08:59:44',1,'categories.php','cPath=8&pID=687&page=1&','124.148.61.180'),(15944,'2010-03-19 08:59:52',1,'product.php','page=1&product_type=1&cPath=8&pID=687&action=new_product&','124.148.61.180'),(15945,'2010-03-19 09:00:06',1,'product.php','cPath=8&product_type=1&pID=687&action=new_product_preview&page=1&','124.148.61.180'),(15946,'2010-03-19 09:00:10',1,'product.php','cPath=8&product_type=1&pID=687&action=update_product&page=1&','124.148.61.180'),(15947,'2010-03-19 09:00:11',1,'categories.php','cPath=8&pID=687&page=1&','124.148.61.180'),(15948,'2010-03-19 09:00:23',1,'categories.php','cPath=83&','124.148.61.180'),(15949,'2010-03-19 09:00:32',1,'product.php','cPath=83&product_type=1&pID=504&action=copy_to&','124.148.61.180'),(15950,'2010-03-19 09:00:45',1,'product.php','action=copy_to_confirm&cPath=83&page=1&','124.148.61.180'),(15951,'2010-03-19 09:00:47',1,'categories.php','cPath=8&pID=688&page=1&','124.148.61.180'),(15952,'2010-03-19 09:01:16',1,'product.php','cPath=8&product_type=1&pID=688&action=new_product&','124.148.61.180'),(15953,'2010-03-19 09:01:30',1,'product.php','cPath=8&product_type=1&pID=688&action=new_product_preview&','124.148.61.180'),(15954,'2010-03-19 09:01:35',1,'product.php','cPath=8&product_type=1&pID=688&action=update_product&','124.148.61.180'),(15955,'2010-03-19 09:01:37',1,'categories.php','cPath=8&pID=688&','124.148.61.180'),(15956,'2010-03-19 09:01:52',1,'categories.php','cPath=83&','124.148.61.180'),(15957,'2010-03-19 09:02:08',1,'product.php','cPath=83&product_type=1&pID=655&action=copy_to&','124.148.61.180'),(15958,'2010-03-19 09:02:20',1,'product.php','action=copy_to_confirm&cPath=83&page=1&','124.148.61.180'),(15959,'2010-03-19 09:02:21',1,'categories.php','cPath=8&pID=689&page=1&','124.148.61.180'),(15960,'2010-03-19 09:02:30',1,'product.php','cPath=8&product_type=1&pID=689&action=new_product&','124.148.61.180'),(15961,'2010-03-19 09:02:43',1,'product.php','cPath=8&product_type=1&pID=689&action=new_product_preview&','124.148.61.180'),(15962,'2010-03-19 09:02:47',1,'product.php','cPath=8&product_type=1&pID=689&action=update_product&','124.148.61.180'),(15963,'2010-03-19 09:02:47',1,'categories.php','cPath=8&pID=689&','124.148.61.180'),(15964,'2010-03-19 09:03:33',1,'categories.php','cPath=83&','124.148.61.180'),(15965,'2010-03-19 09:04:44',1,'product.php','cPath=83&product_type=1&pID=657&action=copy_to&','124.148.61.180'),(15966,'2010-03-19 09:05:00',1,'product.php','action=copy_to_confirm&cPath=83&page=1&','124.148.61.180'),(15967,'2010-03-19 09:05:02',1,'categories.php','cPath=8&pID=690&page=1&','124.148.61.180'),(15968,'2010-03-19 09:05:16',1,'product.php','page=1&product_type=1&cPath=8&pID=573&action=new_product&','124.148.61.180'),(15969,'2010-03-19 09:05:56',1,'categories.php','cPath=8&pID=573&page=1&','124.148.61.180'),(15970,'2010-03-19 09:06:02',1,'categories.php','cPath=8&page=2&','124.148.61.180'),(15971,'2010-03-19 09:06:06',1,'product.php','page=2&product_type=1&cPath=8&pID=317&action=new_product&','124.148.61.180'),(15972,'2010-03-19 09:06:19',1,'categories.php','cPath=8&pID=317&page=2&','124.148.61.180'),(15973,'2010-03-19 09:06:24',1,'categories.php','cPath=8&page=1&','124.148.61.180'),(15974,'2010-03-19 09:06:58',1,'product.php','cPath=8&product_type=1&pID=690&action=new_product&','124.148.61.180'),(15975,'2010-03-19 09:10:14',1,'product.php','cPath=8&product_type=1&pID=690&action=new_product_preview&','124.148.61.180'),(15976,'2010-03-19 09:10:27',1,'product.php','cPath=8&product_type=1&pID=690&action=update_product&','124.148.61.180'),(15977,'2010-03-19 09:10:28',1,'categories.php','cPath=8&pID=690&','124.148.61.180'),(15978,'2010-03-19 09:11:59',1,'product.php','page=1&product_type=1&cPath=8&pID=690&action=new_product&','124.148.61.180'),(15979,'2010-03-19 09:12:14',1,'product.php','cPath=8&product_type=1&pID=690&action=new_product_preview&page=1&','124.148.61.180'),(15980,'2010-03-19 09:12:17',1,'product.php','cPath=8&product_type=1&pID=690&action=update_product&page=1&','124.148.61.180'),(15981,'2010-03-19 09:12:18',1,'categories.php','cPath=8&pID=690&page=1&','124.148.61.180'),(15982,'2010-03-19 09:13:09',1,'categories.php','','124.148.61.180'),(15983,'2010-03-19 09:13:15',1,'categories.php','cPath=7&','124.148.61.180'),(15984,'2010-03-19 09:13:23',1,'categories.php','cPath=7&action=new_category&','124.148.61.180'),(15985,'2010-03-19 09:13:37',1,'categories.php','action=insert_category&cPath=7&','124.148.61.180'),(15986,'2010-03-19 09:13:38',1,'categories.php','cPath=7&cID=124&','124.148.61.180'),(15987,'2010-03-19 09:13:50',1,'categories.php','action=setflag_categories&flag=0&cID=124&cPath=7&','124.148.61.180'),(15988,'2010-03-19 09:13:53',1,'categories.php','action=update_category_status&cPath=7&cID=124&','124.148.61.180'),(15989,'2010-03-19 09:13:54',1,'categories.php','cPath=7&cID=124&','124.148.61.180'),(15990,'2010-03-19 09:14:02',1,'categories.php','cPath=7&action=new_category&','124.148.61.180'),(15991,'2010-03-19 09:15:42',1,'categories.php','action=insert_category&cPath=7&','124.148.61.180'),(15992,'2010-03-19 09:15:43',1,'categories.php','cPath=7&cID=125&','124.148.61.180'),(15993,'2010-03-19 09:16:33',1,'categories.php','action=setflag_categories&flag=0&cID=125&cPath=7&','124.148.61.180'),(15994,'2010-03-19 09:16:36',1,'categories.php','action=update_category_status&cPath=7&cID=125&','124.148.61.180'),(15995,'2010-03-19 09:16:37',1,'categories.php','cPath=7&cID=125&','124.148.61.180'),(15996,'2010-03-19 09:20:06',1,'categories.php','cPath=7_124&','124.148.61.180'),(15997,'2010-03-19 09:20:10',1,'categories.php','x=25&y=8&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(15998,'2010-03-19 09:20:11',1,'product.php','x=25&y=8&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(15999,'2010-03-19 09:22:28',1,'product.php','cPath=7_124&product_type=1&action=new_product_preview&','124.148.61.180'),(16000,'2010-03-19 09:22:35',1,'product.php','cPath=7_124&product_type=1&action=insert_product&','124.148.61.180'),(16001,'2010-03-19 09:22:38',1,'categories.php','cPath=7_124&pID=691&','124.148.61.180'),(16002,'2010-03-19 09:22:45',1,'categories.php','x=40&y=14&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16003,'2010-03-19 09:22:46',1,'product.php','x=40&y=14&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16004,'2010-03-19 09:24:13',1,'product.php','cPath=7_124&product_type=1&action=new_product_preview&','124.148.61.180'),(16005,'2010-03-19 09:24:24',1,'product.php','cPath=7_124&product_type=1&action=insert_product&','124.148.61.180'),(16006,'2010-03-19 09:24:24',1,'categories.php','cPath=7_124&pID=692&','124.148.61.180'),(16007,'2010-03-19 09:24:32',1,'categories.php','x=60&y=17&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16008,'2010-03-19 09:24:33',1,'product.php','x=60&y=17&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16009,'2010-03-19 09:26:51',1,'product.php','cPath=7_124&product_type=1&action=new_product_preview&','124.148.61.180'),(16010,'2010-03-19 09:27:04',1,'product.php','cPath=7_124&product_type=1&action=insert_product&','124.148.61.180'),(16011,'2010-03-19 09:27:05',1,'categories.php','cPath=7_124&pID=693&','124.148.61.180'),(16012,'2010-03-19 09:27:12',1,'categories.php','x=31&y=6&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16013,'2010-03-19 09:27:12',1,'product.php','x=31&y=6&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16014,'2010-03-19 09:28:05',1,'product.php','cPath=7_124&product_type=1&action=new_product_preview&','124.148.61.180'),(16015,'2010-03-19 09:28:09',1,'product.php','cPath=7_124&product_type=1&action=insert_product&','124.148.61.180'),(16016,'2010-03-19 09:28:09',1,'categories.php','cPath=7_124&pID=694&','124.148.61.180'),(16017,'2010-03-19 09:28:44',1,'categories.php','x=22&y=9&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16018,'2010-03-19 09:28:46',1,'product.php','x=22&y=9&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16019,'2010-03-19 09:29:38',1,'product.php','cPath=7_124&product_type=1&action=new_product_preview&','124.148.61.180'),(16020,'2010-03-19 09:29:42',1,'product.php','cPath=7_124&product_type=1&action=insert_product&','124.148.61.180'),(16021,'2010-03-19 09:29:43',1,'categories.php','cPath=7_124&pID=695&','124.148.61.180'),(16022,'2010-03-19 09:31:00',1,'categories.php','x=63&y=8&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16023,'2010-03-19 09:31:02',1,'product.php','x=63&y=8&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16024,'2010-03-19 09:32:27',1,'product.php','cPath=7_124&product_type=1&action=new_product_preview&','124.148.61.180'),(16025,'2010-03-19 09:32:34',1,'product.php','cPath=7_124&product_type=1&action=insert_product&','124.148.61.180'),(16026,'2010-03-19 09:32:35',1,'categories.php','cPath=7_124&pID=696&','124.148.61.180'),(16027,'2010-03-19 09:32:41',1,'categories.php','x=53&y=6&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16028,'2010-03-19 09:32:42',1,'product.php','x=53&y=6&product_type=1&cPath=7_124&action=new_product&','124.148.61.180'),(16029,'2010-03-19 09:33:26',1,'product.php','cPath=7_124&product_type=1&action=new_product_preview&','124.148.61.180'),(16030,'2010-03-19 09:33:38',1,'product.php','cPath=7_124&product_type=1&action=insert_product&','124.148.61.180'),(16031,'2010-03-19 09:33:38',1,'categories.php','cPath=7_124&pID=697&','124.148.61.180'),(16032,'2010-03-19 09:34:36',1,'categories.php','cPath=7&','124.148.61.180'),(16033,'2010-03-19 09:35:06',1,'categories.php','action=setflag_categories&flag=1&cID=124&cPath=7&','124.148.61.180'),(16034,'2010-03-19 09:35:28',1,'categories.php','action=update_category_status&cPath=7&cID=124&','124.148.61.180'),(16035,'2010-03-19 09:35:29',1,'categories.php','cPath=7&cID=124&','124.148.61.180'),(16036,'2010-03-19 09:38:10',1,'categories.php','cPath=7_124&','124.148.61.180'),(16037,'2010-03-19 09:38:17',1,'categories.php','cPath=7&cID=124&','124.148.61.180'),(16038,'2010-03-19 09:38:25',1,'categories.php','cPath=7&cID=124&action=edit_category&','124.148.61.180'),(16039,'2010-03-19 09:39:11',1,'categories.php','action=update_category&cPath=7&','124.148.61.180'),(16040,'2010-03-19 09:39:11',1,'categories.php','cPath=7&cID=124&','124.148.61.180'),(16041,'2010-03-19 09:42:45',1,'categories.php','cPath=7_15&','124.148.61.180'),(16042,'2010-03-19 09:42:56',1,'categories.php','cPath=122&','124.148.61.180'),(16043,'2010-03-19 09:43:04',1,'product.php','page=1&product_type=1&cPath=122&pID=644&action=new_product&','124.148.61.180'),(16044,'2010-03-19 09:43:22',1,'categories.php','cPath=122&pID=644&page=1&','124.148.61.180'),(16045,'2010-03-19 09:43:27',1,'product.php','page=1&product_type=1&cPath=122&pID=646&action=new_product&','124.148.61.180'),(16046,'2010-03-19 09:43:36',1,'categories.php','cPath=122&pID=646&page=1&','124.148.61.180'),(16047,'2010-03-19 09:43:39',1,'categories.php','x=60&y=15&product_type=1&cPath=122&action=new_product&','124.148.61.180'),(16048,'2010-03-19 09:43:40',1,'product.php','x=60&y=15&product_type=1&cPath=122&action=new_product&','124.148.61.180'),(16049,'2010-03-19 09:48:16',1,'product.php','cPath=122&product_type=1&action=new_product_preview&','124.148.61.180'),(16050,'2010-03-19 09:48:33',1,'product.php','cPath=122&product_type=1&action=insert_product&','124.148.61.180'),(16051,'2010-03-19 09:48:35',1,'categories.php','cPath=122&pID=698&','124.148.61.180'),(16052,'2010-03-19 09:49:39',1,'categories.php','x=68&y=12&product_type=1&cPath=122&action=new_product&','124.148.61.180'),(16053,'2010-03-19 09:49:39',1,'product.php','x=68&y=12&product_type=1&cPath=122&action=new_product&','124.148.61.180'),(16054,'2010-03-19 09:50:48',1,'product.php','cPath=122&product_type=1&action=new_product_preview&','124.148.61.180'),(16055,'2010-03-19 09:51:10',1,'product.php','cPath=122&product_type=1&action=insert_product&','124.148.61.180'),(16056,'2010-03-19 09:51:11',1,'categories.php','cPath=122&pID=699&','124.148.61.180'),(16057,'2010-03-19 09:52:22',1,'categories.php','cPath=6&','124.148.61.180'),(16058,'2010-03-19 09:52:30',1,'categories.php','cPath=6_80&','124.148.61.180'),(16059,'2010-03-19 09:52:40',1,'categories.php','cPath=6&cID=80&','124.148.61.180'),(16060,'2010-03-19 09:52:46',1,'categories.php','cPath=6&cID=80&action=edit_category&','124.148.61.180'),(16061,'2010-03-19 09:53:39',1,'categories.php','action=update_category&cPath=6&','124.148.61.180'),(16062,'2010-03-19 09:53:39',1,'categories.php','cPath=6&cID=80&','124.148.61.180'),(16063,'2010-03-19 09:53:47',1,'categories.php','action=setflag_categories&flag=1&cID=80&cPath=6&','124.148.61.180'),(16064,'2010-03-19 09:53:51',1,'categories.php','action=update_category_status&cPath=6&cID=80&','124.148.61.180'),(16065,'2010-03-19 09:53:52',1,'categories.php','cPath=6&cID=80&','124.148.61.180'),(16066,'2010-03-19 09:53:57',1,'categories.php','cPath=6_81&','124.148.61.180'),(16067,'2010-03-19 09:54:01',1,'categories.php','cPath=6&cID=81&','124.148.61.180'),(16068,'2010-03-19 09:54:07',1,'categories.php','cPath=6&cID=81&action=edit_category&','124.148.61.180'),(16069,'2010-03-19 09:54:25',1,'categories.php','action=update_category&cPath=6&','124.148.61.180'),(16070,'2010-03-19 09:54:26',1,'categories.php','cPath=6&cID=81&','124.148.61.180'),(16071,'2010-03-19 09:54:43',1,'categories.php','cPath=83&','124.148.61.180'),(16072,'2010-03-19 09:54:50',1,'categories.php','cPath=4&','124.148.61.180'),(16073,'2010-03-19 09:54:57',1,'categories.php','cPath=4_97&','124.148.61.180'),(16074,'2010-03-19 09:55:15',1,'categories.php','cPath=96&','124.148.61.180'),(16075,'2010-03-19 09:55:51',1,'categories.php','cPath=98&','124.148.61.180'),(16076,'2010-03-19 09:56:02',1,'categories.php','cPath=98&cID=83&action=edit_category&','124.148.61.180'),(16077,'2010-03-19 09:56:27',1,'categories.php','action=update_category&cPath=98&','124.148.61.180'),(16078,'2010-03-19 09:56:27',1,'categories.php','cPath=98&cID=83&','124.148.61.180'),(16079,'2010-03-19 09:57:02',1,'categories.php','cPath=96&','124.148.61.180'),(16080,'2010-03-19 09:57:37',1,'categories.php','cPath=6&','124.148.61.180'),(16081,'2010-03-19 09:57:47',1,'categories.php','cPath=6&cID=80&action=edit_category&','124.148.61.180'),(16082,'2010-03-19 09:57:54',1,'categories.php','action=update_category&cPath=6&','124.148.61.180'),(16083,'2010-03-19 09:57:55',1,'categories.php','cPath=6&cID=80&','124.148.61.180'),(16084,'2010-03-19 09:58:01',1,'categories.php','cPath=6&cID=90&action=edit_category&','124.148.61.180'),(16085,'2010-03-19 09:58:32',1,'categories.php','action=update_category&cPath=6&','124.148.61.180'),(16086,'2010-03-19 09:58:32',1,'categories.php','cPath=6&cID=90&','124.148.61.180'),(16087,'2010-03-19 09:58:52',1,'categories.php','cPath=96&','124.148.61.180'),(16088,'2010-03-19 09:59:03',1,'categories.php','cPath=98&','124.148.61.180'),(16089,'2010-03-19 09:59:12',1,'categories.php','cPath=6&','124.148.61.180'),(16090,'2010-03-19 09:59:19',1,'categories.php','cPath=6&cID=90&action=edit_category&','124.148.61.180'),(16091,'2010-03-19 09:59:27',1,'categories.php','action=update_category&cPath=6&','124.148.61.180'),(16092,'2010-03-19 09:59:28',1,'categories.php','cPath=6&cID=90&','124.148.61.180'),(16093,'2010-03-19 09:59:34',1,'categories.php','action=setflag_categories&flag=1&cID=90&cPath=6&','124.148.61.180'),(16094,'2010-03-19 09:59:37',1,'categories.php','action=update_category_status&cPath=6&cID=90&','124.148.61.180'),(16095,'2010-03-19 09:59:38',1,'categories.php','cPath=6&cID=90&','124.148.61.180'),(16096,'2010-03-19 09:59:43',1,'categories.php','cPath=6&cID=81&action=edit_category&','124.148.61.180'),(16097,'2010-03-19 09:59:58',1,'categories.php','action=update_category&cPath=6&','124.148.61.180'),(16098,'2010-03-19 09:59:59',1,'categories.php','cPath=6&cID=81&','124.148.61.180'),(16099,'2010-03-19 10:00:05',1,'categories.php','cPath=6&action=new_category&','124.148.61.180'),(16100,'2010-03-19 10:01:16',1,'categories.php','action=insert_category&cPath=6&','124.148.61.180'),(16101,'2010-03-19 10:01:17',1,'categories.php','cPath=6&cID=126&','124.148.61.180'),(16102,'2010-03-19 10:02:15',1,'categories.php','cPath=6_126&','124.148.61.180'),(16103,'2010-03-19 10:02:20',1,'categories.php','cPath=6&cID=126&','124.148.61.180'),(16104,'2010-03-19 10:02:24',1,'categories.php','cPath=6&cID=126&action=edit_category&','124.148.61.180'),(16105,'2010-03-19 10:02:49',1,'categories.php','cPath=6&cID=126&','124.148.61.180'),(16106,'2010-03-19 10:03:16',1,'categories.php','cPath=6&cID=90&action=edit_category&','124.148.61.180'),(16107,'2010-03-19 10:03:27',1,'categories.php','action=update_category&cPath=6&','124.148.61.180'),(16108,'2010-03-19 10:03:28',1,'categories.php','cPath=6&cID=90&','124.148.61.180'),(16109,'2010-03-19 10:04:52',1,'logoff.php','','124.148.61.180'),(16110,'2010-03-19 10:04:54',0,'login.php ','','124.148.61.180'),(16111,'2010-03-19 19:18:57',0,'login.php ','','124.148.88.11'),(16112,'2010-03-20 01:18:46',0,'login.php hggaller','','124.148.88.11'),(16113,'2010-03-20 01:19:09',1,'categories.php','','124.148.88.11'),(16114,'2010-03-20 01:21:19',1,'categories.php','cPath=7&','124.148.88.11'),(16115,'2010-03-20 01:26:54',1,'categories.php','cPath=7&cID=124&action=edit_category&','124.148.88.11'),(16116,'2010-03-20 01:37:07',1,'categories.php','action=update_category&cPath=7&','124.148.88.11'),(16117,'2010-03-20 01:37:07',1,'categories.php','cPath=7&cID=124&','124.148.88.11'),(16118,'2010-03-20 01:38:54',1,'categories.php','cPath=7_123&','124.148.88.11'),(16119,'2010-03-20 01:38:58',1,'categories.php','x=34&y=10&product_type=1&cPath=7_123&action=new_product&','124.148.88.11'),(16120,'2010-03-20 01:38:59',1,'product.php','x=34&y=10&product_type=1&cPath=7_123&action=new_product&','124.148.88.11'),(16121,'2010-03-20 01:42:49',1,'product.php','cPath=7_123&product_type=1&action=new_product_preview&','124.148.88.11'),(16122,'2010-03-20 01:42:59',1,'product.php','cPath=7_123&product_type=1&action=insert_product&','124.148.88.11'),(16123,'2010-03-20 01:42:59',1,'categories.php','cPath=7_123&pID=700&','124.148.88.11'),(16124,'2010-03-20 01:44:36',1,'categories.php','x=82&y=13&product_type=1&cPath=7_123&action=new_product&','124.148.88.11'),(16125,'2010-03-20 01:44:36',1,'product.php','x=82&y=13&product_type=1&cPath=7_123&action=new_product&','124.148.88.11'),(16126,'2010-03-20 01:45:49',1,'product.php','cPath=7_123&product_type=1&action=new_product_preview&','124.148.88.11'),(16127,'2010-03-20 01:45:57',1,'product.php','cPath=7_123&product_type=1&action=insert_product&','124.148.88.11'),(16128,'2010-03-20 01:45:57',1,'categories.php','cPath=7_123&pID=701&','124.148.88.11'),(16129,'2010-03-20 01:46:18',1,'categories.php','x=59&y=10&product_type=1&cPath=7_123&action=new_product&','124.148.88.11'),(16130,'2010-03-20 01:46:18',1,'product.php','x=59&y=10&product_type=1&cPath=7_123&action=new_product&','124.148.88.11'),(16131,'2010-03-20 01:48:31',1,'product.php','cPath=7_123&product_type=1&action=new_product_preview&','124.148.88.11'),(16132,'2010-03-20 01:48:41',1,'product.php','cPath=7_123&product_type=1&action=insert_product&','124.148.88.11'),(16133,'2010-03-20 01:48:42',1,'categories.php','cPath=7_123&pID=702&','124.148.88.11'),(16134,'2010-03-20 01:48:53',1,'categories.php','x=55&y=14&product_type=1&cPath=7_123&action=new_product&','124.148.88.11'),(16135,'2010-03-20 01:48:53',1,'product.php','x=55&y=14&product_type=1&cPath=7_123&action=new_product&','124.148.88.11'),(16136,'2010-03-20 01:49:56',1,'product.php','cPath=7_123&product_type=1&action=new_product_preview&','124.148.88.11'),(16137,'2010-03-20 01:50:02',1,'product.php','cPath=7_123&product_type=1&action=insert_product&','124.148.88.11'),(16138,'2010-03-20 01:50:02',1,'categories.php','cPath=7_123&pID=703&','124.148.88.11'),(16139,'2010-03-20 01:51:02',1,'product.php','cPath=7_123&product_type=1&pID=703&action=new_product&','124.148.88.11'),(16140,'2010-03-20 01:51:26',1,'product.php','cPath=7_123&product_type=1&pID=703&action=new_product_preview&','124.148.88.11'),(16141,'2010-03-20 01:51:33',1,'product.php','cPath=7_123&product_type=1&pID=703&action=update_product&','124.148.88.11'),(16142,'2010-03-20 01:51:33',1,'categories.php','cPath=7_123&pID=703&','124.148.88.11'),(16143,'2010-03-20 01:51:47',1,'categories.php','cPath=7&','124.148.88.11'),(16144,'2010-03-20 01:51:57',1,'categories.php','cPath=7&cID=124&action=edit_category&','124.148.88.11'),(16145,'2010-03-20 01:52:54',1,'categories.php','action=update_category&cPath=7&','124.148.88.11'),(16146,'2010-03-20 01:52:55',1,'categories.php','cPath=7&cID=124&','124.148.88.11'),(16147,'2010-03-20 01:53:02',1,'categories.php','cPath=7_8&','124.148.88.11'),(16148,'2010-03-20 01:53:10',1,'categories.php','cPath=7&cID=8&action=edit_category&','124.148.88.11'),(16149,'2010-03-20 01:54:26',1,'categories.php','cPath=7&cID=8&','124.148.88.11'),(16150,'2010-03-20 01:54:33',1,'categories.php','cPath=7_93&','124.148.88.11'),(16151,'2010-03-20 01:54:40',1,'categories.php','cPath=7&cID=93&action=edit_category&','124.148.88.11'),(16152,'2010-03-20 01:54:56',1,'categories.php','cPath=7&cID=93&','124.148.88.11'),(16153,'2010-03-20 01:55:03',1,'categories.php','cPath=7_86&','124.148.88.11'),(16154,'2010-03-20 01:55:11',1,'categories.php','cPath=7&cID=86&action=edit_category&','124.148.88.11'),(16155,'2010-03-20 01:55:31',1,'categories.php','cPath=7&cID=86&','124.148.88.11'),(16156,'2010-03-20 01:56:01',1,'categories.php','cPath=7_121&','124.148.88.11'),(16157,'2010-03-20 01:56:06',1,'categories.php','cPath=7_124&','124.148.88.11'),(16158,'2010-03-20 01:56:15',1,'categories.php','cPath=7&cID=121&action=edit_category&','124.148.88.11'),(16159,'2010-03-20 01:56:27',1,'categories.php','cPath=7_124&','124.148.88.11'),(16160,'2010-03-20 01:56:37',1,'categories.php','cPath=7&cID=124&action=edit_category&','124.148.88.11'),(16161,'2010-03-20 01:57:24',1,'categories.php','action=update_category&cPath=7&','124.148.88.11'),(16162,'2010-03-20 01:57:24',1,'categories.php','cPath=7&cID=124&','124.148.88.11'),(16163,'2010-03-20 01:59:53',1,'categories.php','cPath=7&cID=124&action=edit_category&','124.148.88.11'),(16164,'2010-03-20 02:03:53',1,'categories.php','action=update_category&cPath=7&','124.148.88.11'),(16165,'2010-03-20 02:03:54',1,'categories.php','cPath=7&cID=124&','124.148.88.11'),(16166,'2010-03-20 02:04:43',1,'categories.php','cPath=7_34&','124.148.88.11'),(16167,'2010-03-20 02:04:55',1,'categories.php','x=64&y=10&product_type=1&cPath=7_34&action=new_product&','124.148.88.11'),(16168,'2010-03-20 02:04:57',1,'product.php','x=64&y=10&product_type=1&cPath=7_34&action=new_product&','124.148.88.11'),(16169,'2010-03-20 02:37:36',1,'product.php','cPath=7_34&product_type=1&action=new_product_preview&','124.148.88.11'),(16170,'2010-03-20 02:37:50',1,'product.php','cPath=7_34&product_type=1&action=insert_product&','124.148.88.11'),(16171,'2010-03-20 02:37:51',1,'categories.php','cPath=7_34&pID=704&','124.148.88.11'),(16172,'2010-03-20 02:37:56',1,'categories.php','x=83&y=12&product_type=1&cPath=7_34&action=new_product&','124.148.88.11'),(16173,'2010-03-20 02:37:57',1,'product.php','x=83&y=12&product_type=1&cPath=7_34&action=new_product&','124.148.88.11'),(16174,'2010-03-20 02:39:49',1,'product.php','cPath=7_34&product_type=1&action=new_product_preview&','124.148.88.11'),(16175,'2010-03-20 02:39:58',1,'product.php','cPath=7_34&product_type=1&action=insert_product&','124.148.88.11'),(16176,'2010-03-20 02:39:58',1,'categories.php','cPath=7_34&pID=705&','124.148.88.11'),(16177,'2010-03-20 02:40:05',1,'categories.php','x=14&y=17&product_type=1&cPath=7_34&action=new_product&','124.148.88.11'),(16178,'2010-03-20 02:40:06',1,'product.php','x=14&y=17&product_type=1&cPath=7_34&action=new_product&','124.148.88.11'),(16179,'2010-03-20 02:41:01',1,'product.php','cPath=7_34&product_type=1&action=new_product_preview&','124.148.88.11'),(16180,'2010-03-20 02:41:12',1,'product.php','cPath=7_34&product_type=1&action=insert_product&','124.148.88.11'),(16181,'2010-03-20 02:41:13',1,'categories.php','cPath=7_34&pID=706&','124.148.88.11'),(16182,'2010-03-20 02:52:02',1,'categories.php','cPath=7&','124.148.88.11'),(16183,'2010-03-20 02:52:07',1,'categories.php','cPath=7&cID=125&action=edit_category&','124.148.88.11'),(16184,'2010-03-20 03:02:51',1,'categories.php','action=update_category&cPath=7&','124.148.88.11'),(16185,'2010-03-20 03:02:52',1,'categories.php','cPath=7&cID=125&','124.148.88.11'),(16186,'2010-03-20 03:02:57',1,'categories.php','action=setflag_categories&flag=1&cID=125&cPath=7&','124.148.88.11'),(16187,'2010-03-20 03:03:22',1,'categories.php','action=update_category_status&cPath=7&cID=125&','124.148.88.11'),(16188,'2010-03-20 03:03:23',1,'categories.php','cPath=7&cID=125&','124.148.88.11'),(16189,'2010-03-20 03:03:58',1,'categories.php','cPath=7_125&','124.148.88.11'),(16190,'2010-03-20 03:04:07',1,'categories.php','x=56&y=10&product_type=1&cPath=7_125&action=new_product&','124.148.88.11'),(16191,'2010-03-20 03:04:08',1,'product.php','x=56&y=10&product_type=1&cPath=7_125&action=new_product&','124.148.88.11'),(16192,'2010-03-20 03:06:29',1,'product.php','cPath=7_125&product_type=1&action=new_product_preview&','124.148.88.11'),(16193,'2010-03-20 03:07:26',1,'product.php','cPath=7_125&product_type=1&action=insert_product&','124.148.88.11'),(16194,'2010-03-20 03:07:26',1,'categories.php','cPath=7_125&pID=707&','124.148.88.11'),(16195,'2010-03-20 03:07:59',1,'categories.php','x=45&y=13&product_type=1&cPath=7_125&action=new_product&','124.148.88.11'),(16196,'2010-03-20 03:08:00',1,'product.php','x=45&y=13&product_type=1&cPath=7_125&action=new_product&','124.148.88.11'),(16197,'2010-03-20 03:09:14',1,'categories.php','cPath=7_125&','124.148.88.11'),(16198,'2010-03-20 03:09:31',1,'logoff.php','','124.148.88.11'),(16199,'2010-03-20 03:09:34',0,'login.php ','','124.148.88.11'),(16200,'2010-03-20 22:10:38',0,'login.php ','','124.148.88.11'),(16201,'2010-03-20 22:11:35',0,'login.php hggaller','','124.148.88.11'),(16202,'2010-03-20 22:12:32',1,'categories.php','','124.148.88.11'),(16203,'2010-03-20 22:12:41',1,'categories.php','cPath=7&','124.148.88.11'),(16204,'2010-03-20 22:12:47',1,'categories.php','cPath=7_8&','124.148.88.11'),(16205,'2010-03-20 22:12:59',1,'product.php','page=1&product_type=1&cPath=7_8&pID=573&action=new_product&','124.148.88.11'),(16206,'2010-03-20 22:13:39',1,'product.php','cPath=7_8&product_type=1&pID=573&action=new_product_preview&page=1&','124.148.88.11'),(16207,'2010-03-20 22:14:12',1,'product.php','cPath=7_8&product_type=1&pID=573&action=update_product&page=1&','124.148.88.11'),(16208,'2010-03-20 22:14:12',1,'categories.php','cPath=7_8&pID=573&page=1&','124.148.88.11'),(16209,'2010-03-20 22:14:24',1,'product.php','page=1&product_type=1&cPath=7_8&pID=690&action=new_product&','124.148.88.11'),(16210,'2010-03-20 22:14:39',1,'product.php','cPath=7_8&product_type=1&pID=690&action=new_product_preview&page=1&','124.148.88.11'),(16211,'2010-03-20 22:14:43',1,'product.php','cPath=7_8&product_type=1&pID=690&action=update_product&page=1&','124.148.88.11'),(16212,'2010-03-20 22:14:43',1,'categories.php','cPath=7_8&pID=690&page=1&','124.148.88.11'),(16213,'2010-03-20 22:15:07',1,'logoff.php','','124.148.88.11'),(16214,'2010-03-20 22:15:07',0,'login.php ','','124.148.88.11'),(16215,'2010-03-22 17:40:22',0,'password_forgotten.php ','action=insert&','188.120.234.161'),(16216,'2010-03-22 17:40:23',0,'password_forgotten.php ','action=insert&','188.120.234.161'),(16217,'2010-03-22 17:40:28',0,'password_forgotten.php ','action=insert&','188.120.234.161'),(16218,'2010-03-22 17:40:30',0,'password_forgotten.php ','action=insert&','188.120.234.161'),(16219,'2010-03-23 18:03:09',0,'login.php ','','124.148.88.11'),(16220,'2010-03-23 22:28:01',0,'login.php hggaller','','124.148.88.11'),(16221,'2010-03-23 22:28:11',1,'categories.php','','124.148.88.11'),(16222,'2010-03-23 22:28:15',1,'categories.php','cPath=7&','124.148.88.11'),(16223,'2010-03-23 22:28:22',1,'categories.php','cPath=7_125&','124.148.88.11'),(16224,'2010-03-23 22:28:26',1,'product.php','page=1&product_type=1&cPath=7_125&pID=707&action=new_product&','124.148.88.11'),(16225,'2010-03-23 22:28:52',1,'product.php','cPath=7_125&product_type=1&pID=707&action=new_product_preview&page=1&','124.148.88.11'),(16226,'2010-03-23 22:28:59',1,'product.php','cPath=7_125&product_type=1&pID=707&action=update_product&page=1&','124.148.88.11'),(16227,'2010-03-23 22:29:00',1,'categories.php','cPath=7_125&pID=707&page=1&','124.148.88.11'),(16228,'2010-03-23 22:30:05',1,'categories.php','x=70&y=10&product_type=1&cPath=7_125&action=new_product&','124.148.88.11'),(16229,'2010-03-23 22:30:06',1,'product.php','x=70&y=10&product_type=1&cPath=7_125&action=new_product&','124.148.88.11'),(16230,'2010-03-23 22:32:54',1,'product.php','cPath=7_125&product_type=1&action=new_product_preview&','124.148.88.11'),(16231,'2010-03-23 22:33:02',1,'product.php','cPath=7_125&product_type=1&action=insert_product&','124.148.88.11'),(16232,'2010-03-23 22:33:02',1,'categories.php','cPath=7_125&pID=708&','124.148.88.11'),(16233,'2010-03-23 22:33:07',1,'categories.php','x=74&y=12&product_type=1&cPath=7_125&action=new_product&','124.148.88.11'),(16234,'2010-03-23 22:33:07',1,'product.php','x=74&y=12&product_type=1&cPath=7_125&action=new_product&','124.148.88.11'),(16235,'2010-03-23 22:35:06',1,'product.php','cPath=7_125&product_type=1&action=new_product_preview&','124.148.88.11'),(16236,'2010-03-23 22:35:09',1,'product.php','cPath=7_125&product_type=1&action=insert_product&','124.148.88.11'),(16237,'2010-03-23 22:35:10',1,'categories.php','cPath=7_125&pID=709&','124.148.88.11'),(16238,'2010-03-23 22:35:15',1,'categories.php','x=48&y=11&product_type=1&cPath=7_125&action=new_product&','124.148.88.11'),(16239,'2010-03-23 22:35:15',1,'product.php','x=48&y=11&product_type=1&cPath=7_125&action=new_product&','124.148.88.11'),(16240,'2010-03-23 22:37:14',1,'product.php','cPath=7_125&product_type=1&action=new_product_preview&','124.148.88.11'),(16241,'2010-03-23 22:37:33',1,'product.php','cPath=7_125&product_type=1&action=insert_product&','124.148.88.11'),(16242,'2010-03-23 22:37:35',1,'categories.php','cPath=7_125&pID=710&','124.148.88.11'),(16243,'2010-03-23 22:38:26',1,'product.php','page=1&product_type=1&cPath=7_125&pID=710&action=new_product&','124.148.88.11'),(16244,'2010-03-23 22:38:39',1,'product.php','cPath=7_125&product_type=1&pID=710&action=new_product_preview&page=1&','124.148.88.11'),(16245,'2010-03-23 22:38:45',1,'product.php','cPath=7_125&product_type=1&pID=710&action=update_product&page=1&','124.148.88.11'),(16246,'2010-03-23 22:38:46',1,'categories.php','cPath=7_125&pID=710&page=1&','124.148.88.11'),(16247,'2010-03-23 22:39:02',1,'categories.php','','124.148.88.11'),(16248,'2010-03-23 22:39:06',1,'categories.php','cPath=7&','124.148.88.11'),(16249,'2010-03-23 22:39:09',1,'categories.php','cPath=7_94&','124.148.88.11'),(16250,'2010-03-23 22:39:15',1,'categories.php','x=57&y=14&product_type=1&cPath=7_94&action=new_product&','124.148.88.11'),(16251,'2010-03-23 22:39:15',1,'product.php','x=57&y=14&product_type=1&cPath=7_94&action=new_product&','124.148.88.11'),(16252,'2010-03-23 22:40:15',1,'product.php','cPath=7_94&product_type=1&action=new_product_preview&','124.148.88.11'),(16253,'2010-03-23 22:40:20',1,'product.php','cPath=7_94&product_type=1&action=insert_product&','124.148.88.11'),(16254,'2010-03-23 22:40:21',1,'categories.php','cPath=7_94&pID=711&','124.148.88.11'),(16255,'2010-03-23 22:40:26',1,'categories.php','x=83&y=11&product_type=1&cPath=7_94&action=new_product&','124.148.88.11'),(16256,'2010-03-23 22:40:27',1,'product.php','x=83&y=11&product_type=1&cPath=7_94&action=new_product&','124.148.88.11'),(16257,'2010-03-23 22:41:09',1,'product.php','cPath=7_94&product_type=1&action=new_product_preview&','124.148.88.11'),(16258,'2010-03-23 22:41:17',1,'product.php','cPath=7_94&product_type=1&action=insert_product&','124.148.88.11'),(16259,'2010-03-23 22:41:17',1,'categories.php','cPath=7_94&pID=712&','124.148.88.11'),(16260,'2010-03-23 22:41:24',1,'categories.php','x=61&y=14&product_type=1&cPath=7_94&action=new_product&','124.148.88.11'),(16261,'2010-03-23 22:41:25',1,'product.php','x=61&y=14&product_type=1&cPath=7_94&action=new_product&','124.148.88.11'),(16262,'2010-03-23 22:42:52',1,'product.php','cPath=7_94&product_type=1&action=new_product_preview&','124.148.88.11'),(16263,'2010-03-23 22:42:55',1,'product.php','cPath=7_94&product_type=1&action=insert_product&','124.148.88.11'),(16264,'2010-03-23 22:42:56',1,'categories.php','cPath=7_94&pID=713&','124.148.88.11'),(16265,'2010-03-23 22:43:05',1,'categories.php','x=50&y=8&product_type=1&cPath=7_94&action=new_product&','124.148.88.11'),(16266,'2010-03-23 22:43:06',1,'product.php','x=50&y=8&product_type=1&cPath=7_94&action=new_product&','124.148.88.11'),(16267,'2010-03-23 22:46:59',1,'product.php','cPath=7_94&product_type=1&action=new_product_preview&','124.148.88.11'),(16268,'2010-03-23 22:47:04',1,'product.php','cPath=7_94&product_type=1&action=insert_product&','124.148.88.11'),(16269,'2010-03-23 22:47:05',1,'categories.php','cPath=7_94&pID=714&','124.148.88.11'),(16270,'2010-03-23 22:47:14',1,'logoff.php','','124.148.88.11'),(16271,'2010-03-23 22:47:15',0,'login.php ','','124.148.88.11'),(16272,'2010-03-25 18:03:40',0,'login.php ','','124.148.96.37'),(16273,'2010-03-25 19:35:21',0,'login.php hggaller','','124.148.96.37'),(16274,'2010-03-25 19:36:28',1,'categories.php','','124.148.96.37'),(16275,'2010-03-25 19:37:23',1,'categories.php','cPath=7&','124.148.96.37'),(16276,'2010-03-25 19:38:45',1,'categories.php','cPath=7_94&','124.148.96.37'),(16277,'2010-03-25 20:04:38',1,'product.php','page=1&product_type=1&cPath=7_94&pID=712&action=new_product&','124.148.96.37'),(16278,'2010-03-25 20:08:22',1,'product.php','cPath=7_94&product_type=1&pID=712&action=new_product_preview&page=1&','124.148.96.37'),(16279,'2010-03-25 20:09:14',1,'product.php','cPath=7_94&product_type=1&pID=712&action=update_product&page=1&','124.148.96.37'),(16280,'2010-03-25 20:09:15',1,'categories.php','cPath=7_94&pID=712&page=1&','124.148.96.37'),(16281,'2010-03-25 20:09:34',1,'product.php','page=1&product_type=1&cPath=7_94&pID=714&action=new_product&','124.148.96.37'),(16282,'2010-03-25 20:10:15',1,'product.php','cPath=7_94&product_type=1&pID=714&action=new_product_preview&page=1&','124.148.96.37'),(16283,'2010-03-25 20:11:01',1,'product.php','cPath=7_94&product_type=1&pID=714&action=update_product&page=1&','124.148.96.37'),(16284,'2010-03-25 20:11:01',1,'categories.php','cPath=7_94&pID=714&page=1&','124.148.96.37'),(16285,'2010-03-25 20:13:03',1,'product.php','cPath=7_94&product_type=1&pID=711&action=new_product&','124.148.96.37'),(16286,'2010-03-25 20:15:07',1,'product.php','cPath=7_94&product_type=1&pID=711&action=new_product_preview&','124.148.96.37'),(16287,'2010-03-25 20:15:31',1,'product.php','cPath=7_94&product_type=1&pID=711&action=update_product&','124.148.96.37'),(16288,'2010-03-25 20:15:31',1,'categories.php','cPath=7_94&pID=711&','124.148.96.37'),(16289,'2010-03-25 20:15:58',1,'product.php','cPath=7_94&product_type=1&pID=713&action=new_product&','124.148.96.37'),(16290,'2010-03-25 20:17:27',1,'product.php','cPath=7_94&product_type=1&pID=713&action=new_product_preview&','124.148.96.37'),(16291,'2010-03-25 20:17:43',1,'product.php','cPath=7_94&product_type=1&pID=713&action=update_product&','124.148.96.37'),(16292,'2010-03-25 20:17:44',1,'categories.php','cPath=7_94&pID=713&','124.148.96.37'),(16293,'2010-03-25 20:18:37',1,'categories.php','action=setflag&flag=1&pID=713&cPath=7_94&page=1&','124.148.96.37'),(16294,'2010-03-25 20:18:38',1,'categories.php','cPath=7_94&pID=713&page=1&','124.148.96.37'),(16295,'2010-03-25 20:18:53',1,'categories.php','cPath=8&','124.148.96.37'),(16296,'2010-03-25 20:19:49',1,'product.php','page=1&product_type=1&cPath=8&pID=690&action=new_product&','124.148.96.37'),(16297,'2010-03-25 20:20:02',1,'product.php','cPath=8&product_type=1&pID=690&action=new_product_preview&page=1&','124.148.96.37'),(16298,'2010-03-25 20:20:05',1,'product.php','cPath=8&product_type=1&pID=690&action=update_product&page=1&','124.148.96.37'),(16299,'2010-03-25 20:20:06',1,'categories.php','cPath=8&pID=690&page=1&','124.148.96.37'),(16300,'2010-03-25 20:20:23',1,'product.php','cPath=8&product_type=1&pID=689&action=new_product&','124.148.96.37'),(16301,'2010-03-25 20:20:35',1,'product.php','cPath=8&product_type=1&pID=689&action=new_product_preview&','124.148.96.37'),(16302,'2010-03-25 20:20:42',1,'product.php','cPath=8&product_type=1&pID=689&action=update_product&','124.148.96.37'),(16303,'2010-03-25 20:20:43',1,'categories.php','cPath=8&pID=689&','124.148.96.37'),(16304,'2010-03-25 20:22:01',1,'product.php','cPath=8&product_type=1&pID=688&action=new_product&','124.148.96.37'),(16305,'2010-03-25 20:22:12',1,'product.php','cPath=8&product_type=1&pID=688&action=new_product_preview&','124.148.96.37'),(16306,'2010-03-25 20:22:18',1,'product.php','cPath=8&product_type=1&pID=688&action=update_product&','124.148.96.37'),(16307,'2010-03-25 20:22:19',1,'categories.php','cPath=8&pID=688&','124.148.96.37'),(16308,'2010-03-25 20:22:35',1,'product.php','cPath=8&product_type=1&pID=687&action=new_product&','124.148.96.37'),(16309,'2010-03-25 20:22:46',1,'product.php','cPath=8&product_type=1&pID=687&action=new_product_preview&','124.148.96.37'),(16310,'2010-03-25 20:23:11',1,'product.php','cPath=8&product_type=1&pID=687&action=update_product&','124.148.96.37'),(16311,'2010-03-25 20:23:11',1,'categories.php','cPath=8&pID=687&','124.148.96.37'),(16312,'2010-03-25 20:23:34',1,'product.php','cPath=8&product_type=1&pID=684&action=new_product&','124.148.96.37'),(16313,'2010-03-25 20:23:56',1,'product.php','cPath=8&product_type=1&pID=684&action=new_product_preview&','124.148.96.37'),(16314,'2010-03-25 20:24:05',1,'product.php','cPath=8&product_type=1&pID=684&action=update_product&','124.148.96.37'),(16315,'2010-03-25 20:24:05',1,'categories.php','cPath=8&pID=684&','124.148.96.37'),(16316,'2010-03-25 20:24:27',1,'product.php','cPath=8&product_type=1&pID=673&action=new_product&','124.148.96.37'),(16317,'2010-03-25 20:24:40',1,'product.php','cPath=8&product_type=1&pID=673&action=new_product_preview&','124.148.96.37'),(16318,'2010-03-25 20:24:54',1,'product.php','cPath=8&product_type=1&pID=673&action=update_product&','124.148.96.37'),(16319,'2010-03-25 20:24:54',1,'categories.php','cPath=8&pID=673&','124.148.96.37'),(16320,'2010-03-25 20:25:10',1,'product.php','cPath=8&product_type=1&pID=686&action=new_product&','124.148.96.37'),(16321,'2010-03-25 20:25:26',1,'product.php','cPath=8&product_type=1&pID=686&action=new_product_preview&','124.148.96.37'),(16322,'2010-03-25 20:25:32',1,'product.php','cPath=8&product_type=1&pID=686&action=update_product&','124.148.96.37'),(16323,'2010-03-25 20:25:33',1,'categories.php','cPath=8&pID=686&','124.148.96.37'),(16324,'2010-03-25 20:25:47',1,'product.php','cPath=8&product_type=1&pID=683&action=new_product&','124.148.96.37'),(16325,'2010-03-25 20:25:59',1,'product.php','cPath=8&product_type=1&pID=683&action=new_product_preview&','124.148.96.37'),(16326,'2010-03-25 20:26:17',1,'product.php','cPath=8&product_type=1&pID=683&action=update_product&','124.148.96.37'),(16327,'2010-03-25 20:26:17',1,'categories.php','cPath=8&pID=683&','124.148.96.37'),(16328,'2010-03-25 20:26:39',1,'categories.php','x=47&y=8&product_type=1&cPath=8&action=new_product&','124.148.96.37'),(16329,'2010-03-25 20:26:40',1,'product.php','x=47&y=8&product_type=1&cPath=8&action=new_product&','124.148.96.37'),(16330,'2010-03-25 20:27:55',1,'product.php','cPath=8&product_type=1&action=new_product_preview&','124.148.96.37'),(16331,'2010-03-25 20:28:02',1,'product.php','cPath=8&product_type=1&action=insert_product&','124.148.96.37'),(16332,'2010-03-25 20:28:10',1,'categories.php','cPath=8&pID=715&','124.148.96.37'),(16333,'2010-03-25 20:28:28',1,'categories.php','x=70&y=13&product_type=1&cPath=8&action=new_product&','124.148.96.37'),(16334,'2010-03-25 20:28:28',1,'product.php','x=70&y=13&product_type=1&cPath=8&action=new_product&','124.148.96.37'),(16335,'2010-03-25 20:29:15',1,'product.php','cPath=8&product_type=1&action=new_product_preview&','124.148.96.37'),(16336,'2010-03-25 20:29:20',1,'product.php','cPath=8&product_type=1&action=insert_product&','124.148.96.37'),(16337,'2010-03-25 20:29:21',1,'categories.php','cPath=8&pID=716&','124.148.96.37'),(16338,'2010-03-25 20:29:50',1,'categories.php','action=setflag&flag=0&pID=716&cPath=8&page=1&','124.148.96.37'),(16339,'2010-03-25 20:29:50',1,'categories.php','cPath=8&pID=716&page=1&','124.148.96.37'),(16340,'2010-03-25 20:30:08',1,'product.php','cPath=8&product_type=1&pID=716&action=new_product&','124.148.96.37'),(16341,'2010-03-25 20:30:21',1,'product.php','cPath=8&product_type=1&pID=716&action=new_product_preview&','124.148.96.37'),(16342,'2010-03-25 20:31:08',1,'product.php','cPath=8&product_type=1&pID=716&action=update_product&','124.148.96.37'),(16343,'2010-03-25 20:31:08',1,'categories.php','cPath=8&pID=716&','124.148.96.37'),(16344,'2010-03-25 21:12:59',1,'logoff.php','','124.148.96.37'),(16345,'2010-03-25 21:12:59',0,'login.php ','','124.148.96.37'),(16346,'2010-03-30 20:36:15',0,'login.php ','','124.148.88.11'),(16347,'2010-03-30 20:36:35',0,'login.php ','','124.148.88.11'),(16348,'2010-03-30 20:36:44',0,'login.php ','','124.148.88.11'),(16349,'2010-03-30 23:44:02',0,'login.php hggaller','','124.148.88.11'),(16350,'2010-03-30 23:44:08',1,'categories.php','','124.148.88.11'),(16351,'2010-03-30 23:44:14',1,'categories.php','cPath=7&','124.148.88.11'),(16352,'2010-03-30 23:44:18',1,'categories.php','cPath=7_8&','124.148.88.11'),(16353,'2010-03-30 23:44:30',1,'product.php','page=1&product_type=1&cPath=7_8&pID=715&action=new_product&','124.148.88.11'),(16354,'2010-03-30 23:46:17',1,'product.php','cPath=7_8&product_type=1&pID=715&action=new_product_preview&page=1&','124.148.88.11'),(16355,'2010-03-30 23:46:23',1,'product.php','cPath=7_8&product_type=1&pID=715&action=update_product&page=1&','124.148.88.11'),(16356,'2010-03-30 23:46:23',1,'categories.php','cPath=7_8&pID=715&page=1&','124.148.88.11'),(16357,'2010-03-30 23:46:29',1,'product.php','page=1&product_type=1&cPath=7_8&pID=716&action=new_product&','124.148.88.11'),(16358,'2010-03-30 23:47:05',1,'product.php','cPath=7_8&product_type=1&pID=716&action=new_product_preview&page=1&','124.148.88.11'),(16359,'2010-03-30 23:47:15',1,'product.php','cPath=7_8&product_type=1&pID=716&action=update_product&page=1&','124.148.88.11'),(16360,'2010-03-30 23:47:15',1,'categories.php','cPath=7_8&pID=716&page=1&','124.148.88.11'),(16361,'2010-03-30 23:47:25',1,'categories.php','cPath=125&','124.148.88.11'),(16362,'2010-03-30 23:47:31',1,'product.php','page=1&product_type=1&cPath=125&pID=708&action=new_product&','124.148.88.11'),(16363,'2010-03-30 23:47:41',1,'product.php','cPath=125&product_type=1&pID=708&action=new_product_preview&page=1&','124.148.88.11'),(16364,'2010-03-30 23:47:44',1,'product.php','cPath=125&product_type=1&pID=708&action=update_product&page=1&','124.148.88.11'),(16365,'2010-03-30 23:47:44',1,'categories.php','cPath=125&pID=708&page=1&','124.148.88.11'),(16366,'2010-03-30 23:47:51',1,'categories.php','cPath=8&','124.148.88.11'),(16367,'2010-03-30 23:47:56',1,'categories.php','action=setflag&flag=1&pID=715&cPath=8&page=1&','124.148.88.11'),(16368,'2010-03-30 23:47:56',1,'categories.php','cPath=8&pID=715&page=1&','124.148.88.11'),(16369,'2010-03-30 23:47:57',1,'categories.php','action=setflag&flag=1&pID=716&cPath=8&page=1&','124.148.88.11'),(16370,'2010-03-30 23:47:57',1,'categories.php','cPath=8&pID=716&page=1&','124.148.88.11'),(16371,'2010-03-30 23:48:06',1,'categories.php','cPath=19&','124.148.88.11'),(16372,'2010-03-30 23:48:12',1,'categories.php','cPath=19&page=2&','124.148.88.11'),(16373,'2010-03-30 23:54:13',1,'categories.php','x=74&y=16&product_type=1&cPath=19&action=new_product&','124.148.88.11'),(16374,'2010-03-30 23:54:14',1,'product.php','x=74&y=16&product_type=1&cPath=19&action=new_product&','124.148.88.11'),(16375,'2010-03-30 23:56:35',1,'product.php','cPath=19&product_type=1&action=new_product_preview&','124.148.88.11'),(16376,'2010-03-30 23:56:44',1,'product.php','cPath=19&product_type=1&action=insert_product&','124.148.88.11'),(16377,'2010-03-30 23:56:45',1,'categories.php','cPath=19&pID=717&','124.148.88.11'),(16378,'2010-03-30 23:57:03',1,'categories.php','cPath=19&page=2&','124.148.88.11'),(16379,'2010-03-30 23:57:10',1,'categories.php','cPath=19&page=1&','124.148.88.11'),(16380,'2010-03-30 23:57:17',1,'categories.php','x=67&y=10&product_type=1&cPath=19&action=new_product&','124.148.88.11'),(16381,'2010-03-30 23:57:18',1,'product.php','x=67&y=10&product_type=1&cPath=19&action=new_product&','124.148.88.11'),(16382,'2010-03-30 23:58:56',1,'product.php','cPath=19&product_type=1&action=new_product_preview&','124.148.88.11'),(16383,'2010-03-30 23:59:01',1,'product.php','cPath=19&product_type=1&action=insert_product&','124.148.88.11'),(16384,'2010-03-30 23:59:01',1,'categories.php','cPath=19&pID=718&','124.148.88.11'),(16385,'2010-03-30 23:59:07',1,'categories.php','x=67&y=6&product_type=1&cPath=19&action=new_product&','124.148.88.11'),(16386,'2010-03-30 23:59:08',1,'product.php','x=67&y=6&product_type=1&cPath=19&action=new_product&','124.148.88.11'),(16387,'2010-03-31 00:00:18',1,'product.php','cPath=19&product_type=1&action=new_product_preview&','124.148.88.11'),(16388,'2010-03-31 00:00:25',1,'product.php','cPath=19&product_type=1&action=insert_product&','124.148.88.11'),(16389,'2010-03-31 00:00:26',1,'categories.php','cPath=19&pID=719&','124.148.88.11'),(16390,'2010-03-31 00:00:34',1,'logoff.php','','124.148.88.11'),(16391,'2010-03-31 00:00:35',0,'login.php ','','124.148.88.11'),(16392,'2010-04-01 00:03:53',0,'login.php ','','124.148.88.11'),(16393,'2010-04-01 00:08:30',0,'login.php hggaller','','124.148.88.11'),(16394,'2010-04-01 00:08:43',1,'categories.php','','124.148.88.11'),(16395,'2010-04-01 00:08:47',1,'categories.php','cPath=7&','124.148.88.11'),(16396,'2010-04-01 00:08:55',1,'categories.php','cPath=7_121&','124.148.88.11'),(16397,'2010-04-01 00:09:22',1,'categories.php','cPath=7&cID=121&','124.148.88.11'),(16398,'2010-04-01 00:09:36',1,'categories.php','cPath=7&action=new_category&','124.148.88.11'),(16399,'2010-04-01 00:09:50',1,'categories.php','action=insert_category&cPath=7&','124.148.88.11'),(16400,'2010-04-01 00:09:50',1,'categories.php','cPath=7&cID=127&','124.148.88.11'),(16401,'2010-04-01 00:09:57',1,'categories.php','cPath=7_121&','124.148.88.11'),(16402,'2010-04-01 00:10:06',1,'product.php','cPath=7_121&product_type=1&pID=640&action=move_product&','124.148.88.11'),(16403,'2010-04-01 00:10:17',1,'product.php','action=move_product_confirm&cPath=7_121&page=1&','124.148.88.11'),(16404,'2010-04-01 00:10:18',1,'categories.php','cPath=127&pID=640&page=1&','124.148.88.11'),(16405,'2010-04-01 00:10:29',1,'categories.php','cPath=121&','124.148.88.11'),(16406,'2010-04-01 00:10:32',1,'product.php','cPath=121&product_type=1&pID=641&action=move_product&','124.148.88.11'),(16407,'2010-04-01 00:10:38',1,'product.php','action=move_product_confirm&cPath=121&page=1&','124.148.88.11'),(16408,'2010-04-01 00:10:39',1,'categories.php','cPath=127&pID=641&page=1&','124.148.88.11'),(16409,'2010-04-01 00:10:45',1,'categories.php','cPath=121&','124.148.88.11'),(16410,'2010-04-01 00:10:49',1,'product.php','cPath=121&product_type=1&pID=642&action=move_product&','124.148.88.11'),(16411,'2010-04-01 00:10:55',1,'product.php','action=move_product_confirm&cPath=121&page=1&','124.148.88.11'),(16412,'2010-04-01 00:10:55',1,'categories.php','cPath=127&pID=642&page=1&','124.148.88.11'),(16413,'2010-04-01 00:11:01',1,'categories.php','cPath=121&','124.148.88.11'),(16414,'2010-04-01 00:11:04',1,'product.php','cPath=121&product_type=1&pID=639&action=move_product&','124.148.88.11'),(16415,'2010-04-01 00:11:09',1,'product.php','action=move_product_confirm&cPath=121&page=1&','124.148.88.11'),(16416,'2010-04-01 00:11:09',1,'categories.php','cPath=127&pID=639&page=1&','124.148.88.11'),(16417,'2010-04-01 00:11:15',1,'categories.php','cPath=121&','124.148.88.11'),(16418,'2010-04-01 00:11:18',1,'product.php','cPath=121&product_type=1&pID=638&action=move_product&','124.148.88.11'),(16419,'2010-04-01 00:11:25',1,'product.php','action=move_product_confirm&cPath=121&page=1&','124.148.88.11'),(16420,'2010-04-01 00:11:26',1,'categories.php','cPath=127&pID=638&page=1&','124.148.88.11'),(16421,'2010-04-01 00:11:32',1,'categories.php','cPath=121&','124.148.88.11'),(16422,'2010-04-01 00:12:14',1,'categories.php','cPath=121&action=new_category&','124.148.88.11'),(16423,'2010-04-01 00:12:25',1,'categories.php','action=insert_category&cPath=121&','124.148.88.11'),(16424,'2010-04-01 00:12:26',1,'categories.php','cPath=121&cID=128&','124.148.88.11'),(16425,'2010-04-01 00:12:30',1,'categories.php','cPath=121&action=new_category&','124.148.88.11'),(16426,'2010-04-01 00:12:40',1,'categories.php','action=insert_category&cPath=121&','124.148.88.11'),(16427,'2010-04-01 00:12:40',1,'categories.php','cPath=121&cID=129&','124.148.88.11'),(16428,'2010-04-01 00:12:49',1,'categories.php','cPath=127&','124.148.88.11'),(16429,'2010-04-01 00:12:53',1,'product.php','cPath=127&product_type=1&pID=640&action=move_product&','124.148.88.11'),(16430,'2010-04-01 00:13:00',1,'product.php','action=move_product_confirm&cPath=127&page=1&','124.148.88.11'),(16431,'2010-04-01 00:13:01',1,'categories.php','cPath=128&pID=640&page=1&','124.148.88.11'),(16432,'2010-04-01 00:13:07',1,'categories.php','cPath=127&','124.148.88.11'),(16433,'2010-04-01 00:13:12',1,'product.php','cPath=127&product_type=1&pID=641&action=move_product&','124.148.88.11'),(16434,'2010-04-01 00:13:21',1,'product.php','action=move_product_confirm&cPath=127&page=1&','124.148.88.11'),(16435,'2010-04-01 00:13:21',1,'categories.php','cPath=128&pID=641&page=1&','124.148.88.11'),(16436,'2010-04-01 00:13:30',1,'categories.php','cPath=127&','124.148.88.11'),(16437,'2010-04-01 00:13:33',1,'product.php','cPath=127&product_type=1&pID=642&action=move_product&','124.148.88.11'),(16438,'2010-04-01 00:13:39',1,'product.php','action=move_product_confirm&cPath=127&page=1&','124.148.88.11'),(16439,'2010-04-01 00:13:39',1,'categories.php','cPath=128&pID=642&page=1&','124.148.88.11'),(16440,'2010-04-01 00:13:46',1,'categories.php','cPath=127&','124.148.88.11'),(16441,'2010-04-01 00:13:49',1,'product.php','cPath=127&product_type=1&pID=639&action=move_product&','124.148.88.11'),(16442,'2010-04-01 00:13:54',1,'product.php','action=move_product_confirm&cPath=127&page=1&','124.148.88.11'),(16443,'2010-04-01 00:13:54',1,'categories.php','cPath=128&pID=639&page=1&','124.148.88.11'),(16444,'2010-04-01 00:14:00',1,'categories.php','cPath=127&','124.148.88.11'),(16445,'2010-04-01 00:14:03',1,'product.php','cPath=127&product_type=1&pID=638&action=move_product&','124.148.88.11'),(16446,'2010-04-01 00:14:10',1,'product.php','action=move_product_confirm&cPath=127&page=1&','124.148.88.11'),(16447,'2010-04-01 00:14:11',1,'categories.php','cPath=128&pID=638&page=1&','124.148.88.11'),(16448,'2010-04-01 00:14:22',1,'categories.php','cPath=121&','124.148.88.11'),(16449,'2010-04-01 00:14:30',1,'categories.php','','124.148.88.11'),(16450,'2010-04-01 00:14:33',1,'categories.php','cPath=7&','124.148.88.11'),(16451,'2010-04-01 00:14:50',1,'categories.php','cPath=7&cID=127&action=delete_category&','124.148.88.11'),(16452,'2010-04-01 00:14:53',1,'categories.php','action=delete_category_confirm&cPath=7&','124.148.88.11'),(16453,'2010-04-01 00:14:54',1,'categories.php','cPath=7&','124.148.88.11'),(16454,'2010-04-01 00:15:08',1,'categories.php','cPath=7_121&','124.148.88.11'),(16455,'2010-04-01 00:15:11',1,'categories.php','cPath=7_121_129&','124.148.88.11'),(16456,'2010-04-01 00:15:15',1,'categories.php','x=61&y=13&product_type=1&cPath=7_121_129&action=new_product&','124.148.88.11'),(16457,'2010-04-01 00:15:15',1,'product.php','x=61&y=13&product_type=1&cPath=7_121_129&action=new_product&','124.148.88.11'),(16458,'2010-04-01 00:15:36',1,'product.php','x=61&y=13&product_type=1&cPath=7_121_129&action=new_product&','124.148.88.11'),(16459,'2010-04-01 00:19:54',1,'product.php','cPath=7_121_129&product_type=1&action=new_product_preview&','124.148.88.11'),(16460,'2010-04-01 00:20:05',1,'product.php','cPath=7_121_129&product_type=1&action=new_product_preview&','124.148.88.11'),(16461,'2010-04-01 00:20:11',1,'product.php','cPath=7_121_129&product_type=1&action=insert_product&','124.148.88.11'),(16462,'2010-04-01 00:20:11',1,'categories.php','cPath=7_121_129&pID=720&','124.148.88.11'),(16463,'2010-04-01 00:20:17',1,'categories.php','x=71&y=11&product_type=1&cPath=7_121_129&action=new_product&','124.148.88.11'),(16464,'2010-04-01 00:20:17',1,'product.php','x=71&y=11&product_type=1&cPath=7_121_129&action=new_product&','124.148.88.11'),(16465,'2010-04-01 00:22:22',1,'product.php','cPath=7_121_129&product_type=1&action=new_product_preview&','124.148.88.11'),(16466,'2010-04-01 00:23:11',1,'product.php','cPath=7_121_129&product_type=1&action=insert_product&','124.148.88.11'),(16467,'2010-04-01 00:23:11',1,'categories.php','cPath=7_121_129&pID=721&','124.148.88.11'),(16468,'2010-04-01 01:25:32',1,'logoff.php','','124.148.88.11'),(16469,'2010-04-01 01:25:33',0,'login.php ','','124.148.88.11'),(16470,'2010-04-02 20:03:17',0,'login.php ','','124.148.88.11'),(16471,'2010-04-02 23:50:11',0,'login.php hggaller','','124.148.88.11'),(16472,'2010-04-02 23:50:35',1,'categories.php','','124.148.88.11'),(16473,'2010-04-02 23:50:39',1,'categories.php','cPath=7&','124.148.88.11'),(16474,'2010-04-02 23:50:43',1,'categories.php','cPath=7_34&','124.148.88.11'),(16475,'2010-04-02 23:50:48',1,'product.php','page=1&product_type=1&cPath=7_34&pID=153&action=new_product&','124.148.88.11'),(16476,'2010-04-03 00:08:33',1,'categories.php','cPath=7_34&pID=153&page=1&','124.148.88.11'),(16477,'2010-04-03 01:27:34',1,'categories.php','cPath=121&','124.148.88.11'),(16478,'2010-04-03 01:27:37',1,'categories.php','cPath=121_129&','124.148.88.11'),(16479,'2010-04-03 01:27:40',1,'product.php','page=1&product_type=1&cPath=121_129&pID=720&action=new_product&','124.148.88.11'),(16480,'2010-04-03 01:27:55',1,'categories.php','cPath=121_129&pID=720&page=1&','124.148.88.11'),(16481,'2010-04-03 01:27:59',1,'product.php','page=1&product_type=1&cPath=121_129&pID=721&action=new_product&','124.148.88.11'),(16482,'2010-04-03 01:28:20',1,'categories.php','cPath=121_129&pID=721&page=1&','124.148.88.11'),(16483,'2010-04-03 01:28:24',1,'categories.php','x=49&y=15&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16484,'2010-04-03 01:28:24',1,'product.php','x=49&y=15&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16485,'2010-04-03 01:29:41',1,'product.php','x=49&y=15&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16486,'2010-04-03 01:47:47',1,'product.php','cPath=121_129&product_type=1&action=new_product_preview&','124.148.88.11'),(16487,'2010-04-03 01:47:57',1,'product.php','cPath=121_129&product_type=1&action=insert_product&','124.148.88.11'),(16488,'2010-04-03 01:47:58',1,'categories.php','cPath=121_129&pID=722&','124.148.88.11'),(16489,'2010-04-03 01:48:10',1,'product.php','cPath=121_129&product_type=1&pID=720&action=new_product&','124.148.88.11'),(16490,'2010-04-03 01:48:24',1,'product.php','cPath=121_129&product_type=1&pID=720&action=new_product_preview&','124.148.88.11'),(16491,'2010-04-03 01:48:27',1,'product.php','cPath=121_129&product_type=1&pID=720&action=update_product&','124.148.88.11'),(16492,'2010-04-03 01:48:28',1,'categories.php','cPath=121_129&pID=720&','124.148.88.11'),(16493,'2010-04-03 01:48:35',1,'categories.php','x=34&y=17&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16494,'2010-04-03 01:48:35',1,'product.php','x=34&y=17&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16495,'2010-04-03 01:50:06',1,'product.php','cPath=121_129&product_type=1&action=new_product_preview&','124.148.88.11'),(16496,'2010-04-03 01:50:11',1,'product.php','cPath=121_129&product_type=1&action=insert_product&','124.148.88.11'),(16497,'2010-04-03 01:50:11',1,'categories.php','cPath=121_129&pID=723&','124.148.88.11'),(16498,'2010-04-03 01:50:18',1,'categories.php','x=30&y=8&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16499,'2010-04-03 01:50:19',1,'product.php','x=30&y=8&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16500,'2010-04-03 01:51:12',1,'product.php','cPath=121_129&product_type=1&action=new_product_preview&','124.148.88.11'),(16501,'2010-04-03 01:51:19',1,'product.php','cPath=121_129&product_type=1&action=insert_product&','124.148.88.11'),(16502,'2010-04-03 01:51:19',1,'categories.php','cPath=121_129&pID=724&','124.148.88.11'),(16503,'2010-04-03 01:51:27',1,'categories.php','x=84&y=7&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16504,'2010-04-03 01:51:27',1,'product.php','x=84&y=7&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16505,'2010-04-03 01:52:38',1,'product.php','cPath=121_129&product_type=1&action=new_product_preview&','124.148.88.11'),(16506,'2010-04-03 01:53:05',1,'product.php','cPath=121_129&product_type=1&action=insert_product&','124.148.88.11'),(16507,'2010-04-03 01:53:06',1,'categories.php','cPath=121_129&pID=725&','124.148.88.11'),(16508,'2010-04-03 01:53:19',1,'categories.php','x=31&y=13&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16509,'2010-04-03 01:53:20',1,'product.php','x=31&y=13&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16510,'2010-04-03 01:57:08',1,'product.php','cPath=121_129&product_type=1&action=new_product_preview&','124.148.88.11'),(16511,'2010-04-03 01:57:15',1,'product.php','cPath=121_129&product_type=1&action=insert_product&','124.148.88.11'),(16512,'2010-04-03 01:57:16',1,'categories.php','cPath=121_129&pID=726&','124.148.88.11'),(16513,'2010-04-03 01:57:23',1,'categories.php','x=45&y=20&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16514,'2010-04-03 01:57:23',1,'product.php','x=45&y=20&product_type=1&cPath=121_129&action=new_product&','124.148.88.11'),(16515,'2010-04-03 02:01:50',1,'product.php','cPath=121_129&product_type=1&action=new_product_preview&','124.148.88.11'),(16516,'2010-04-03 02:03:10',1,'product.php','cPath=121_129&product_type=1&action=insert_product&','124.148.88.11'),(16517,'2010-04-03 02:03:11',1,'categories.php','cPath=121_129&pID=727&','124.148.88.11'),(16518,'2010-04-03 02:03:55',1,'logoff.php','','124.148.88.11'),(16519,'2010-04-03 02:03:55',0,'login.php ','','124.148.88.11'),(16520,'2010-04-03 20:41:02',0,'login.php ','','124.148.65.10'),(16521,'2010-04-03 20:41:16',0,'login.php ','','124.148.65.10'),(16522,'2010-04-08 16:34:28',0,'login.php ','','114.122.152.53'),(16523,'2010-04-08 16:34:32',0,'login.php ','','114.122.152.53');
/*!40000 ALTER TABLE `zen_admin_activity_log` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_authorizenet`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 (1,'Zen Cart','http://www.zen-cart.com','banners/zencart_468_60_02.gif','Wide-Banners','',0,NULL,NULL,'2004-01-11 20:59:12','2008-06-04 18:19:34',0,1,1,0),(2,'Zen Cart the art of e-commerce','http://www.zen-cart.com','banners/125zen_logo.gif','SideBox-Banners','',0,NULL,NULL,'2004-01-11 20:59:12','2008-06-04 18:19:42',0,1,1,0),(3,'Zen Cart the art of e-commerce','http://www.zen-cart.com','banners/125x125_zen_logo.gif','SideBox-Banners','',0,NULL,NULL,'2004-01-11 20:59:12','2008-06-04 18:19:45',0,1,1,0),(4,'if you have to think ... you haven\'t been Zenned!','http://www.zen-cart.com','banners/think_anim.gif','Wide-Banners','',0,NULL,NULL,'2004-01-12 20:53:18','2008-06-04 18:19:27',0,1,1,0),(5,'Zen Cart the art of e-commerce','http://www.zen-cart.com','banners/bw_zen_88wide.gif','BannersAll','',0,NULL,NULL,'2005-05-13 10:54:38','2008-06-04 18:19:38',0,1,1,10),(6,'Start Accepting Credit Cards For Your Business Today!','http://www.zen-cart.com/index.php?main_page=infopages&pages_id=30','banners/cardsvcs_468x60.gif','Wide-Banners','',0,NULL,NULL,'2006-03-13 11:02:43','2008-06-04 18:19:30',0,1,1,0),(7,'eStart Your Web Store with Zen Cart(tm)','http://www.lulu.com/content/466605','banners/big-book-ad.gif','Wide-Banners','',0,NULL,NULL,'2007-02-10 00:00:00','2008-06-04 18:19:23',0,1,1,1),(8,'eStart Your Web Store with Zen Cart(tm)','http://www.lulu.com/content/466605','banners/tall-book.gif','SideBox-Banners','',0,NULL,NULL,'2007-02-10 00:00:00','2008-06-04 18:19:20',0,1,1,1),(9,'eStart Your Web Store with Zen Cart(tm)','http://www.lulu.com/content/466605','banners/tall-book.gif','BannersAll','',0,NULL,NULL,'2007-02-10 00:00:00','2008-06-04 18:19:16',0,1,1,15);
/*!40000 ALTER TABLE `zen_banners` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_banners_history`;
SET @saved_cs_client     = @@character_set_client;
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=13 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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,1,0,'2008-06-04 18:09:18'),(8,5,1,0,'2008-06-04 18:09:19'),(9,9,1,0,'2008-06-04 18:09:19'),(10,3,1,0,'2008-06-04 18:09:19'),(11,7,2,0,'2008-06-04 18:09:19'),(12,6,2,0,'2008-06-04 18:12:48');
/*!40000 ALTER TABLE `zen_banners_history` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_categories`;
SET @saved_cs_client     = @@character_set_client;
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=130 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 (1,'Artists/midlifecrisisineumundi.gif',7,0,'2008-06-10 00:24:25','2008-07-18 01:05:47',1),(2,'Artists/embrace.gif',7,0,'2008-06-10 00:24:41','2008-07-15 06:49:48',1),(3,'Artists/the_joy_of_love.jpg',7,0,'2008-06-10 00:24:59','2008-07-09 08:14:44',1),(4,NULL,0,53,'2008-06-10 22:59:20','2009-08-19 09:19:29',1),(5,'',0,52,'2008-06-10 22:59:54','2008-08-26 10:26:18',1),(6,NULL,0,51,'2008-06-10 23:00:40','2008-08-26 10:34:17',1),(7,NULL,0,0,'2008-06-10 23:16:48','2008-08-08 00:10:40',1),(8,'Artists/caughtupinmusic.gif',7,0,'2008-06-11 02:31:50','2009-02-05 22:14:16',1),(9,'Artists/The Nude 2007 72DPI.jpg',7,0,'2008-06-11 02:32:04','2009-06-19 03:56:32',1),(10,'frances_reilly.jpg',7,0,'2008-06-11 02:32:19','2008-07-15 07:05:50',0),(11,'Artists/At the Cafe H70xW90 72dpi.jpg',7,0,'2008-06-11 02:32:29','2008-10-03 02:39:50',0),(12,'Artists/crossroads.gif',7,0,'2008-06-11 02:32:44','2008-08-24 01:06:29',1),(13,'Artists/ebb_tide.jpg',7,0,'2008-06-11 02:33:00','2008-07-18 01:05:14',1),(14,'Artists/Jazz_Played_All_Night.jpg',7,0,'2008-06-11 02:33:11','2009-06-07 00:08:33',1),(15,NULL,7,0,'2008-06-11 02:33:20',NULL,0),(16,'Artists/angels_on_the_desert_sand.jpg',7,0,'2008-06-11 02:33:30','2008-07-15 07:32:15',0),(17,'Artists/Coconut - Shell Print Sphere.jpg',7,0,'2008-06-11 02:33:40','2008-07-18 23:23:38',1),(18,'Artists/the_rainmaker.jpg',7,0,'2008-06-11 02:33:50','2008-07-15 07:24:23',1),(19,'Artists/005-river-bed-relic.jpg',7,0,'2008-06-11 02:33:59','2008-07-15 07:17:19',1),(21,NULL,0,900,'2008-06-17 20:38:36','2008-06-17 20:39:39',1),(23,NULL,17,0,'2008-07-09 08:35:46','2008-07-10 16:50:17',1),(24,NULL,17,0,'2008-07-09 08:36:31','2008-07-10 16:50:26',1),(25,NULL,12,0,'2008-07-10 09:35:10','2008-07-10 16:54:59',1),(26,NULL,12,0,'2008-07-10 09:49:39','2008-07-10 16:55:10',1),(27,'Artists/the-world.jpg',7,0,'2008-07-10 09:57:13',NULL,1),(28,NULL,17,0,'2008-07-13 09:22:47','2008-07-13 09:45:49',1),(29,NULL,0,5,'2008-08-06 02:05:45','2008-08-28 06:22:05',1),(30,'Artists/Rest_Assured_Marble_7.jpg',29,0,'2008-08-06 02:06:36','2009-05-13 10:13:38',1),(31,'Artists/Drop Koalas.jpg',7,0,'2008-08-08 01:35:23','2010-01-02 02:56:41',1),(32,'Artists/a_grey_day_in_ipswich.JPG',7,0,'2008-08-08 01:36:32','2009-06-19 00:50:13',1),(33,'Artists/Rowley-Gallery invite eVersion FINAL.jpg',97,1,'2008-08-23 22:19:46','2009-08-19 09:04:23',1),(34,'Artists/Exodus 72DPI.jpg',7,0,'2008-08-24 01:16:52','2008-12-30 01:40:58',1),(35,'Artists/conte exhib DL Vert eVersion FINAL.jpg',97,2,'2008-08-26 09:47:54','2009-08-19 09:04:52',1),(37,NULL,0,6,'2008-08-28 06:00:06','2008-08-28 06:04:15',1),(40,'Artists/OMSA einvite DL - FINAL 2.jpg',97,3,'2008-10-03 01:13:23','2009-08-19 09:05:18',1),(41,'Artists/July 394.jpg',40,0,'2008-10-03 01:25:34','2008-10-09 02:46:32',1),(42,'Artists/THE DEMISE OF THE SPECULANT.jpg',40,0,'2008-10-03 01:28:19','2008-10-09 02:56:42',1),(43,'Artists/Guinea Fowl at Sapphire 4 72DPI.jpg',40,0,'2008-10-03 01:30:02','2008-10-09 02:59:44',1),(44,'Artists/RIMG0666_1.JPG',40,0,'2008-10-03 01:31:11','2008-10-09 03:46:36',1),(45,'Artists/Shaking down whole....JPG',40,0,'2008-10-03 01:31:55','2008-10-09 03:21:27',1),(46,'Artists/PICT0038-1.JPG',40,0,'2008-10-03 01:33:12','2008-10-09 03:31:35',1),(47,'Artists/SPearce_Emerging.jpg',40,0,'2008-10-03 01:34:01','2008-10-09 03:37:08',1),(48,'Artists/family affair einvite - FINAL.jpg',97,4,'2008-10-03 01:55:40','2009-08-19 09:05:40',1),(49,'Artists/Songs of owl and pea green boats.jpg',48,0,'2008-10-03 01:57:12','2008-10-21 20:42:27',1),(50,'Artists/ALEX EKEBLAD 3.jpg',48,0,'2008-10-03 01:58:34','2008-10-17 08:09:06',1),(51,'Artists/MURIEL McDONNELL O02.jpg',48,0,'2008-10-03 02:00:06','2008-10-17 08:50:35',1),(52,'Artists/BRYAN MCDONNELL 8.jpg',48,0,'2008-10-03 02:18:17','2008-10-16 02:39:25',1),(54,'Artists/IMG_2039_sml.jpg',7,0,'2008-10-03 02:37:05',NULL,0),(53,'Artists/A. NATASHA KHM 4.jpg',48,0,'2008-10-03 02:21:40','2008-11-12 06:28:47',1),(55,'Artists/einvite72.jpg',96,6,'2008-10-08 00:47:11','2009-12-04 23:57:46',1),(56,'e_invitation_FINAL2 72DPI.jpg',97,5,'2008-10-08 01:06:11','2009-08-19 09:06:01',1),(61,NULL,56,0,'2008-12-30 01:33:21',NULL,1),(60,NULL,56,0,'2008-12-30 01:33:03',NULL,1),(57,'Artists/Standing Poppies.jpg',29,0,'2008-10-28 22:22:17','2010-01-14 21:24:05',1),(58,'Artists/SPearce_Emerging 72 DPI.jpg',7,0,'2008-11-12 06:08:28','2009-06-07 04:32:51',0),(59,'Artists/Its all about the smile.jpg',7,0,'2008-11-12 06:27:43',NULL,0),(62,NULL,56,0,'2008-12-30 01:33:37',NULL,1),(63,NULL,56,0,'2008-12-30 01:33:55',NULL,1),(64,NULL,56,0,'2008-12-30 01:34:11',NULL,1),(65,NULL,56,0,'2008-12-30 01:34:27',NULL,1),(66,NULL,56,0,'2008-12-30 01:34:55',NULL,1),(67,NULL,56,0,'2008-12-30 01:35:14',NULL,1),(68,NULL,56,0,'2008-12-30 01:35:33',NULL,1),(69,NULL,56,0,'2008-12-30 01:35:53',NULL,1),(70,NULL,56,0,'2008-12-30 01:36:53',NULL,1),(71,NULL,56,0,'2008-12-30 01:37:10',NULL,1),(72,NULL,56,0,'2008-12-30 01:37:27',NULL,1),(73,NULL,56,0,'2008-12-30 01:37:45',NULL,1),(74,NULL,56,0,'2008-12-30 01:38:21',NULL,1),(75,NULL,56,0,'2008-12-30 01:38:41',NULL,1),(76,'Artists/emailmagerl.jpg',96,7,'2009-02-09 19:49:46','2009-08-19 09:08:15',1),(78,'Artists/einviteDiWest.jpg',96,9,'2009-02-09 19:59:52','2009-08-19 09:09:24',1),(80,NULL,6,16,'2009-02-09 20:01:21','2010-03-19 09:57:54',1),(81,NULL,6,18,'2009-02-09 20:01:46','2010-03-19 09:59:58',0),(82,'Artists/email72DPI.jpg',96,11,'2009-02-09 20:02:24','2009-11-04 03:06:13',1),(83,'Artists/eBunginderry.jpg',98,14,'2009-02-09 20:02:53','2010-03-19 09:56:27',1),(84,'Artists/GoE Art Walk Invite 72DPI.jpg',96,8,'2009-03-16 22:32:42','2009-08-19 09:08:59',1),(85,'Artists/Luke_1493 72DPI.psd',7,0,'2009-05-23 23:29:13','2009-06-19 04:13:59',1),(86,'Artists/Noosa River Dinghy_2 72DPI.jpg',7,0,'2009-05-23 23:29:36','2009-06-19 03:53:56',1),(87,'Artists/Old Suburb 72dpi.jpg',7,0,'2009-05-23 23:30:05','2009-06-19 03:58:49',1),(88,'Artists/A frog gulps on the path earth 72DPI.jpg',7,0,'2009-05-23 23:37:03','2009-06-10 23:20:50',1),(89,'Artists/einviteEdenScott.jpg',96,10,'2009-06-10 00:35:38','2009-08-19 09:10:05',1),(90,NULL,6,17,'2009-08-01 22:51:54','2010-03-19 10:03:27',1),(91,'Artists/Journey through the  Landscape 1 72DPI.jpg',7,0,'2009-08-12 04:05:12','2009-11-06 02:35:15',1),(92,'Artists/NatiziPeace.jpeg',7,0,'2009-08-16 03:57:57','2009-11-04 03:53:43',1),(93,'Artists/Atticus_low res.JPG',7,0,'2009-08-19 04:19:19','2009-11-06 17:02:09',1),(94,'Artists/harnessing the ability to fly.gif',7,0,'2009-08-19 04:29:56','2009-08-20 04:25:50',1),(95,'Artists/eBrochure 2009 300DPI.jpg',96,13,'2009-08-19 08:55:07','2010-01-04 08:55:33',1),(96,NULL,4,2,'2009-08-19 09:03:06','2009-08-22 22:05:44',1),(97,NULL,4,3,'2009-08-19 09:03:24','2009-08-22 22:05:31',1),(98,NULL,4,1,'2009-08-19 09:03:40','2009-08-22 22:05:56',1),(99,'Artists/wood-fired tea bowl v2 72DPI.jpg',82,1,'2009-10-21 04:41:56','2009-11-26 00:13:17',1),(100,NULL,82,2,'2009-10-21 05:06:07',NULL,1),(101,NULL,82,3,'2009-10-21 05:07:16',NULL,1),(102,NULL,82,4,'2009-10-21 05:07:57',NULL,1),(103,NULL,82,5,'2009-10-21 05:08:34',NULL,1),(104,'Artists/Yasodhara Buddha 72DPI.jpg',82,6,'2009-10-21 05:11:23','2009-11-26 00:13:48',1),(105,'Artists/Kunta series - & Her Cup  (A) 72DPI.jpg',82,7,'2009-10-21 05:11:40','2009-10-26 18:35:32',1),(106,'Artists/Romantic Scene 2 72DPI.jpg',82,8,'2009-10-21 05:12:10','2009-10-26 18:51:22',1),(107,'Artists/adelaide street No11 72DPI.jpg',82,9,'2009-10-21 05:12:33','2009-11-26 00:27:04',1),(108,'Artists/NatiziPeace.jpeg',82,10,'2009-10-21 05:13:49','2009-11-04 04:05:32',1),(109,NULL,82,14,'2009-10-21 05:14:10',NULL,1),(110,NULL,82,13,'2009-10-21 05:14:31',NULL,1),(111,NULL,82,12,'2009-10-21 05:15:39',NULL,1),(112,NULL,82,11,'2009-10-21 05:16:01',NULL,1),(113,'Artists/edge7.jpg',96,12,'2009-11-04 03:18:31','2009-12-04 22:13:23',1),(114,'Artists/harnessing the ability to fly.gif',113,0,'2009-11-04 03:34:59','2009-11-04 03:36:40',1),(115,'Artists/Journey through the  Landscape 1 72DPI.jpg',113,0,'2009-11-04 03:40:12','2009-11-06 02:34:12',1),(116,'Artists/Atticus_low res.JPG',113,0,'2009-11-04 03:45:32','2009-11-06 17:00:05',1),(117,'Artists/NatiziPeace.jpeg',113,0,'2009-11-04 03:53:54',NULL,1),(118,'Artists/Crisis 72DPI.jpg',113,0,'2009-11-04 03:54:59','2009-11-25 23:15:09',1),(119,NULL,30,0,'2009-11-20 01:32:47','2009-11-20 01:33:09',1),(120,NULL,30,0,'2009-11-20 01:39:29','2009-11-20 01:39:42',1),(121,'Artists/Mining 72DPI.jpg',7,0,'2009-11-20 04:16:24','2009-11-25 23:16:51',1),(122,'Artists/Green Bag 72DPI.jpg',7,0,'2009-11-25 23:01:24','2009-11-25 23:13:50',1),(123,'Artists/tell him he is dreaming.jpg',7,0,'2009-12-05 00:23:42','2009-12-05 00:42:39',1),(124,'Artists/vessel 1 72DPI.jpg',7,0,'2010-03-19 09:13:37','2010-03-20 02:03:53',1),(125,NULL,7,0,'2010-03-19 09:15:42','2010-03-20 03:02:51',1),(126,NULL,6,15,'2010-03-19 10:01:16',NULL,1),(128,NULL,121,0,'2010-04-01 00:12:25',NULL,1),(129,NULL,121,0,'2010-04-01 00:12:40',NULL,1);
/*!40000 ALTER TABLE `zen_categories` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_categories_description`;
SET @saved_cs_client     = @@character_set_client;
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;
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 (1,1,'Caroline Magerl','<p><img height=\"173\" alt=\"\" hspace=\"6\" width=\"150\" align=\"right\" src=\"/myfiles/caroline.jpg\" />Caroline\'s fine art has the unique ability to impart an emotion with brevity and subtle impact. Drawing from life experience, the work articulates her inner world. The uniqueness of this work has developed a large following of collectors. Caroline\'s paintings have been successfully exhibited at mixed exhibitions in the U.K. and U.S.A. Caroline\'s paintings are constantly sought after and most recent show in the Frances Reilly Gallery Eumundi was a sell-out. Caroline Magerl has the ability to open the door of her inner world and to enter and experience its complexities and riches as well as the talent to translate what she experiences on canvas. Her paintings are a curious mix of the whimsical and the worldly. There are images of her gallery of work which draws deeply from her inner and outer world. If you look at her work it is easy to see how important her outer world is to her, in particular, her domestic surroundings in Eumundi peopled by her husband, Mark, and her daughter, Jennifer. She constantly uses as a reference point for her work, a series of albums in which she records her dreams and thoughts. Caroline is also well-known as a cartoonist and an illustrator, particularly children\'s books. You can visit Caroline\'s website at <a target=\"_blank\" href=\"http://www.cmagerl.com.au\">www.cmagerl.com.au</a></p>'),(2,1,'Arone Meeks','<p><img height=\"200\" hspace=\"6\" width=\"134\" align=\"right\" alt=\"\" src=\"/myfiles/aronemeeks.jpg\" /></p>\r\n<p>Arone Meeks was born in 1957, and lives and works in Cairns. His tribal area is Laura in North Queensland. He has a Bachelor of Visual Arts, City Arts Institute, Sydney. His works confirm his place as a leading contemporary artist in Australia. From his home in Cairns, he now creates works of art that speak to us of cross cultural interaction, relationships, gender, traditional and modern spirituality and his environment. His extensive accomplishments achieved in study, residencies, commissions, community arts, and public art, certainly attribute to an outstanding career to date, which will only continue to grow given his passion and determination. His works are testament not only to his skills and talents as a painter, sculptor, and printmaker, but also to his wonderful sense for colour and design that allows his work to shine. Collections include KickArts Contemporary Arts Collection; Cairns Regional Art Gallery; National Gallery of Australia, and Japan; Art Galleries of Queensland, New South Wales and Western Australia; Australian Museum; Universities of New South Wales and Queensland; Queensland University of Technology: Flinders University; Art Gallery of Ontario, Canada: Massachusetts College of Art, Boston, USA; The Bromberg Collection, Cincinatti, USA; Institute of American Indian Art, Sante Fe, USA; The Simons Foundation, Vancouver, Canada; The Kelton Foundation, Los Angeles, USA; Biblioteque, Paris; OTC Australia; Australia Post; Aboriginal Artists\' Gallery, Sydney; City Gallery, Christchurch, NZ; and private collections in Japan, France, USA, Argentina, New Zealand and Australia.</p>'),(3,1,'Jenny Mulder','Jenny was born in Melbourne and in 1964 and 1965 attended the Melbourne Institute of Technology and the Emily McPherson College for dress design. She started a greeting card business in 1966, and in 1969 travelled to India where she studied meditation and yoga.\r\n\r\nShe studied painting with Roy Churcher, Andrew Sibley, Ian McFarlane and Victor Rubin at Toowoomba University.\r\n\r\nJenny has always been artistic either painting or designing. Her style is eclectic, combining a wide range of subject matters and methods, ranging from contemporary landscaped to classic still lifes. Her love and passion is the abstract, centred around her fascination in exploring the depths of her own inner world and dreaming. She combines complexities of colour, and the play of one colour against another giving her work atmospheric feeling.\r\n\r\nShe has had solo exhibitions at Noosa, Adelaide, Gold Coast, Eumundi, and Brisbane, since 1998.'),(4,1,'Previous Exhibitions',''),(5,1,'Current Exhibitions',''),(6,1,'Coming Exhibitions',''),(7,1,'Exhibiting Artists',''),(8,1,'Des Rolph','<p><img height=\"185\" alt=\"\" hspace=\"6\" width=\"160\" align=\"right\" src=\"/myfiles/Desley Rolph(1).jpg\" />The paintings shown in this website are representative of Des\' recent works which continue her exploration of the known and unknown nature of the Australian landscape - in particular, the Australian outback and its mysterious phenomena such as the Min Min lights to the mirages on the endless horizons. To her, this landscape is more than just dust, sand, colour and rock, more than the intense colour that envelopes everything, and more than the patterns and motifs that are reflected in the paintings of many artists. It has a metaphysical presence that captivates.<br />\r\n<br />\r\nDes has a Diploma on Visual Arts and has exhibited in several solo and group exhibitions in recent years. Her works are included in various collections throughout Australia and in Japan, UK and New Zealand. You can visit Des\' website at <a target=\"_blank\" href=\"http://www.visualartist.info/visualartist/artist/default.asp?artistId=1615\">www.desrolph.com</a></p>'),(9,1,'Eden Scott','<p><img width=\"133\" height=\"200\" hspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/Eden 72DPI.jpg\" />Eden Scott is an internationally recognised professional artist, highly regarded for his versatility and strength in painting and drawing.<br />\r\n<br />\r\nA graduate of The National Art School, Sydney NSW, in 1971, Eden has been painting, drawing and teaching art ever since.<br />\r\n<br />\r\nIncluding almost 20 years as Head of Art in Junior and Secondary schools in NSW and 2 years as a  graphic illustrator for the PBS television in the USA, Eden has devoted his entire life to the development of his talents in the fine arts.<br />\r\n<br />\r\nAn enthusiastic, popular and passionate teacher, Eden runs art workshops in the ACT, NSW, Vic and Qld.  Since early in 2006 he has been Art Lecturer and Painting and Life Drawing Tutor for the Noosa District Art Society, Tewantin, Qld.  Eden&rsquo;s humour, enthusiasm and willingness to impart his extensive knowledge guarantees a fun and productive time for his students, young and old beginners to advanced.<br />\r\n<br />\r\nEden Scott is a multi-award wining artist, beginning with the ABC Youth Art Prize in 1957 at the age of 12.  His works, in every painting and drawing medium, are highly valued and are in many private, corporate and public collections across the world.</p>'),(10,1,'Frances Jill Reilly','<p><img height=\"200\" hspace=\"6\" width=\"185\" align=\"right\" alt=\"\" src=\"/myfiles/francis Jill reilly.jpg\" />Jill is a well renowned and much loved Australian artist. Her romantic images arrive from her imaginings of a perfect world - full of love and colour, gardens and children.<br />\r\n<br />\r\nFor the past ten years, Jill has lived in Eumundi and is the previous owner and Director of the Frances Reilly Gallery in Eumundi, one of the foremost galleries on the Sunshine Coast, Queensland, and now The Gallery Eumundi.<br />\r\n<br />\r\nHer paintings, especially the much loved jacaranda paintings, have been commercially successful for over twenty years, her romantic, evocative images being reproduced in cards and prints selling in Australia and New Zealand. Jill has always juggled her artistic career with a career in nursing, the demands of a family of four children, and now seven grandchildren, running and teaching at her own art school and Gallery in Brisbane and then being co-director with five other women at the successful Dabbles on Days Gallery, Brisbane.<br />\r\n<br />\r\nThe constant demand for her beautiful paintings, has prompted Jill to turn her energies to painting again, as for the last ten years the gallery has been a very demanding mistress. These new paintings will be available at her new venture, the Frances Reilly Annex Gallery (FRAG) in Surrey Hills, Sydney which she plans to open in July.</p>'),(11,1,'Helen Lawson','<p><img height=\"200\" alt=\"\" hspace=\"6\" width=\"284\" align=\"right\" src=\"/myfiles/Helen2(2).jpg\" />Highly qualified Queensland artist Helen Lawson has a BA from University of Queensland, an LTCL from Trinity College London, and a Diploma of Education from Monash University. Helen\'s love of nature and colour began on the Darling Downs in Queensland where she was born and grew up. Her family moved to Brisbane where she completed her education to tertiary level. In the ensuing years her marriage and a teaching career took her to various centres throughout Australia including Southport, Melbourne, Sydney, Mackay, Perth, Terrigal, and now Noosa on Queensland\'s Sunshine Coast. At the same time, Helen furthered her tertiary education and raised a family. Her travels brought her into contact with differing aspects of art. She has created many beautiful gardens and attended many workshops and classes, continually refining her skills and appreciation of many forms of artistic media. All of these factors have combined to influence her work today. Her love of gardening, literature, and art has naturally blended to direct her into translating her concepts onto canvas. The years of developing her art finally evolved into a decision in 1997 to devote herself full-time to her painting. Since 1997, she has won many awards for her paintings, including: Liverpool City Art Exhibition, Gosford City Art Prize, Holroyd Art Exhibition, Gosford Regional Gallery, Orange Blossom Festival, Australian Artist Magazine, finalist in Australian Artist Magazine (2002 &amp; 2003), Art of Sydney Awards, Sydney Royal Show, Art of Sydney, Darling Harbour, and most recently the Castle Hill and Royal Canberra Shows. Helen has also been selected for the Mossman Art Prize. In 2007, she was featured in Artist\'s Palette Magazine.</p>'),(12,1,'Jenuarrie','<p><img height=\"191\" hspace=\"6\" width=\"250\" align=\"right\" alt=\"\" src=\"/myfiles/Jenuarrie(1).jpg\" />Jenuarrie is a well-known Australian Indigenous artist. Her works are held in most major public collections throughout Australia including the Australian National Gallery, and most State galleries and museums. She is also included in many private collections. Jenuarrie currently resides and works in Cairns, Far North Queensland for Arts Queensland. She is well-known for her active involvement in Arts Industry development. She has represented Australia\'s Indigenous artists overseas in several countries and been involved in the arts at the highest level, including the Australia Council. She has also held many Artists in Residence positions in Australia and overseas. The works now being shown in the Gallery highlight not only influences arising from her Indigenous cultural heritage, but also depicts the significant changes impacting on the Aboriginal and Torres Strait Islander communities during her lifetime. Her cultural heritage background (her mother\'s father is Koinjmal (Eastern coastal plains of Central Queensland)), identity and connection to the land has a very strong focus in her work. Her \'works of art\' have always conveyed strong links and respect for the land and its Aboriginal people.&quot;The contemporary interpretations in my work has given me the impetus to create concepts that I feel are a natural progression evolving from a traditional style and pays tribute to my ancestors.&quot;</p>\r\n<h2><a href=\"http://thegalleryeumundi.com.au/index.php?main_page=index&amp;cPath=7_12_26\">Sculpture</a></h2>\r\n<h2><a href=\"http://thegalleryeumundi.com.au/index.php?main_page=index&amp;cPath=7_12_25\">Paintings</a></h2>\r\n<p>&nbsp;</p>'),(13,1,'Ken Barker','<p><img height=\"200\" alt=\"\" hspace=\"6\" width=\"150\" align=\"right\" src=\"/myfiles/Ken portrait_2(1).jpg\" />Ken Barker, originally from the UK, studied at Southampton College of Art . After emigrating to Australia in 1969 Ken established&nbsp;his business, Ken Barker Designs in 1971, where&nbsp;his career took off as one of Australia\'s leading freelance textile designers.<br />\r\n<br />\r\nSince 1990 Ken has concentrated on establishing himself as a full-time artist and now&nbsp;resides&nbsp;on the Sunhine Coast, Queensland, Australia. Ken\'s work creates rich textures using collage and acrylic paints on both canvas and&nbsp; paper and has been exhibited in many galleries around Australia and the UK. He has also completed commissions for major hotel chains&nbsp;and companies both within Australia and overseas such as&nbsp;Hayman Island Resort Sheraton Hotel, Subang, Sheraton Imperial Hotel, Kuala Lumpur, Madison Plaza Hotel, Kuala Lumpur, Ocean View Hotel, Cairns, Sheraton On The Park, Sydney, Regency Hyde Park, Sydney, David Jones Pty Ltd, Sydney, Joondalup Health Campus, Perth. <font size=\"2\">You can visit Ken\'s website at </font><a target=\"_blank\" href=\"http://www.kenbarker.com.au\">www.kenbarker.com.au</a></p>'),(14,1,'Madeleine Ekeblad','<p><img height=\"180\" alt=\"\" hspace=\"6\" width=\"150\" align=\"right\" src=\"/myfiles/madeleine1(1).jpg\" />MADELEINE EKEBLAD is an energetic artist and tutor.<br />\r\n<br />\r\nMadeleine&rsquo;s paintings are vibrant, bold expressions of life. By stimulating the spectator&rsquo;s sense of sound through the subject matter of dance and music Madeleine engages the spectator in very relevant and compelling stories of rhythm and movement.<br />\r\n<br />\r\nMadeleine&rsquo;s work reflects the nature of the artist herself, who lives the dynamic and exuberant philosophy she has for her own art and the role that art plays in society.<br />\r\n<br />\r\n<i>&lsquo;My world of art is messy, chaotic and all consuming. Music and Dance are my greatest loves and this is portrayed in my energetic style of &lsquo;freeform&rsquo; painting. The process is to make art that appears at first glance to be uncomplicated but through the deliberation of taking things away, the viewer is invited to discover the content. Painting is like meditation &ndash; it can take you to a place of peace and quiet, and when you paint the world stops&rsquo;.</i><br />\r\n<br />\r\n<b>Rhythm and Movement</b><br />\r\n\'<i>The passion and dedication of the dancer is a beautiful art to watch  the slow mesmerising moves through to the energy spent in lifts and jumps  will literally catch your breath.\'</i><br />\r\n<br />\r\n<b>Whilst listening to Music</b><br />\r\n<i>\'Your heart will sing with the crescendo, and your body will move in rhythm  to centuries of notes and tones.\'</i><br />\r\n<br />\r\nShe listens to Jazz when working with enamels and acrylics on canvas. The enamel is dribbled on with a stick in a &lsquo;freeform&rsquo; manner. When drawing with inks Madeleine likes to use old music manuscripts some dating back from the late 1800&rsquo;s.<br />\r\n<br />\r\n<i>I paint the memory of emotion.</i><br />\r\n<br />\r\n<b>Madeleine Ekeblad</b><br />\r\n&bull;	Founder of OMSA - Onward Motivational School for Artists, circa 2004<br />\r\n&bull;	Management committee of the BIA - Brisbane Institute of Art, 2005 - current<br />\r\n&bull;	Artist in Residence &amp; Artistic Associate at St. Thomas More College, Sunnybank, teaching &lsquo;Creative Life Drawing&rsquo;.  2005 - current<br />\r\n&bull;	Motivational Seminar Art Tutor. Corporate Law &amp; Medical conferences<br />\r\n&bull;	She is an exhibiting artist at 3 galleries:<br />\r\n<br />\r\nThe Gallery Eumundi, Qld. 07-5442 8365<br />\r\nMartin Galleries Nundah Qld, 07-3266 8450<br />\r\nGallery 307 Northbridge Sydney NSW 02-99 581 298<br />\r\n<br />\r\nYou can visit Madeleine\'s website at <a target=\"_blank\" href=\"http://www.omsa.com.au\">www.omsa.com.au</a></p>'),(15,1,'Paul Reilly',''),(16,1,'Rebecca Pierce','<p><img height=\"183\" hspace=\"6\" width=\"275\" align=\"right\" alt=\"\" src=\"/myfiles/rebecca_pearce_2003.jpg\" />Rebecca\'s striking work varies from the truly Australian &quot;day at the beach&quot; to stunning floral arrangements and dramatic abstracts - all reliant on vivid unusual colour combinations and the thick and intense application of paint that often renders the subject almost three dimensional.<br />\r\n<br />\r\nRebecca began her foray into art through the Australian fashion market with quirky t-shirt designs. The uniquely Australian prints inspired by the rich colours of the nation, its fauna and flora and well-known landmarks were so well received that what had begun as a sideline to her law studies developed into a full-scale operation.<br />\r\n<br />\r\nShe won Victorian and National Awards for her tee-shirt designs, and received international recognition in 1992 when she was selected from hundreds of artists worldwide to design for the charity Peter Pan Japan . Since then, she has received many high profile commissions including the Australian Olympic Bid Committee, the Australian Broadcasting Commission, M.B.F, Don Spencer, Angus and Coote, Japan Grey Line, Care Australia, Childflight, JTB, N.S.W Roads and Traffic Authority, Ayers Rock Resort Management, Crown Casino Melbourne, Nuance Global Traders and Taronga Zoo. Alongside indigenous painters, she was Principal Artist for Australia\'s Centenary of Federation 1901 - 2001.<br />\r\n<br />\r\nIn the past four years, she has exhibited in many group exhibitions, competitions and displays, and completed successful solos in Sydney, California, and Singapore. Her sales and commissions have spread extensively into homes and commercial premises across the globe, including this year the Hamilton Island Resort, Queensland.<br />\r\n<br />\r\n&quot;At this point in time I am inspired by all things that are full of vigor and strength of force - for me a simple flower has this action and effect. Anything that pulsates with life and energy I find tantalising and stimulating.&quot;</p>'),(17,1,'Rowley Drysdale','<p><img height=\"200\" alt=\"\" hspace=\"6\" width=\"300\" align=\"right\" src=\"/myfiles/Rowley-Drysdale(2).jpg\" />Rowley Drysdale was born in 1957 in Charleville, Queensland. In 1993, he completed a Graduate Diploma of Arts at Monash University and in 2001 was awarded a Master of Arts, also at Monash.<br />\r\n<br />\r\nCollections include: University of Southern Queensland, Brisbane City Art Gallery, James Cook University, Brisbane International Airport, Tweed River Regional Art Gallery, Stanthorpe Regional Art Gallery, Ipswich City Art Gallery, Gold Coast City Art Gallery, North Queensland Potter\'s Association permanent collection, Perc Tucker Townsville City gallery, Townsville Regional Gallery, Queensland Potter\'s Association permanent collection. Private Collections in Australia, New Zealand, Japan, USA, Canada, Great Britain, Germany, Austria.<br />\r\n<br />\r\nCommission include: Ayers Rock Resort, Yulara; Observatory Hotel, Sydney; Park Hyatt, Sydney; Oceanic Hotel, Coogee; Sheraton, Brisbane; Mariott Hotel, Brisbane.<br />\r\n<br />\r\n<font size=\"2\">In 2007, Drysdale was invited to China for the opening of the Australasia Museum of Ceramics and to produce a number of pieces for the museum\'s permanent collection. In March 2008 he exhibited a 100 piece solo show at the Freeland Gallery, Sydney, featuring porcelain and wood fired stoneware alongside his popular mixed media assemblages.<br />\r\n<br />\r\nIn July 2008 Drysdale has been invited to Goshogawara, Japan, as Australia\'s only participant in an international wood firing conference.</font> <font size=\"2\">Fifteen participants from 12 countries, along with a number of Japanese artists, will attend.</font> <font size=\"2\">Drysdale\'s residency is for one month, and will involve firing three huge kilns and producing a body of work which will be exhibited in Japan, and The Gallery Eumundi, in late August 2008. You can visit Rowley\'s website at </font><a target=\"_blank\" href=\"http://www.rowleydrysdale.com.au\"><font size=\"2\">www.rowleydrysdale.com.au</font></a></p>\r\n<p><font size=\"2\"><a target=\"_blank\" href=\"http://thegalleryeumundi.com.au/index.php?main_page=index&amp;cPath=7_17_28\">what the critics say &gt;&gt;</a></font></p>\r\n<h2><a href=\"http://thegalleryeumundi.com.au/index.php?main_page=index&amp;cPath=7_17_24\">Ceramics &amp; Sculpture</a></h2>\r\n<h2><a href=\"http://thegalleryeumundi.com.au/index.php?main_page=index&amp;cPath=7_17_23\">Paintings</a></h2>\r\n<p>&nbsp;</p>'),(18,1,'Tom McAulay','<p><img height=\"192\" hspace=\"6\" width=\"150\" align=\"right\" alt=\"\" src=\"/myfiles/tom-imageat-easel.jpg\" />Tom was born in Innisfail, North Queensland. As a youth he studied under Arthur Evan Read and Andrew Sibley. He has travelled much of the Australian Outback in search of subject material. He works in most mediums including oils, acrylics and gouache and is well-known for his pen and wash studies of bush and stockyard characters. Tom has had many successful exhibitions over the last 20 years in Brisbane, Sydney, Melbourne, Toowoomba, Cairns and Darwin. He has won numerous art awards including Warana Brisbane(1969), Peter Stuyvesant Award (1970), Redcliffe Art Prize (1970, Telegraph Art Prize (1971), Caltex Award Toowoomba (1973) and the Heritage Art Award conducted by the Queensland Historical Society. His work is well represented in private and public collections in Australia and overseas. In 1990 he completed a series of paintings of Australians in sport commissioned by the then Prime Minister of Australia, Bob Hawke.</p>'),(19,1,'Ute Dittrich','<p><img height=\"200\" hspace=\"6\" width=\"267\" align=\"right\" alt=\"\" src=\"/myfiles/image/Ute%20Dittrich.jpg\" />Ute was born in Erlangen, Germany in 1963 and has an Advanced Diploma in Ceramics Study. She has been involved in several solo and group exhibitions in Brisbane and on the Sunshine Coast since 2002. Her works have a unique quality and are best described in her own words: &quot;The major source of inspiration and imagery for my work comes from nature. I am drawn to earthen materials, stony surfaces and a necessity for structure in an asymmetrical arrangement. To find a new composition, I seek references in the forces and influences that shape life and nature. Multiple experiences and the retracing of ones steps lead to unexpected discoveries and encounters. I am fascinated with conflict and the visible signs left behind. My mark making combined with the chosen material tells about places of transition, which present an opportunity for growth. Crisscrossing trails on imaginary maps, like aerial views to grasp the minds big picture, carry with them memories of places and occasions.&quot;</p>'),(21,1,'Upload Images',''),(23,1,'Paintings',''),(24,1,'Ceramics & Sculpture',''),(25,1,'Paintings',''),(26,1,'Sculpture',''),(27,1,'Margi Sheppard','<p>Margie Sheppard studied oil painting and printmaking at the South Australian School of Art, graduating in 1974. For many years, Margie has worked as a very successful printmaker. She has exhibited widely in Australia and has received recognition by winning awards and prizes for her work. Her works reflect symbolic subjects, such as boats, water, fish and figures.<br />\r\n<br />\r\nHer work has been re-energised after spending 2001 sailing the south Pacific. She says of her work:<i> &quot;Themes and ideas, unconsciously arrived at, are gradually and loosely woven through my work. For example, earlier my figures were in pairs, often mirror images, alluding to how it is for one to be with another, companiable perhaps, a state through which we often see the world. (The) new body of work is more about how it is for the individual to be in the world.&quot;</i></p>'),(28,1,'Acclaim','<p>&quot;Rowley Drysdale has created a vessel which contains a spiritual image inside.&quot; Akio Takomori, Aukland, 1992<br />\r\n<br />\r\n&quot;Rowley Drysdale\'s surfaces are part of the soul of ceramics. The work tugs at both my heart and head.&quot; Stephanie Outridge Field, Brisbane, 1993<br />\r\n<br />\r\n&quot;Whilst functional, the work displays the aesthetic qualities he is renowned for - balance, beauty and earthiness.&quot; Darren Nicol, Brisbane News, 2000<br />\r\n<br />\r\n&quot;His very successful wall pieces display a welcome sense of immediacy.&quot; Barry Tate, per Jan Murphy Gallery, Brisbane<br />\r\n<br />\r\n&quot;Drysdale is one of those masters...the proof of his artistry is obvious...his work is more than just incisive and thoughtful, it is also passionate, and that passion gives it soul.&quot; Brisbane Courier Mail, 2000<br />\r\n<br />\r\n&quot;Art icon, Rowley Drysdale.&quot; Ken Lord, Brisbane Sunday Mail, 2004<br />\r\n<br />\r\n<a href=\"http://thegalleryeumundi.com.au/index.php?main_page=index&amp;cPath=7_17_17\">&lt;&lt; go back</a></p>'),(29,1,'Exhibiting Sculptors',''),(30,1,'Di West','<p><img height=\"300\" hspace=\"6\" width=\"200\" align=\"right\" alt=\"\" src=\"/myfiles/Di West 72DPI.jpg\" />Di West - Blonde with Fringe/Artist - is an Australian Artist, living and working on the South East Coast of Queensland. Di is a professional artist holding a Diploma in Fine Art and a Masters in Fine Art Degrees and has been creating paintings and sculpture for nearly 20 years.<br />\r\n<br />\r\nThe more recent paintings and sculptures you see in Di\'s portfolio are a direct result of her having moved to the country about one year ago. Di had lived all her life in the heart of Brisbane City and has just recently relocated to the beautiful and lush environment of Maleny, in the Hinterland adjacent to the Sunshine Coast, in Queensland, Australia.<br />\r\n<br />\r\nHumour and colour have always played an important part in Di\'s work, allowing the viewer to engage on an immediate level, and she wishes this to continue in her new group of paintings and sculpture. Hopefully the pieces find resonances with the viewer that allow a personal dialogue.<br />\r\n<br />\r\nThe titles of the works that Di creates often come before the work itself, particularly in her sculpture and assemblage. By that Di &quot;thinks in pictures&quot;.&nbsp;She has always enjoyed analysing song lyrics and metaphors and also write poetry, so the works are basically physical interpretations of text. Di\'s assemblage and constructions all represent interpretations of metaphors and sayings. Basically, Di creates her own visual language. Her bronze sculptures are also interpretations of metaphors or songs, in a three dimensional form. You can visit Di\'s website on <a target=\"_blank\" href=\"http://www.visualartist.info/visualartist/artist/default.asp?artistId=1372\">www.diwest.com.au</a></p>'),(31,1,'Michelle Pike','<p><img height=\"116\" width=\"120\" align=\"right\" hspace=\"6\" alt=\"\" src=\"/myfiles/mp_photo(1).jpg\" /></p>\r\n<p>Australian artist and book illustrator, Michelle Pike brings to us a wonderful recipe of colour, culture, bad habits and humou<br />\r\n<br />\r\nThe most fitting description of Michelle is &ldquo;a bizarre mix of practical skills, creative hunger and heaps of energy which, when linked to her thirst for life and everything that makes her laugh, have enabled her to achieve a great deal&rdquo;.<br />\r\n<br />\r\nMichelle states:  &ldquo;I attribute my understanding of the Australian culture and its beautiful landscape to my many childhood outback trips throughout Western Australia.  You tend to develop a keen sense of awareness for what is around you when you&rsquo;re riding in a cloud of red dust in the back of the ute for hours on end with nothing more than the dog, smelly fishing gear and your annoying sister... It takes your mind off the windburn too.&rdquo;<br />\r\n<br />\r\nMichelle believes that humour is an understated element of cultural expression.  As such, in true anthropromorphic style, she captures the Australian sense of humour perfectly through the whimsical interaction of Australian fauna and flora within her works.<br />\r\n<br />\r\nMichelle is currently studying a BA in Communications and Design and her achievements are already appreciated by domestic and international clients alike. You can visit Michelle\'s website at <a target=\"_blank\" href=\"http://www.michellepike.com\">www.michellepike.com</a></p>\r\n<p>&nbsp;</p>'),(32,1,'Chris Blake','<p><img height=\"204\" alt=\"\" hspace=\"6\" width=\"200\" align=\"right\" border=\"0\" src=\"/myfiles/cv_photo(1).jpg\" />South London-born Landsborough artist Christopher Blake has led a varied life &ndash; from a stockman roustabout in Australia&rsquo;s Outback to art teacher on the Sunshine Coast of Queensland. His love of drawing as a child was put on the back burner when he emigrated to Australia as a &ldquo;&pound;10 Pom&rdquo; in 1957. He found himself working on a sheep station at Windorah in Western Queensland. This knockabout life in the bush sharpened his awareness, and love, of the Australian Outback and its people.<br />\r\n<br />\r\nA few years later, his artistic skills were pressed into service by railway workmates at Alpha who had him penning anonymous satirical caricatures of their foreman and other workers. Although he was always sketching, it was not until the late 1970s that Chris picked up the brushes. By then, he was living in Melbourne and joined many art groups, painting out with well-known local artists.<br />\r\n<br />\r\nChris moved back to Queensland in the early 1990s, taking up art in earnest. He joined the newly formed Caloundra Learning Co-operative, where he became a popular art tutor teaching drawing, oil painting, and pen-and-wash. He has done workshops with Rex Backhaus-Smith, Herman Pekel, Maxwell Wilks and Ross Patterson ,and painted out with artists Brian Allison, Peter Hudson Ted Young, John Bredl and the late George Hazzard.<br />\r\n<br />\r\nReturning to England in 1996, he bought a small van the size of a decent Esky, which he converted to a camper and mobile studio, allowing him to travel and paint in all seasons. There, he developed a fascination for the small fishing harbours and the slowly diminishing fleets that used them. Whilst in England, he exhibited successfully, most notably at the 39th Essex Open at Southend, the Llewellyn Gallery in London and the Best of the West Somerset Show. Arriving back in Queensland in 1997, Chris built on his UK experience, exhibiting in major art galleries in South-East Queensland and is now well represented in many galleries. He also found time to do some community work (e.g. teaching at the Learning Coop and designs for the Landsborough Railway over pass).<br />\r\n<br />\r\nChris has achieved numerous awards and recognition amongst fellow artists. He feels that his most noteworthy achievement to date is winning the Ken Farrow Award for Artistic Excellence at Maleny Art Awards in 2003. The last three years have also seen him win twelve firsts and no less than five open awards, three of them being in pastels. Most open awards tend to go to oil or watercolour paintings.<br />\r\n<br />\r\nIn light of Chris&rsquo;s successes with pastels, in December 2004 he was made a &ldquo;Master Pastellist&rdquo; of the Pastel Society of Australia. He is currently painting and teaching from his home studio in Landsborough and is available for workshops, demonstrations and commissions. You can visit Chris\' website at <a target=\"_blank\" href=\"http://www.blakesart.com\">www.blakesart.com</a></p>'),(33,1,'Rowley Drysdale - Aug 2008','<p style=\"text-align: center\">&nbsp;<b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img height=\"300\" alt=\"\" width=\"635\" align=\"top\" src=\"/myfiles/Rowley-Gallery invite Horz FINAL-2.jpg\" /><br />\r\n<br />\r\nWe are delighted to present Rowley Drysdale on his return from Goshogawara in Japan. Rowley&nbsp;was Australia\'s only participant in an international wood firing conference with fifteen participants from 12 countries plus Japanese artists in attendance. The one month&rsquo;s residency has involved firing three huge kilns and producing a body of work for an exhibition in </span></i></span></b><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><u1:place u2:st=\"on\"><u1:country-region u2:st=\"on\"><b><span style=\"font-size: small\">Japan</span></b></u1:country-region></u1:place></span></i><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"> and The Gallery Eumundi.<br />\r\n<br />\r\nExhibition Opening 6.00pm<br />\r\nSaturday 30 August 2008<br />\r\n<br />\r\nArtist Talk 5.00pm<br />\r\nSaturday 30 August 2008<br />\r\n</span></i></span></b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><br />\r\n</span><b><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\">Exhibition Dates<br />\r\n30 August to Sunday 28 September 2008</span></b></i></span></p>'),(34,1,'Mel Brigg','<p><img height=\"150\" alt=\"\" hspace=\"6\" width=\"150\" align=\"right\" src=\"/myfiles/mel-brigg-self-portrait_s.jpg\" />Born in 1950 in South Africa. Mel Brigg is a self taught artist, and started painting full time in 1970. As well as having exhibited in England, Portugal and Singapore, he has had numerous solo and joint shows in South Africa and Australia.<br />\r\n<br />\r\nIn South Africa, Mel supported institutions such as Child Welfare, World Wildlife Trust, Save the Rhino Foundation and Release the Detainees. He participated in a number of anti-apartheid exhibitions and was the founder of the Swellendam Art Society.<br />\r\n<br />\r\nSince having arrived in Australia in 1993, he has supported the Sydney City Mission, the Variety Club of Australia, Save (Queensland branch) and Amnesty International. One of Mel\'s works was also used as the representative image for the Sister Mary McKillop tribute publication in 1995. You can visit Mel\'s website on <a target=\"_blank\" href=\"http://www.melbrigg.com\">www.melbrigg.com</a></p>'),(35,1,'Sandra Conte - Sep 2008','<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img height=\"636\" width=\"600\" align=\"top\" alt=\"\" src=\"/myfiles/conte exhib DL Vert eVersion FINAL(1).jpg\" /><br />\r\n<br />\r\nWe are delighted to present Sandra Conte introducing her work of all things skin ~ human and animal and the transformation of her art from Canvas to Body with the introduction of Body Artist Heather O&rsquo;Flaherty to concide with her competing in the National Body Art Championships in Eumundi.<br />\r\n<br />\r\nSome nudity will be present in this exhibition<br />\r\n<br />\r\nExhibition Opening 2.00pm<br />\r\nSaturday 13 September 2008<br />\r\n<br />\r\nArtist Talk 2.00pm<br />\r\nSaturday&nbsp;13 September&nbsp;2008<br />\r\n<br />\r\nExhibition Dates<br />\r\nWednesday 10 September to Monday 22 September 2008</span></i></span></b></p>'),(37,1,'Exhibitions',''),(125,1,'Annabel Tully','<p><img width=\"219\" height=\"250\" hspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/Annabelensitu2web.jpg\" />Annabel Tully is arresting attention as a contemporary landscape artist. She depicts subtle and sensitive, yet often dynamic landscapes to demonstrate her strong kinship with the land.<br />\r\n<br />\r\nShe was born in Brisbane, Australia in 1972 and on the urban fringe the courtship began between artist and homeland with mud fights in the dam and secret hideaways in the scrub. Her career in primary teaching, and as a principal of small schools, led her to many outback destinations. Traveling extensively throughout Australia and taking working holidays on rural properties, she experienced sensory overload. Throughout the nineties, every opportunity was taken to experience life on the land and to continue interests as an artist.<br />\r\n<br />\r\nIn 1999, she met and married Stephen Tully - 5th generation Channel Country pastoralist. Encouraged by Stephen\'s deep relationship with the land and fellow outback artists, she began to draw energy from the vast landscapes and channel her message onto canvas.<br />\r\n<br />\r\nAfter working under the tutorship of internationally renowned landscape artist, Mandy Martin, Tully was encouraged to investigate Martin\'s use of \'colour, mark and texture to become signifiers of special places\' within the landscape. She now places an emphasis on the use of found ochres to create a sense of place in her works. Her latest works reflect her feminine connection with the land as subtle landscapes of central Australia, subtly infused with an evidence of human habitation.<br />\r\n<br />\r\nRecent achievements include finalist Norvill prize for Australian landscape painting, 3 prizes in the Winton Outback Art Prize, Qld, ABC Television&rsquo;s Painting Australia series and Qld Arts Council touring exhibition &ldquo;There&rsquo;s Something About My Landscape.&rdquo; She is the chairperson of the Quilpie Public Art committee which aims to expand upon and showcase the lively arts community of Quilpie. Annabel is currently working on a series of work &ldquo;Layers of the Land&rdquo; after 2 periods as artist in residence at 2008 and 2009 Eromanga Dinosaur Digs. Solo exhibition to be held 17-28 Feb, Graydon Gallery, New Farm, Brisbane.<br />\r\n<br />\r\nAnnabel Tully currently lives and works on a sheep and cattle property in the Channel Country of far South-West Queensland. She &amp; Stephen host Artists&rsquo; retreats held on the family property to foster greater development and appreciation of the Arts in remote areas of Australia. For this contribution, they were awarded The Regional Achievement &amp; Community Awards from Awards Australia in 2009. Annabel travels extensively throughout rural and remote areas of Australia spending endless hours with pigment and dirt on her hands as she paints en situ.  Tully&rsquo;s works are held in private collections in Australia, Hong Kong and France. You can visit Annabel\'s website on <a target=\"_blank\" href=\"http://www.annabeltully.com\">www.annabeltully.com</a></p>'),(126,1,'Masked Gallery Art Walk May 2010',''),(40,1,'\'OMSA\' Artists - Oct 2008','<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img height=\"636\" width=\"600\" align=\"top\" alt=\"\" src=\"/myfiles/OMSA einvite DL - FINAL 2.jpg\" /><br />\r\n<br />\r\nIn an exciting break from tradition The Gallery Eumundi is presenting an exhibition of works solely from members of one Art School.<br />\r\n<br />\r\nIn conjunction with Madeleine Ekeblad the Director of OMSA, the Onward Motivational School for Artists, The Gallery Eumundi has selected 7 individual artists to exhibit a wide range of style and content. The artists John Hill, Jude Townson, Margaret Klumpp, Marilyn A Lane, Catherine Land, Petrai Ferguson, section of art ranging from traditional to abstract with a modern twist.<br />\r\n<br />\r\nThe fact that all seven artists attend the same private art school is an indication of how successful OMSA has become, having upward of 40 artists attending.<br />\r\n<br />\r\nThis exhibition is a not to be missed opportunity to view and invest in up and coming Australian talent that already is selling work both in this country and internationally.<br />\r\n<br />\r\nExhibition Opening Night &amp; Meet the Artists<br />\r\nSaturday 4th October 2008 5pm - 7pm<br />\r\n<br />\r\nExhibition Dates<br />\r\nWednesday 1st October to Sunday 12th October 2008</span></i></span></b></p>'),(41,1,'Catherine Land','<p>Catherine has been interested in art her whole life. She began in Folk Art with talented local teacher Judith Harvison. This continued on for approx. 12-15 years in between having her family. She then attended a workshop exploring the versitility of Pastels with well known Gold Coast artist/teacher Mako Waki approx 3 years ago. The love affair with Pastels was born.<br />\r\n<br />\r\nCatherine was then introduced to Madeleine Ekeblad, Director of OMSA (Onward Motivational School for Artists). Catherine has been with Madeleine for over 12 months discovering the delights of acrylics on canvas. Catherine is passionate about her art and is enjoying her artistic journey immensley.<br />\r\n<br />\r\nCatherine has exhibited her work with the Art Societies with which she is a member, and the many venues made available through OMSA. Recent highlights include, sale of work at The Ekka and two Highly Commended Awards at The Matthew Finders Art Awards, Bribie Island and at The Gold Coast Show. She enjoys painting in both her chosen mediums. Realism with Pastels and Modern Expressionism with Acrylics.<br />\r\n<br />\r\nCatherine is happily married to her biggest fan and together they have three beautiful children.</p>'),(42,1,'John Hill','<p>John Hill was born in Warwick Queensland in September 1940. As his father was a sales representative and was transferred to various provincial centres along the Queensland coast line, John attended a number of schools. John left high school in 1956 and then attended the Central Technical College Art School in George Street Brisbane to train as a commercial artist. At that time the college had some wonderful lecturers in people like Ollie Graham (freehand drawing) and Melville Haysem (painting). In late 1957 John was fortunate enough to secure a position as a junior artist assistant in an advertising agency. He left the agency in 1961. John then practiced as a freelance commercial artist for about a year, before going to Sydney to look for employment. John finally secured a temporary position as an assistant artist in the ABC Television station ABN. On returning home to Brisbane he joined a major packaging firm as a commercial artist. John remained with this company, through various mergers and name changes until his retirement in 1998.<br />\r\n<br />\r\nThrough the years John had a number of hobbies and pastimes, one of which was model trains. This in turn brought him back to painting (painting backdrops for train layouts). John is now fully committed to the art.<br />\r\n<br />\r\nJohn has exhibited and sold works at:<br />\r\n<br />\r\nThe Royal National Show Brisbane<br />\r\nThe Mount Gravatt Show<br />\r\nSunnybank Lions Art and Craft Show (Peoples Choice Award)<br />\r\nOur Lady&rsquo;s College art Show<br />\r\nQT Art Awards<br />\r\nCSIRO Library St. Lucia, Brisbane<br />\r\nThe Staff House U.Q. St. Lucia<br />\r\nSt. Thomas More College Sunnybank Utopia Art Awards 2007 (UTOPIA Award)<br />\r\nSt. John Vianney&rsquo;s Bay Art 2007 (First Prize)<br />\r\nThe Bulimba Bean Restaurant, La Plaz Restaurant, Toscani&rsquo;s Restaurant Carindale, Brisbane, King of Cakes St. Lucia, Brisbane<br />\r\nOMSA Art Show at Queensland Parliament House Annex 2007</p>'),(43,1,'Jude Townson','<p>My own experiences are the imaginative centre of my art, and my canvasses are painted from life &ndash; my life. Having said that, my paintings are not at all realistic.<br />\r\n<br />\r\nI see things, and think about them, often for a long time. Then one day they emerge onto a canvas in their own (often bizarre) fashion, breathing life of their own. The recurring black and white checks in my paintings represent the random nature of life to me. I see life as a sort of rollercoaster ride: a journey full of laughter and grief and dark and light. These are all somewhere in my art.<br />\r\n<br />\r\nThere is little formal art education in my past, but lots of hard work and experience from which I draw my ideas. I have jumped headfirst into painting, am learning all the time, and love it. I hope that you enjoy looking at my work as much as I enjoyed creating it.</p>'),(44,1,'Margaret Klumpp','<p>Born in Brisbane 1955, Margaret started her journey into Art in 2002. She has not been formally trained in Art. Margaret has joined with other artists in workshops covering various subjects.<br />\r\n<br />\r\nDuring January 2005 Margaret met artist, Madeleine Ekeblad, Director of OMSA - Onward Motivational School for Artists. &ldquo;Madeleine Ekeblad give you the power to think outside where you are and involve you into your passion.&rdquo;<br />\r\n<br />\r\nIn April 2006 Margaret moved from Brisbane inner city to the countryside of Lockyer Valley where she has her art studio. Margaret has exihibited her art work in art shows (joint and solo exhibitions). Margaret just loves to play with art producing texture by palette knife application. Sometimes beginning with an idea, transforming into other.<br />\r\n<br />\r\n&ldquo;Inspiration is all around me from the country to cities, sea, and ventures into Europe. I feel very energised when I paint . I absolutely love that I feel drained and fulfilled after finishing a painting. What a great feeling it is!&rdquo;<br />\r\n<br />\r\n<b>Art Shows - 2004 - 2005 - 2006<br />\r\n</b>Redciffle Show, Sunnybank Loins, Salford Waters, Laidley Shire Art Awards, Cleveland Gardens, Coming Together, Sunnybank Loins, Ipswich Art Awards, St Elizabeth Arts, Gateway, Laidley Show (Second Prize)<br />\r\n<br />\r\n<b>Art Shows - 2007- 2008<br />\r\n</b>Toowoomba, Marburg Show (Second Prize), Just Nudes Ipswich Festival, Ipswich Show, Utopia Art Awards, Laidley Show (Second Prize and Highly Commended), Gatton Show, Laidley Spring Festival (Painting Sold), Laidley Shire Annual Show, Esktravaganza, Black Snake Creek Festival, Mulgowie Arts (twice), Ipswich Art Awards, Just Nudes Ipswich Festival, Brookfield Show, Regional Art Awards (on line)<br />\r\n<br />\r\n<b>Exhibitions<br />\r\n</b>2005 OMSA &amp; Our Lady&rsquo;s College Annual Art Exhibition. Open by Cr. Helen Abrahams<br />\r\n2006 Duo at CSIRO Cunningham Library UQ St Lucia Brisbane(Paintings Sold)<br />\r\n2006 OMSA End of Year Portfolio (Paintings Sold)<br />\r\n2007 Duo at CSIRO Cunningham Library UQ St Lucia Brisbane<br />\r\n2007 Bulimba Bean in Bulimba Brisbane<br />\r\n2007 Art Expo (Gold Coast)<br />\r\n2007 Horticultural Gardens Brisbane (with Laidley Art Society (Painting Sold)<br />\r\n2007 Solo Staff Club House UQ St Lucia Brisbane<br />\r\n2007 Diversity on Display (Circle Gallery- West End)<br />\r\n2007 Duo at CSIRO Cunningham Library UQ St Lucia Brisbane (PaintingsSold)<br />\r\n2007 Solo at LA PLAS Cafe Bar Brisbane City<br />\r\n2007 Solo at Checkers Coffee House (Gatton)<br />\r\n2007 OMSA at Parliament House North Quay Open by Simon Finn MP<br />\r\n2007 Solo at King of Cakes (St. Lucia Brisbane) Painting Sold<br />\r\n2007 OMSA End of Year Portfolio (Paintings Sold)<br />\r\n2008 Solo at German Bakery (Graceville Brisbane)<br />\r\n2008 Solo at Checkers Coffee House (Gatton)<br />\r\n2008 Solo at Holland Park Library<br />\r\n2008 Solo at Java Chocolate<br />\r\n2008 Solo at Toscani&rsquo;s Restaurant (Carindale)<br />\r\n2008 Horticultural Gardens Brisbane (with Laidley Art Society)<br />\r\n2008 OMSA Mid Year Portfolio (Paintings Sold)<br />\r\n2008 It&rsquo;s Culture-All (Percolator Gallery Paddington)<br />\r\n2008 Solo at Carindale Library<br />\r\n2008 Randall Studio Botanical Gardens</p>'),(45,1,'Marilyn Lane','<p>While working in London I studied part-time with the prestigious Chelsea College of Art &amp; Design for a BA (Hons) Fine Art: Practice and Theory of Visual Art. At the time my interest lay in abstract paintings although I had always had a love for architecture. During this period I undertook commissions for realist paintings for private clients and architectural drawings of historical buildings and interiors for The British Academy.<br />\r\n<br />\r\nGradually colour theory became a fascination and after graduating I spent the next two years studying colour theory, exploring the makeup of pigments in commercial oil colours and experimenting with both in realist paintings of landscapes and flowers.<br />\r\n<br />\r\nReturning to Australia 2007 I joined the OMSA group of artists, and with encouragement and guidance from the Director, Madeleine Ekeblad, my first love for painting pure abstracts in oils has finally come to the fore.<br />\r\n<br />\r\n<b><u>LONDON</u></b><br />\r\n<b>Exhibitions</b><br />\r\n2006 (Open) The Lighthouse, Poole, Dorset<br />\r\n1998-2004 Held yearly Open Studio days<br />\r\n2001 Chelsea College of Art &amp; Design<br />\r\n2000 Candid Arts Trust Gallery (Group)<br />\r\n1997 Atrium Gallery (Group)<br />\r\n<b>Teaching</b><br />\r\n2005-2007 Art Tutor - Private clients<br />\r\n1996-1997 Art &amp; Crafts Tutor for Westminster College<br />\r\n<b>Commissions</b><br />\r\n2000 NADFAS Amend architectural drawings for book - &lsquo;Inside Churches&rsquo; (National Association for Decorative and Fine Art Societies)<br />\r\n1998-9 British Academy Drawings - of buildings and of interior architecture<br />\r\n1998 Private client Drawings - of interior architecture<br />\r\n1997 British Academy Drawings - of village buildings for book cover<br />\r\n1996 Private client painting<br />\r\n<br />\r\n<u><b>AUSTRALIA<br />\r\n</b></u><b>Commissions<br />\r\n</b>2007-8 Private client painting<br />\r\n<b>Exhibited<br />\r\n</b>2008 King of Cakes, St Lucia; La Plaz Caf&eacute; Bar, CBD (Brisbane)<br />\r\nIndooroopilly Library</p>'),(46,1,'Petrai Ferguson','<p>Petrai Ferguson - Colourist<br />\r\n<br />\r\n<b>Prizes<br />\r\n</b>- People&rsquo;s Choice Award &ndash; The Pastel Society of Australia May 2004 &ndash; &ldquo;Beachcomber&rdquo;<br />\r\n- 2nd place People&rsquo;s Choice Award &ndash; The Pastel Society of Australia May 2005 &ndash; &ldquo;Ranunculi&rdquo;<br />\r\n- Highly Commended &ndash; OPEN section &ndash; Brookfield Show May 2005 &ndash; &ldquo;Touch Pool&rdquo;<br />\r\n- Set subject competition with The Pastel Society of Australia &ndash; August 2005 &ndash; &ldquo;Ranunculi&rdquo;<br />\r\n- Encouragement Award for The Pastel Society of Australia End of Year Awards 2005<br />\r\n- Highly Commended &ndash; The Pastellist of the Year Awards &ndash; The Pastel Society of Australia 2005 &ndash; &ldquo;Beloved&rdquo;<br />\r\n- Highly Commended &ndash; St Catherine&rsquo;s Anglican Church September 2006 &ndash; &ldquo;Sunburn&rdquo;<br />\r\n- 2nd place in The Pastel Society of Australia&rsquo;s website competition 2006 &ndash; &ldquo;Undercover&rdquo;<br />\r\n- Highly Commended &ndash; The Pastellist of the Year Awards &ndash; The Pastel Society of Australia 2006 &ndash; &ldquo;Undercover&rdquo;<br />\r\n- First Place &ndash; Mt Gravatt Show 2007 &ldquo;Touch Pool&rdquo;<br />\r\n- First and third place &ndash; St Catherine&rsquo;s Anglican Church 2007 &ndash; &ldquo;Ekka&rdquo; and &ldquo;Rising Up&rdquo;<br />\r\n- SOLO exhibition &ldquo;Oriental&rdquo; November 2007<br />\r\n<br />\r\n<b>Publications</b><br />\r\n- Australian Artist Magazine August 2005 &ndash; &ldquo;Beachcomber&rdquo;<br />\r\n- Australian Artist Magazine April 2006 &ndash; &ldquo; Beloved&rdquo;, &ldquo;Ranunculi&rdquo;, &ldquo;Autumn in New York&rdquo;<br />\r\n- Australian Artist Magazine July 2006 &ndash; Feature Article (6 pages in total) &ndash; &ldquo;Off Duty&rdquo;, &ldquo;Beloved&rdquo;, &ldquo;Curious&rdquo;, &ldquo;Autumn in New York&rdquo;, &ldquo;On Duty&rdquo;<br />\r\n- Australian Artist Magazine July 2007 &ndash; &ldquo;Undercover&rdquo;<br />\r\n- Australian Artist Magazine March 2008 &ndash; &ldquo;How did you paint that?&rdquo; article<br />\r\n- Australian Artist Magazine July 2008 &ndash; Feature Article (6 pages in total) on solo exhibition.</p>'),(47,1,'Sandra Pearce','<p>The source of my inspiration is the magic of bird song floating over the amazing geography of the granite monoliths around Stanthorpe - a naturally sculptured landscape with a strong sense of spirituality and drama.<br />\r\n<br />\r\nAs a contemporary landscape painter, I am fascinated by the patterns and texture found in the environment. My painting approach is something of a parallel to what happens when nature creates the real thing. Every line is like a note in a bird song, every acrylic wash is like a summer storm - shaping the landscape, building movement and excitement on my flat painting surface. The marks I create on my canvas gather in groups like cockatiels in a noisy flock, intermingling and becoming a tide of movement, a current of aerially viewed patterns and marks. The sensation of charcoal on canvas inspired by the beautiful pattern of granite.<br />\r\n<br />\r\nI love the way artistic expression and imagination can inject a bare canvas with a sense of spiritual liberation - the musical notes on my canvas landscape.<br />\r\n<br />\r\n<b>Selected Major Exhibitions/Shows<br />\r\n</b>Good Nature Group Exhibition, Mooroolbark VIC - August to October 2008<br />\r\nNundah Village Festival Art Competition &amp; Exhibition -September 2008<br />\r\nSt Sebastian&rsquo;s Art Festival - September 2008<br />\r\nToscanis Caf&eacute; Carindale - July 2008<br />\r\nLive Life Villages Art Festival - July 2008<br />\r\nOMSA Parliament Annexe Group Exhibition - December 2007<br />\r\nUtopia Art Awards - July 2007<br />\r\nQueensland Villages Art Show and Prize - May 2007<br />\r\nChurchie Emerging Art Exhibition - May 2006<br />\r\nNudgee College Art Festival - May 2006<br />\r\n\'Variations\', Solo Exhibition, Bulimba Gallery, September 2005<br />\r\n\'3 Girls, A Guy and an Artspace\', Group Exhibition, Graydon Gallery, June 2005<br />\r\n\'7 at Ascot\', Group Exhibition, Ascot Art Gallery, April 2005<br />\r\nCaloundra Arts Festival - October 2004<br />\r\nNudgee College Art &amp; Craft Festival - July 2004<br />\r\n<br />\r\n<b>Community Projects<br />\r\n</b>Traffic Signal Boxes (various) - 2003 to 2008<br />\r\nZillmere Story Book - June 2007</p>'),(48,1,'\'A Family Affair\' - Oct 2008','<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img height=\"541\" alt=\"\" width=\"600\" align=\"top\" src=\"/myfiles/family affair einvite - FINAL.jpg\" /><br />\r\n<br />\r\n&lsquo;A Family Affair&rsquo; is a dramatic series of paintings and a journey revealing the natural &amp; unique talent within one family where these five accomplished artists imbue a love of the canvas.<br />\r\n<br />\r\n&ldquo;As a family of artists they have a very eclectic mix of genres and in each way their own unique style of painting.&rdquo;<br />\r\n<br />\r\nChampagne Opening &amp; Meet The Family<br />\r\nSaturday 18th October 2008 5pm - 7pm<br />\r\n<br />\r\nExhibition Dates<br />\r\nWednesday 15th October to Sunday 9th November 2008</span></i></span></b></p>'),(49,1,'Madeleine Ekeblad','<p><img height=\"180\" alt=\"\" hspace=\"6\" width=\"150\" align=\"right\" src=\"/myfiles/madeleine1(1).jpg\" />Madeleine, 50 years old, was originally involved in the commercial art world before taking up painting full time in 1996. She studied with renowned Australian artist Donald James Waters and one of the highlights of her artistic career was in 2001 when she was chosen by the late Pro Hart to be listed with his World Heritage Art organisation.<br />\r\n<br />\r\nMadeleine is founder of OMSA, the Onward Motivational School for Artists, in October 2004 at the old RSL Hall in Holland Park Brisbane and is currently motivating and promoting artists at venues throughout Brisbane. She is the Artist in Residence at St. Thomas More College, Sunnybank, is on the Management Committee of the Brisbane Institute of Art (BIA) Windsor.<br />\r\n<br />\r\nMadeleine has participated in several exhibitions since year 2000, including Parliament House and RM Galleries in Brisbane, and Art Expo, Gold Coast, Queensland. She paints with the inspiration of music. You can visit Madeleine\'s website at <a target=\"_blank\" href=\"http://www.omsa.com.au\">www.omsa.com.au</a></p>\r\n<p>&nbsp;</p>'),(50,1,'Alex Ekeblad','<p>Alex Ekeblad, 19 years old, was represented and sold paintings when she was 14 years old by the Maria Perides Gallery in Brisbane. Her style is that of Modern Impressionism. Alex declares that she only paints four paintings a year and as she paints the world stops!<br />\r\n<br />\r\nAlex has a diploma in Graphic Design and Multi-Media.<br />\r\n<br />\r\n<b>Exhibitions</b><br />\r\nArt Expo Gold Coast &amp; Brisbane</p>'),(51,1,'Muriel McDonnell','<p>Muriel McDonnell, 78 years of age. Muriel was taught by two Russian artists and has been painting for 35 years.<br />\r\n<br />\r\nHer quirky &lsquo;Goat&rsquo; paintings have captured the hearts of many and she is now represented by a Gallery in Germany. Muriel has won many art prizes and awards over the years. She&nbsp;is an active member of OMSA and works from her own studio in Brisbane.<br />\r\n<br />\r\n<b>Exhibitions<br />\r\n</b>2005 OMSA &amp; Our Lady&rsquo;s College Annual Art Exhibition. Opened by Cr. Helen Abrahams<br />\r\n2006 Duo at CSIRO Cunningham Library UQ St Lucia Brisbane (Paintings Sold)<br />\r\n2006 OMSA End of Year Portfolio (Paintings Sold)<br />\r\n2007 Bulimba Bean in Bulimba Brisbane<br />\r\n2007 Art Expo (Gold Coast)<br />\r\n2007 Solo Staff Club House UQ St Lucia Brisbane<br />\r\n2007 Duo at CSIRO Cunningham Library UQ St Lucia Brisbane (Paintings Sold)<br />\r\n2007 LA PLAZ Cafe Bar Brisbane City<br />\r\nSt. Thomas More College Sunnybank Utopia Art Awards<br />\r\n2007 OMSA at Parliament House North Quay Open by Simon Finn MP OMSA End of Year Portfolio (Paintings Sold)<br />\r\n<b>2008<br />\r\n</b>Duo at Carindale Library<br />\r\nRandall Studio Botanical Gardens<br />\r\nThe Royal National Show Brisbane<br />\r\nThe Mount Gravatt Show<br />\r\nHolland Park Library<br />\r\nSunnybank Lions Art and Craft Show<br />\r\nNundah Village Festival Art Competition<br />\r\nOMSA Mid Year Portfolio (Paintings Sold)<br />\r\nToscanis Caf&eacute; Carindale Live<br />\r\nLife Villages Art Festival<br />\r\nLa Plaz Restaurant<br />\r\nStaff Club House St. Lucia University</p>'),(52,1,'Bryan McDonnell','<p>Bryan McDonnell - 80 years old - a&nbsp;retired builder who decided 3 years ago to take up paint brushes and palette knife to paint the landscape of his home town Dalby.<br />\r\n<br />\r\nBryan&rsquo;s soft contemporary style captures the country life at Dalby where he was raised. His unique, sometimes primitive na&iuml;ve style has been compared to Fred Williams, Australia&rsquo;s noted Contemporary Artist. Although Bryan has had no formal art training he is married to a successful artist and for the last 30 years has been involved in the art world. Bryan is an active member of OMSA and works from his own studio in Brisbane.<br />\r\n<br />\r\n<b>Exhibitions<br />\r\n</b>2005 OMSA &amp; Our Lady&rsquo;s College Annual Art Exhibition. Open by Cr. Helen Abrahams<br />\r\n2006 Duo at CSIRO Cunningham Library UQ St Lucia Brisbane (Paintings Sold)<br />\r\n2006 OMSA End of Year Portfolio (Paintings Sold)<br />\r\n2007 Bulimba Bean in Bulimba Brisbane<br />\r\n2007 Art Expo (Gold Coast)<br />\r\n2007 Solo Staff Club House UQ St Lucia Brisbane<br />\r\n2007 Duo at CSIRO Cunningham Library UQ St Lucia Brisbane (PaintingsSold)<br />\r\n2007 LA PLAZ Cafe Bar Brisbane City<br />\r\nSt. Thomas More College Sunnybank Utopia Art Awards<br />\r\n2007 OMSA at Parliament House North Quay Open by Simon Finn MP<br />\r\nOMSA End of Year Portfolio (Paintings Sold)<br />\r\n<b>2008<br />\r\n</b>Solo at Holland Park Library<br />\r\nDuo at Carindale Library<br />\r\nRandall Studio Botanical Gardens<br />\r\nNundah Village Festival Art Competition<br />\r\nOMSA Mid Year Portfolio (Paintings Sold)<br />\r\nToscanis Caf&eacute; Carindale Live<br />\r\nLife Villages Art Festival</p>'),(53,1,'Natasha KHM','<p>Natasha Khmelevska&rsquo;s style of artistic expression has been moulded over the 15 years she has worked professionally as an artist animator for some of Europe&rsquo;s most avant-garde commercial studios.<br />\r\n<br />\r\nBorn in Moscow (Russia), raised in Tallin (Estonia) and educated in Kiev (Ukraine), Natasha&rsquo;s style is strongly influenced by the great masters of Eastern European art. Formally trained in art and illustration at Kiev&rsquo;s Institute of Graphic Art, Natasha then perfected her style working in Bel&rsquo;sko-Byala (Poland), Budapest (Hungary) and Kiev (Ukraine).<br />\r\n<br />\r\nProfessionally Natasha has worked on many animation productions well known in Europe in particular French productions, as well as providing artistic services for Hanna Barbera and Disney productions. Natasha speaks 4 languages.<br />\r\n<br />\r\nClearly Natasha&rsquo;s style and composition is strongly influenced by her life as an artist animator. Many of her works bring out the child in all of us, while others are clearly painted from the perspective of one who perceives the world different to most. Natasha primarily works in water colours and gouache. She is more than happy to take on commissions.<br />\r\n<br />\r\nNatasha works from her Studio in the converted Woolstore buildings at New Farm.</p>'),(54,1,'Coralie Burcher',''),(55,1,'Des Rolph - January 2009','<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC TT&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img height=\"429\" alt=\"\" width=\"600\" align=\"top\" src=\"/myfiles/advert 1 72DPI(1).jpg\" /><br />\r\n<br />\r\nThe Ethereal Landscape<br />\r\n<br />\r\nOpening Night Drinks<br />\r\nSaturday 10th January 2009 5pm<br />\r\n<br />\r\nExhibition Dates<br />\r\nFriday 2nd January to Sunday 1st February 2009</span></i></span></b></p>'),(56,1,'\'Christmas Stars\' - Dec 2008','<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img height=\"525\" width=\"500\" align=\"absMiddle\" alt=\"\" src=\"/myfiles/e_invitation_FINAL2 72DPI.jpg\" /><br />\r\n<br />\r\nNew works from The Gallery Stable<br />\r\n<br />\r\nMeet the Artists and Opening Night Drinks &amp; Music<br />\r\nSaturday 6th December 2008 6pm till LATE<br />\r\n<br />\r\nExhibition Dates<br />\r\nWednesday 3rd December to Sunday 28 December 2008</span></i></span></b></p>'),(57,1,'Rhonda Cao','<p><img height=\"218\" alt=\"\" hspace=\"6\" width=\"250\" align=\"right\" src=\"/myfiles/rcaoP(1).jpg\" />Rhonda Cao first studied sculpting at the Queensland College of Art but, with her career in illustration and graphic design taking up all her time, she didn\'t return to sculpting until a few years ago.<br />\r\n<br />\r\nRhonda is a member of Sculptors Queensland, and has studied with Derek Rintol and Georgette Schwantes. She has also attended workshops by Erica Mayer, Bob McKerrell and Yanna Pameijer. Her interest in and love of sculpture has developed over the last few years through her exposure to other artists. &ldquo;Their sculptures, their stories and their generous sharing of skills, knowledge and encouragement have helped in my design, my craftsmanship and my focus.&rdquo;<br />\r\n<br />\r\nRhonda enjoys using a variety of materials, such as clay, glass, bronze, hebel and crystal, and developing complex and rhythmic shapes based on variations of the human form. You can visit Rhonda\'s website at <a target=\"_blank\" href=\"http://www.caosculpture.com\">www.caosculpture.com</a></p>'),(124,1,'Susan Coburn','<p><img width=\"0\" height=\"0\" vspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/SusanCoburnphoto.jpg\" /><img width=\"0\" height=\"0\" hspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/SusanCoburnphoto(1).jpg\" /><img width=\"0\" height=\"0\" vspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/SusanCoburnphoto.jpg\" /><img hspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/SusanCoburnphoto(1).jpg\" />Susan Coburn lives and works in the Noosa Hinterland on the shores of Lake Cootharaba.&nbsp;Because of her long association with the water her paintings reflect the different moods of the lake as well as her awareness to conserve and protect the waterways and resources which have become so precious to us all. Hence the reference the &quot;Vessel&quot;.<br />\r\n<br />\r\nAcrylic is her preferred medium, but often she mixes it up with crayon, found objects, paper, texture, etc.<br />\r\n<br />\r\nSusan has traveled extensively during her life and has had exhibitions in Hong Kong as well as Brisbane, Gold Coast and Melbourne. Three of her paintings have just been sold in Dubai...<br />\r\n<br />\r\n&quot;Painting, to me, is the mysterious unfolding of the psyche, which, when the art is going well is the most rewarding of all pursuits.&quot;<br />\r\n<br />\r\nSusan Coburn</p>'),(58,1,'Sandra Pearce','<p><br />\r\n<img width=\"164\" height=\"200\" hspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/Sandra_Portrait 72DPI.jpg\" />I have been painting for many years and as a contemporary landscape painter, I am fascinated by the patterns and texture found in the environment.  The source of my inspiration is the granite monoliths and outcrops in our natural landscape, particularly around South-East Queensland in areas like Stanthorpe - a fantastically sculptured landscape with a strong sense of spirituality and drama.<br />\r\n<br />\r\nAfter a recent visit to the Blue Mountains in NSW, I have also been driven to describe in my artworks the beauty of the canyons and escarpments that I witnessed (and worshipped!) there.<br />\r\n<br />\r\nMy painting approach is something of a parallel to what happens when nature creates the real thing.   The marks I create on my canvas are intuitive, intermingling and becoming a tide of movement, a current of aerially viewed patterns and marks.  The movement of my charcoal stick across on canvas is inspired by the beautiful patterns of weathered rock and smooth river stones.<br />\r\n<br />\r\nI love the way artistic expression and imagination can inject a bare canvas with a sense of spiritual liberation - the musical notes on my canvas landscape.<br />\r\n<br />\r\n<b>Selected Major Exhibitions/Shows<br />\r\n</b>Good Nature Group Exhibition, Mooroolbark VIC - August to October 2008<br />\r\nNundah Village Festival Art Competition &amp; Exhibition -September 2008<br />\r\nSt Sebastian&rsquo;s Art Festival - September 2008<br />\r\nToscanis Caf&eacute; Carindale - July 2008<br />\r\nLive Life Villages Art Festival - July 2008<br />\r\nOMSA Parliament Annexe Group Exhibition - December 2007<br />\r\nUtopia Art Awards - July 2007<br />\r\nQueensland Villages Art Show and Prize - May 2007<br />\r\nChurchie Emerging Art Exhibition - May 2006<br />\r\nNudgee College Art Festival - May 2006<br />\r\n\'Variations\', Solo Exhibition, Bulimba Gallery, September 2005<br />\r\n\'3 Girls, A Guy and an Artspace\', Group Exhibition, Graydon Gallery, June 2005<br />\r\n\'7 at Ascot\', Group Exhibition, Ascot Art Gallery, April 2005<br />\r\nCaloundra Arts Festival - October 2004<br />\r\nNudgee College Art &amp; Craft Festival - July 2004<br />\r\n<br />\r\n<b>Community Projects<br />\r\n</b>Traffic Signal Boxes (various) - 2003 to 2008<br />\r\nZillmere Story Book - June 2007</p>'),(59,1,'Natasha Khmelevska','<p>Natasha Khmelevska&rsquo;s style of artistic expression has been moulded over the 15 years she has worked professionally as an artist animator for some of Europe&rsquo;s most avant-garde commercial studios.<br />\r\n<br />\r\nBorn in Moscow (Russia), raised in Tallin (Estonia) and educated in Kiev (Ukraine), Natasha&rsquo;s style is strongly influenced by the great masters of Eastern European art. Formally trained in art and illustration at Kiev&rsquo;s Institute of Graphic Art, Natasha then perfected her style working in Bel&rsquo;sko-Byala (Poland), Budapest (Hungary) and Kiev (Ukraine).<br />\r\n<br />\r\nProfessionally Natasha has worked on many animation productions well known in Europe in particular French productions, as well as providing artistic services for Hanna Barbera and Disney productions. Natasha speaks 4 languages.<br />\r\n<br />\r\nClearly Natasha&rsquo;s style and composition is strongly influenced by her life as an artist animator. Many of her works bring out the child in all of us, while others are clearly painted from the perspective of one who perceives the world different to most. Natasha primarily works in water colours and gouache. She is more than happy to take on commissions.<br />\r\n<br />\r\nNatasha works from her Studio in the converted Woolstore buildings at New Farm.</p>'),(60,1,'Helen Lawson',''),(61,1,'Mel Brigg',''),(62,1,'Eden Scott',''),(63,1,'Sandra Pearce',''),(64,1,'Ken Barker',''),(65,1,'Chris Blake',''),(66,1,'Michelle Pike',''),(67,1,'Rowley Drysdale',''),(68,1,'Des Rolph',''),(69,1,'Arone Meeks',''),(70,1,'Tom McAulay',''),(71,1,'Di West',''),(72,1,'Rhonda Cao',''),(73,1,'Caroline Magerl',''),(74,1,'Madeleine Ekeblad',''),(75,1,'Ute Dittrich',''),(76,1,'Caroline Magerl - April 2009','<p style=\"text-align: left\"><img height=\"633\" width=\"600\" align=\"top\" alt=\"\" src=\"/myfiles/emailmagerl.jpg\" /><br />\r\n<br />\r\nHaving spent her first 20 years cruising the east coast of Australia aboard her families&rsquo; yacht, it is little surprise that artist, Caroline Magerl, has once again returned to live on the Sunshine Coast.<br />\r\n<br />\r\nOnce described as a <i>&lsquo;Painter&rsquo;s painter&rsquo;</i>, her work is known both nationally and internationally for her evocative portraits, whimsical animals, quirky cartoons and fabulous children&rsquo;s illustrations.<br />\r\n<br />\r\nGiven an opportunity to learn the art of printmaking with master printmaker, Deborah Perrow, she left Eumundi two years ago to experience the city life of Canberra. Along with these new experiences and adventures came an introduction to other members of the art world. As much as they loved their new life, Caroline and her family missed Queensland, the landscape, the weather, the water... It was hard to turn her back on a lifetime spent in the tropics. It was only natural they would return to the Coast.<br />\r\n<br />\r\nA natural story teller, she can paint an image in your mind with words as cleverly as she can paint a story on canvas. Even with a sombre subject, there is always a quirky little glint in her eye. This hidden element is to be found by the admirers of her work. Caroline feels that to paint, she needs to be <i>&ldquo;in love&rdquo;</i> and <i>&ldquo;right up to my neck in it&rdquo;.</i> Quoting Novalis <i>&ldquo;the seat of the soul is where the inner and outer world meet, that is what I feel I am dealing with, a sort of poetic subtext of life&rdquo;.<br />\r\n</i><br />\r\nThe Sunshine Coast with its familiar landscape helps to connect her with a working frame of mind. It provides the necessary conduit to paint her inner thoughts and feelings.<br />\r\n<br />\r\nCaroline is a modest women, who crosses all aspects of the artistic world. As well as painting, she continues to illustrate for ABC books, will soon take up a Residency in Melbourne with the Children&rsquo;s Book Council and was recently approached by an Italian literacy movement, headed by Aeronwy Thomas (Dylan Thomas&rsquo;s daughter), to include some of her paintings in their international blog.<br />\r\n<br />\r\nOne of most impressive aspects of Caroline&rsquo;s career has been her success at whatever she turns her hand to; she grasps life with both humour and humility.<br />\r\n<br />\r\n<i>The Coast has been a major part of my life over the last 8 years. It has been the inspiration for much of my work and has a distinct context with the area and in particular this gallery. It seemed only natural to have my latest paintings shown here.</i><br />\r\n<br />\r\nCaroline will be exhibiting a collection of new works at The Gallery Eumundi from 3 April 2009. To discuss these works please contact the gallery Directors, Steve and Karen Beardsley on 07 5442 8365 or 0400 716 553.</p>'),(78,1,'Di West - May 2009','<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img height=\"630\" alt=\"\" width=\"600\" align=\"top\" src=\"/myfiles/einvite.jpg\" /><br />\r\n</span></i></span></b></p>\r\n<p><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\">Murmurs<br />\r\nassemblage of memories<br />\r\n<br />\r\nOpening Night Drinks<br />\r\nSaturday 16th May 2009 6pm<br />\r\n<br />\r\nExhibition Dates<br />\r\nWednesday 13th May to Sunday 7th June 2009</span></i></span></b></p>\r\n<p>I moved from living in the heart of Brisbane nearly all my life, to Maleny, 3 years ago. I am a professional painter and sculptor, however, every artist needs to play. When I play, I love working with recycled paper, found objects, old postage stamps and the like.<br />\r\n<br />\r\nMy assemblage work is about the layering of memories. It&rsquo;s about my childhood memories and also about how memories are made and what remains with us. I also like to use recycled tea bag and coffee filter paper which seems the perfect vehicle to show a correlation between the residue and/or stain on the paper and things in life that will stay with me, forever etched in my memory. To me, memories are little murmurs. Several of the works contain a narrative that weaves its way through the work in poetry, song lyrics, and metaphors. I like to think that these assemblage works combine fun with aesthetics and engage the viewer through their narrative. Sometimes a simple story, but always told with a little twist drawing inspiration from everyday life. Basically I &ldquo;think&rdquo; in pictures. Every work is unique in it&rsquo;s own right.<br />\r\n<br />\r\nA journalist recently described my paper works:<br />\r\n<br />\r\n&ldquo;Many of the works are very ethereal and the word aesthetic certainly applies when you look at the dictionary meaning: Aesthetic: pertaining to, involving, or concerned with pure emotion and sensation as opposed to pure intellectuality.&rdquo;</p>'),(80,1,'James Ainslie - June 2010',''),(81,1,'Arone Meeks - October 2010',''),(82,1,'Drysdale & Artists of Quixotica','<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC TT&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img width=\"476\" height=\"500\" align=\"top\" alt=\"\" src=\"/myfiles/email72DPI.jpg\" /><br />\r\n<br />\r\nRowley Drysdale &amp; the Artists of Quixotica<br />\r\n<br />\r\nOpening Night Drinks<br />\r\nSaturday 10th October 2009 6pm<br />\r\n<br />\r\nExhibition Dates<br />\r\nWednesday 7th October to Sunday 1st November 2009</span></i></span></b></p>'),(83,1,'Des Rolph - January 2010','<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: \'Bradley Hand ITC\'; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img height=\"595\" width=\"500\" align=\"top\" alt=\"\" src=\"/myfiles/eBunginderryAC 100DPI.jpg\" /><br />\r\n</span></i></span></b></p>\r\n<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: \'Bradley Hand ITC\'; mso-bidi-font-family: \'Microsoft Sans Serif\'\">BUNGINDERRY<br />\r\nTimes past and present<br />\r\n<br />\r\nAs featured in <a href=\"http://www.artcollector.net.au/Home.aspx?element=1&amp;category=1\"><u>Australian Art Collector\'s EXHIBITION OF THE WEEK</u></a><br />\r\n<br />\r\nExhibition Dates<br />\r\nWednesday 6 January to Sunday 31 January 2010</span></i></span></b></p>'),(84,1,'Galleries of Eumundi Art Walk','<p style=\"text-align: center\"><img height=\"219\" alt=\"\" hspace=\"7\" width=\"250\" align=\"left\" src=\"/myfiles/GoE Art Walk Invite cropped(1).jpg\" /><span><span>Steve &amp; Karen from The Gallery Eumundi are proud to be part of the inaugural event,<br />\r\n<b><i><span style=\"font-size: 20px; font-family: \'Bradley Hand ITC\'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: \'Microsoft Sans Serif\'; mso-fareast-language: EN-US; mso-ansi-language: EN-GB; mso-bidi-language: AR-SA\">Galleries of Eumundi Art Walk<br />\r\non Sunday 5 April 2009</span></i></b></span></span></p>\r\n<p style=\"text-align: justify\">Seven galleries from Eumundi&rsquo;s &lsquo;Memorial Drive&rsquo; have teamed together to show art lovers, both locals and tourists, that Eumundi is a destination not just for the markets, but for quality artwork. Come and join us at The Gallery Eumundi and then set off on your own treasure hunt to explore the seven galleries in the cultural hub of Eumundi. The lazy afternoon will finish in Treefellers Restaurant for an evening of drinks, hors d&rsquo;oeuvres and entertainment by much-loved musicians Tijuana Cartel. Each gallery will be hosting something special of their own on the day, including demonstrations and new exhibitions, not to mention beautiful, evocative art!<br />\r\n<br />\r\nPre-booked $25 tickets for the day and night include the Art Walk (each gallery will provide their own treats), a drink upon arrival at Treefellers, hors d\'oeuvres and a night of music by Tijuana Cartel. For those who want to leave the car behind, a bus will be collecting from Coolum, Peregian Beach, Noosa, and Noosaville and return for an additional $10 per person.<br />\r\n<br />\r\nTickets can be purchased by credit card or cash through The Gallery Eumundi email <a href=\"mailto:art@thegalleryeumundi.com.au\"><b><u><span style=\"color: #403b65\">art@thegalleryeumundi.com.au</span></u></b></a> or by calling Karen on 0400 716 553 or Steve on 0400 716 526</p>\r\n<p style=\"text-align: center\"><span style=\"font-size: 20px\"><span><b><i><span style=\"font-family: \'Bradley Hand ITC\'; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: \'Microsoft Sans Serif\'; mso-fareast-language: EN-US; mso-ansi-language: EN-GB; mso-bidi-language: AR-SA\">Come and join us for a fun Sunday in Eumundi</span></i></b></span></span><br />\r\n&nbsp;</p>'),(85,1,'Frances Luke',''),(86,1,'James Ainslie','<p><img width=\"160\" height=\"200\" hspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/JamesAinslie photo.jpg\" />James Ainslie&rsquo;s preferred palette is acrylic paint on paper, with the occasional use of mixed media. His forte is modern realism, although he also produces abstract art. Ainslie&rsquo;s paintings resonate with an inherent passion for the country&rsquo;s unique beauty, particularly the sandy dunes and reflective waters of Queensland and South Australia.<br />\r\n<br />\r\nAinslie was born in SA in 1950, graduated in art from the South Australian School of Art and has exhibited throughout Australia and overseas since 1975. Sand and water have always inspired his work, harking back to a childhood in South Australia, spent playing around the Coorong and exploring the huge sand tracks around the Murray River. Now living in Noosa, he has turned his attention to the undulating dunes of Fraser Island and the many beaches along the Sunshine Coast shoreline. Annual visits to Broome ensure that Kakadu and The Kimberley remain strong influences.<br />\r\n<br />\r\nAinslie has regularly been an artist in residence at Ayers Rock, and has been invited to represent South Australia in London, and at the Museum of Fine Art in Pasadena, USA. James won the prestigious Camberwell Flora &amp; Fauna Prize in 1990 and was co-winner of the Barossa Valley Heritage Award. His work is featured in prestigious collections such as Artbank; BP Australia; Reserve Bank of Australia; Mobil Australia; William Hancock collection, San Francisco; Banker&rsquo;s Trust; Diamond Merchants,South Africa; and many public and private collections worldwide.<br />\r\n<br />\r\n<b>Artist&rsquo;s Statement</b><br />\r\nAs an artist my paintings are a direct result of location. It is the colours, textures, smells, patterns, in fact the essence of a place that inspires my images. The interpretation may be realistic, but often may develop more abstractly.</p>'),(87,1,'Shirley Strano',''),(88,1,'Marilyn Lane','<p><span class=\"Apple-style-span\" style=\"font-size: 16px; font-family: Times\"><span class=\"Apple-style-span\" style=\"font-size: 12px; font-family: Arial\">While working in London I studied part-time with the prestigious Chelsea College of Art &amp; Design for a BA (Hons) Fine Art: Practice and Theory of Visual Art. At the time my interest lay in abstract paintings although I had always had a love for architecture. During this period I undertook commissions for realist paintings for private clients and architectural drawings of historical buildings and interiors for The British Academy.</span> </span>\r\n<p>&nbsp;</p>\r\n</p>\r\n<div style=\"padding-right: 5px; padding-left: 5px; font-size: 12px; padding-bottom: 5px; margin: 0px; padding-top: 5px; font-family: Arial, Verdana, sans-serif; background-color: rgb(255,255,255)\">\r\n<p><br />\r\nGradually colour theory became a fascination and after graduating I spent the next two years studying colour theory, exploring the makeup of pigments in commercial oil colours and experimenting with both in realist paintings of landscapes and flowers.<br />\r\n<br />\r\nReturning to Australia 2007 I joined the OMSA group of artists, and with encouragement and guidance from the Director, Madeleine Ekeblad, my first love for painting pure abstracts in oils has finally come to the fore.<br />\r\n<br />\r\n<b><u>LONDON</u></b><br />\r\n<b>Exhibitions</b><br />\r\n2006 (Open) The Lighthouse, Poole, Dorset<br />\r\n1998-2004 Held yearly Open Studio days<br />\r\n2001 Chelsea College of Art &amp; Design<br />\r\n2000 Candid Arts Trust Gallery (Group)<br />\r\n1997 Atrium Gallery (Group)<br />\r\n<b>Teaching</b><br />\r\n2005-2007 Art Tutor - Private clients<br />\r\n1996-1997 Art &amp; Crafts Tutor for Westminster College<br />\r\n<b>Commissions</b><br />\r\n2000 NADFAS Amend architectural drawings for book - &lsquo;Inside Churches&rsquo; (National Association for Decorative and Fine Art Societies)<br />\r\n1998-9 British Academy Drawings - of buildings and of interior architecture<br />\r\n1998 Private client Drawings - of interior architecture<br />\r\n1997 British Academy Drawings - of village buildings for book cover<br />\r\n1996 Private client painting<br />\r\n<br />\r\n<u><b>AUSTRALIA<br />\r\n</b></u><b>Commissions<br />\r\n</b>2007-8 Private client painting<br />\r\n<b>Exhibited<br />\r\n</b>2008 King of Cakes, St Lucia; La Plaz Caf&eacute; Bar, CBD (Brisbane)<br />\r\nIndooroopilly Library</p>\r\n</div>'),(89,1,'Eden Scott - July 2009','<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img height=\"630\" width=\"600\" align=\"top\" alt=\"\" src=\"/myfiles/einviteEdenScott.jpg\" /><br />\r\n<br />\r\nThe Body - images of the nude<br />\r\n<br />\r\nA celebration of vitality using line and colour. This exhibition is a unique exploration by an artist into the mystery and charm of the female nude. Some display an underlying homage to Goya, Renoir and Degas, whilst others reveal a distinctly personal expression. All of them are based around the sheer joy of drawing the figure.<br />\r\n<br />\r\nExhibition Opening<br />\r\nSunday 5th July 2009 11am<br />\r\n</span></i></span></b></p>'),(90,1,'Michelle Pike - Sept 2010',''),(91,1,'Ian Gunn','<p><img width=\"150\" height=\"159\" hspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/E PHOTO IAN GUNN.jpg\" />For the last three years of my art practice I have focused on a singular theme of 1960`s Pop imagery. Theses images not only include the products, graphics and designs of this electric period but also the artists that created it. I like LOUD, wether it is the sound or the colour.<br />\r\n<br />\r\nI work across several media including painting, ceramics and wall sculptures created inside shadow boxes. The boxes include as many of the original articles I can source from the period.<br />\r\n<br />\r\nIn conjunction with Pop my latest paintings tackle the Australian landscape using multi point perspective. This enables me and the viewer to take their eye for a journey through the multiple landscapes depicted in each painting. The colours are bright and layered, but to me the colours are not exaggerated. Australian light changes red rocks to deep blues and green paddocks to yellows and beyond. I am depicting colours that happen at different times of the day, it just happens to be in a single work.    I am interested in recording and exploring the rhythm of the landscape that I move through each day. You can visit Ian\'s website at <a target=\"_blank\" href=\"http://www.iangunn.net\">www.iangunn.net</a><br />\r\n<br />\r\nIan Gunn, July 2009</p>'),(92,1,'Barry Tate','<p><b>Selected Solo Exhibitions</b><br />\r\n2009 Melbourne Art Fair<br />\r\n2008   Sydney Art Fair<br />\r\n2007   Charles Nodrum Gallery, Melbourne<br />\r\n2006   The Woolangabba art Gallery, Brisbane<br />\r\n2005   The Woolangabba art Gallery, Brisbane<br />\r\n2004   Charles Nodrum Gallery, Melbourne<br />\r\n2001   Fox Galleries, Brisbane<br />\r\n2000   Fox Galleries, Brisbane<br />\r\n2000   Powerhouse, Brisbane<br />\r\n1999   Fox Galleries, Brisbane<br />\r\n1995   McWhirters Art Space, Brisbane<br />\r\n1994   Artefact Gallery, Melbourne<br />\r\n1992   Gallery Space Osaka, Japan<br />\r\n1991   McWhirters Art Space, Brisbane<br />\r\n1987   Warrnambool Art Gallery<br />\r\n<b><br />\r\nGroup Exhibitions</b><br />\r\n2009 Rowley Drysdale &amp; the Artists of Quixotica, The Gallery Eumundi<br />\r\n2007    Blake Prize<br />\r\n2005    Blake Prize<br />\r\n2004   &lsquo;Modern Australian Painting&rsquo; Charles Nodrum Gallery<br />\r\n2003    Morgan and Tate, Fox Galleries, Brisbane<br />\r\n2003    Blake Prize<br />\r\n2003    Noosa Regional Gallery<br />\r\n2001    Global arts Link, Ipswich<br />\r\n2000    Tamba Exhibition, Japan</p>'),(93,1,'de Shan','<p>&ldquo;I painted an entire series about my black Labrador Retriever, Hank, who was stolen in 1995. I was just beginning my graduate studies at the University of Oklahoma, where we had to select a style or theme around which to build an entire two-and-a-half years of work. This was such a difficult task, because, as you probably know, artists sometimes get blocked and change direction. It took me at least a month of floundering and searching, only to realize that I just had to look within and paint about how I felt over the loss of my darling dog. After I graduated, I still found myself painting Hank - for quite some time. These paintings have been hugely successful sellers (everybody loves a Lab!), but after a while, I ventured into abstract, only to eventually come back to the paintings of circus-inspired animals and wild-looking people.&quot;<br />\r\n<br />\r\n&ldquo;Some artists gain inspiration from nature, their surroundings, day-to-day life, sadness and sorrows, pain and depression, happiness and love. For me, it is life experiences, music, nature and the circus. I just love the circus! So... it\'s natural for me to want to express that kind of passion in the best way that I know how - visually, on a canvas. In every painting I create, there is a little piece of me and the way my mind works.&rdquo;<br />\r\n<br />\r\n&ldquo;For most artists, their work expresses what they are feeling - or seeing - or hearing. Consequently in each and every piece of art you possess, you also have a part of that artist with you. Therefore, in order for you to have full appreciation of your art acquisitions, I\'m sure you will agree it\'s important to take the time to meet your local artists, ask them questions about the piece you admire, and get to know the story behind it. As a result, when your friends make comments on your choice of art, you will be in a position to discuss it in depth.&rdquo;<br />\r\n<br />\r\nde Shan\'s most recent abstract paintings deal with exploring the nature of paint, asphalt and texture application on wood panels. They beg for further exploration beneath the layers: within the paint strokes lie text in hand-written journal entries of a stream-of-consciousness nature; scratch marks by various tools and sharp objects; or a glossy opaque colour in between transparent strokes.</p>'),(94,1,'Amos Duggan','<p>Society has a curious view on human modification. Tattoos and piercings are considered safe and standard. Biomedical modification instead seems frightening and amoral.The technology to harvest tissue and organ from cultured animal, to replace bone with metal, and even to create designer genes is real. Yet they remain tagged as foreign, as science fiction. We naively hide from these ideas and brand them as a fictional future.<br />\r\n<br />\r\nFuture Beings Now! considers the amalgamation of the modern human and animal, rethinking the interaction between society and modern science. It explores a real-time evolution of the human race, where memories, feelings, even instincts may be carried through implants and biomodification. Rather than burdening the future with fear, the series explores beauty, art, and general strangeness in a new palette of human shape and colour.  Are we prepared to celebrate our modern future, whatever form it take<br />\r\n<br />\r\nAmos Duggan is an Australian contemporary painter created in Queensland. Raised in Kenilworth, Amos completed a Diploma of Fine Arts at the Sunshine Coast Institute of TAFE, Noosaville. The human race is his inspiration. He uses vivid colours and strokes to explore future technologies and ideas and their impact on the mind, body and soul of man.  Amos is currently based in Melbourne as a resident artist at the Medium Arts Collective in East Brunswick. You can visit Amos\' website at <a target=\"_blank\" href=\"http://www.visualartist.info/amosduggan\">www.visualartist.info/amosduggan</a></p>'),(95,1,'Best of 2009 Stars @ The Gallery','<p style=\"text-align: center\"><img width=\"500\" height=\"509\" align=\"top\" alt=\"\" src=\"/myfiles/eBrochure 2009 300DPI.jpg\" /></p>\r\n<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC TT&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\">The Best of 2009, Stars @ The Gallery Eumundi<br />\r\n<br />\r\nShowcasing the best works by The Gallery Eumundi Artists from 2009. The perfect opportunity for a wonderful Christmas present.<br />\r\n<br />\r\nExhibition Dates<br />\r\nThursday 3rd December to Thursday 24th December 2009</span></i></span></b></p>'),(96,1,'2009',''),(97,1,'2008',''),(98,1,'2010',''),(99,1,'Rowley Drysdale','<p style=\"text-align: left; \"><b>Quixotica</b><br />\r\nThe word &lsquo;quixotic&rsquo; is one of the most interesting in the English language, and constituted an ideal name for arguably one of South East Queensland and Australia&rsquo;s most interesting art spaces.&nbsp;In fact trawling through the various dictionary definitions of the word takes you back to Don Quixote and his chivalrous adventures in Cervantes&lsquo; epic novel about a man, his beliefs, good and evil, and just about everything else in between.<br />\r\n<br />\r\nQuixotica art space is located near Cooroy on the Sunshine Coast and is the brainchild of artist Rowley Drysdale who likes all the definitions he has read, but has one particular favorite. &ldquo;The one that has stuck with me is taking on imposing odds with little regard to likely outcome. There are quite a few definitions concerning the illogical aspirations of an ideologue who doesn&rsquo;t seem to know how to give up, which incidentally I do, but apart from anything else I very much like the sound of the word&rdquo;, said Drysdale recently.<br />\r\n<br />\r\nNowadays Quixotica features studios, a showroom, a number of pottery kilns including a large wood fired anagama tube kiln, gardens and a large and very beautiful lake. It is located a few kilometers west of Cooroy in a small valley. Ten years ago it was nothing else but a cow paddock, and before that a bean farm. Drysdale says stumbling across the For Sale sign was not only a fluke but something of a gift from the gods. He recalls asking a farmer about the land. The farmer, who was mending a fence at the time, told him it was the best block on the Sunshine Coast, principally because it &ldquo;had good water, and you can do anything if you have water&rdquo;. Ironically Drysdale resolved to leave the dam untouched. &ldquo;I renew the license, but I just want it to be home to the wildlife&rdquo;, he said. The wildlife includes platypus, kingfishers and many species of fish, aquatic birds and the like.   Several buildings have been built along its edge, with an eye to low environmental impact, but what underscores the ethos of Quixotica is an almost old fashioned collective ideal. For instance the ever-growing gardens are the result of many hours of collective work, managed in the most by one of the Quixotica artists featuring in an upcoming exhibition, ceramic sculptor Julie Wall. Friends and other artists helped construct not only the studios and kilns but the other buildings, roads, paths and fences on the property.<br />\r\n<br />\r\nIn recent years a number of international artists have visited and worked at Quixotica. These include Korean, Malaysian and Canadian artists, who also will have work exhibited in the October show. A busy workshop program during 2008/09 also bought interstate artists to the venue, and in fact a wood fire workshop is planned for the weekend of October 10 and 11.<br />\r\n<br />\r\n<b>Rowley Drysdale Artist Statement</b></p>\r\n<p style=\"text-align: left; \"><i>Just Make</i><br />\r\n<br />\r\n<img width=\"400\" height=\"300\" alt=\"\" src=\"/myfiles/rowley_in_japan_2008.jpg\" /></p>'),(100,1,'Kim Se Wan',''),(101,1,'James Seet',''),(102,1,'Laura MacLean',''),(103,1,'Paul Davis',''),(104,1,'Julie Wall','<p><b>Artist Profile<img width=\"0\" height=\"0\" align=\"right\" alt=\"\" src=\"/myfiles/P1000311.JPG\" /></b><br />\r\nI have always been interested in three dimensional art, in particular the human form. I chose to study visual Arts and ceramics to explore the themes of physiology and physiognomy which has led to the development of my work using clay, slip coated fabrics and mixed media components.<br />\r\n<br />\r\n<b>Artist Statement</b><br />\r\nIn recent times my interest in the human form has been supplemented by investigating various historical interpretations, for example Greek mythology and eastern Buddha forms. I endeavor to bring my own personal interpretation of this rich cultural heritage to my work.  My interest in the muses, which has occupied a lot of my recent work, evolved during a conversation with artists at Quixotica. This concerned the role the muse plays in the arts and for the artist. I decided to research the muses and discovered that there were nine of them, all daughters of Zeus and Mnemosyne. Each had a different gift to bestow on the arts.</p>'),(105,1,'Kari','<p><b>Artist Profile</b><img width=\"100\" height=\"150\" vspace=\"4\" hspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/kari photo.jpg\" /><br />\r\nKari has explored ceramics since 2000, achieving an Advanced Diploma of Ceramics.   Her ceramic artwork has won awards and been exhibited in SE Queensland and Japan.  Her installations have appeared in dance concerts, at environmental festivals and in galleries.   Finding clay has been a coming home, a medium in which to blend many of her creative skills.  Working from home pottery with husband ceramicist Stephen Roberts, Kari explores a light-hearted feminine view of an ancient herstory of clay, re-examining and perhaps reclaiming cuneiform writing for women.<br />\r\n<br />\r\nShe is currently a professional Marriage Celebrant and a performing musician as well as ceramic artist.  She specializes in combining art-forms; dance, music and pottery.  This year she has exhibited at the Noosa Regional Gallery in a solo show and at Fusions Gallery, featuring works entitled Cunei Forms referencing ancient Phonecian cuneiform text.<br />\r\n<br />\r\nKari has worked in a variety of professions including lecturer at QUT, event director for Maroochy Waterwatch, performer and workshop co-ordinator and teacher, and has done some unusual things; been a concert-organ grinder at Victoria Markets, a wardrobe assistant at Victorian Opera and performs as a frog!</p>'),(106,1,'Stephen Roberts','<p><b>Artist Profile<img width=\"110\" height=\"150\" vspace=\"4\" hspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/Stephen photo 72DPI.jpg\" /></b><br />\r\nStephen Roberts has been a potter since 1990, beginning as a trainee at Flaxton Gardens Pottery.  He completed the Associate Diploma of Art in 1995.&nbsp;He has exhibited at Fusions, Soapbox, Space 43 and the Contemporary Art &amp; Design Gallery in Brisbane.  Recently his work was part of the Flamework, an exhibition of Queensland wood firing potters, in the new Fusions Gallery.<br />\r\n<br />\r\nIn recent years he has become a key member of the Quixotica wood firers collective, contributing to both exhibitions and firings.   This year he participated in Floating Land, Noosa, as an artist and has just presented an exhibition at Fusions Gallery, July 2009.<br />\r\n<br />\r\nTo produce functional stoneware pottery and small sculpture he uses kick wheel and hand building methods, and wood fired and gas kilns.</p>'),(107,1,'Wesley Denic','<p><b>Artist Statement</b><br />\r\nThis work is inspired by street culture and influenced by the underground art community. Paying homage particularly to the stencil artists.  In the past I have used cityscapes generally devoid of the human forms that inhabit it. With this series I am looking to inject some liveliness. The City doesn&rsquo;t always have to be about machines and complex structures. That stuff fades away compared to the people you meet and the chance encounters you have. The bodies are hand formed clays, mid fired to 1100&deg;C, with a combination of slips, glazes and under glazes.</p>'),(108,1,'Barry Tate','<p><b>Selected Solo Exhibitions</b><br />\r\n2009 Melbourne Art Fair<br />\r\n2008   Sydney Art Fair<br />\r\n2007   Charles Nodrum Gallery, Melbourne<br />\r\n2006   The Woolangabba art Gallery, Brisbane<br />\r\n2005   The Woolangabba art Gallery, Brisbane<br />\r\n2004   Charles Nodrum Gallery, Melbourne<br />\r\n2001   Fox Galleries, Brisbane<br />\r\n2000   Fox Galleries, Brisbane<br />\r\n2000   Powerhouse, Brisbane<br />\r\n1999   Fox Galleries, Brisbane<br />\r\n1995   McWhirters Art Space, Brisbane<br />\r\n1994   Artefact Gallery, Melbourne<br />\r\n1992   Gallery Space Osaka, Japan<br />\r\n1991   McWhirters Art Space, Brisbane<br />\r\n1987   Warrnambool Art Gallery<br />\r\n<b><br />\r\nGroup Exhibitions</b><br />\r\n2009 Rowley Drysdale &amp; the Artists of Quixotica, The Gallery Eumundi<br />\r\n2007    Blake Prize<br />\r\n2005    Blake Prize<br />\r\n2004   &lsquo;Modern Australian Painting&rsquo; Charles Nodrum Gallery<br />\r\n2003    Morgan and Tate, Fox Galleries, Brisbane<br />\r\n2003    Blake Prize<br />\r\n2003    Noosa Regional Gallery<br />\r\n2001    Global arts Link, Ipswich<br />\r\n2000    Tamba Exhibition, Japan</p>'),(109,1,'Mark O\'Neill',''),(110,1,'Liz Cels',''),(111,1,'Ellen Appleby',''),(112,1,'Tony Grimshaw',''),(113,1,'the edge - November 2009','<p style=\"text-align: center\"><b><span style=\"font-size: small\"><i><span style=\"color: #403b65; line-height: 115%; font-family: &quot;Bradley Hand ITC TT&quot;; mso-bidi-font-family: \'Microsoft Sans Serif\'\"><img width=\"444\" height=\"500\" align=\"top\" alt=\"\" src=\"/myfiles/edge7.jpg\" /><br />\r\n<br />\r\nthe edge @ The Gallery Eumundi<br />\r\n<br />\r\nContemporary, Modern, Urban, Pop challenge the senses of the voyeur...<br />\r\n<br />\r\nExperience the evocative works of de Shan, Gunn, Duggan, Reynolds &amp; Tate<br />\r\n<br />\r\nOpening Drinks<br />\r\nSaturday 7th November 2009 12 noon to 2pm<br />\r\n<br />\r\nExhibition Dates<br />\r\nWednesday 4th November to Sunday 29th November 2009</span></i></span></b></p>'),(114,1,'Amos Duggan','<p>Society has a curious view on human modification. Tattoos and piercings are considered safe and standard. Biomedical modification instead seems frightening and amoral.The technology to harvest tissue and organ from cultured animal, to replace bone with metal, and even to create designer genes is real. Yet they remain tagged as foreign, as science fiction. We naively hide from these ideas and brand them as a fictional future.<br />\r\n<br />\r\nFuture Beings Now! considers the amalgamation of the modern human and animal, rethinking the interaction between society and modern science. It explores a real-time evolution of the human race, where memories, feelings, even instincts may be carried through implants and biomodification. Rather than burdening the future with fear, the series explores beauty, art, and general strangeness in a new palette of human shape and colour.  Are we prepared to celebrate our modern future, whatever form it take<br />\r\n<br />\r\nAmos Duggan is an Australian contemporary painter created in Queensland. Raised in Kenilworth, Amos completed a Diploma of Fine Arts at the Sunshine Coast Institute of TAFE, Noosaville. The human race is his inspiration. He uses vivid colours and strokes to explore future technologies and ideas and their impact on the mind, body and soul of man.  Amos is currently based in Melbourne as a resident artist at the Medium Arts Collective in East Brunswick. You can visit Amos\' website at <a target=\"_blank\" href=\"http://www.visualartist.info/amosduggan\">www.visualartist.info/amosduggan</a></p>'),(115,1,'Ian Gunn','<p><img width=\"150\" height=\"159\" hspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/E PHOTO IAN GUNN.jpg\" />For the last three years of my art practice I have focused on a singular theme of 1960`s Pop imagery. Theses images not only include the products, graphics and designs of this electric period but also the artists that created it. I like LOUD, wether it is the sound or the colour.<br />\r\n<br />\r\nI work across several media including painting, ceramics and wall sculptures created inside shadow boxes. The boxes include as many of the original articles I can source from the period.<br />\r\n<br />\r\nIn conjunction with Pop my latest paintings tackle the Australian landscape using multi point perspective. This enables me and the viewer to take their eye for a journey through the multiple landscapes depicted in each painting. The colours are bright and layered, but to me the colours are not exaggerated. Australian light changes red rocks to deep blues and green paddocks to yellows and beyond. I am depicting colours that happen at different times of the day, it just happens to be in a single work.    I am interested in recording and exploring the rhythm of the landscape that I move through each day. You can visit Ian\'s website at <a target=\"_blank\" href=\"http://www.iangunn.net\">www.iangunn.net</a><br />\r\n<br />\r\nIan Gunn, July 2009</p>'),(116,1,'de Shan','<p>&ldquo;I painted an entire series about my black Labrador Retriever, Hank, who was stolen in 1995. I was just beginning my graduate studies at the University of Oklahoma, where we had to select a style or theme around which to build an entire two-and-a-half years of work. This was such a difficult task, because, as you probably know, artists sometimes get blocked and change direction. It took me at least a month of floundering and searching, only to realize that I just had to look within and paint about how I felt over the loss of my darling dog. After I graduated, I still found myself painting Hank - for quite some time. These paintings have been hugely successful sellers (everybody loves a Lab!), but after a while, I ventured into abstract, only to eventually come back to the paintings of circus-inspired animals and wild-looking people.&quot;<br />\r\n<br />\r\n&ldquo;Some artists gain inspiration from nature, their surroundings, day-to-day life, sadness and sorrows, pain and depression, happiness and love. For me, it is life experiences, music, nature and the circus. I just love the circus! So... it\'s natural for me to want to express that kind of passion in the best way that I know how - visually, on a canvas. In every painting I create, there is a little piece of me and the way my mind works.&rdquo;<br />\r\n<br />\r\n&ldquo;For most artists, their work expresses what they are feeling - or seeing - or hearing. Consequently in each and every piece of art you possess, you also have a part of that artist with you. Therefore, in order for you to have full appreciation of your art acquisitions, I\'m sure you will agree it\'s important to take the time to meet your local artists, ask them questions about the piece you admire, and get to know the story behind it. As a result, when your friends make comments on your choice of art, you will be in a position to discuss it in depth.&rdquo;<br />\r\n<br />\r\nde Shan\'s most recent abstract paintings deal with exploring the nature of paint, asphalt and texture application on wood panels. They beg for further exploration beneath the layers: within the paint strokes lie text in hand-written journal entries of a stream-of-consciousness nature; scratch marks by various tools and sharp objects; or a glossy opaque colour in between transparent strokes.</p>'),(117,1,'Barry Tate','<p><b>Selected Solo Exhibitions</b><br />\r\n2009 Melbourne Art Fair<br />\r\n2008   Sydney Art Fair<br />\r\n2007   Charles Nodrum Gallery, Melbourne<br />\r\n2006   The Woolangabba art Gallery, Brisbane<br />\r\n2005   The Woolangabba art Gallery, Brisbane<br />\r\n2004   Charles Nodrum Gallery, Melbourne<br />\r\n2001   Fox Galleries, Brisbane<br />\r\n2000   Fox Galleries, Brisbane<br />\r\n2000   Powerhouse, Brisbane<br />\r\n1999   Fox Galleries, Brisbane<br />\r\n1995   McWhirters Art Space, Brisbane<br />\r\n1994   Artefact Gallery, Melbourne<br />\r\n1992   Gallery Space Osaka, Japan<br />\r\n1991   McWhirters Art Space, Brisbane<br />\r\n1987   Warrnambool Art Gallery<br />\r\n<b><br />\r\nGroup Exhibitions</b><br />\r\n2009 Rowley Drysdale &amp; the Artists of Quixotica, The Gallery Eumundi<br />\r\n2007    Blake Prize<br />\r\n2005    Blake Prize<br />\r\n2004   &lsquo;Modern Australian Painting&rsquo; Charles Nodrum Gallery<br />\r\n2003    Morgan and Tate, Fox Galleries, Brisbane<br />\r\n2003    Blake Prize<br />\r\n2003    Noosa Regional Gallery<br />\r\n2001    Global arts Link, Ipswich<br />\r\n2000    Tamba Exhibition, Japan</p>'),(118,1,'Paul Reynolds','<p>Paul Reynolds life began in the United Kingdom. He now lives in the hinterland on Queensland&rsquo;s Sunshine Coast near Cooroy. In the early 70&rsquo;s he attended art school in Canberra and held a successful solo exhibition. After rebelling and dropping out of art school, he became a self-employed truck driver, a nurseryman and finally a sign writer.<br />\r\n<br />\r\nHe held his second solo exhibition in the 80&rsquo;s and continued to paint while also doing a little illustration work for &ldquo;Matilda&rdquo; magazine. After a period of lapse, Reynolds only resumed painting in 2006.<br />\r\n<br />\r\nReynolds\' work tends toward social and political commentary. &ldquo;It can be confronting and possibly offensive to some &ndash; but I hope it is never boring.&rdquo;&nbsp;After such an extended pause Reynolds was worried that he may have lost his spark &ldquo;Instead I am happier with my work than I have ever been, I feel it has matured and the anger and fire that drove my earlier works has not faded.&rdquo;<br />\r\n<br />\r\nReynolds&rsquo; inspiration comes from all over; it could be a sensational local news story, a hanging of a young girl in Iran or the &ldquo;untouchables&rdquo; in India. More often the inspiration is from real life encounters that Reynolds has experienced in his own life. &ldquo;I like my paintings to tell stories and ask questions. &quot;Reynolds&rsquo; techniques are well practiced and experimental using many different mediums.<br />\r\n<br />\r\n&ldquo;The difference between an adequate musician and a great musician is that a great musician is conversant with his instrument that it has become an extension of his creativity, rather than a problem to be mastered. And so it is with the artist.&quot;<br />\r\n<br />\r\n<i>Extracts taken from an interview with Artist&rsquo;s Palette, Issue No. 75 2009</i></p>'),(119,1,'Sculpture',''),(120,1,'Paintings & Assemblage',''),(121,1,'Sue McPherson','<p>Sue was a Ward of the State for a number of years, before being adopted into the lives of those she now calls family. Her biological mother was Aboriginal from the Wiradjuri tribal area of NSW and her biological father is Torres Strait Islander descent.<br />\r\n<br />\r\nAfter a fight with Cancer, Sue decided to leave employment as a teacher to pursue her love of art. Sue\'s work reflects her concern for the environment and those who live within it. Her style at times can be detailed and political.<br />\r\n<br />\r\n&quot;My love of music inspires and enhances each design I create.&quot;</p>'),(122,1,'Paul Reynolds','<p>Paul Reynolds life began in the United Kingdom. He now lives in the hinterland on Queensland&rsquo;s Sunshine Coast near Cooroy. In the early 70&rsquo;s he attended art school in Canberra and held a successful solo exhibition. After rebelling and dropping out of art school, he became a self-employed truck driver, a nurseryman and finally a sign writer.<br />\r\n<br />\r\nHe held his second solo exhibition in the 80&rsquo;s and continued to paint while also doing a little illustration work for &ldquo;Matilda&rdquo; magazine. After a period of lapse, Reynolds only resumed painting in 2006.<br />\r\n<br />\r\nReynolds\' work tends toward social and political commentary. &ldquo;It can be confronting and possibly offensive to some &ndash; but I hope it is never boring.&rdquo;&nbsp;After such an extended pause Reynolds was worried that he may have lost his spark &ldquo;Instead I am happier with my work than I have ever been, I feel it has matured and the anger and fire that drove my earlier works has not faded.&rdquo;<br />\r\n<br />\r\nReynolds&rsquo; inspiration comes from all over; it could be a sensational local news story, a hanging of a young girl in Iran or the &ldquo;untouchables&rdquo; in India. More often the inspiration is from real life encounters that Reynolds has experienced in his own life. &ldquo;I like my paintings to tell stories and ask questions. &quot;Reynolds&rsquo; techniques are well practiced and experimental using many different mediums.<br />\r\n<br />\r\n&ldquo;The difference between an adequate musician and a great musician is that a great musician is conversant with his instrument that it has become an extension of his creativity, rather than a problem to be mastered. And so it is with the artist.&quot;<br />\r\n<br />\r\n<i>Extracts taken from an interview with Artist&rsquo;s Palette, Issue No. 75 2009</i></p>'),(123,1,'Warren Palmer','<p><img width=\"131\" height=\"200\" vspace=\"6\" align=\"right\" alt=\"\" src=\"/myfiles/Warren.jpg\" />Born in Herberton in North Queensland in 1941, Warren Palmer liked to draw as a child and Mickey Mouse and Donald Duck were favourite subjects. He won the mapping section at the Atherton Show for four consecutive years before discovering oil paints. He went on to win the Open Oil Painting section at the age of 12 for a super-realism style painting of a boat, painted onto a piece of cardboard and copied from a photograph.<br />\r\n<br />\r\nPalmer says Jeffrey Smart was his first teacher. Aged eight, and living at Atherton, Warren was a member of the ABC Radio&rsquo;s Argonaut&rsquo;s Club. Every Wednesday at 5pm he would drop everything (usually he&rsquo;d be playing cricket or football) to listen to The Argonauts. He&rsquo;d send in his drawings and at the end of every program, the parting comment from the presenter, Phidias, who was none other than esteemed Australian artist, Jeffrey Smart, was always: &ldquo;Keep drawing Argonauts&rdquo;.<br />\r\n<br />\r\nHe first formally studied art as a subject in Year 9 and 10 while boarding at Churchie (Anglican Church Grammar School) in Brisbane. When he returned to North Queensland to complete his schooling, he attended art classes at Mareeba High.<br />\r\n<br />\r\nPalmer has spent the best part of his adult life teaching art &ndash; first as a school art teacher, then at teacher&rsquo;s college and university. These days he still teaches - one morning a week at the Arts Academy. He trained to be a schoolteacher at Kelvin Grove Teacher&rsquo;s Training College then got a two-year scholarship to study art teaching at the Central Technical College (CTC), now part of the College of Art at Griffith University. After graduating, he taught four periods of art a week at Bremer State High School, along with maths, English and social science before transferring back to CTC to teach. He lectured in drawing and ceramics at the Queensland University of Technology (QUT) from 1971 &ndash; 199<br />\r\n<br />\r\nPalmer sold his first painting to a doctor at Annerley for &pound;5 in 1964. It was a waterscape in &ldquo;expressionistic, surreal, strong colours&rdquo;. His first exhibition was a two-man show at a hotel in Warwick in the early 60s. The ringers were in town and opening night coincided with a ball so &ldquo;nobody saw it and I didn&rsquo;t sell anything&rdquo;.&nbsp;The artist has held solo exhibitions regularly since 1978, mainly in Brisbane, but also at Newcastle and Toowoomba. His most recent exhibition was in Brisbane in September 2009.<br />\r\n<br />\r\nAs an emerging artist, Palmer entered competitions during the early 1980s and won several awards over a short period, including the Gold Coast Ceramic Award in 1985 as well as the Redcliffe Bicentennial Award and the Warana Ceramic Prize. He is represented in a dozen galleries as well as The Gallery Eumundi, including the Queensland Art Gallery, the Toowoomba Regional Gallery, the Dr Irene Amos Gallery (part of the Toowoomba Regional Gallery) and the Newcastle Regional Gallery. Warren Palmer has now been exhibiting for over 3 decades. Palmer&rsquo;s work is represented in State and Regional Galleries in Queensland and NSW, the Brisbane City Hall collection, the QUT, Griffith University and UOSEQ collection. He has several works in the Queensland Art Gallery collection. You can visit Warren\'s website at <a target=\"_blank\" href=\"http://www.palmerangelo.com\">www.palmerangelo.com</a></p>'),(128,1,'Paintings',''),(129,1,'Hot Glass','');
/*!40000 ALTER TABLE `zen_categories_description` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_configuration`;
SET @saved_cs_client     = @@character_set_client;
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=544 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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','The Gallery Eumundi','The name of my store',1,1,'2008-06-04 18:23:22','2008-05-31 18:41:55',NULL,NULL),(2,'Store Owner','STORE_OWNER','Steven & Karen Beardsley','The name of my store owner',1,2,'2008-06-04 18:24:32','2008-05-31 18:41:55',NULL,NULL),(3,'Country','STORE_COUNTRY','13','The country my store is located in <br /><br /><strong>Note: Please remember to update the store zone.</strong>',1,6,'2008-06-04 18:24:57','2008-05-31 18:41:55','zen_get_country_name','zen_cfg_pull_down_country_list('),(4,'Zone','STORE_ZONE','185','The zone my store is located in',1,7,'2008-06-04 18:25:06','2008-05-31 18:41:55','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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(11,'Default Search Operator','ADVANCED_SEARCH_DEFAULT_OPERATOR','and','Default search operators',1,17,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'and\', \'or\'), '),(12,'Store Address and Phone','STORE_NAME_ADDRESS','The Gallery Eumundi\r\n1 Gridley Street\r\nEumundi\r\nQLD 4562\r\n07 5442 8365','This is the Store Name, Address and Phone used on printable documents and displayed online',1,18,'2008-08-03 19:46:33','2008-05-31 18:41:55',NULL,'zen_cfg_textarea('),(13,'Show Category Counts','SHOW_COUNTS','false','Count recursively how many products are in each category',1,19,'2008-06-10 01:06:33','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(20,'Admin Session Time Out in Seconds','SESSION_TIMEOUT_ADMIN','36000','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,'2008-06-10 03:12:17','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(23,'Store Status','STORE_STATUS','2','What is your Store Status<br />0= Normal Store<br />1= Showcase no prices<br />2= Showcase with prices',1,25,'2008-06-11 01:30:54','2008-05-31 18:41:55',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,'2003-11-08 20:24:47','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,'2003-11-08 20:24:47','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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(28,'HTML Editor','HTML_EDITOR_PREFERENCE','FCKEDITOR','Please select the HTML/Rich-Text editor you wish to use for composing Admin-related emails, newsletters, and product descriptions',1,110,'2008-07-03 18:02:14','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(30,'Show Category Counts - Admin','SHOW_COUNTS_ADMIN','true','Show Category Counts in Admin?',1,19,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(32,'First Name','ENTRY_FIRST_NAME_MIN_LENGTH','2','Minimum length of first name',2,1,NULL,'2008-05-31 18:41:55',NULL,NULL),(33,'Last Name','ENTRY_LAST_NAME_MIN_LENGTH','2','Minimum length of last name',2,2,NULL,'2008-05-31 18:41:55',NULL,NULL),(34,'Date of Birth','ENTRY_DOB_MIN_LENGTH','10','Minimum length of date of birth',2,3,NULL,'2008-05-31 18:41:55',NULL,NULL),(35,'E-Mail Address','ENTRY_EMAIL_ADDRESS_MIN_LENGTH','6','Minimum length of e-mail address',2,4,NULL,'2008-05-31 18:41:55',NULL,NULL),(36,'Street Address','ENTRY_STREET_ADDRESS_MIN_LENGTH','5','Minimum length of street address',2,5,NULL,'2008-05-31 18:41:55',NULL,NULL),(37,'Company','ENTRY_COMPANY_MIN_LENGTH','0','Minimum length of company name',2,6,NULL,'2008-05-31 18:41:55',NULL,NULL),(38,'Post Code','ENTRY_POSTCODE_MIN_LENGTH','4','Minimum length of post code',2,7,NULL,'2008-05-31 18:41:55',NULL,NULL),(39,'City','ENTRY_CITY_MIN_LENGTH','2','Minimum length of city',2,8,NULL,'2008-05-31 18:41:55',NULL,NULL),(40,'State','ENTRY_STATE_MIN_LENGTH','2','Minimum length of state',2,9,NULL,'2008-05-31 18:41:55',NULL,NULL),(41,'Telephone Number','ENTRY_TELEPHONE_MIN_LENGTH','3','Minimum length of telephone number',2,10,NULL,'2008-05-31 18:41:55',NULL,NULL),(42,'Password','ENTRY_PASSWORD_MIN_LENGTH','5','Minimum length of password',2,11,NULL,'2008-05-31 18:41:55',NULL,NULL),(43,'Credit Card Owner Name','CC_OWNER_MIN_LENGTH','3','Minimum length of credit card owner name',2,12,NULL,'2008-05-31 18:41:55',NULL,NULL),(44,'Credit Card Number','CC_NUMBER_MIN_LENGTH','10','Minimum length of credit card number',2,13,NULL,'2008-05-31 18:41:55',NULL,NULL),(45,'Credit Card CVV Number','CC_CVV_MIN_LENGTH','3','Minimum length of credit card CVV number',2,13,NULL,'2008-05-31 18:41:55',NULL,NULL),(46,'Product Review Text','REVIEW_TEXT_MIN_LENGTH','50','Minimum length of product review text',2,14,NULL,'2008-05-31 18:41:55',NULL,NULL),(47,'Best Sellers','MIN_DISPLAY_BESTSELLERS','1','Minimum number of best sellers to display',2,15,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(49,'Nick Name','ENTRY_NICK_MIN_LENGTH','3','Minimum length of Nick Name',2,1,NULL,'2008-05-31 18:41:55',NULL,NULL),(50,'Address Book Entries','MAX_ADDRESS_BOOK_ENTRIES','5','Maximum address book entries a customer is allowed to have',3,1,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(52,'Prev/Next Navigation Page Links','MAX_DISPLAY_PAGE_LINKS','5','Number of \'number\' links use for page-sets',3,3,NULL,'2008-05-31 18:41:55',NULL,NULL),(53,'Products on Special ','MAX_DISPLAY_SPECIAL_PRODUCTS','9','Number of products on special to display',3,4,NULL,'2008-05-31 18:41:55',NULL,NULL),(54,'New Products Module','MAX_DISPLAY_NEW_PRODUCTS','9','Number of new products to display in a category',3,5,NULL,'2008-05-31 18:41:55',NULL,NULL),(55,'Upcoming Products ','MAX_DISPLAY_UPCOMING_PRODUCTS','10','Number of \'upcoming\' products to display',3,6,NULL,'2008-05-31 18:41:55',NULL,NULL),(56,'Manufacturers List - Scroll Box Size/Style','MAX_MANUFACTURERS_LIST','22','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,'2008-06-10 00:16:40','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(67,'Categories To List Per Row','MAX_DISPLAY_CATEGORIES_PER_ROW','3','How many categories to list per row',3,13,NULL,'2008-05-31 18:41:55',NULL,NULL),(68,'New Products Listing- Number Per Page','MAX_DISPLAY_PRODUCTS_NEW','10','Number of new products listed per page',3,14,NULL,'2008-05-31 18:41:55',NULL,NULL),(69,'Best Sellers For Box','MAX_DISPLAY_BESTSELLERS','10','Number of best sellers to display in box',3,15,NULL,'2008-05-31 18:41:55',NULL,NULL),(70,'Also Purchased Products','MAX_DISPLAY_ALSO_PURCHASED','6','Number of products to display in the \'This Customer Also Purchased\' box',3,16,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(73,'Maximum Display of Customers on Customers Page','MAX_DISPLAY_SEARCH_RESULTS_CUSTOMER','20','',3,19,NULL,'2008-05-31 18:41:55',NULL,NULL),(74,'Maximum Display of Orders on Orders Page','MAX_DISPLAY_SEARCH_RESULTS_ORDERS','20','',3,20,NULL,'2008-05-31 18:41:55',NULL,NULL),(75,'Maximum Display of Products on Reports','MAX_DISPLAY_SEARCH_RESULTS_REPORTS','20','',3,21,NULL,'2008-05-31 18:41:55',NULL,NULL),(76,'Maximum Categories Products Display List','MAX_DISPLAY_RESULTS_CATEGORIES','15','Number of products to list per screen',3,22,'2008-08-06 23:03:57','2008-05-31 18:41:55',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,'2008-08-06 23:06:45','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(94,'Maximum Display EZ-Pages','MAX_DISPLAY_SEARCH_RESULTS_EZPAGE','20','Maximum Display EZ-Pages<br />20 = Default',3,71,NULL,'2008-05-31 18:41:55',NULL,NULL),(95,'Small Image Width','SMALL_IMAGE_WIDTH','100','The pixel width of small images',4,1,NULL,'2008-05-31 18:41:55',NULL,NULL),(96,'Small Image Height','SMALL_IMAGE_HEIGHT','','The pixel height of small images',4,2,'2008-06-17 01:36:47','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(99,'Subcategory Image Width','SUBCATEGORY_IMAGE_WIDTH','150','The pixel width of subcategory images',4,5,'2008-08-28 00:48:00','2008-05-31 18:41:55',NULL,NULL),(100,'Subcategory Image Height','SUBCATEGORY_IMAGE_HEIGHT','','The pixel height of subcategory images',4,6,'2008-06-17 01:37:15','2008-05-31 18:41:55',NULL,NULL),(101,'Calculate Image Size','CONFIG_CALCULATE_IMAGE_SIZE','true','Calculate the size of images?',4,7,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(104,'Image - Shopping Cart Width','IMAGE_SHOPPING_CART_WIDTH','50','Default = 50',4,10,NULL,'2008-05-31 18:41:55',NULL,NULL),(105,'Image - Shopping Cart Height','IMAGE_SHOPPING_CART_HEIGHT','40','Default = 40',4,11,NULL,'2008-05-31 18:41:55',NULL,NULL),(106,'Category Icon Image Width - Product Info Pages','CATEGORY_ICON_IMAGE_WIDTH','120','The pixel width of Category Icon heading images for Product Info Pages',4,13,'2008-07-03 20:13:52','2008-05-31 18:41:55',NULL,NULL),(107,'Category Icon Image Height - Product Info Pages','CATEGORY_ICON_IMAGE_HEIGHT','','The pixel height of Category Icon heading images for Product Info Pages',4,14,'2008-07-03 20:14:17','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(110,'Product Info - Image Width','MEDIUM_IMAGE_WIDTH','275','The pixel width of Product Info images',4,20,'2008-06-10 00:43:08','2008-05-31 18:41:55',NULL,NULL),(111,'Product Info - Image Height','MEDIUM_IMAGE_HEIGHT','450','The pixel height of Product Info images',4,21,'2008-06-10 00:43:26','2008-05-31 18:41:55',NULL,NULL),(112,'Product Info - Image Medium Suffix','IMAGE_SUFFIX_MEDIUM','_MED','Product Info Medium Image Suffix<br />Default = _MED',4,22,NULL,'2008-05-31 18:41:55',NULL,NULL),(113,'Product Info - Image Large Suffix','IMAGE_SUFFIX_LARGE','_LRG','Product Info Large Image Suffix<br />Default = _LRG',4,23,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(115,'Image - Product Listing Width','IMAGE_PRODUCT_LISTING_WIDTH','120','Default = 100',4,40,'2008-07-03 21:20:24','2008-05-31 18:41:55',NULL,NULL),(116,'Image - Product Listing Height','IMAGE_PRODUCT_LISTING_HEIGHT','180','Default = 80',4,41,'2008-07-03 22:06:25','2008-05-31 18:41:55',NULL,NULL),(117,'Image - Product New Listing Width','IMAGE_PRODUCT_NEW_LISTING_WIDTH','100','Default = 100',4,42,NULL,'2008-05-31 18:41:55',NULL,NULL),(118,'Image - Product New Listing Height','IMAGE_PRODUCT_NEW_LISTING_HEIGHT','80','Default = 80',4,43,NULL,'2008-05-31 18:41:55',NULL,NULL),(119,'Image - New Products Width','IMAGE_PRODUCT_NEW_WIDTH','100','Default = 100',4,44,NULL,'2008-05-31 18:41:55',NULL,NULL),(120,'Image - New Products Height','IMAGE_PRODUCT_NEW_HEIGHT','80','Default = 80',4,45,NULL,'2008-05-31 18:41:55',NULL,NULL),(121,'Image - Featured Products Width','IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH','200','Default = 100',4,46,'2008-06-17 03:38:53','2008-05-31 18:41:55',NULL,NULL),(122,'Image - Featured Products Height','IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT','','Default = 80',4,47,'2008-06-17 03:38:40','2008-05-31 18:41:55',NULL,NULL),(123,'Image - Product All Listing Width','IMAGE_PRODUCT_ALL_LISTING_WIDTH','100','Default = 100',4,48,NULL,'2008-05-31 18:41:55',NULL,NULL),(124,'Image - Product All Listing Height','IMAGE_PRODUCT_ALL_LISTING_HEIGHT','80','Default = 80',4,49,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(128,'Email Salutation','ACCOUNT_GENDER','false','Display salutation choice during account creation and with account information',5,1,'2008-07-03 18:17:37','2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(129,'Date of Birth','ACCOUNT_DOB','true','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,NULL,'2008-05-31 18:41:55',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,'2008-07-03 18:16:52','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(133,'State - Always display as pulldown?','ACCOUNT_STATE_DRAW_INITIAL_DROPDOWN','false','When state field is displayed, should it always be a pulldown menu?',5,5,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(134,'Create Account Default Country ID','SHOW_CREATE_ACCOUNT_DEFAULT_COUNTRY','13','Set Create Account Default Country ID to:<br />Default is 223',5,6,'2008-07-03 18:17:50','2008-05-31 18:41:55','zen_get_country_name','zen_cfg_pull_down_country_list_none('),(135,'Fax Number','ACCOUNT_FAX_NUMBER','false','Display fax number field during account creation and with account information',5,10,'2008-07-03 18:17:59','2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(136,'Show Newsletter Checkbox','ACCOUNT_NEWSLETTER_STATUS','2','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,'2008-07-03 18:18:13','2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(137,'Customer Default Email Preference','ACCOUNT_EMAIL_PREFERENCE','1','Set the Default Customer Default Email Preference<br />0= Text<br />1= HTML<br />',5,46,'2008-07-03 18:18:21','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,''),(142,'Customer Authorization: Hide Header','CUSTOMERS_AUTHORIZATION_HEADER_OFF','false','Customer Authorization: Hide Header <br />(true=hide false=show)',5,67,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(148,'Installed Modules','MODULE_PAYMENT_INSTALLED','cc.php;freecharger.php;moneyorder.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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(150,'Installed Modules','MODULE_SHIPPING_INSTALLED','flat.php;freeshipper.php;item.php;storepickup.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,NULL,'2008-05-31 18:41:55',NULL,NULL),(151,'Enable Credit Card Module','MODULE_PAYMENT_CC_STATUS','True','Do you want to accept credit card payments?',6,0,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(152,'Split Credit Card E-Mail Address','MODULE_PAYMENT_CC_EMAIL','mark@newmediastudio.com.au','If an e-mail address is entered, the middle digits of the credit card number will be sent to the e-mail address (the outside digits are stored in the database with the middle digits censored)',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(153,'Collect & store the CVV number','MODULE_PAYMENT_CC_COLLECT_CVV','False','Do you want to collect the CVV number. Note: If you do the CVV number will be stored in the database in an encoded format.',6,0,NULL,'2004-01-11 22:55:51',NULL,'zen_cfg_select_option(array(\'True\', \'False\'),'),(154,'Store the Credit Card Number','MODULE_PAYMENT_CC_STORE_NUMBER','False','Do you want to store the Credit Card Number. Note: The Credit Card Number will be stored unenecrypted, and as such may represent a security problem',6,0,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'True\', \'False\'),'),(155,'Sort order of display.','MODULE_PAYMENT_CC_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(156,'Payment Zone','MODULE_PAYMENT_CC_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,2,NULL,'2008-05-31 18:41:55','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(157,'Set Order Status','MODULE_PAYMENT_CC_ORDER_STATUS_ID','0','Set the status of orders made with this payment module to this value',6,0,NULL,'2008-05-31 18:41:55','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(158,'Enable Free Shipping','MODULE_SHIPPING_FREESHIPPER_STATUS','True','Do you want to offer Free shipping?',6,0,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(159,'Free Shipping Cost','MODULE_SHIPPING_FREESHIPPER_COST','0.00','What is the Shipping cost?',6,6,NULL,'2008-05-31 18:41:55',NULL,NULL),(160,'Handling Fee','MODULE_SHIPPING_FREESHIPPER_HANDLING','0','Handling fee for this shipping method.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(161,'Tax Class','MODULE_SHIPPING_FREESHIPPER_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2008-05-31 18:41:55','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(162,'Shipping Zone','MODULE_SHIPPING_FREESHIPPER_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2008-05-31 18:41:55','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(163,'Sort Order','MODULE_SHIPPING_FREESHIPPER_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(164,'Enable Store Pickup Shipping','MODULE_SHIPPING_STOREPICKUP_STATUS','True','Do you want to offer In Store rate shipping?',6,0,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(165,'Shipping Cost','MODULE_SHIPPING_STOREPICKUP_COST','0.00','The shipping cost for all orders using this shipping method.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(166,'Tax Class','MODULE_SHIPPING_STOREPICKUP_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2008-05-31 18:41:55','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(167,'Tax Basis','MODULE_SHIPPING_STOREPICKUP_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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\'), '),(168,'Shipping Zone','MODULE_SHIPPING_STOREPICKUP_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2008-05-31 18:41:55','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(169,'Sort Order','MODULE_SHIPPING_STOREPICKUP_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(170,'Enable Item Shipping','MODULE_SHIPPING_ITEM_STATUS','True','Do you want to offer per item rate shipping?',6,0,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(171,'Shipping Cost','MODULE_SHIPPING_ITEM_COST','2.50','The shipping cost will be multiplied by the number of items in an order that uses this shipping method.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(172,'Handling Fee','MODULE_SHIPPING_ITEM_HANDLING','0','Handling fee for this shipping method.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(173,'Tax Class','MODULE_SHIPPING_ITEM_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2008-05-31 18:41:55','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(174,'Tax Basis','MODULE_SHIPPING_ITEM_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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(175,'Shipping Zone','MODULE_SHIPPING_ITEM_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2008-05-31 18:41:55','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(176,'Sort Order','MODULE_SHIPPING_ITEM_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(177,'Enable Free Charge Module','MODULE_PAYMENT_FREECHARGER_STATUS','True','Do you want to accept Free Charge payments?',6,1,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(178,'Sort order of display.','MODULE_PAYMENT_FREECHARGER_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(179,'Payment Zone','MODULE_PAYMENT_FREECHARGER_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,2,NULL,'2008-05-31 18:41:55','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(180,'Set Order Status','MODULE_PAYMENT_FREECHARGER_ORDER_STATUS_ID','0','Set the status of orders made with this payment module to this value',6,0,NULL,'2008-05-31 18:41:55','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(181,'Enable Check/Money Order Module','MODULE_PAYMENT_MONEYORDER_STATUS','True','Do you want to accept Check/Money Order payments?',6,1,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(182,'Make Payable to:','MODULE_PAYMENT_MONEYORDER_PAYTO','the Store Owner/Website Name','Who should payments be made payable to?',6,1,NULL,'2008-05-31 18:41:55',NULL,NULL),(183,'Sort order of display.','MODULE_PAYMENT_MONEYORDER_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(184,'Payment Zone','MODULE_PAYMENT_MONEYORDER_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,2,NULL,'2008-05-31 18:41:55','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(185,'Set Order Status','MODULE_PAYMENT_MONEYORDER_ORDER_STATUS_ID','0','Set the status of orders made with this payment module to this value',6,0,NULL,'2008-05-31 18:41:55','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(186,'Include Tax','MODULE_ORDER_TOTAL_GROUP_PRICING_INC_TAX','false','Include Tax value in amount before discount calculation?',6,6,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(187,'This module is installed','MODULE_ORDER_TOTAL_GROUP_PRICING_STATUS','true','',6,1,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(189,'Include Shipping','MODULE_ORDER_TOTAL_GROUP_PRICING_INC_SHIPPING','false','Include Shipping value in amount before discount calculation?',6,5,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(192,'Enable Flat Shipping','MODULE_SHIPPING_FLAT_STATUS','True','Do you want to offer flat rate shipping?',6,0,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(193,'Shipping Cost','MODULE_SHIPPING_FLAT_COST','5.00','The shipping cost for all orders using this shipping method.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(194,'Tax Class','MODULE_SHIPPING_FLAT_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2008-05-31 18:41:55','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(195,'Tax Basis','MODULE_SHIPPING_FLAT_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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(196,'Shipping Zone','MODULE_SHIPPING_FLAT_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2008-05-31 18:41:55','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(197,'Sort Order','MODULE_SHIPPING_FLAT_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(198,'Default Currency','DEFAULT_CURRENCY','USD','Default Currency',6,0,NULL,'2008-05-31 18:41:55',NULL,NULL),(199,'Default Language','DEFAULT_LANGUAGE','en','Default Language',6,0,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(202,'Country of Origin','SHIPPING_ORIGIN_COUNTRY','223','Select the country of origin to be used in shipping quotes.',7,1,NULL,'2008-05-31 18:41:55','zen_get_country_name','zen_cfg_pull_down_country_list('),(203,'Postal Code','SHIPPING_ORIGIN_ZIP','NONE','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,NULL,'2008-05-31 18:41:55',NULL,NULL),(204,'Enter the Maximum Package Weight you will ship','SHIPPING_MAX_WEIGHT','50','Carriers have a max weight limit for a single package. This is a common one for all.',7,3,NULL,'2008-05-31 18:41:55',NULL,NULL),(205,'Package Tare Small to Medium - added percentage:weight','SHIPPING_BOX_WEIGHT','0:3','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,NULL,'2008-05-31 18:41:55',NULL,NULL),(206,'Larger packages - added packaging percentage:weight','SHIPPING_BOX_PADDING','10: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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(208,'Shipping Estimator Display Settings for Shopping Cart','SHOW_SHIPPING_ESTIMATOR_BUTTON','1','<br />0= Off<br />1= Display as Button on Shopping Cart<br />2= Display as Listing on Shopping Cart Page',7,20,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',NULL,NULL),(213,'Display Product Manufacturer Name','PRODUCT_LIST_MANUFACTURER','0','Do you want to display the Product Manufacturer Name?',8,2,NULL,'2008-05-31 18:41:55',NULL,NULL),(214,'Display Product Model','PRODUCT_LIST_MODEL','0','Do you want to display the Product Model?',8,3,NULL,'2008-05-31 18:41:55',NULL,NULL),(215,'Display Product Name','PRODUCT_LIST_NAME','2','Do you want to display the Product Name?',8,4,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(217,'Display Product Quantity','PRODUCT_LIST_QUANTITY','0','Do you want to display the Product Quantity?',8,6,NULL,'2008-05-31 18:41:55',NULL,NULL),(218,'Display Product Weight','PRODUCT_LIST_WEIGHT','0','Do you want to display the Product Weight?',8,7,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(220,'Display Category/Manufacturer Filter (0=off; 1=on)','PRODUCT_LIST_FILTER','0','Do you want to display the Category/Manufacturer Filter?',8,9,'2008-06-10 00:41:41','2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(221,'Prev/Next Split Page Navigation (1-top, 2-bottom, 3-both)','PREV_NEXT_BAR_LOCATION','2','Sets the location of the Prev/Next Split Page Navigation',8,10,'2008-06-10 00:41:49','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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','1','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,NULL,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(225,'Display Product Description','PRODUCT_LIST_DESCRIPTION','0','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,'2008-07-06 20:44:12','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-07-06 20:44:45','2008-05-31 18:41:55',NULL,'zen_cfg_textarea_small('),(228,'Include Product Listing Alpha Sorter Dropdown','PRODUCT_LIST_ALPHA_SORTER','false','Do you want to include an Alpha Filter dropdown on the Product Listing?',8,50,'2008-06-10 00:42:06','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(230,'Include Product Listing Top Categories Image','PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP','false','Do you want to include the Top Categories Image on the Product Listing?',8,53,'2008-06-10 00:42:24','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-06-10 00:44:54','2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(233,'Subtract stock','STOCK_LIMITED','false','Subtract product in stock by product orders',9,2,'2008-06-10 00:45:01','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(236,'Stock Re-order level','STOCK_REORDER_LEVEL','0','Define when stock needs to be re-ordered',9,5,'2008-06-10 00:45:13','2008-05-31 18:41:55',NULL,NULL),(237,'Products status in Catalog when out of stock should be set to','SHOW_PRODUCTS_SOLD_OUT','1','Show Products when out of stock<br /><br />0= set product status to OFF<br />1= leave product status ON',9,10,'2008-06-10 00:45:22','2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(238,'Show Sold Out Image in place of Add to Cart','SHOW_PRODUCTS_SOLD_OUT_IMAGE','0','Show Sold Out Image instead of Add to Cart Button<br /><br />0= off<br />1= on',9,11,'2008-06-10 00:45:30','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(248,'Log Destination','STORE_PAGE_PARSE_TIME_LOG','/home/newmedia/public_html/thegalleryeumundi/cache/page_parse_time.log','Directory and filename of the page parse time log',10,2,NULL,'2008-05-31 18:41:55',NULL,NULL),(249,'Log Date Format','STORE_PARSE_DATE_TIME_FORMAT','%d/%m/%Y %H:%M:%S','The date format',10,3,NULL,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'PHP\', \'sendmail\', \'sendmail-f\', \'smtp\', \'smtpauth\', \'Qmail\'),'),(253,'SMTP Email Account Mailbox','EMAIL_SMTPAUTH_MAILBOX','YourEmailAccountNameHere','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,NULL,'2008-05-31 18:41:55',NULL,NULL),(254,'SMTP Email Account Password','EMAIL_SMTPAUTH_PASSWORD','YourPasswordHere','Enter the password for your SMTP mailbox. <br />Only required if using SMTP Authentication for email.',12,101,NULL,'2008-05-31 18:41:55','zen_cfg_password_display',NULL),(255,'SMTP Email Mail Host','EMAIL_SMTPAUTH_MAIL_SERVER','mail.EnterYourDomain.com','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,NULL,'2008-05-31 18:41:55',NULL,NULL),(256,'SMTP Email Mail Server Port','EMAIL_SMTPAUTH_MAIL_SERVER_PORT','25','Enter the IP port number that your SMTP mailserver operates on.<br />Only required if using SMTP Authentication for email.',12,101,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'LF\', \'CRLF\'),'),(259,'Use MIME HTML When Sending Emails','EMAIL_USE_HTML','true','Send e-mails in HTML format',12,3,'2008-07-15 20:10:59','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(261,'Send E-Mails','SEND_EMAILS','true','Send out e-mails',12,5,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(264,'Email Address (Displayed to Contact you)','STORE_OWNER_EMAIL_ADDRESS','art@thegalleryeumundi.com.au','Email address of Store Owner.  Used as \"display only\" when informing customers of how to contact you.',12,10,'2008-07-15 20:10:34','2008-05-31 18:41:55',NULL,NULL),(265,'Email Address (sent FROM)','EMAIL_FROM','art@thegalleryeumundi.com.au','Address from which email messages will be \"sent\" by default. Can be over-ridden at compose-time in admin modules.',12,11,'2008-07-15 20:10:45','2008-05-31 18:41:55',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','mark@newmediastudio.com.au','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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(270,'Send Copy of Create Account Emails To','SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO','mark@newmediastudio.com.au','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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(272,'Send Copy of Tell a Friend Emails To','SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO','mark@newmediastudio.com.au','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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(274,'Send Copy of Customer GV Send Emails To','SEND_EXTRA_GV_CUSTOMER_EMAILS_TO','mark@newmediastudio.com.au','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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(276,'Send Copy of Customer Admin GV Mail Emails To','SEND_EXTRA_GV_ADMIN_EMAILS_TO','mark@newmediastudio.com.au','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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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','mark@newmediastudio.com.au','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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(280,'Send Copy of Admin Orders Status Emails To','SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO','mark@newmediastudio.com.au','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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(282,'Send Notice of Pending Reviews Emails To','SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO','mark@newmediastudio.com.au','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,NULL,'2008-05-31 18:41:55',NULL,NULL),(283,'Set \"Contact Us\" Email Dropdown List','CONTACT_US_LIST','art@thegalleryeumundi.com.au <art@thegalleryeumundi.com.au>, steve@thegalleryeumundi.com.au <steve@thegalleryeumundi.com.au>, karen@thegalleryeumundi.com.au <karen@thegalleryeumundi.com.au>','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,'2008-08-06 02:41:22','2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(287,'Send Low Stock Emails To','SEND_EXTRA_LOW_STOCK_EMAILS_TO','mark@newmediastudio.com.au','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,NULL,'2008-05-31 18:41:55',NULL,NULL),(288,'Display \"Newsletter Unsubscribe\" Link?','SHOW_NEWSLETTER_UNSUBSCRIBE_LINK','true','Show \"Newsletter Unsubscribe\" link in the \"Information\" side-box?',12,70,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(290,'Enable Downloads','DOWNLOAD_ENABLED','true','Enable the products download functions.',13,1,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',NULL,NULL),(298,'Enable Price Factor','ATTRIBUTES_ENABLED_PRICE_FACTOR','true','Enable the Attributes Price Factor.',13,25,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(299,'Enable Qty Price Discount','ATTRIBUTES_ENABLED_QTY_PRICES','true','Enable the Attributes Quantity Price Discounts.',13,26,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(300,'Enable Attribute Images','ATTRIBUTES_ENABLED_IMAGES','true','Enable the Attributes Images.',13,28,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(301,'Enable Text Pricing by word or letter','ATTRIBUTES_ENABLED_TEXT_PRICES','true','Enable the Attributes Text Pricing by word or letter.',13,35,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(304,'Enable GZip Compression','GZIP_LEVEL','0','0= off 1= on',14,1,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(305,'Session Directory','SESSION_WRITE_DIRECTORY','/home/newmedia/public_html/thegalleryeumundi/cache','If sessions are file based, store them in this directory.',15,1,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,NULL),(320,'Credit Card Enable Status - VISA','CC_ENABLED_VISA','1','Accept VISA 0= off 1= on',17,1,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(322,'Credit Card Enable Status - AmericanExpress','CC_ENABLED_AMEX','0','Accept AmericanExpress 0= off 1= on',17,3,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(367,'Product option type Select','PRODUCTS_OPTIONS_TYPE_SELECT','0','The number representing the Select type of product option.',0,NULL,'2008-05-31 18:41:55','2008-05-31 18:41:55',NULL,NULL),(368,'Text product option type','PRODUCTS_OPTIONS_TYPE_TEXT','1','Numeric value of the text product option type',6,NULL,'2008-05-31 18:41:55','2008-05-31 18:41:55',NULL,NULL),(369,'Radio button product option type','PRODUCTS_OPTIONS_TYPE_RADIO','2','Numeric value of the radio button product option type',6,NULL,'2008-05-31 18:41:55','2008-05-31 18:41:55',NULL,NULL),(370,'Check box product option type','PRODUCTS_OPTIONS_TYPE_CHECKBOX','3','Numeric value of the check box product option type',6,NULL,'2008-05-31 18:41:55','2008-05-31 18:41:55',NULL,NULL),(371,'File product option type','PRODUCTS_OPTIONS_TYPE_FILE','4','Numeric value of the file product option type',6,NULL,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',NULL,NULL),(373,'Upload prefix','UPLOAD_PREFIX','upload_','Prefix used to differentiate between upload options and other options',0,NULL,'2008-05-31 18:41:55','2008-05-31 18:41:55',NULL,NULL),(374,'Text prefix','TEXT_PREFIX','txt_','Prefix used to differentiate between text option values and other option values',0,NULL,'2008-05-31 18:41:55','2008-05-31 18:41:55',NULL,NULL),(375,'Read Only option type','PRODUCTS_OPTIONS_TYPE_READONLY','5','Numeric value of the file product option type',6,NULL,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55','',''),(395,'Previous Next - Image Height?','PREVIOUS_NEXT_IMAGE_HEIGHT','40','Previous/Next Image Height?',18,23,NULL,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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','60px','Width of the Left Column Boxes<br />px may be included<br />Default = 150px',19,1,'2008-06-09 23:48:51','2003-11-21 22:16:36',NULL,NULL),(399,'Column Width - Right Boxes','BOX_WIDTH_RIGHT','210px','Width of the Right Column Boxes<br />px may be included<br />Default = 150px',19,2,'2008-06-10 00:40:10','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','0','Enable the Breadcrumb Trail Links?<br />0= OFF<br />1= ON<br />2= Off for Home Page Only',19,4,'2008-06-10 22:03:16','2008-05-31 18:41:55',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','false','Show Specials Link in the Categories Box',19,8,'2008-06-10 00:39:45','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,'2008-06-10 00:39: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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(408,'Categories Box - Show Featured Products Link','SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS','false','Show Featured Products Link in the Categories Box',19,11,'2008-06-10 00:40:49','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,'2008-06-11 01:37:34','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,'2008-06-09 23:48:29','2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(411,'Column Right Status - Global','COLUMN_RIGHT_STATUS','1','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,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(412,'Column Width - Left','COLUMN_WIDTH_LEFT','80px','Width of the Left Column<br />px may be included<br />Default = 150px',19,20,'2008-06-09 23:48:41','2003-11-21 22:16:36',NULL,NULL),(413,'Column Width - Right','COLUMN_WIDTH_RIGHT','223px','Width of the Right Column<br />px may be included<br />Default = 150px',19,21,'2008-06-09 23:46:48','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,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(415,'Categories Separator between the Category Name and Count','CATEGORIES_SEPARATOR','','What separator do you want between the Category name and the count?<br />Default = -&amp;gt;',19,25,'2008-06-10 23:19:42','2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(416,'Categories Separator between the Category Name and Sub Categories','CATEGORIES_SEPARATOR_SUBS','&nbsp;&nbsp;&nbsp;','What separator do you want between the Category name and Sub Category Name?<br />Default = |_&amp;nbsp;',19,26,'2008-06-10 23:18:53','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,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(422,'Shopping Cart - Show Totals','SHOW_TOTALS_IN_CART','1','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,NULL,'2008-05-31 18:41:55',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,'2008-06-10 01:01:13','2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(425,'Main Page - Opens with Category','CATEGORIES_START_MAIN','0','0= Top Level Categories<br />Or enter the Category ID#<br />Note: Sub Categories can also be used Example: 3_10',19,46,NULL,'2008-05-31 18:41:55','',''),(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,'2008-08-28 06:13:26','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55','',''),(430,'Banner Display Groups - Footer Position 1','SHOW_BANNERS_GROUP_SET4','','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,NULL,'2008-05-31 18:41:55','',''),(431,'Banner Display Groups - Footer Position 2','SHOW_BANNERS_GROUP_SET5','','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,NULL,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55','',''),(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,'2008-06-10 00:39:25','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(441,'Categories-Tabs Menu ON/OFF','CATEGORIES_TABS_STATUS','1','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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(443,'Skip 1-prod Categories','SKIP_SINGLE_PRODUCT_CATEGORIES','False','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,'2008-06-10 21:26:31','2008-05-31 18:41:55',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,'2008-06-18 02:24:00','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-06-10 01:02:12','2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(502,'Show Featured Products on Main Page','SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS','0','Show Featured Products on Main Page<br />0= off or set the sort order',24,66,'2008-06-25 23:32:27','2008-05-31 18:41:55',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,'2008-06-10 01:02:30','2008-05-31 18:41:55',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,'2008-06-10 01:02:38','2008-05-31 18:41:55',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,'2008-06-10 01:04:57','2008-05-31 18:41:55',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,'2008-06-25 23:32:16','2008-05-31 18:41:55',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,'2008-06-10 01:04:34','2008-05-31 18:41:55',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,'2008-06-10 01:04:23','2008-05-31 18:41:55',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,'2008-06-25 23:36:00','2008-05-31 18:41:55',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','2','Show Featured Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,76,NULL,'2008-05-31 18:41:55',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','3','Show Special Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,77,NULL,'2008-05-31 18:41:55',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','4','Show Upcoming Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,78,NULL,'2008-05-31 18:41:55',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,'2008-06-10 01:04:02','2008-05-31 18:41:55',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,'2008-06-10 01:03:04','2008-05-31 18:41:55',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','0','Show Special Products below Product Listing<br />0= off or set the sort order',24,87,'2008-06-10 01:03:18','2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(516,'Show Upcoming Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_UPCOMING','0','Show Upcoming Products below Product Listing<br />0= off or set the sort order',24,88,'2008-06-10 01:03:41','2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(535,'EZ-Pages Display Status - Sidebox','EZPAGES_STATUS_SIDEBOX','0','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,'2008-06-10 21:16:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_textarea_small(');
/*!40000 ALTER TABLE `zen_configuration` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_configuration_group`;
SET @saved_cs_client     = @@character_set_client;
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=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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);
/*!40000 ALTER TABLE `zen_configuration_group` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_counter`;
SET @saved_cs_client     = @@character_set_client;
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;
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 ('20080531',206976);
/*!40000 ALTER TABLE `zen_counter` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_counter_history`;
SET @saved_cs_client     = @@character_set_client;
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;
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 ('20080531',3,3),('20080602',3,3),('20080604',20,3),('20080605',4,4),('20080606',5,5),('20080607',1,1),('20080609',16,3),('20080610',146,9),('20080611',100,17),('20080612',39,7),('20080613',4,2),('20080615',1,1),('20080616',7,7),('20080617',154,8),('20080618',11,2),('20080619',6,2),('20080620',4,4),('20080622',4,4),('20080623',26,10),('20080624',30,20),('20080625',49,6),('20080626',13,4),('20080627',6,6),('20080628',18,4),('20080629',2,2),('20080630',8,8),('20080701',11,4),('20080702',29,7),('20080703',83,10),('20080704',14,8),('20080705',4,4),('20080706',68,10),('20080707',202,39),('20080708',35,13),('20080709',81,19),('20080710',160,32),('20080711',69,18),('20080712',75,11),('20080713',214,40),('20080714',93,27),('20080715',155,29),('20080716',170,22),('20080717',214,40),('20080718',118,23),('20080719',79,20),('20080720',32,12),('20080721',107,67),('20080722',69,19),('20080723',24,17),('20080724',86,34),('20080725',81,31),('20080726',88,33),('20080727',140,11),('20080728',50,25),('20080729',79,31),('20080730',108,20),('20080731',72,36),('20080801',81,27),('20080802',213,121),('20080803',73,19),('20080804',44,18),('20080805',89,28),('20080806',235,36),('20080807',182,30),('20080808',100,39),('20080809',203,41),('20080810',81,26),('20080811',145,72),('20080812',173,39),('20080813',135,100),('20080814',376,287),('20080815',235,71),('20080816',251,70),('20080817',101,48),('20080818',97,75),('20080819',155,34),('20080820',68,29),('20080821',127,78),('20080822',191,93),('20080823',203,61),('20080824',144,49),('20080825',290,102),('20080826',204,89),('20080827',95,35),('20080828',342,104),('20080829',261,115),('20080830',203,101),('20080831',189,105),('20080901',392,349),('20080902',351,260),('20080903',481,217),('20080904',284,90),('20080905',148,131),('20080906',359,336),('20080907',234,201),('20080908',83,45),('20080909',112,80),('20080910',78,42),('20080911',114,69),('20080912',145,89),('20080913',104,55),('20080914',62,33),('20080915',70,46),('20080916',143,59),('20080917',200,27),('20080918',129,46),('20080919',233,76),('20080920',158,116),('20080921',27,19),('20080922',116,98),('20080923',120,115),('20080924',228,122),('20080925',186,84),('20080926',119,86),('20080927',142,96),('20080928',75,73),('20080929',160,119),('20080930',150,52),('20081001',109,32),('20081002',122,56),('20081003',181,118),('20081004',195,128),('20081005',946,906),('20081006',243,126),('20081007',218,142),('20081008',305,174),('20081009',282,56),('20081010',212,119),('20081011',365,239),('20081012',272,181),('20081013',217,75),('20081014',227,210),('20081015',220,183),('20081016',352,213),('20081017',304,173),('20081018',320,179),('20081019',126,93),('20081020',141,82),('20081021',177,67),('20081022',209,108),('20081023',127,101),('20081024',496,375),('20081025',219,166),('20081026',142,85),('20081027',91,57),('20081028',193,60),('20081029',246,126),('20081030',126,68),('20081031',123,84),('20081101',247,160),('20081102',268,151),('20081103',141,105),('20081104',124,67),('20081105',170,47),('20081106',222,174),('20081107',90,69),('20081108',281,241),('20081109',327,168),('20081110',212,140),('20081111',239,74),('20081112',380,159),('20081113',227,148),('20081114',269,138),('20081115',151,102),('20081116',193,94),('20081117',312,102),('20081118',295,225),('20081119',277,212),('20081120',526,406),('20081121',303,283),('20081122',515,384),('20081123',656,293),('20081124',399,193),('20081125',173,145),('20081126',174,157),('20081127',302,259),('20081128',201,127),('20081129',200,89),('20081130',168,115),('20081201',210,114),('20081202',231,116),('20081203',108,86),('20081204',341,217),('20081205',217,103),('20081206',150,92),('20081207',307,137),('20081208',2657,154),('20081209',180,93),('20081210',199,129),('20081211',180,149),('20081212',288,251),('20081213',239,224),('20081214',176,155),('20081215',145,92),('20081216',149,85),('20081217',101,69),('20081218',124,96),('20081219',132,89),('20081220',146,80),('20081221',195,146),('20081222',201,196),('20081223',252,227),('20081224',114,109),('20081225',149,102),('20081226',92,85),('20081227',497,408),('20081228',188,124),('20081229',159,130),('20081230',345,140),('20081231',399,136),('20090101',433,311),('20090102',290,232),('20090103',162,130),('20090104',334,186),('20090105',242,146),('20090106',270,113),('20090107',163,94),('20090108',271,210),('20090109',438,251),('20090110',333,305),('20090111',402,251),('20090112',282,192),('20090113',346,225),('20090114',159,111),('20090115',265,122),('20090116',158,130),('20090117',157,118),('20090118',256,201),('20090119',248,160),('20090120',341,163),('20090121',252,175),('20090122',612,483),('20090123',232,195),('20090124',236,189),('20090125',321,229),('20090126',461,223),('20090127',212,162),('20090128',385,109),('20090129',366,162),('20090130',318,167),('20090131',190,152),('20090201',448,309),('20090202',256,172),('20090203',271,180),('20090204',506,456),('20090205',279,174),('20090206',559,248),('20090207',238,147),('20090208',147,115),('20090209',314,158),('20090210',210,131),('20090211',321,189),('20090212',367,144),('20090213',166,118),('20090214',104,79),('20090215',299,99),('20090216',259,185),('20090217',171,146),('20090218',291,179),('20090219',270,99),('20090220',189,109),('20090221',173,93),('20090222',130,84),('20090223',187,80),('20090224',260,161),('20090225',272,193),('20090226',116,66),('20090227',180,94),('20090228',278,178),('20090301',180,120),('20090302',139,112),('20090303',221,147),('20090304',240,131),('20090305',154,111),('20090306',300,114),('20090307',190,132),('20090308',156,95),('20090309',133,95),('20090310',248,204),('20090311',239,150),('20090312',313,231),('20090313',354,237),('20090314',260,121),('20090315',279,84),('20090316',258,131),('20090317',295,145),('20090318',284,161),('20090319',210,98),('20090320',224,112),('20090321',200,117),('20090322',299,119),('20090323',289,134),('20090324',142,84),('20090325',137,92),('20090326',189,102),('20090327',152,85),('20090328',199,59),('20090329',271,117),('20090330',221,119),('20090331',132,93),('20090401',205,79),('20090402',392,142),('20090403',364,144),('20090404',287,110),('20090405',289,186),('20090406',345,151),('20090407',248,102),('20090408',316,212),('20090409',374,235),('20090410',265,172),('20090411',309,111),('20090412',233,125),('20090413',259,180),('20090414',281,214),('20090415',354,183),('20090416',271,122),('20090417',119,105),('20090418',131,86),('20090419',171,113),('20090420',239,109),('20090421',210,61),('20090422',294,119),('20090423',213,167),('20090424',181,100),('20090425',256,155),('20090426',313,253),('20090427',164,98),('20090428',248,130),('20090429',230,137),('20090430',307,142),('20090501',195,130),('20090502',141,83),('20090503',184,158),('20090504',357,207),('20090505',354,131),('20090506',355,169),('20090507',277,212),('20090508',257,139),('20090509',262,244),('20090510',384,237),('20090511',309,266),('20090512',298,247),('20090513',597,187),('20090514',754,290),('20090515',355,291),('20090516',493,453),('20090517',348,214),('20090518',287,232),('20090519',315,196),('20090520',358,231),('20090521',288,153),('20090522',335,229),('20090523',323,255),('20090524',174,85),('20090525',692,489),('20090526',510,201),('20090527',359,173),('20090528',411,219),('20090529',816,689),('20090530',1172,1011),('20090531',157,109),('20090601',444,235),('20090602',465,315),('20090603',536,501),('20090604',427,327),('20090605',341,262),('20090606',309,194),('20090607',463,306),('20090608',213,158),('20090609',266,208),('20090610',330,218),('20090611',312,219),('20090612',274,147),('20090613',324,228),('20090614',447,222),('20090615',355,241),('20090616',545,298),('20090617',559,345),('20090618',303,252),('20090619',415,253),('20090620',355,232),('20090621',357,182),('20090622',271,232),('20090623',253,134),('20090624',347,301),('20090625',373,217),('20090626',750,480),('20090627',351,341),('20090628',440,294),('20090629',338,238),('20090630',474,298),('20090701',721,258),('20090702',255,172),('20090703',325,149),('20090704',400,187),('20090705',205,126),('20090706',433,177),('20090707',405,323),('20090708',360,203),('20090709',312,209),('20090710',448,262),('20090711',522,364),('20090712',691,440),('20090713',373,286),('20090714',275,167),('20090715',436,160),('20090716',258,151),('20090717',205,118),('20090718',298,164),('20090719',281,185),('20090720',351,156),('20090721',217,147),('20090722',284,202),('20090723',219,130),('20090724',410,142),('20090725',261,131),('20090726',282,101),('20090727',226,70),('20090728',187,136),('20090729',275,172),('20090730',165,126),('20090731',190,100),('20090801',203,89),('20090802',250,109),('20090803',298,207),('20090804',172,129),('20090805',168,96),('20090806',147,135),('20090807',141,115),('20090808',195,125),('20090809',134,97),('20090810',435,160),('20090811',262,152),('20090812',319,182),('20090813',448,343),('20090814',331,156),('20090815',437,218),('20090816',533,223),('20090817',217,187),('20090818',314,242),('20090819',597,231),('20090820',395,223),('20090821',374,224),('20090822',305,285),('20090823',322,187),('20090824',313,209),('20090825',427,323),('20090826',382,205),('20090827',329,211),('20090828',389,283),('20090829',307,276),('20090830',386,176),('20090831',227,157),('20090901',431,207),('20090902',332,278),('20090903',382,263),('20090904',344,198),('20090905',434,218),('20090906',582,221),('20090907',374,160),('20090908',353,226),('20090909',292,144),('20090910',446,337),('20090911',262,167),('20090912',311,105),('20090913',234,169),('20090914',232,180),('20090915',537,465),('20090916',265,176),('20090917',789,701),('20090918',585,526),('20090919',314,191),('20090920',242,183),('20090921',1381,1262),('20090922',634,564),('20090923',834,534),('20090924',185,109),('20090925',253,182),('20090926',372,118),('20090927',324,150),('20090928',225,143),('20090929',568,527),('20090930',266,91),('20091001',248,165),('20091002',301,235),('20091003',388,157),('20091004',740,513),('20091005',346,276),('20091006',526,333),('20091007',563,477),('20091008',2109,2005),('20091009',735,510),('20091010',245,108),('20091011',420,228),('20091012',162,102),('20091013',312,187),('20091014',231,157),('20091015',336,228),('20091016',170,129),('20091017',343,125),('20091018',296,156),('20091019',205,100),('20091020',286,167),('20091021',242,120),('20091022',261,149),('20091023',227,156),('20091024',136,115),('20091025',327,190),('20091026',365,231),('20091027',526,218),('20091028',252,196),('20091029',355,233),('20091030',565,274),('20091031',411,275),('20091101',347,216),('20091102',275,168),('20091103',188,115),('20091104',190,103),('20091105',401,246),('20091106',523,180),('20091107',158,78),('20091108',385,120),('20091109',336,133),('20091110',242,118),('20091111',316,157),('20091112',642,401),('20091113',181,88),('20091114',330,253),('20091115',203,112),('20091116',195,155),('20091117',278,177),('20091118',403,320),('20091119',236,179),('20091120',338,150),('20091121',235,137),('20091122',211,139),('20091123',181,162),('20091124',364,193),('20091125',374,215),('20091126',375,168),('20091127',358,219),('20091128',233,186),('20091129',177,103),('20091130',321,130),('20091201',277,157),('20091202',1002,417),('20091203',292,100),('20091204',370,139),('20091205',506,265),('20091206',215,163),('20091207',255,213),('20091208',348,169),('20091209',336,204),('20091210',173,153),('20091211',220,114),('20091212',169,113),('20091213',223,107),('20091214',270,114),('20091215',396,148),('20091216',380,165),('20091217',375,152),('20091218',803,191),('20091219',294,110),('20091220',350,140),('20091221',296,131),('20091222',320,160),('20091223',234,154),('20091224',115,109),('20091225',271,152),('20091226',233,92),('20091227',632,560),('20091228',319,189),('20091229',309,153),('20091230',282,165),('20091231',286,157),('20100101',287,178),('20100102',728,240),('20100103',610,358),('20100104',1008,416),('20100105',756,375),('20100106',466,333),('20100107',411,325),('20100108',279,183),('20100109',403,209),('20100110',445,239),('20100111',390,181),('20100112',451,227),('20100113',497,230),('20100114',275,183),('20100115',649,207),('20100116',366,228),('20100117',506,270),('20100118',307,218),('20100119',256,193),('20100120',524,161),('20100121',203,143),('20100122',975,248),('20100123',766,715),('20100124',254,194),('20100125',1160,723),('20100126',452,162),('20100127',223,124),('20100128',301,176),('20100129',265,173),('20100130',312,212),('20100131',395,217),('20100201',433,223),('20100202',319,197),('20100203',361,212),('20100204',326,173),('20100205',400,257),('20100206',357,233),('20100207',331,231),('20100208',457,204),('20100209',340,220),('20100210',306,166),('20100211',431,365),('20100212',727,473),('20100213',441,341),('20100214',1691,1474),('20100215',620,442),('20100216',600,488),('20100217',492,408),('20100218',498,386),('20100219',484,386),('20100220',468,314),('20100221',526,455),('20100222',431,377),('20100223',438,300),('20100224',442,321),('20100225',505,331),('20100226',389,292),('20100227',521,383),('20100228',446,285),('20100301',397,344),('20100302',455,317),('20100303',426,358),('20100304',498,367),('20100305',689,340),('20100306',443,229),('20100307',393,218),('20100308',685,573),('20100309',322,250),('20100310',444,362),('20100311',543,359),('20100312',454,364),('20100313',397,313),('20100314',473,335),('20100315',385,301),('20100316',421,295),('20100317',367,241),('20100318',345,279),('20100319',386,298),('20100320',493,259),('20100321',589,481),('20100322',596,358),('20100323',549,361),('20100324',576,424),('20100325',557,332),('20100326',389,367),('20100327',201,184),('20100328',464,259),('20100329',486,289),('20100330',476,419),('20100331',572,426),('20100401',744,417),('20100402',1317,876),('20100403',430,211),('20100404',735,568),('20100405',634,535),('20100406',633,439),('20100407',514,432),('20100408',432,375);
/*!40000 ALTER TABLE `zen_counter_history` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_countries`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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,'2008-05-31 18:41:55'),(2,'Euro','EUR','&euro;','','.',',','2',0.74129999,'2008-05-31 18:41:55'),(3,'GB Pound','GBP','&pound;','','.',',','2',0.50300002,'2008-05-31 18:41:55'),(4,'Canadian Dollar','CAD','$','','.',',','2',1.10590005,'2008-05-31 18:41:55'),(5,'Australian Dollar','AUD','$','','.',',','2',1.24070001,'2008-05-31 18:41:55');
/*!40000 ALTER TABLE `zen_currencies` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_customers`;
SET @saved_cs_client     = @@character_set_client;
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',
  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=41 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 (1,'','Karen','Beardsley','1965-08-01 00:00:00','kjbeardsley@hotmail.com','',1,'+61 (0) 400 716 553','','4592be6bf017500bba40c0d4a52880d3:44','1',0,'HTML',0,'','',0),(4,'','Steve','Beardsley','1964-08-31 00:00:00','steve@thegalleryeumundi.com.au','',4,'0400 716 526','','4d22a6b5efa826d8a669f31f44f16485:ce','1',0,'HTML',0,'','',0),(19,'','Sugiartha','Ida Bagus Made','1970-05-21 00:00:00','sugiartha@conceptlaboratory.com','',19,'623612581477','','99d01a5f98c988733353a52dc6c4ffc8:a0','1',0,'HTML',0,'','',0),(20,'','Audrey','Johnson','1951-08-02 00:00:00','nhraudrey@bigpond.com','',20,'0413 734 200','','e029e0eae7041b2e94de18547835b3a8:e5','1',0,'HTML',0,'','',0),(17,'','Mark','New','1964-02-18 00:00:00','mark@newmediastudio.com.au','',17,'07 5442 5462','','f2feffff79838ac7255efec7f7ff6d27:66','1',0,'HTML',0,'','',0),(18,'','Debra','Lefkowitz','1952-09-16 00:00:00','jdm.lefko@bigpond.com','',18,'54491018','','8d24b8866de96ae30295712ffbf20acd:23','1',0,'HTML',0,'','',0),(21,'','Katy','Alder','1969-05-25 00:00:00','katy.katy@bigpond.com','',21,'54477374','','72820b9401d2d9f32c80d539cfc703c4:b9','1',0,'HTML',0,'','',0),(22,'','David','Coorey','1965-07-02 00:00:00','dcoorey@herroncoorey.com.au','',22,'07 3637 8900','','1de61252ea8156605dcc84dce6dc5601:87','1',0,'HTML',0,'','',0),(23,'','Denise','Daffara','1968-08-24 00:00:00','dd2407@yahoo.com.au','',23,'0410421410','','e4b4479164df434690df2dc98f6ded6b:95','1',0,'HTML',0,'','',0),(24,'','Jan','Carlson','1956-04-08 00:00:00','farmart1786@bigpond.com','',24,'0410419927','','f665f23842dbdafcac1d1d2bbfb9648b:21','1',0,'HTML',0,'','',0),(25,'','Dawn','Glynn','1948-12-07 00:00:00','dawnglynn@woosh.co.nz','',25,'032255856','','0d7fbbb1d0917bcf00cec298e8f68e58:09','1',0,'HTML',0,'','',0),(26,'','rose','harrison','1970-05-21 00:00:00','roseharrison@optusnet.com.au','',26,'0402530525','','cc2e61facd421c14b3d8613aef86855d:2f','1',0,'HTML',0,'','',0),(27,'','Kelli','Mac','1952-08-12 00:00:00','kellimac.art@gmail.com','',27,'0488 00 1314','','ef11f0e63be51460073e70f751e8c165:90','1',0,'HTML',0,'','',0),(28,'','Ron','Weideman','1953-02-06 00:00:00','ronzo@ronzo.com.au','',28,'0412243409','','986b461527702257108b63b63a168b27:f2','1',0,'HTML',0,'','',0),(29,'','Ellen','Stapleton','1982-08-29 00:00:00','ellenselement@gmail.com','',29,'33333333','','316071af1960516087aa00aeaffe5bb2:f1','1',0,'HTML',0,'','',0),(30,'','Bron','Hayes','1964-05-06 00:00:00','sunsurf@optusnet.com.au','',30,'07 5449 0475','','69dfb0517c54c5d57aa1a3a673a6adff:f4','1',0,'HTML',0,'','',0),(31,'','Sandra','Kruc k','1946-05-20 00:00:00','skruck@elysium.net.au','',31,'07 54785279','','41cf357228bbb8e1f637adbe4d5fa6c6:2d','1',0,'HTML',0,'','',0),(32,'','Emma','Geddes','1967-08-09 00:00:00','emma.goddess8@gmail.com','',32,'074','','794053dca81c706f4bf894baa4f0aad8:94','1',0,'HTML',0,'','',0),(33,'','Sue','Fraser','1948-04-28 00:00:00','susannelf@bigpond.com','',33,'0438307378','','3e3c283ef3ca827a5dd6d1a61b4d5868:29','1',0,'HTML',0,'','',0),(34,'','Jackie','Pataki','1950-10-07 00:00:00','jackiep@netspace.net.au','',34,'03 9509 3939','','06c2202a4d9a8e409043a29830add734:7a','1',0,'HTML',0,'','',0),(35,'','Mary','Greenwood','1933-06-06 00:00:00','Stamar5@bigpond.com','',35,'41522758','','ef29082f7cc184fcb7a2d573d42711e9:0f','1',0,'HTML',0,'','',0),(36,'','Lauren','Rushton','1965-05-13 00:00:00','lauren@lrjassoc.com.au','',36,'99999999','','924c9e547d9036c9b326dff8aa263a79:b9','1',0,'HTML',0,'','',0),(37,'','Catherine','Ciccotto','1952-04-26 00:00:00','kateseye13@bigpond.com','',37,'0488734220','','d3322c439ddd3ac3e264944dfe5f27f2:90','1',0,'HTML',0,'','',0),(38,'','Louise','Rottier','1957-08-27 00:00:00','lmgrottier@hotmail.com','',38,'0438 432 592','','e68a521a93089f995c9ddc17e4babf78:f7','1',0,'HTML',0,'','',0),(39,'','Tracey','Sterling','1965-07-12 00:00:00','sterling65@dodo.com.au','',39,'0402390037','','960134d93dc5ebff739e04821e534ac9:3c','1',0,'HTML',0,'','',0),(40,'','BERNADETTE','Lack','1951-09-04 00:00:00','info@bernadettelackartist.com','',40,'55338480','','79af14131fd04a57f7c3f8241437caa0:8c','1',0,'HTML',0,'','',0);
/*!40000 ALTER TABLE `zen_customers` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_customers_basket`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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 (1,NULL,0,'2008-07-16 23:46:00',NULL,0),(19,NULL,0,'2008-08-26 03:11:23',NULL,0),(4,NULL,0,'2008-07-24 02:09:12',NULL,0),(17,NULL,0,'2008-08-07 22:37:48',NULL,0),(18,NULL,0,'2008-08-08 00:46:51',NULL,0),(20,NULL,0,'2008-08-29 20:28:15',NULL,0),(21,NULL,0,'2008-09-03 19:25:56',NULL,0),(22,NULL,0,'2008-09-29 16:25:35',NULL,0),(23,NULL,0,'2009-01-22 23:22:14',NULL,0),(24,NULL,0,'2009-02-18 15:28:04',NULL,0),(25,NULL,0,'2009-03-01 03:17:02',NULL,0),(26,NULL,0,'2009-05-13 19:46:31',NULL,0),(27,NULL,0,'2009-05-28 18:45:12',NULL,0),(28,NULL,0,'2009-06-10 00:47:56',NULL,0),(29,NULL,0,'2009-06-21 08:17:06',NULL,0),(30,NULL,0,'2009-07-06 04:40:19',NULL,0),(31,NULL,0,'2009-08-26 05:16:04',NULL,0),(32,NULL,0,'2009-09-09 04:45:15',NULL,0),(33,NULL,0,'2009-10-13 03:48:21',NULL,0),(34,NULL,0,'2009-10-25 01:43:38',NULL,0),(35,NULL,0,'2009-11-01 04:14:50',NULL,0),(36,NULL,0,'2009-12-02 13:42:18',NULL,0),(37,NULL,0,'2009-12-23 15:41:39',NULL,0),(38,NULL,0,'2010-01-29 01:46:13',NULL,0),(39,NULL,0,'2010-03-03 01:37:54',NULL,0),(40,NULL,0,'2010-04-02 03:51:51',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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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_6ec65decb95a7741ada473af0fde76e1','a:543:{i:0;a:2:{s:6:\"cfgkey\";s:10:\"STORE_NAME\";s:8:\"cfgvalue\";s:19:\"The Gallery Eumundi\";}i:1;a:2:{s:6:\"cfgkey\";s:11:\"STORE_OWNER\";s:8:\"cfgvalue\";s:24:\"Steven & Karen Beardsley\";}i:2;a:2:{s:6:\"cfgkey\";s:13:\"STORE_COUNTRY\";s:8:\"cfgvalue\";s:2:\"13\";}i:3;a:2:{s:6:\"cfgkey\";s:10:\"STORE_ZONE\";s:8:\"cfgvalue\";s:3:\"185\";}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:70:\"The Gallery Eumundi\r\n1 Gridley Street\r\nEumundi\r\nQLD 4562\r\n07 5442 8365\";}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:5:\"36000\";}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:\"2\";}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:9:\"FCKEDITOR\";}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:4:\"true\";}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:2:\"50\";}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:2:\"22\";}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:\"6\";}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:\"15\";}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:\"100\";}i:95;a:2:{s:6:\"cfgkey\";s:18:\"SMALL_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:0:\"\";}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:\"150\";}i:99;a:2:{s:6:\"cfgkey\";s:24:\"SUBCATEGORY_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:0:\"\";}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:3:\"120\";}i:106;a:2:{s:6:\"cfgkey\";s:26:\"CATEGORY_ICON_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:0:\"\";}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:\"275\";}i:110;a:2:{s:6:\"cfgkey\";s:19:\"MEDIUM_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:3:\"450\";}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:\"120\";}i:115;a:2:{s:6:\"cfgkey\";s:28:\"IMAGE_PRODUCT_LISTING_HEIGHT\";s:8:\"cfgvalue\";s:3:\"180\";}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:\"100\";}i:119;a:2:{s:6:\"cfgkey\";s:24:\"IMAGE_PRODUCT_NEW_HEIGHT\";s:8:\"cfgvalue\";s:2:\"80\";}i:120;a:2:{s:6:\"cfgkey\";s:37:\"IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH\";s:8:\"cfgvalue\";s:3:\"200\";}i:121;a:2:{s:6:\"cfgkey\";s:38:\"IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT\";s:8:\"cfgvalue\";s:0:\"\";}i:122;a:2:{s:6:\"cfgkey\";s:31:\"IMAGE_PRODUCT_ALL_LISTING_WIDTH\";s:8:\"cfgvalue\";s:3:\"100\";}i:123;a:2:{s:6:\"cfgkey\";s:32:\"IMAGE_PRODUCT_ALL_LISTING_HEIGHT\";s:8:\"cfgvalue\";s:2:\"80\";}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:5:\"false\";}i:128;a:2:{s:6:\"cfgkey\";s:11:\"ACCOUNT_DOB\";s:8:\"cfgvalue\";s:4:\"true\";}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:5:\"false\";}i:133;a:2:{s:6:\"cfgkey\";s:35:\"SHOW_CREATE_ACCOUNT_DEFAULT_COUNTRY\";s:8:\"cfgvalue\";s:2:\"13\";}i:134;a:2:{s:6:\"cfgkey\";s:18:\"ACCOUNT_FAX_NUMBER\";s:8:\"cfgvalue\";s:5:\"false\";}i:135;a:2:{s:6:\"cfgkey\";s:25:\"ACCOUNT_NEWSLETTER_STATUS\";s:8:\"cfgvalue\";s:1:\"2\";}i:136;a:2:{s:6:\"cfgkey\";s:24:\"ACCOUNT_EMAIL_PREFERENCE\";s:8:\"cfgvalue\";s:1:\"1\";}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:37:\"cc.php;freecharger.php;moneyorder.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:49:\"flat.php;freeshipper.php;item.php;storepickup.php\";}i:150;a:2:{s:6:\"cfgkey\";s:24:\"MODULE_PAYMENT_CC_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:151;a:2:{s:6:\"cfgkey\";s:23:\"MODULE_PAYMENT_CC_EMAIL\";s:8:\"cfgvalue\";s:26:\"mark@newmediastudio.com.au\";}i:152;a:2:{s:6:\"cfgkey\";s:29:\"MODULE_PAYMENT_CC_COLLECT_CVV\";s:8:\"cfgvalue\";s:5:\"False\";}i:153;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_PAYMENT_CC_STORE_NUMBER\";s:8:\"cfgvalue\";s:5:\"False\";}i:154;a:2:{s:6:\"cfgkey\";s:28:\"MODULE_PAYMENT_CC_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:155;a:2:{s:6:\"cfgkey\";s:22:\"MODULE_PAYMENT_CC_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:156;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_PAYMENT_CC_ORDER_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"0\";}i:157;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_SHIPPING_FREESHIPPER_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:158;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_SHIPPING_FREESHIPPER_COST\";s:8:\"cfgvalue\";s:4:\"0.00\";}i:159;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_SHIPPING_FREESHIPPER_HANDLING\";s:8:\"cfgvalue\";s:1:\"0\";}i:160;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_SHIPPING_FREESHIPPER_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:161;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_SHIPPING_FREESHIPPER_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:162;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_SHIPPING_FREESHIPPER_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:163;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_SHIPPING_STOREPICKUP_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:164;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_SHIPPING_STOREPICKUP_COST\";s:8:\"cfgvalue\";s:4:\"0.00\";}i:165;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_SHIPPING_STOREPICKUP_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:166;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_SHIPPING_STOREPICKUP_TAX_BASIS\";s:8:\"cfgvalue\";s:8:\"Shipping\";}i:167;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_SHIPPING_STOREPICKUP_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:168;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_SHIPPING_STOREPICKUP_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:169;a:2:{s:6:\"cfgkey\";s:27:\"MODULE_SHIPPING_ITEM_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:170;a:2:{s:6:\"cfgkey\";s:25:\"MODULE_SHIPPING_ITEM_COST\";s:8:\"cfgvalue\";s:4:\"2.50\";}i:171;a:2:{s:6:\"cfgkey\";s:29:\"MODULE_SHIPPING_ITEM_HANDLING\";s:8:\"cfgvalue\";s:1:\"0\";}i:172;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_SHIPPING_ITEM_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:173;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_SHIPPING_ITEM_TAX_BASIS\";s:8:\"cfgvalue\";s:8:\"Shipping\";}i:174;a:2:{s:6:\"cfgkey\";s:25:\"MODULE_SHIPPING_ITEM_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:175;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_SHIPPING_ITEM_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:176;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_PAYMENT_FREECHARGER_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:177;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_PAYMENT_FREECHARGER_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:178;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_PAYMENT_FREECHARGER_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:179;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_PAYMENT_FREECHARGER_ORDER_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"0\";}i:180;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_PAYMENT_MONEYORDER_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:181;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_PAYMENT_MONEYORDER_PAYTO\";s:8:\"cfgvalue\";s:28:\"the Store Owner/Website Name\";}i:182;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_PAYMENT_MONEYORDER_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:183;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_PAYMENT_MONEYORDER_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:184;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_PAYMENT_MONEYORDER_ORDER_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"0\";}i:185;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_ORDER_TOTAL_GROUP_PRICING_INC_TAX\";s:8:\"cfgvalue\";s:5:\"false\";}i:186;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_ORDER_TOTAL_GROUP_PRICING_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:187;a:2:{s:6:\"cfgkey\";s:43:\"MODULE_ORDER_TOTAL_GROUP_PRICING_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"290\";}i:188;a:2:{s:6:\"cfgkey\";s:45:\"MODULE_ORDER_TOTAL_GROUP_PRICING_INC_SHIPPING\";s:8:\"cfgvalue\";s:5:\"false\";}i:189;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_ORDER_TOTAL_GROUP_PRICING_CALC_TAX\";s:8:\"cfgvalue\";s:8:\"Standard\";}i:190;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_ORDER_TOTAL_GROUP_PRICING_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:191;a:2:{s:6:\"cfgkey\";s:27:\"MODULE_SHIPPING_FLAT_STATUS\";s:8:\"cfgvalue\";s:4:\"True\";}i:192;a:2:{s:6:\"cfgkey\";s:25:\"MODULE_SHIPPING_FLAT_COST\";s:8:\"cfgvalue\";s:4:\"5.00\";}i:193;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_SHIPPING_FLAT_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:194;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_SHIPPING_FLAT_TAX_BASIS\";s:8:\"cfgvalue\";s:8:\"Shipping\";}i:195;a:2:{s:6:\"cfgkey\";s:25:\"MODULE_SHIPPING_FLAT_ZONE\";s:8:\"cfgvalue\";s:1:\"0\";}i:196;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_SHIPPING_FLAT_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:197;a:2:{s:6:\"cfgkey\";s:16:\"DEFAULT_CURRENCY\";s:8:\"cfgvalue\";s:3:\"USD\";}i:198;a:2:{s:6:\"cfgkey\";s:16:\"DEFAULT_LANGUAGE\";s:8:\"cfgvalue\";s:2:\"en\";}i:199;a:2:{s:6:\"cfgkey\";s:24:\"DEFAULT_ORDERS_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"1\";}i:200;a:2:{s:6:\"cfgkey\";s:26:\"ADMIN_CONFIGURATION_KEY_ON\";s:8:\"cfgvalue\";s:1:\"0\";}i:201;a:2:{s:6:\"cfgkey\";s:23:\"SHIPPING_ORIGIN_COUNTRY\";s:8:\"cfgvalue\";s:3:\"223\";}i:202;a:2:{s:6:\"cfgkey\";s:19:\"SHIPPING_ORIGIN_ZIP\";s:8:\"cfgvalue\";s:4:\"NONE\";}i:203;a:2:{s:6:\"cfgkey\";s:19:\"SHIPPING_MAX_WEIGHT\";s:8:\"cfgvalue\";s:2:\"50\";}i:204;a:2:{s:6:\"cfgkey\";s:19:\"SHIPPING_BOX_WEIGHT\";s:8:\"cfgvalue\";s:3:\"0:3\";}i:205;a:2:{s:6:\"cfgkey\";s:20:\"SHIPPING_BOX_PADDING\";s:8:\"cfgvalue\";s:4:\"10:0\";}i:206;a:2:{s:6:\"cfgkey\";s:27:\"SHIPPING_BOX_WEIGHT_DISPLAY\";s:8:\"cfgvalue\";s:1:\"3\";}i:207;a:2:{s:6:\"cfgkey\";s:30:\"SHOW_SHIPPING_ESTIMATOR_BUTTON\";s:8:\"cfgvalue\";s:1:\"1\";}i:208;a:2:{s:6:\"cfgkey\";s:22:\"ORDER_COMMENTS_INVOICE\";s:8:\"cfgvalue\";s:1:\"1\";}i:209;a:2:{s:6:\"cfgkey\";s:27:\"ORDER_COMMENTS_PACKING_SLIP\";s:8:\"cfgvalue\";s:1:\"1\";}i:210;a:2:{s:6:\"cfgkey\";s:24:\"ORDER_WEIGHT_ZERO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:211;a:2:{s:6:\"cfgkey\";s:18:\"PRODUCT_LIST_IMAGE\";s:8:\"cfgvalue\";s:1:\"1\";}i:212;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_LIST_MANUFACTURER\";s:8:\"cfgvalue\";s:1:\"0\";}i:213;a:2:{s:6:\"cfgkey\";s:18:\"PRODUCT_LIST_MODEL\";s:8:\"cfgvalue\";s:1:\"0\";}i:214;a:2:{s:6:\"cfgkey\";s:17:\"PRODUCT_LIST_NAME\";s:8:\"cfgvalue\";s:1:\"2\";}i:215;a:2:{s:6:\"cfgkey\";s:18:\"PRODUCT_LIST_PRICE\";s:8:\"cfgvalue\";s:1:\"3\";}i:216;a:2:{s:6:\"cfgkey\";s:21:\"PRODUCT_LIST_QUANTITY\";s:8:\"cfgvalue\";s:1:\"0\";}i:217;a:2:{s:6:\"cfgkey\";s:19:\"PRODUCT_LIST_WEIGHT\";s:8:\"cfgvalue\";s:1:\"0\";}i:218;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCTS_LIST_PRICE_WIDTH\";s:8:\"cfgvalue\";s:3:\"125\";}i:219;a:2:{s:6:\"cfgkey\";s:19:\"PRODUCT_LIST_FILTER\";s:8:\"cfgvalue\";s:1:\"0\";}i:220;a:2:{s:6:\"cfgkey\";s:22:\"PREV_NEXT_BAR_LOCATION\";s:8:\"cfgvalue\";s:1:\"2\";}i:221;a:2:{s:6:\"cfgkey\";s:34:\"PRODUCT_LISTING_DEFAULT_SORT_ORDER\";s:8:\"cfgvalue\";s:0:\"\";}i:222;a:2:{s:6:\"cfgkey\";s:26:\"PRODUCT_LIST_PRICE_BUY_NOW\";s:8:\"cfgvalue\";s:1:\"1\";}i:223;a:2:{s:6:\"cfgkey\";s:36:\"PRODUCT_LISTING_MULTIPLE_ADD_TO_CART\";s:8:\"cfgvalue\";s:1:\"3\";}i:224;a:2:{s:6:\"cfgkey\";s:24:\"PRODUCT_LIST_DESCRIPTION\";s:8:\"cfgvalue\";s:1:\"0\";}i:225;a:2:{s:6:\"cfgkey\";s:33:\"PRODUCT_LIST_SORT_ORDER_ASCENDING\";s:8:\"cfgvalue\";s:1:\"+\";}i:226;a:2:{s:6:\"cfgkey\";s:34:\"PRODUCT_LIST_SORT_ORDER_DESCENDING\";s:8:\"cfgvalue\";s:0:\"\";}i:227;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_LIST_ALPHA_SORTER\";s:8:\"cfgvalue\";s:5:\"false\";}i:228;a:2:{s:6:\"cfgkey\";s:36:\"PRODUCT_LIST_CATEGORIES_IMAGE_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:229;a:2:{s:6:\"cfgkey\";s:40:\"PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP\";s:8:\"cfgvalue\";s:5:\"false\";}i:230;a:2:{s:6:\"cfgkey\";s:32:\"PRODUCT_LIST_CATEGORY_ROW_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:231;a:2:{s:6:\"cfgkey\";s:11:\"STOCK_CHECK\";s:8:\"cfgvalue\";s:5:\"false\";}i:232;a:2:{s:6:\"cfgkey\";s:13:\"STOCK_LIMITED\";s:8:\"cfgvalue\";s:5:\"false\";}i:233;a:2:{s:6:\"cfgkey\";s:20:\"STOCK_ALLOW_CHECKOUT\";s:8:\"cfgvalue\";s:4:\"true\";}i:234;a:2:{s:6:\"cfgkey\";s:31:\"STOCK_MARK_PRODUCT_OUT_OF_STOCK\";s:8:\"cfgvalue\";s:3:\"***\";}i:235;a:2:{s:6:\"cfgkey\";s:19:\"STOCK_REORDER_LEVEL\";s:8:\"cfgvalue\";s:1:\"0\";}i:236;a:2:{s:6:\"cfgkey\";s:22:\"SHOW_PRODUCTS_SOLD_OUT\";s:8:\"cfgvalue\";s:1:\"1\";}i:237;a:2:{s:6:\"cfgkey\";s:28:\"SHOW_PRODUCTS_SOLD_OUT_IMAGE\";s:8:\"cfgvalue\";s:1:\"0\";}i:238;a:2:{s:6:\"cfgkey\";s:17:\"QUANTITY_DECIMALS\";s:8:\"cfgvalue\";s:1:\"0\";}i:239;a:2:{s:6:\"cfgkey\";s:25:\"SHOW_SHOPPING_CART_DELETE\";s:8:\"cfgvalue\";s:1:\"3\";}i:240;a:2:{s:6:\"cfgkey\";s:25:\"SHOW_SHOPPING_CART_UPDATE\";s:8:\"cfgvalue\";s:1:\"3\";}i:241;a:2:{s:6:\"cfgkey\";s:37:\"SHOW_SHOPPING_CART_EMPTY_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"1\";}i:242;a:2:{s:6:\"cfgkey\";s:42:\"SHOW_SHOPPING_CART_EMPTY_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"2\";}i:243;a:2:{s:6:\"cfgkey\";s:42:\"SHOW_SHOPPING_CART_EMPTY_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:244;a:2:{s:6:\"cfgkey\";s:33:\"SHOW_SHOPPING_CART_EMPTY_UPCOMING\";s:8:\"cfgvalue\";s:1:\"4\";}i:245;a:2:{s:6:\"cfgkey\";s:27:\"SHOW_SHOPPING_CART_COMBINED\";s:8:\"cfgvalue\";s:1:\"1\";}i:246;a:2:{s:6:\"cfgkey\";s:21:\"STORE_PAGE_PARSE_TIME\";s:8:\"cfgvalue\";s:5:\"false\";}i:247;a:2:{s:6:\"cfgkey\";s:25:\"STORE_PAGE_PARSE_TIME_LOG\";s:8:\"cfgvalue\";s:70:\"/home/newmedia/public_html/thegalleryeumundi/cache/page_parse_time.log\";}i:248;a:2:{s:6:\"cfgkey\";s:28:\"STORE_PARSE_DATE_TIME_FORMAT\";s:8:\"cfgvalue\";s:17:\"%d/%m/%Y %H:%M:%S\";}i:249;a:2:{s:6:\"cfgkey\";s:23:\"DISPLAY_PAGE_PARSE_TIME\";s:8:\"cfgvalue\";s:5:\"false\";}i:250;a:2:{s:6:\"cfgkey\";s:21:\"STORE_DB_TRANSACTIONS\";s:8:\"cfgvalue\";s:5:\"false\";}i:251;a:2:{s:6:\"cfgkey\";s:15:\"EMAIL_TRANSPORT\";s:8:\"cfgvalue\";s:3:\"PHP\";}i:252;a:2:{s:6:\"cfgkey\";s:22:\"EMAIL_SMTPAUTH_MAILBOX\";s:8:\"cfgvalue\";s:24:\"YourEmailAccountNameHere\";}i:253;a:2:{s:6:\"cfgkey\";s:23:\"EMAIL_SMTPAUTH_PASSWORD\";s:8:\"cfgvalue\";s:16:\"YourPasswordHere\";}i:254;a:2:{s:6:\"cfgkey\";s:26:\"EMAIL_SMTPAUTH_MAIL_SERVER\";s:8:\"cfgvalue\";s:24:\"mail.EnterYourDomain.com\";}i:255;a:2:{s:6:\"cfgkey\";s:31:\"EMAIL_SMTPAUTH_MAIL_SERVER_PORT\";s:8:\"cfgvalue\";s:2:\"25\";}i:256;a:2:{s:6:\"cfgkey\";s:23:\"CURRENCIES_TRANSLATIONS\";s:8:\"cfgvalue\";s:21:\"&pound;,£:&euro;,€\";}i:257;a:2:{s:6:\"cfgkey\";s:14:\"EMAIL_LINEFEED\";s:8:\"cfgvalue\";s:2:\"LF\";}i:258;a:2:{s:6:\"cfgkey\";s:14:\"EMAIL_USE_HTML\";s:8:\"cfgvalue\";s:4:\"true\";}i:259;a:2:{s:6:\"cfgkey\";s:25:\"ENTRY_EMAIL_ADDRESS_CHECK\";s:8:\"cfgvalue\";s:5:\"false\";}i:260;a:2:{s:6:\"cfgkey\";s:11:\"SEND_EMAILS\";s:8:\"cfgvalue\";s:4:\"true\";}i:261;a:2:{s:6:\"cfgkey\";s:13:\"EMAIL_ARCHIVE\";s:8:\"cfgvalue\";s:5:\"false\";}i:262;a:2:{s:6:\"cfgkey\";s:21:\"EMAIL_FRIENDLY_ERRORS\";s:8:\"cfgvalue\";s:5:\"false\";}i:263;a:2:{s:6:\"cfgkey\";s:25:\"STORE_OWNER_EMAIL_ADDRESS\";s:8:\"cfgvalue\";s:28:\"art@thegalleryeumundi.com.au\";}i:264;a:2:{s:6:\"cfgkey\";s:10:\"EMAIL_FROM\";s:8:\"cfgvalue\";s:28:\"art@thegalleryeumundi.com.au\";}i:265;a:2:{s:6:\"cfgkey\";s:24:\"EMAIL_SEND_MUST_BE_STORE\";s:8:\"cfgvalue\";s:3:\"Yes\";}i:266;a:2:{s:6:\"cfgkey\";s:24:\"ADMIN_EXTRA_EMAIL_FORMAT\";s:8:\"cfgvalue\";s:4:\"TEXT\";}i:267;a:2:{s:6:\"cfgkey\";s:26:\"SEND_EXTRA_ORDER_EMAILS_TO\";s:8:\"cfgvalue\";s:26:\"mark@newmediastudio.com.au\";}i:268;a:2:{s:6:\"cfgkey\";s:42:\"SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:269;a:2:{s:6:\"cfgkey\";s:35:\"SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO\";s:8:\"cfgvalue\";s:26:\"mark@newmediastudio.com.au\";}i:270;a:2:{s:6:\"cfgkey\";s:41:\"SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:271;a:2:{s:6:\"cfgkey\";s:34:\"SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO\";s:8:\"cfgvalue\";s:26:\"mark@newmediastudio.com.au\";}i:272;a:2:{s:6:\"cfgkey\";s:39:\"SEND_EXTRA_GV_CUSTOMER_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:273;a:2:{s:6:\"cfgkey\";s:32:\"SEND_EXTRA_GV_CUSTOMER_EMAILS_TO\";s:8:\"cfgvalue\";s:26:\"mark@newmediastudio.com.au\";}i:274;a:2:{s:6:\"cfgkey\";s:36:\"SEND_EXTRA_GV_ADMIN_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:275;a:2:{s:6:\"cfgkey\";s:29:\"SEND_EXTRA_GV_ADMIN_EMAILS_TO\";s:8:\"cfgvalue\";s:26:\"mark@newmediastudio.com.au\";}i:276;a:2:{s:6:\"cfgkey\";s:49:\"SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:277;a:2:{s:6:\"cfgkey\";s:42:\"SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO\";s:8:\"cfgvalue\";s:26:\"mark@newmediastudio.com.au\";}i:278;a:2:{s:6:\"cfgkey\";s:47:\"SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:279;a:2:{s:6:\"cfgkey\";s:40:\"SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO\";s:8:\"cfgvalue\";s:26:\"mark@newmediastudio.com.au\";}i:280;a:2:{s:6:\"cfgkey\";s:47:\"SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:281;a:2:{s:6:\"cfgkey\";s:40:\"SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO\";s:8:\"cfgvalue\";s:26:\"mark@newmediastudio.com.au\";}i:282;a:2:{s:6:\"cfgkey\";s:15:\"CONTACT_US_LIST\";s:8:\"cfgvalue\";s:189:\"art@thegalleryeumundi.com.au <art@thegalleryeumundi.com.au>, steve@thegalleryeumundi.com.au <steve@thegalleryeumundi.com.au>, karen@thegalleryeumundi.com.au <karen@thegalleryeumundi.com.au>\";}i:283;a:2:{s:6:\"cfgkey\";s:28:\"ALLOW_GUEST_TO_TELL_A_FRIEND\";s:8:\"cfgvalue\";s:5:\"false\";}i:284;a:2:{s:6:\"cfgkey\";s:29:\"CONTACT_US_STORE_NAME_ADDRESS\";s:8:\"cfgvalue\";s:1:\"1\";}i:285;a:2:{s:6:\"cfgkey\";s:19:\"SEND_LOWSTOCK_EMAIL\";s:8:\"cfgvalue\";s:1:\"0\";}i:286;a:2:{s:6:\"cfgkey\";s:30:\"SEND_EXTRA_LOW_STOCK_EMAILS_TO\";s:8:\"cfgvalue\";s:26:\"mark@newmediastudio.com.au\";}i:287;a:2:{s:6:\"cfgkey\";s:32:\"SHOW_NEWSLETTER_UNSUBSCRIBE_LINK\";s:8:\"cfgvalue\";s:4:\"true\";}i:288;a:2:{s:6:\"cfgkey\";s:30:\"AUDIENCE_SELECT_DISPLAY_COUNTS\";s:8:\"cfgvalue\";s:4:\"true\";}i:289;a:2:{s:6:\"cfgkey\";s:16:\"DOWNLOAD_ENABLED\";s:8:\"cfgvalue\";s:4:\"true\";}i:290;a:2:{s:6:\"cfgkey\";s:20:\"DOWNLOAD_BY_REDIRECT\";s:8:\"cfgvalue\";s:4:\"true\";}i:291;a:2:{s:6:\"cfgkey\";s:18:\"DOWNLOAD_IN_CHUNKS\";s:8:\"cfgvalue\";s:5:\"false\";}i:292;a:2:{s:6:\"cfgkey\";s:17:\"DOWNLOAD_MAX_DAYS\";s:8:\"cfgvalue\";s:1:\"7\";}i:293;a:2:{s:6:\"cfgkey\";s:18:\"DOWNLOAD_MAX_COUNT\";s:8:\"cfgvalue\";s:1:\"5\";}i:294;a:2:{s:6:\"cfgkey\";s:37:\"DOWNLOADS_ORDERS_STATUS_UPDATED_VALUE\";s:8:\"cfgvalue\";s:1:\"4\";}i:295;a:2:{s:6:\"cfgkey\";s:34:\"DOWNLOADS_CONTROLLER_ORDERS_STATUS\";s:8:\"cfgvalue\";s:1:\"2\";}i:296;a:2:{s:6:\"cfgkey\";s:38:\"DOWNLOADS_CONTROLLER_ORDERS_STATUS_END\";s:8:\"cfgvalue\";s:1:\"4\";}i:297;a:2:{s:6:\"cfgkey\";s:31:\"ATTRIBUTES_ENABLED_PRICE_FACTOR\";s:8:\"cfgvalue\";s:4:\"true\";}i:298;a:2:{s:6:\"cfgkey\";s:29:\"ATTRIBUTES_ENABLED_QTY_PRICES\";s:8:\"cfgvalue\";s:4:\"true\";}i:299;a:2:{s:6:\"cfgkey\";s:25:\"ATTRIBUTES_ENABLED_IMAGES\";s:8:\"cfgvalue\";s:4:\"true\";}i:300;a:2:{s:6:\"cfgkey\";s:30:\"ATTRIBUTES_ENABLED_TEXT_PRICES\";s:8:\"cfgvalue\";s:4:\"true\";}i:301;a:2:{s:6:\"cfgkey\";s:16:\"TEXT_SPACES_FREE\";s:8:\"cfgvalue\";s:1:\"1\";}i:302;a:2:{s:6:\"cfgkey\";s:38:\"PRODUCTS_OPTIONS_TYPE_READONLY_IGNORED\";s:8:\"cfgvalue\";s:1:\"1\";}i:303;a:2:{s:6:\"cfgkey\";s:10:\"GZIP_LEVEL\";s:8:\"cfgvalue\";s:1:\"0\";}i:304;a:2:{s:6:\"cfgkey\";s:23:\"SESSION_WRITE_DIRECTORY\";s:8:\"cfgvalue\";s:50:\"/home/newmedia/public_html/thegalleryeumundi/cache\";}i:305;a:2:{s:6:\"cfgkey\";s:16:\"SESSION_USE_FQDN\";s:8:\"cfgvalue\";s:4:\"True\";}i:306;a:2:{s:6:\"cfgkey\";s:24:\"SESSION_FORCE_COOKIE_USE\";s:8:\"cfgvalue\";s:5:\"False\";}i:307;a:2:{s:6:\"cfgkey\";s:28:\"SESSION_CHECK_SSL_SESSION_ID\";s:8:\"cfgvalue\";s:5:\"False\";}i:308;a:2:{s:6:\"cfgkey\";s:24:\"SESSION_CHECK_USER_AGENT\";s:8:\"cfgvalue\";s:5:\"False\";}i:309;a:2:{s:6:\"cfgkey\";s:24:\"SESSION_CHECK_IP_ADDRESS\";s:8:\"cfgvalue\";s:5:\"False\";}i:310;a:2:{s:6:\"cfgkey\";s:21:\"SESSION_BLOCK_SPIDERS\";s:8:\"cfgvalue\";s:4:\"True\";}i:311;a:2:{s:6:\"cfgkey\";s:16:\"SESSION_RECREATE\";s:8:\"cfgvalue\";s:4:\"True\";}i:312;a:2:{s:6:\"cfgkey\";s:26:\"SESSION_IP_TO_HOST_ADDRESS\";s:8:\"cfgvalue\";s:4:\"true\";}i:313;a:2:{s:6:\"cfgkey\";s:20:\"SECURITY_CODE_LENGTH\";s:8:\"cfgvalue\";s:2:\"10\";}i:314;a:2:{s:6:\"cfgkey\";s:37:\"DEFAULT_ZERO_BALANCE_ORDERS_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"2\";}i:315;a:2:{s:6:\"cfgkey\";s:26:\"NEW_SIGNUP_DISCOUNT_COUPON\";s:8:\"cfgvalue\";s:0:\"\";}i:316;a:2:{s:6:\"cfgkey\";s:30:\"NEW_SIGNUP_GIFT_VOUCHER_AMOUNT\";s:8:\"cfgvalue\";s:0:\"\";}i:317;a:2:{s:6:\"cfgkey\";s:43:\"MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS\";s:8:\"cfgvalue\";s:2:\"20\";}i:318;a:2:{s:6:\"cfgkey\";s:51:\"MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS_REPORTS\";s:8:\"cfgvalue\";s:2:\"20\";}i:319;a:2:{s:6:\"cfgkey\";s:15:\"CC_ENABLED_VISA\";s:8:\"cfgvalue\";s:1:\"1\";}i:320;a:2:{s:6:\"cfgkey\";s:13:\"CC_ENABLED_MC\";s:8:\"cfgvalue\";s:1:\"1\";}i:321;a:2:{s:6:\"cfgkey\";s:15:\"CC_ENABLED_AMEX\";s:8:\"cfgvalue\";s:1:\"0\";}i:322;a:2:{s:6:\"cfgkey\";s:22:\"CC_ENABLED_DINERS_CLUB\";s:8:\"cfgvalue\";s:1:\"0\";}i:323;a:2:{s:6:\"cfgkey\";s:19:\"CC_ENABLED_DISCOVER\";s:8:\"cfgvalue\";s:1:\"0\";}i:324;a:2:{s:6:\"cfgkey\";s:14:\"CC_ENABLED_JCB\";s:8:\"cfgvalue\";s:1:\"0\";}i:325;a:2:{s:6:\"cfgkey\";s:30:\"CC_ENABLED_AUSTRALIAN_BANKCARD\";s:8:\"cfgvalue\";s:1:\"0\";}i:326;a:2:{s:6:\"cfgkey\";s:15:\"CC_ENABLED_SOLO\";s:8:\"cfgvalue\";s:1:\"0\";}i:327;a:2:{s:6:\"cfgkey\";s:17:\"CC_ENABLED_SWITCH\";s:8:\"cfgvalue\";s:1:\"0\";}i:328;a:2:{s:6:\"cfgkey\";s:18:\"CC_ENABLED_MAESTRO\";s:8:\"cfgvalue\";s:1:\"0\";}i:329;a:2:{s:6:\"cfgkey\";s:26:\"SHOW_ACCEPTED_CREDIT_CARDS\";s:8:\"cfgvalue\";s:1:\"0\";}i:330;a:2:{s:6:\"cfgkey\";s:28:\"MODULE_ORDER_TOTAL_GV_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:331;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_ORDER_TOTAL_GV_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"840\";}i:332;a:2:{s:6:\"cfgkey\";s:27:\"MODULE_ORDER_TOTAL_GV_QUEUE\";s:8:\"cfgvalue\";s:4:\"true\";}i:333;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_ORDER_TOTAL_GV_INC_SHIPPING\";s:8:\"cfgvalue\";s:4:\"true\";}i:334;a:2:{s:6:\"cfgkey\";s:29:\"MODULE_ORDER_TOTAL_GV_INC_TAX\";s:8:\"cfgvalue\";s:4:\"true\";}i:335;a:2:{s:6:\"cfgkey\";s:30:\"MODULE_ORDER_TOTAL_GV_CALC_TAX\";s:8:\"cfgvalue\";s:4:\"None\";}i:336;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_ORDER_TOTAL_GV_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:337;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_ORDER_TOTAL_GV_CREDIT_TAX\";s:8:\"cfgvalue\";s:5:\"false\";}i:338;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_ORDER_TOTAL_GV_ORDER_STATUS_ID\";s:8:\"cfgvalue\";s:1:\"0\";}i:339;a:2:{s:6:\"cfgkey\";s:37:\"MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:340;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"400\";}i:341;a:2:{s:6:\"cfgkey\";s:44:\"MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE\";s:8:\"cfgvalue\";s:5:\"false\";}i:342;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER\";s:8:\"cfgvalue\";s:2:\"50\";}i:343;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_ORDER_TOTAL_LOWORDERFEE_FEE\";s:8:\"cfgvalue\";s:1:\"5\";}i:344;a:2:{s:6:\"cfgkey\";s:42:\"MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION\";s:8:\"cfgvalue\";s:4:\"both\";}i:345;a:2:{s:6:\"cfgkey\";s:40:\"MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:346;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_ORDER_TOTAL_LOWORDERFEE_VIRTUAL\";s:8:\"cfgvalue\";s:5:\"false\";}i:347;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_ORDER_TOTAL_LOWORDERFEE_GV\";s:8:\"cfgvalue\";s:5:\"false\";}i:348;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_ORDER_TOTAL_SHIPPING_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:349;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"200\";}i:350;a:2:{s:6:\"cfgkey\";s:41:\"MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING\";s:8:\"cfgvalue\";s:5:\"false\";}i:351;a:2:{s:6:\"cfgkey\";s:46:\"MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER\";s:8:\"cfgvalue\";s:2:\"50\";}i:352;a:2:{s:6:\"cfgkey\";s:39:\"MODULE_ORDER_TOTAL_SHIPPING_DESTINATION\";s:8:\"cfgvalue\";s:8:\"national\";}i:353;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_ORDER_TOTAL_SUBTOTAL_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:354;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"100\";}i:355;a:2:{s:6:\"cfgkey\";s:29:\"MODULE_ORDER_TOTAL_TAX_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:356;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_ORDER_TOTAL_TAX_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"300\";}i:357;a:2:{s:6:\"cfgkey\";s:31:\"MODULE_ORDER_TOTAL_TOTAL_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:358;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"999\";}i:359;a:2:{s:6:\"cfgkey\";s:35:\"MODULE_ORDER_TOTAL_COUPON_TAX_CLASS\";s:8:\"cfgvalue\";s:1:\"0\";}i:360;a:2:{s:6:\"cfgkey\";s:33:\"MODULE_ORDER_TOTAL_COUPON_INC_TAX\";s:8:\"cfgvalue\";s:5:\"false\";}i:361;a:2:{s:6:\"cfgkey\";s:36:\"MODULE_ORDER_TOTAL_COUPON_SORT_ORDER\";s:8:\"cfgvalue\";s:3:\"280\";}i:362;a:2:{s:6:\"cfgkey\";s:38:\"MODULE_ORDER_TOTAL_COUPON_INC_SHIPPING\";s:8:\"cfgvalue\";s:5:\"false\";}i:363;a:2:{s:6:\"cfgkey\";s:32:\"MODULE_ORDER_TOTAL_COUPON_STATUS\";s:8:\"cfgvalue\";s:4:\"true\";}i:364;a:2:{s:6:\"cfgkey\";s:34:\"MODULE_ORDER_TOTAL_COUPON_CALC_TAX\";s:8:\"cfgvalue\";s:8:\"Standard\";}i:365;a:2:{s:6:\"cfgkey\";s:10:\"ADMIN_DEMO\";s:8:\"cfgvalue\";s:1:\"0\";}i:366;a:2:{s:6:\"cfgkey\";s:28:\"PRODUCTS_OPTIONS_TYPE_SELECT\";s:8:\"cfgvalue\";s:1:\"0\";}i:367;a:2:{s:6:\"cfgkey\";s:26:\"PRODUCTS_OPTIONS_TYPE_TEXT\";s:8:\"cfgvalue\";s:1:\"1\";}i:368;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCTS_OPTIONS_TYPE_RADIO\";s:8:\"cfgvalue\";s:1:\"2\";}i:369;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCTS_OPTIONS_TYPE_CHECKBOX\";s:8:\"cfgvalue\";s:1:\"3\";}i:370;a:2:{s:6:\"cfgkey\";s:26:\"PRODUCTS_OPTIONS_TYPE_FILE\";s:8:\"cfgvalue\";s:1:\"4\";}i:371;a:2:{s:6:\"cfgkey\";s:31:\"PRODUCTS_OPTIONS_VALUES_TEXT_ID\";s:8:\"cfgvalue\";s:1:\"0\";}i:372;a:2:{s:6:\"cfgkey\";s:13:\"UPLOAD_PREFIX\";s:8:\"cfgvalue\";s:7:\"upload_\";}i:373;a:2:{s:6:\"cfgkey\";s:11:\"TEXT_PREFIX\";s:8:\"cfgvalue\";s:4:\"txt_\";}i:374;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCTS_OPTIONS_TYPE_READONLY\";s:8:\"cfgvalue\";s:1:\"5\";}i:375;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCTS_OPTIONS_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:376;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCTS_OPTIONS_SORT_BY_PRICE\";s:8:\"cfgvalue\";s:1:\"1\";}i:377;a:2:{s:6:\"cfgkey\";s:31:\"PRODUCT_IMAGES_ATTRIBUTES_NAMES\";s:8:\"cfgvalue\";s:1:\"1\";}i:378;a:2:{s:6:\"cfgkey\";s:25:\"SHOW_SALE_DISCOUNT_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:379;a:2:{s:6:\"cfgkey\";s:18:\"SHOW_SALE_DISCOUNT\";s:8:\"cfgvalue\";s:1:\"1\";}i:380;a:2:{s:6:\"cfgkey\";s:27:\"SHOW_SALE_DISCOUNT_DECIMALS\";s:8:\"cfgvalue\";s:1:\"0\";}i:381;a:2:{s:6:\"cfgkey\";s:28:\"OTHER_IMAGE_PRICE_IS_FREE_ON\";s:8:\"cfgvalue\";s:1:\"1\";}i:382;a:2:{s:6:\"cfgkey\";s:31:\"PRODUCTS_PRICE_IS_CALL_IMAGE_ON\";s:8:\"cfgvalue\";s:1:\"1\";}i:383;a:2:{s:6:\"cfgkey\";s:23:\"PRODUCTS_QTY_BOX_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:384;a:2:{s:6:\"cfgkey\";s:16:\"REVIEWS_APPROVAL\";s:8:\"cfgvalue\";s:1:\"1\";}i:385;a:2:{s:6:\"cfgkey\";s:22:\"META_TAG_INCLUDE_MODEL\";s:8:\"cfgvalue\";s:1:\"1\";}i:386;a:2:{s:6:\"cfgkey\";s:22:\"META_TAG_INCLUDE_PRICE\";s:8:\"cfgvalue\";s:1:\"1\";}i:387;a:2:{s:6:\"cfgkey\";s:31:\"MAX_META_TAG_DESCRIPTION_LENGTH\";s:8:\"cfgvalue\";s:2:\"50\";}i:388;a:2:{s:6:\"cfgkey\";s:49:\"SHOW_PRODUCT_INFO_COLUMNS_ALSO_PURCHASED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:389;a:2:{s:6:\"cfgkey\";s:26:\"PRODUCT_INFO_PREVIOUS_NEXT\";s:8:\"cfgvalue\";s:1:\"1\";}i:390;a:2:{s:6:\"cfgkey\";s:31:\"PRODUCT_INFO_PREVIOUS_NEXT_SORT\";s:8:\"cfgvalue\";s:1:\"1\";}i:391;a:2:{s:6:\"cfgkey\";s:25:\"SHOW_PREVIOUS_NEXT_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:392;a:2:{s:6:\"cfgkey\";s:25:\"SHOW_PREVIOUS_NEXT_IMAGES\";s:8:\"cfgvalue\";s:1:\"0\";}i:393;a:2:{s:6:\"cfgkey\";s:25:\"PREVIOUS_NEXT_IMAGE_WIDTH\";s:8:\"cfgvalue\";s:2:\"50\";}i:394;a:2:{s:6:\"cfgkey\";s:26:\"PREVIOUS_NEXT_IMAGE_HEIGHT\";s:8:\"cfgvalue\";s:2:\"40\";}i:395;a:2:{s:6:\"cfgkey\";s:23:\"PRODUCT_INFO_CATEGORIES\";s:8:\"cfgvalue\";s:1:\"1\";}i:396;a:2:{s:6:\"cfgkey\";s:36:\"PRODUCT_INFO_CATEGORIES_IMAGE_STATUS\";s:8:\"cfgvalue\";s:1:\"2\";}i:397;a:2:{s:6:\"cfgkey\";s:14:\"BOX_WIDTH_LEFT\";s:8:\"cfgvalue\";s:4:\"60px\";}i:398;a:2:{s:6:\"cfgkey\";s:15:\"BOX_WIDTH_RIGHT\";s:8:\"cfgvalue\";s:5:\"210px\";}i:399;a:2:{s:6:\"cfgkey\";s:22:\"BREAD_CRUMBS_SEPARATOR\";s:8:\"cfgvalue\";s:14:\"&nbsp;::&nbsp;\";}i:400;a:2:{s:6:\"cfgkey\";s:24:\"DEFINE_BREADCRUMB_STATUS\";s:8:\"cfgvalue\";s:1:\"0\";}i:401;a:2:{s:6:\"cfgkey\";s:19:\"BEST_SELLERS_FILLER\";s:8:\"cfgvalue\";s:6:\"&nbsp;\";}i:402;a:2:{s:6:\"cfgkey\";s:21:\"BEST_SELLERS_TRUNCATE\";s:8:\"cfgvalue\";s:2:\"35\";}i:403;a:2:{s:6:\"cfgkey\";s:26:\"BEST_SELLERS_TRUNCATE_MORE\";s:8:\"cfgvalue\";s:4:\"true\";}i:404;a:2:{s:6:\"cfgkey\";s:28:\"SHOW_CATEGORIES_BOX_SPECIALS\";s:8:\"cfgvalue\";s:5:\"false\";}i:405;a:2:{s:6:\"cfgkey\";s:32:\"SHOW_CATEGORIES_BOX_PRODUCTS_NEW\";s:8:\"cfgvalue\";s:5:\"false\";}i:406;a:2:{s:6:\"cfgkey\";s:29:\"SHOW_SHOPPING_CART_BOX_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:407;a:2:{s:6:\"cfgkey\";s:37:\"SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:5:\"false\";}i:408;a:2:{s:6:\"cfgkey\";s:32:\"SHOW_CATEGORIES_BOX_PRODUCTS_ALL\";s:8:\"cfgvalue\";s:5:\"false\";}i:409;a:2:{s:6:\"cfgkey\";s:18:\"COLUMN_LEFT_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:410;a:2:{s:6:\"cfgkey\";s:19:\"COLUMN_RIGHT_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:411;a:2:{s:6:\"cfgkey\";s:17:\"COLUMN_WIDTH_LEFT\";s:8:\"cfgvalue\";s:4:\"80px\";}i:412;a:2:{s:6:\"cfgkey\";s:18:\"COLUMN_WIDTH_RIGHT\";s:8:\"cfgvalue\";s:5:\"223px\";}i:413;a:2:{s:6:\"cfgkey\";s:30:\"SHOW_CATEGORIES_SEPARATOR_LINK\";s:8:\"cfgvalue\";s:1:\"1\";}i:414;a:2:{s:6:\"cfgkey\";s:20:\"CATEGORIES_SEPARATOR\";s:8:\"cfgvalue\";s:0:\"\";}i:415;a:2:{s:6:\"cfgkey\";s:25:\"CATEGORIES_SEPARATOR_SUBS\";s:8:\"cfgvalue\";s:18:\"&nbsp;&nbsp;&nbsp;\";}i:416;a:2:{s:6:\"cfgkey\";s:23:\"CATEGORIES_COUNT_PREFIX\";s:8:\"cfgvalue\";s:7:\"&nbsp;(\";}i:417;a:2:{s:6:\"cfgkey\";s:23:\"CATEGORIES_COUNT_SUFFIX\";s:8:\"cfgvalue\";s:1:\")\";}i:418;a:2:{s:6:\"cfgkey\";s:31:\"CATEGORIES_SUBCATEGORIES_INDENT\";s:8:\"cfgvalue\";s:12:\"&nbsp;&nbsp;\";}i:419;a:2:{s:6:\"cfgkey\";s:21:\"CATEGORIES_COUNT_ZERO\";s:8:\"cfgvalue\";s:1:\"0\";}i:420;a:2:{s:6:\"cfgkey\";s:24:\"CATEGORIES_SPLIT_DISPLAY\";s:8:\"cfgvalue\";s:4:\"True\";}i:421;a:2:{s:6:\"cfgkey\";s:19:\"SHOW_TOTALS_IN_CART\";s:8:\"cfgvalue\";s:1:\"1\";}i:422;a:2:{s:6:\"cfgkey\";s:22:\"SHOW_CUSTOMER_GREETING\";s:8:\"cfgvalue\";s:1:\"0\";}i:423;a:2:{s:6:\"cfgkey\";s:22:\"SHOW_CATEGORIES_ALWAYS\";s:8:\"cfgvalue\";s:1:\"0\";}i:424;a:2:{s:6:\"cfgkey\";s:21:\"CATEGORIES_START_MAIN\";s:8:\"cfgvalue\";s:1:\"0\";}i:425;a:2:{s:6:\"cfgkey\";s:36:\"SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS\";s:8:\"cfgvalue\";s:1:\"1\";}i:426;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET1\";s:8:\"cfgvalue\";s:0:\"\";}i:427;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET2\";s:8:\"cfgvalue\";s:0:\"\";}i:428;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET3\";s:8:\"cfgvalue\";s:0:\"\";}i:429;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET4\";s:8:\"cfgvalue\";s:0:\"\";}i:430;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET5\";s:8:\"cfgvalue\";s:0:\"\";}i:431;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET6\";s:8:\"cfgvalue\";s:12:\"Wide-Banners\";}i:432;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET7\";s:8:\"cfgvalue\";s:15:\"SideBox-Banners\";}i:433;a:2:{s:6:\"cfgkey\";s:23:\"SHOW_BANNERS_GROUP_SET8\";s:8:\"cfgvalue\";s:15:\"SideBox-Banners\";}i:434;a:2:{s:6:\"cfgkey\";s:26:\"SHOW_BANNERS_GROUP_SET_ALL\";s:8:\"cfgvalue\";s:10:\"BannersAll\";}i:435;a:2:{s:6:\"cfgkey\";s:14:\"SHOW_FOOTER_IP\";s:8:\"cfgvalue\";s:1:\"0\";}i:436;a:2:{s:6:\"cfgkey\";s:16:\"DISCOUNT_QTY_ADD\";s:8:\"cfgvalue\";s:1:\"5\";}i:437;a:2:{s:6:\"cfgkey\";s:31:\"DISCOUNT_QUANTITY_PRICES_COLUMN\";s:8:\"cfgvalue\";s:1:\"5\";}i:438;a:2:{s:6:\"cfgkey\";s:30:\"CATEGORIES_PRODUCTS_SORT_ORDER\";s:8:\"cfgvalue\";s:1:\"0\";}i:439;a:2:{s:6:\"cfgkey\";s:33:\"OPTION_NAMES_VALUES_GLOBAL_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:440;a:2:{s:6:\"cfgkey\";s:22:\"CATEGORIES_TABS_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:441;a:2:{s:6:\"cfgkey\";s:30:\"SHOW_ACCOUNT_LINKS_ON_SITE_MAP\";s:8:\"cfgvalue\";s:2:\"No\";}i:442;a:2:{s:6:\"cfgkey\";s:30:\"SKIP_SINGLE_PRODUCT_CATEGORIES\";s:8:\"cfgvalue\";s:5:\"False\";}i:443;a:2:{s:6:\"cfgkey\";s:20:\"USE_SPLIT_LOGIN_MODE\";s:8:\"cfgvalue\";s:4:\"True\";}i:444;a:2:{s:6:\"cfgkey\";s:21:\"IMAGE_USE_CSS_BUTTONS\";s:8:\"cfgvalue\";s:2:\"No\";}i:445;a:2:{s:6:\"cfgkey\";s:20:\"DOWN_FOR_MAINTENANCE\";s:8:\"cfgvalue\";s:5:\"false\";}i:446;a:2:{s:6:\"cfgkey\";s:29:\"DOWN_FOR_MAINTENANCE_FILENAME\";s:8:\"cfgvalue\";s:20:\"down_for_maintenance\";}i:447;a:2:{s:6:\"cfgkey\";s:31:\"DOWN_FOR_MAINTENANCE_HEADER_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:448;a:2:{s:6:\"cfgkey\";s:36:\"DOWN_FOR_MAINTENANCE_COLUMN_LEFT_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:449;a:2:{s:6:\"cfgkey\";s:37:\"DOWN_FOR_MAINTENANCE_COLUMN_RIGHT_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:450;a:2:{s:6:\"cfgkey\";s:31:\"DOWN_FOR_MAINTENANCE_FOOTER_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:451;a:2:{s:6:\"cfgkey\";s:31:\"DOWN_FOR_MAINTENANCE_PRICES_OFF\";s:8:\"cfgvalue\";s:5:\"false\";}i:452;a:2:{s:6:\"cfgkey\";s:32:\"EXCLUDE_ADMIN_IP_FOR_MAINTENANCE\";s:8:\"cfgvalue\";s:15:\"your IP (ADMIN)\";}i:453;a:2:{s:6:\"cfgkey\";s:32:\"WARN_BEFORE_DOWN_FOR_MAINTENANCE\";s:8:\"cfgvalue\";s:5:\"false\";}i:454;a:2:{s:6:\"cfgkey\";s:34:\"PERIOD_BEFORE_DOWN_FOR_MAINTENANCE\";s:8:\"cfgvalue\";s:18:\"15/05/2003  2-3 PM\";}i:455;a:2:{s:6:\"cfgkey\";s:24:\"DISPLAY_MAINTENANCE_TIME\";s:8:\"cfgvalue\";s:5:\"false\";}i:456;a:2:{s:6:\"cfgkey\";s:26:\"DISPLAY_MAINTENANCE_PERIOD\";s:8:\"cfgvalue\";s:5:\"false\";}i:457;a:2:{s:6:\"cfgkey\";s:28:\"TEXT_MAINTENANCE_PERIOD_TIME\";s:8:\"cfgvalue\";s:4:\"2h00\";}i:458;a:2:{s:6:\"cfgkey\";s:30:\"DISPLAY_CONDITIONS_ON_CHECKOUT\";s:8:\"cfgvalue\";s:5:\"false\";}i:459;a:2:{s:6:\"cfgkey\";s:26:\"DISPLAY_PRIVACY_CONDITIONS\";s:8:\"cfgvalue\";s:5:\"false\";}i:460;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_NEW_LIST_IMAGE\";s:8:\"cfgvalue\";s:4:\"1102\";}i:461;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_NEW_LIST_QUANTITY\";s:8:\"cfgvalue\";s:4:\"1202\";}i:462;a:2:{s:6:\"cfgkey\";s:19:\"PRODUCT_NEW_BUY_NOW\";s:8:\"cfgvalue\";s:4:\"1300\";}i:463;a:2:{s:6:\"cfgkey\";s:21:\"PRODUCT_NEW_LIST_NAME\";s:8:\"cfgvalue\";s:4:\"2101\";}i:464;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_NEW_LIST_MODEL\";s:8:\"cfgvalue\";s:4:\"2201\";}i:465;a:2:{s:6:\"cfgkey\";s:29:\"PRODUCT_NEW_LIST_MANUFACTURER\";s:8:\"cfgvalue\";s:4:\"2302\";}i:466;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_NEW_LIST_PRICE\";s:8:\"cfgvalue\";s:4:\"2402\";}i:467;a:2:{s:6:\"cfgkey\";s:23:\"PRODUCT_NEW_LIST_WEIGHT\";s:8:\"cfgvalue\";s:4:\"2502\";}i:468;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCT_NEW_LIST_DATE_ADDED\";s:8:\"cfgvalue\";s:4:\"2601\";}i:469;a:2:{s:6:\"cfgkey\";s:28:\"PRODUCT_NEW_LIST_DESCRIPTION\";s:8:\"cfgvalue\";s:3:\"150\";}i:470;a:2:{s:6:\"cfgkey\";s:29:\"PRODUCT_NEW_LIST_SORT_DEFAULT\";s:8:\"cfgvalue\";s:1:\"6\";}i:471;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_NEW_LIST_GROUP_ID\";s:8:\"cfgvalue\";s:2:\"21\";}i:472;a:2:{s:6:\"cfgkey\";s:40:\"PRODUCT_NEW_LISTING_MULTIPLE_ADD_TO_CART\";s:8:\"cfgvalue\";s:1:\"3\";}i:473;a:2:{s:6:\"cfgkey\";s:33:\"SHOW_NEW_PRODUCTS_UPCOMING_MASKED\";s:8:\"cfgvalue\";s:1:\"0\";}i:474;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCT_FEATURED_LIST_IMAGE\";s:8:\"cfgvalue\";s:4:\"1102\";}i:475;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCT_FEATURED_LIST_QUANTITY\";s:8:\"cfgvalue\";s:4:\"1202\";}i:476;a:2:{s:6:\"cfgkey\";s:24:\"PRODUCT_FEATURED_BUY_NOW\";s:8:\"cfgvalue\";s:4:\"1300\";}i:477;a:2:{s:6:\"cfgkey\";s:26:\"PRODUCT_FEATURED_LIST_NAME\";s:8:\"cfgvalue\";s:4:\"2101\";}i:478;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCT_FEATURED_LIST_MODEL\";s:8:\"cfgvalue\";s:4:\"2201\";}i:479;a:2:{s:6:\"cfgkey\";s:34:\"PRODUCT_FEATURED_LIST_MANUFACTURER\";s:8:\"cfgvalue\";s:4:\"2302\";}i:480;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCT_FEATURED_LIST_PRICE\";s:8:\"cfgvalue\";s:4:\"2402\";}i:481;a:2:{s:6:\"cfgkey\";s:28:\"PRODUCT_FEATURED_LIST_WEIGHT\";s:8:\"cfgvalue\";s:4:\"2502\";}i:482;a:2:{s:6:\"cfgkey\";s:32:\"PRODUCT_FEATURED_LIST_DATE_ADDED\";s:8:\"cfgvalue\";s:4:\"2601\";}i:483;a:2:{s:6:\"cfgkey\";s:33:\"PRODUCT_FEATURED_LIST_DESCRIPTION\";s:8:\"cfgvalue\";s:3:\"150\";}i:484;a:2:{s:6:\"cfgkey\";s:34:\"PRODUCT_FEATURED_LIST_SORT_DEFAULT\";s:8:\"cfgvalue\";s:1:\"1\";}i:485;a:2:{s:6:\"cfgkey\";s:30:\"PRODUCT_FEATURED_LIST_GROUP_ID\";s:8:\"cfgvalue\";s:2:\"22\";}i:486;a:2:{s:6:\"cfgkey\";s:45:\"PRODUCT_FEATURED_LISTING_MULTIPLE_ADD_TO_CART\";s:8:\"cfgvalue\";s:1:\"3\";}i:487;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_ALL_LIST_IMAGE\";s:8:\"cfgvalue\";s:4:\"1102\";}i:488;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_ALL_LIST_QUANTITY\";s:8:\"cfgvalue\";s:4:\"1202\";}i:489;a:2:{s:6:\"cfgkey\";s:19:\"PRODUCT_ALL_BUY_NOW\";s:8:\"cfgvalue\";s:4:\"1300\";}i:490;a:2:{s:6:\"cfgkey\";s:21:\"PRODUCT_ALL_LIST_NAME\";s:8:\"cfgvalue\";s:4:\"2101\";}i:491;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_ALL_LIST_MODEL\";s:8:\"cfgvalue\";s:4:\"2201\";}i:492;a:2:{s:6:\"cfgkey\";s:29:\"PRODUCT_ALL_LIST_MANUFACTURER\";s:8:\"cfgvalue\";s:4:\"2302\";}i:493;a:2:{s:6:\"cfgkey\";s:22:\"PRODUCT_ALL_LIST_PRICE\";s:8:\"cfgvalue\";s:4:\"2402\";}i:494;a:2:{s:6:\"cfgkey\";s:23:\"PRODUCT_ALL_LIST_WEIGHT\";s:8:\"cfgvalue\";s:4:\"2502\";}i:495;a:2:{s:6:\"cfgkey\";s:27:\"PRODUCT_ALL_LIST_DATE_ADDED\";s:8:\"cfgvalue\";s:4:\"2601\";}i:496;a:2:{s:6:\"cfgkey\";s:28:\"PRODUCT_ALL_LIST_DESCRIPTION\";s:8:\"cfgvalue\";s:3:\"150\";}i:497;a:2:{s:6:\"cfgkey\";s:29:\"PRODUCT_ALL_LIST_SORT_DEFAULT\";s:8:\"cfgvalue\";s:1:\"1\";}i:498;a:2:{s:6:\"cfgkey\";s:25:\"PRODUCT_ALL_LIST_GROUP_ID\";s:8:\"cfgvalue\";s:2:\"23\";}i:499;a:2:{s:6:\"cfgkey\";s:40:\"PRODUCT_ALL_LISTING_MULTIPLE_ADD_TO_CART\";s:8:\"cfgvalue\";s:1:\"3\";}i:500;a:2:{s:6:\"cfgkey\";s:35:\"SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:501;a:2:{s:6:\"cfgkey\";s:40:\"SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:502;a:2:{s:6:\"cfgkey\";s:40:\"SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:503;a:2:{s:6:\"cfgkey\";s:31:\"SHOW_PRODUCT_INFO_MAIN_UPCOMING\";s:8:\"cfgvalue\";s:1:\"0\";}i:504;a:2:{s:6:\"cfgkey\";s:39:\"SHOW_PRODUCT_INFO_CATEGORY_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:505;a:2:{s:6:\"cfgkey\";s:44:\"SHOW_PRODUCT_INFO_CATEGORY_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:506;a:2:{s:6:\"cfgkey\";s:44:\"SHOW_PRODUCT_INFO_CATEGORY_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:507;a:2:{s:6:\"cfgkey\";s:35:\"SHOW_PRODUCT_INFO_CATEGORY_UPCOMING\";s:8:\"cfgvalue\";s:1:\"0\";}i:508;a:2:{s:6:\"cfgkey\";s:38:\"SHOW_PRODUCT_INFO_MISSING_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:509;a:2:{s:6:\"cfgkey\";s:43:\"SHOW_PRODUCT_INFO_MISSING_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"2\";}i:510;a:2:{s:6:\"cfgkey\";s:43:\"SHOW_PRODUCT_INFO_MISSING_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:511;a:2:{s:6:\"cfgkey\";s:34:\"SHOW_PRODUCT_INFO_MISSING_UPCOMING\";s:8:\"cfgvalue\";s:1:\"4\";}i:512;a:2:{s:6:\"cfgkey\";s:44:\"SHOW_PRODUCT_INFO_LISTING_BELOW_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:513;a:2:{s:6:\"cfgkey\";s:49:\"SHOW_PRODUCT_INFO_LISTING_BELOW_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:514;a:2:{s:6:\"cfgkey\";s:49:\"SHOW_PRODUCT_INFO_LISTING_BELOW_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"0\";}i:515;a:2:{s:6:\"cfgkey\";s:40:\"SHOW_PRODUCT_INFO_LISTING_BELOW_UPCOMING\";s:8:\"cfgvalue\";s:1:\"0\";}i:516;a:2:{s:6:\"cfgkey\";s:38:\"SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:517;a:2:{s:6:\"cfgkey\";s:43:\"SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:518;a:2:{s:6:\"cfgkey\";s:43:\"SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"3\";}i:519;a:2:{s:6:\"cfgkey\";s:30:\"SHOW_PRODUCT_INFO_ALL_PRODUCTS\";s:8:\"cfgvalue\";s:1:\"1\";}i:520;a:2:{s:6:\"cfgkey\";s:23:\"DEFINE_MAIN_PAGE_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:521;a:2:{s:6:\"cfgkey\";s:24:\"DEFINE_CONTACT_US_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:522;a:2:{s:6:\"cfgkey\";s:21:\"DEFINE_PRIVACY_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:523;a:2:{s:6:\"cfgkey\";s:26:\"DEFINE_SHIPPINGINFO_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:524;a:2:{s:6:\"cfgkey\";s:24:\"DEFINE_CONDITIONS_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:525;a:2:{s:6:\"cfgkey\";s:30:\"DEFINE_CHECKOUT_SUCCESS_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:526;a:2:{s:6:\"cfgkey\";s:29:\"DEFINE_DISCOUNT_COUPON_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:527;a:2:{s:6:\"cfgkey\";s:22:\"DEFINE_SITE_MAP_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:528;a:2:{s:6:\"cfgkey\";s:28:\"DEFINE_PAGE_NOT_FOUND_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:529;a:2:{s:6:\"cfgkey\";s:20:\"DEFINE_PAGE_2_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:530;a:2:{s:6:\"cfgkey\";s:20:\"DEFINE_PAGE_3_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:531;a:2:{s:6:\"cfgkey\";s:20:\"DEFINE_PAGE_4_STATUS\";s:8:\"cfgvalue\";s:1:\"1\";}i:532;a:2:{s:6:\"cfgkey\";s:21:\"EZPAGES_STATUS_HEADER\";s:8:\"cfgvalue\";s:1:\"1\";}i:533;a:2:{s:6:\"cfgkey\";s:21:\"EZPAGES_STATUS_FOOTER\";s:8:\"cfgvalue\";s:1:\"1\";}i:534;a:2:{s:6:\"cfgkey\";s:22:\"EZPAGES_STATUS_SIDEBOX\";s:8:\"cfgvalue\";s:1:\"0\";}i:535;a:2:{s:6:\"cfgkey\";s:24:\"EZPAGES_SEPARATOR_HEADER\";s:8:\"cfgvalue\";s:14:\"&nbsp;::&nbsp;\";}i:536;a:2:{s:6:\"cfgkey\";s:24:\"EZPAGES_SEPARATOR_FOOTER\";s:8:\"cfgvalue\";s:14:\"&nbsp;::&nbsp;\";}i:537;a:2:{s:6:\"cfgkey\";s:30:\"EZPAGES_SHOW_PREV_NEXT_BUTTONS\";s:8:\"cfgvalue\";s:1:\"2\";}i:538;a:2:{s:6:\"cfgkey\";s:27:\"EZPAGES_SHOW_TABLE_CONTENTS\";s:8:\"cfgvalue\";s:1:\"1\";}i:539;a:2:{s:6:\"cfgkey\";s:35:\"EZPAGES_DISABLE_HEADER_DISPLAY_LIST\";s:8:\"cfgvalue\";s:0:\"\";}i:540;a:2:{s:6:\"cfgkey\";s:35:\"EZPAGES_DISABLE_FOOTER_DISPLAY_LIST\";s:8:\"cfgvalue\";s:0:\"\";}i:541;a:2:{s:6:\"cfgkey\";s:39:\"EZPAGES_DISABLE_LEFTCOLUMN_DISPLAY_LIST\";s:8:\"cfgvalue\";s:0:\"\";}i:542;a:2:{s:6:\"cfgkey\";s:40:\"EZPAGES_DISABLE_RIGHTCOLUMN_DISPLAY_LIST\";s:8:\"cfgvalue\";s:0:\"\";}}',1270775303);
/*!40000 ALTER TABLE `zen_db_cache` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_email_archive`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
INSERT INTO `zen_ezpages` VALUES (1,1,'Gift Certificates','','','<p><img height=\"281\" hspace=\"6\" width=\"595\" align=\"middle\" alt=\"\" src=\"/myfiles/gift certificateLR draft2.jpg\" /></p>',0,0,1,0,9,0,14,0,0,0,0);
/*!40000 ALTER TABLE `zen_ezpages` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_featured`;
SET @saved_cs_client     = @@character_set_client;
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=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!40000 ALTER TABLE `zen_featured` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_files_uploaded`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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,'2008-05-31 18:41:55');
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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_hide_categories`
--

DROP TABLE IF EXISTS `zen_hide_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `zen_hide_categories` (
  `hide_categories_id` int(11) NOT NULL AUTO_INCREMENT,
  `categories_id` int(11) NOT NULL,
  `visibility_status` int(11) NOT NULL,
  PRIMARY KEY (`hide_categories_id`)
) ENGINE=MyISAM AUTO_INCREMENT=91 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `zen_hide_categories`
--

LOCK TABLES `zen_hide_categories` WRITE;
/*!40000 ALTER TABLE `zen_hide_categories` DISABLE KEYS */;
INSERT INTO `zen_hide_categories` VALUES (1,6,1),(2,4,2),(3,5,1),(4,7,0),(5,2,0),(6,1,0),(7,8,0),(8,10,0),(9,11,0),(10,21,2),(11,14,0),(12,12,0),(13,17,0),(14,3,0),(15,18,0),(16,19,0),(17,16,0),(18,25,1),(19,26,1),(20,24,1),(21,23,1),(22,13,0),(23,28,1),(24,29,0),(25,31,0),(26,32,0),(27,35,0),(28,33,0),(29,30,0),(30,36,1),(31,37,0),(32,34,0),(33,9,0),(34,40,0),(35,41,0),(36,43,0),(37,49,0),(38,56,0),(39,48,0),(40,55,0),(41,42,0),(42,44,0),(43,45,0),(44,46,0),(45,47,0),(46,52,0),(47,50,0),(48,53,0),(49,51,0),(50,57,0),(51,76,0),(52,77,0),(53,78,0),(54,79,0),(55,80,0),(56,82,0),(57,81,0),(58,83,0),(59,84,0),(60,58,0),(61,89,0),(62,88,0),(63,86,0),(64,87,0),(65,85,0),(66,90,0),(67,91,0),(68,92,0),(69,94,0),(70,97,0),(71,96,0),(72,98,0),(73,99,0),(74,106,0),(75,104,0),(76,105,0),(77,114,0),(78,93,0),(79,113,0),(80,108,0),(81,118,0),(82,115,0),(83,116,0),(84,122,0),(85,121,0),(86,107,0),(87,95,0),(88,123,0),(89,124,0),(90,125,0);
/*!40000 ALTER TABLE `zen_hide_categories` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_languages`;
SET @saved_cs_client     = @@character_set_client;
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=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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);
/*!40000 ALTER TABLE `zen_languages` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_layout_boxes`;
SET @saved_cs_client     = @@character_set_client;
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=107 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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,'mihluna','banner_box.php',0,0,0,0,0),(78,'mihluna','banner_box2.php',0,0,0,0,0),(79,'mihluna','banner_box_all.php',0,0,0,0,0),(80,'mihluna','best_sellers.php',0,0,0,0,0),(81,'mihluna','categories.php',0,1,20,0,0),(82,'mihluna','currencies.php',0,0,0,0,0),(83,'mihluna','document_categories.php',0,0,0,0,0),(84,'mihluna','ezpages.php',0,0,0,0,0),(85,'mihluna','featured.php',0,0,30,0,0),(86,'mihluna','information.php',0,0,0,0,0),(87,'mihluna','languages.php',0,0,0,0,0),(88,'mihluna','manufacturer_info.php',0,1,6,6,0),(89,'mihluna','manufacturers.php',0,1,5,2,0),(90,'mihluna','more_information.php',0,0,0,0,0),(91,'mihluna','music_genres.php',0,0,0,0,0),(92,'mihluna','order_history.php',0,0,0,0,0),(93,'mihluna','product_notifications.php',0,0,0,0,0),(94,'mihluna','record_companies.php',0,0,0,0,0),(95,'mihluna','reviews.php',0,0,0,0,0),(96,'mihluna','search.php',0,0,25,0,0),(97,'mihluna','search_header.php',0,1,20,2,0),(98,'mihluna','shopping_cart.php',0,0,0,0,0),(99,'mihluna','specials.php',0,0,0,0,0),(100,'mihluna','tell_a_friend.php',0,0,0,0,0),(101,'mihluna','whats_new.php',0,0,0,0,0),(102,'mihluna','whos_online.php',0,0,0,0,0),(106,'mihluna','yahootreemenu.php',0,1,0,0,0),(103,'mihluna','ch_categories.php',1,1,6,2,0),(104,'mihluna','login_box.php',0,0,0,0,0),(105,'mihluna','absolute_links.php',1,1,0,0,0);
/*!40000 ALTER TABLE `zen_layout_boxes` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_manufacturers`;
SET @saved_cs_client     = @@character_set_client;
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 AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
INSERT INTO `zen_manufacturers` VALUES (1,'Carolyn Magerl',NULL,'2008-06-10 00:05:48','2008-06-10 00:11:01'),(2,'Amy Clarke',NULL,'2008-06-10 00:11:27',NULL),(3,'Eden Scott',NULL,'2008-06-10 00:11:43',NULL),(4,'Jenny Mulder',NULL,'2008-06-10 00:12:00',NULL);
/*!40000 ALTER TABLE `zen_manufacturers` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_manufacturers_info`;
SET @saved_cs_client     = @@character_set_client;
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;
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 */;
INSERT INTO `zen_manufacturers_info` VALUES (1,1,'',0,NULL),(2,1,'',0,NULL),(3,1,'',0,NULL),(4,1,'',0,NULL);
/*!40000 ALTER TABLE `zen_manufacturers_info` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_media_clips`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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 AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
INSERT INTO `zen_newsletters` VALUES (1,'Test Email From Concept Laboratory','Please enjoy our website and come and visit us in person to soak up the atmosphere of The Gallery Eumundi.\r\n\r\nBest Regards\r\nThe Gallery','<p>Please enjoy our website and come and visit us in person to soak up the atmosphere of The Gallery Eumundi.</p>\r\n<p><b>Best Regards<br type=\"_moz\" />\r\n</b></p>\r\n<p><b>The Gallery</b></p>','newsletter','2008-08-26 03:14:07','2008-08-26 03:17:10',1,0),(2,'The Gallery eNews - March 2010','Test 2','<p>Test</p>','newsletter','2010-03-18 06:45:50','2010-03-18 06:54:12',1,0);
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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 '',
  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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!40000 ALTER TABLE `zen_orders` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_orders_products`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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');
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!40000 ALTER TABLE `zen_orders_total` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_paypal`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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=144 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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','0','Display Model Number on Product Info 0= off 1= on',1,1,'2008-06-11 01:05:34','2008-05-31 18:41:55',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(2,'Show Weight','SHOW_PRODUCT_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',1,2,'2008-06-10 00:46:24','2008-05-31 18:41:55',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','1','Display Attribute Weight on Product Info 0= off 1= on',1,3,NULL,'2008-05-31 18:41:55',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(4,'Show Manufacturer','SHOW_PRODUCT_INFO_MANUFACTURER','0','Display Manufacturer Name on Product Info 0= off 1= on',1,4,'2008-06-10 00:48:11','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-06-11 01:32:51','2008-05-31 18:41:55',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,'2008-06-10 00:46:45','2008-05-31 18:41:55',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,'2008-06-10 00:46:53','2008-05-31 18:41:55',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','0','Display Date Available on Product Info 0= off 1= on',1,9,'2008-06-10 00:47:03','2008-05-31 18:41:55',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,'2008-06-10 00:47:11','2008-05-31 18:41:55',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','0','Display URL on Product Info 0= off 1= on',1,11,'2008-06-10 00:47:19','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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','0','Display Starting At text on products with attributes Product Info 0= off 1= on',1,12,'2008-06-11 01:32:42','2008-05-31 18:41:55',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,'2008-06-10 00:47:37','2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55','',''),(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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,NULL,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',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,'2008-05-31 18:41:55',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), ');
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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 - General','product',1,'Y','','2008-05-31 18:41:55','2008-05-31 18:41:55'),(2,'Product - Music','product_music',1,'Y','','2008-05-31 18:41:55','2008-05-31 18:41:55'),(3,'Document - General','document_general',3,'N','','2008-05-31 18:41:55','2008-05-31 18:41:55'),(4,'Document - Product','document_product',3,'Y','','2008-05-31 18:41:55','2008-05-31 18:41:55'),(5,'Product - Free Shipping','product_free_shipping',1,'Y','','2008-05-31 18:41:55','2008-05-31 18:41:55');
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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 */;
INSERT INTO `zen_product_types_to_category` VALUES (1,12),(1,26),(1,5),(1,33),(1,35),(1,40),(1,41),(1,42),(1,43),(1,44),(1,45),(1,46),(1,47),(1,89),(1,99),(1,113),(1,114),(1,115),(1,116),(1,117),(1,118);
/*!40000 ALTER TABLE `zen_product_types_to_category` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_products`;
SET @saved_cs_client     = @@character_set_client;
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_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_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',
  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=728 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 (23,1,0,'','Artists/playingwithoutmusic.jpg','0.0000',0,'2008-07-07 08:09:44','2009-07-31 00:49:36',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(8,1,0,'','Artists/IMG_1088.jpg','0.0000',0,'2008-07-03 21:37:48','2008-07-07 08:33:51',NULL,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,'0.0000',0,1,0,0,0,0,0),(24,1,0,'','Artists/midlifecrisisineumundi.gif','0.0000',0,'2008-07-07 08:19:24','2009-07-31 00:53:45',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(7,1,0,'','Artists/caught_up_in_the_music.gif','0.0000',0,'2008-07-02 08:52:23','2010-03-12 21:57:13',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,31,0,0,'0.0000',8,1,0,0,0,0,0),(5,1,0,'','','0.0000',0,'2008-06-17 20:40:39','2008-06-17 20:43:00',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',21,1,0,0,0,0,0),(10,1,0,'','Artists/singingupcountry 72DPI.jpg','0.0000',0,'2008-07-07 06:59:05','2008-11-01 22:48:45',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(11,1,0,'','Artists/Barammundi Dreaming 72DPI.jpg','0.0000',0,'2008-07-07 07:04:32','2009-05-13 10:07:45',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(12,1,0,'','Artists/bushscape.gif','0.0000',0,'2008-07-07 07:08:03',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(13,1,0,'','Artists/embrace.gif','0.0000',0,'2008-07-07 07:10:27',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(122,1,0,'','Artists/Concordant 72DPI.jpg','0.0000',0,'2008-07-25 09:57:18','2009-05-13 06:53:42',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(15,1,0,'','Artists/pornum.gif','0.0000',0,'2008-07-07 07:15:11',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(121,1,0,'','Artists/Circumscription 72DPI.jpg','0.0000',0,'2008-07-25 09:52:16','2009-05-13 06:53:37',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(19,1,0,'','Artists/pornumathoy.jpg','0.0000',0,'2008-07-07 07:39:17','2008-07-07 07:40:35',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(22,1,0,'','Artists/mosquitomen.jpg','0.0000',0,'2008-07-07 07:47:29',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(25,1,0,'','Artists/tante.gif','0.0000',0,'2008-07-07 08:26:36','2009-07-31 00:49:49',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(26,1,0,'','Artists/portraitofmymotherl.jpg','0.0000',0,'2008-07-07 08:29:36','2009-07-31 00:49:44',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(27,1,0,'','Artists/shifting_sands.jpg','0.0000',0,'2008-07-07 08:31:20','2008-07-11 06:47:32',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(28,1,0,'','Artists/untitled.jpg','0.0000',0,'2008-07-07 08:31:57','2009-07-31 00:50:06',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(29,1,0,'','Artists/girlwithpricklypear.jpg','0.0000',0,'2008-07-07 08:34:39','2008-10-17 07:55:37',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(31,1,0,'','Artists/silent_starry_night.jpg','0.0000',0,'2008-07-07 08:38:25','2008-07-11 06:47:51',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(124,1,0,'','Artists/Chiffre I 72DPI.jpg','0.0000',0,'2008-07-26 22:41:51','2009-05-13 06:53:22',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(33,1,0,'','Artists/sea_of_hope.jpg','0.0000',0,'2008-07-07 08:42:43',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(34,1,0,'','Artists/Seasonal-Change.gif','0.0000',0,'2008-07-07 08:48:22',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(123,1,0,'','','0.0000',0,'2008-07-25 10:00:49','2008-07-26 20:12:56',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(37,1,0,'','Artists/meandering.gif','0.0000',0,'2008-07-07 08:54:33',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(38,1,0,'','Artists/girlatpiano2.jpg','0.0000',0,'2008-07-07 08:54:47','2008-09-02 22:05:34',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(125,1,0,'','Artists/Chiffre II 72DPI.jpg','0.0000',0,'2008-07-27 06:32:43','2009-05-13 06:53:27',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(40,1,0,'','Artists/outback.gif','0.0000',0,'2008-07-07 08:57:21',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(41,1,0,'','Artists/gathering_mussels.gif','0.0000',0,'2008-07-07 09:00:30','2008-07-11 06:48:43',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(42,1,0,'','Artists/wet_season.gif','0.0000',0,'2008-07-07 09:03:18','2008-07-07 09:09:23',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(43,1,0,'','Artists/sharing_fruits_&_berries.gif','0.0000',0,'2008-07-07 09:06:51',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(44,1,0,'','Artists/Poppies-and-Apples.jpg','0.0000',0,'2008-07-07 09:10:35',NULL,NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',11,1,0,0,0,0,0),(45,1,0,'','Artists/ulysses_woman.gif','0.0000',0,'2008-07-07 09:13:58',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(46,1,0,'','Artists/rainforest_walk.gif','0.0000',0,'2008-07-07 09:32:09','2009-09-18 20:10:10',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(47,1,0,'','Artists/Banksia-Noosa-H60_5X50 72DPI.jpg','0.0000',0,'2008-07-07 09:32:37','2008-09-02 21:56:16',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',11,1,0,0,0,0,0),(48,1,0,'','Artists/crossroads.gif','0.0000',0,'2008-07-07 09:34:49',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(160,1,0,'','Artists/SundancersH90XW120 72dpi.jpg','0.0000',0,'2008-08-29 07:34:36','2008-08-29 07:38:30',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',11,1,0,0,0,0,0),(50,1,0,'','Artists/meeting_place.gif','0.0000',0,'2008-07-07 09:38:00','2008-08-03 06:21:26',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(51,1,0,'','Artists/protecting_territories.jpg','0.0000',0,'2008-07-07 09:40:41','2008-08-03 06:28:26',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(52,1,0,'','Artists/mythical_being.jpg','0.0000',0,'2008-07-07 09:43:51','2008-08-06 23:02:45',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,110,0,0,'0.0000',25,1,0,0,0,0,0),(53,1,0,'','Artists/visiting_indigenous_culture.jpg','0.0000',0,'2008-07-07 09:47:48',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(54,1,0,'','Artists/desert_country.jpg','0.0000',0,'2008-07-07 09:51:14',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(55,1,0,'','Artists/after_the_summer_rain.jpg','0.0000',0,'2008-07-07 09:54:11',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(56,1,0,'','Artists/desert_walk.jpg','0.0000',0,'2008-07-07 09:56:34',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(57,1,0,'','Artists/listening_to_the_land.jpg','0.0000',0,'2008-07-07 09:59:18',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(58,1,0,'','Artists/i_love_a_sunburnt_country.jpg','0.0000',0,'2008-07-07 10:02:07',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(59,1,0,'','Artists/always_watching.jpg','0.0000',0,'2008-07-07 10:04:23','2008-07-07 10:10:20',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(60,1,0,'','Artists/symbols_of_life.jpg','0.0000',0,'2008-07-07 10:07:02',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(61,1,0,'','Artists/take_only_what_you_need.jpg','0.0000',0,'2008-07-07 10:09:19',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',25,1,0,0,0,0,0),(62,1,0,'','Artists/i-want-to-stay-1.jpg','0.0000',0,'2008-07-09 04:49:57','2010-03-12 21:47:13',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,32,0,0,'0.0000',8,1,0,0,0,0,0),(63,1,0,'','Artists/red-playground-3.jpg','0.0000',0,'2008-07-09 04:55:26','2009-08-25 20:57:03',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,34,0,0,'0.0000',8,1,0,0,0,0,0),(64,1,0,'','Artists/phenomena-twilight-creek.jpg','0.0000',0,'2008-07-09 04:58:18','2009-08-25 20:54:59',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,38,0,0,'0.0000',8,1,0,0,0,0,0),(73,1,0,'','Artists/sarah_and_pet.jpg','0.0000',0,'2008-07-09 08:37:56',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(72,1,0,'','Artists/monets_garden.gif','0.0000',0,'2008-07-09 08:33:34',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(67,1,0,'','Artists/the_poetry_of_love.jpg','0.0000',0,'2008-07-09 08:17:49','2009-03-07 01:20:08',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(68,1,0,'','Artists/the_joy_of_love.jpg','0.0000',0,'2008-07-09 08:21:01','2009-03-07 01:15:23',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(69,1,0,'','Artists/remembering.gif','0.0000',0,'2008-07-09 08:24:04','2008-11-12 06:44:28',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(70,1,0,'','Artists/harbour_view.gif','0.0000',0,'2008-07-09 08:27:51',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(71,1,0,'','Artists/the_gift_of_love.gif','0.0000',0,'2008-07-09 08:30:14','2009-03-07 01:18:50',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(74,1,0,'','Artists/Mixed Media Platter & Photograph.jpg','0.0000',0,'2008-07-09 08:38:35','2008-11-12 07:34:12',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',23,1,0,0,0,0,0),(159,1,0,'','Artists/Happy Hour H70XW90 70dpi.jpg','0.0000',0,'2008-08-29 07:23:14','2008-08-29 07:31:05',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',11,1,0,0,0,0,0),(76,1,0,'','Artists/Notes_of_Mozart_-_Ink.jpg','0.0000',0,'2008-07-09 08:57:44','2008-10-22 02:58:59',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(77,1,0,'','Artists/Jazz_Played_All_Night.jpg','0.0000',0,'2008-07-09 09:03:04','2009-06-07 00:20:04',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(78,1,0,'','Artists/Crimson-Blossoms.jpg','0.0000',0,'2008-07-09 09:07:32','2009-06-07 00:19:34',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(79,1,0,'','Artists/tea-in_the-greenhouse.jpg','0.0000',0,'2008-07-09 09:10:57','2008-10-24 00:02:07',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(80,1,0,'','Artists/Tea-Toast-Daisies.jpg','0.0000',0,'2008-07-09 09:15:33','2009-03-22 18:23:22',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(81,1,0,'','Artists/the-world.jpg','0.0000',0,'2008-07-10 10:05:08',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',27,1,0,0,0,0,0),(82,1,0,'','Artists/red_house.jpg','0.0000',0,'2008-07-10 10:06:43',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',27,1,0,0,0,0,0),(83,1,0,'','Artists/turning.jpg','0.0000',0,'2008-07-10 10:08:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',27,1,0,0,0,0,0),(84,1,0,'','','0.0000',0,'2008-07-10 10:10:58',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',27,1,0,0,0,0,0),(85,1,0,'','Artists/angels_on_the_desert_sand.jpg','0.0000',0,'2008-07-10 10:17:59',NULL,NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',16,1,0,0,0,0,0),(86,1,0,'','Artists/ebb_tide 72DPI.jpg','0.0000',0,'2008-07-11 04:47:40','2009-04-29 07:12:59',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',13,1,0,0,0,0,0),(87,1,0,'','Artists/beachside v2 72DPI.jpg','0.0000',0,'2008-07-11 04:50:43','2009-04-29 07:09:32',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',13,1,0,0,0,0,0),(88,1,0,'','Artists/blue_bay 72DPI.jpg','0.0000',0,'2008-07-11 04:54:53','2009-04-29 07:10:35',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',13,1,0,0,0,0,0),(89,1,0,'','Artists/calm 72DPI.jpg','0.0000',0,'2008-07-11 04:58:21','2009-04-29 07:11:57',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',13,1,0,0,0,0,0),(90,1,0,'','Artists/bedroom_prompt.jpg','0.0000',0,'2008-07-11 05:43:37','2008-11-12 07:33:21',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',23,1,0,0,0,0,0),(91,1,0,'','Artists/Jen_ExWomen1.gif','0.0000',0,'2008-07-11 05:58:27',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',26,1,0,0,0,0,0),(92,1,0,'','Artists/Jen_ExWomen2.gif','0.0000',0,'2008-07-11 06:03:35',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',26,1,0,0,0,0,0),(93,1,0,'','Artists/Jen_ExWomen5.gif','0.0000',0,'2008-07-11 06:05:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',26,1,0,0,0,0,0),(126,1,0,'','Artists/Chiffre III 72DPI.jpg','0.0000',0,'2008-07-27 06:34:28','2009-05-13 06:53:32',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(98,1,0,'','Artists/Jen_ExBird4.gif','0.0000',0,'2008-07-11 06:26:02','2009-02-02 07:19:15',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',26,1,0,0,0,0,0),(99,1,0,'','Artists/Jen_ExBird5.gif','0.0000',0,'2008-07-11 06:29:04','2009-10-22 03:54:44',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',26,1,0,0,0,0,0),(101,1,0,'','Artists/Jen-Womens-Bus_3.gif','0.0000',0,'2008-07-11 06:33:38',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',26,1,0,0,0,0,0),(102,1,0,'','Artists/Jen-Womens-Bus_4.gif','0.0000',0,'2008-07-11 06:39:34',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',26,1,0,0,0,0,0),(141,1,0,'','Artists/azure.jpg','0.0000',0,'2008-08-26 10:05:29','2008-09-12 03:16:42',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',35,1,0,0,0,0,0),(142,1,0,'','Artists/rogue.jpg','0.0000',0,'2008-08-26 10:06:54','2008-09-12 03:17:55',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',35,1,0,0,0,0,0),(105,1,0,'','Artists/more secret places 90DPI.jpg','0.0000',0,'2008-07-13 09:58:12','2009-02-02 06:47:16',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',68,1,0,0,0,0,0),(106,1,0,'','Artists/into the mystic  72 DPI.jpg','0.0000',0,'2008-07-13 10:04:06','2009-08-25 20:54:32',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,39,0,0,'0.0000',8,1,0,0,0,0,0),(107,1,0,'','Artists/vaduz.jpg','0.0000',0,'2008-07-14 03:14:27','2008-07-27 08:49:22',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(108,1,0,'','Artists/vaduz_2.jpg','0.0000',0,'2008-07-14 03:17:27','2008-07-25 09:39:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(109,1,0,'','Artists/Mara.jpg','0.0000',0,'2008-07-14 03:21:53','2008-07-25 09:13:02',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(110,1,0,'','Artists/lysis.jpg','0.0000',0,'2008-07-14 03:24:25','2009-05-13 06:54:32',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(111,1,0,'','Artists/Silur IV 72DPI.jpg','0.0000',0,'2008-07-14 03:50:16','2009-06-12 03:00:58',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(112,1,0,'','Artists/Silur VI 72DPI.jpg','0.0000',0,'2008-07-14 03:52:37','2009-06-12 03:01:25',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(113,1,0,'','Artists/Silur V 72DPI.jpg','0.0000',0,'2008-07-14 03:55:02','2009-06-12 03:01:48',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(114,1,0,'','Artists/exlex_1.jpg','0.0000',0,'2008-07-14 03:58:04','2008-07-25 09:10:40',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(115,1,0,'','Artists/exlex_2.jpg','0.0000',0,'2008-07-14 03:59:47','2008-07-25 09:11:17',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(117,1,0,'','Artists/untitled_1.jpg','0.0000',0,'2008-07-14 04:05:23','2009-05-13 06:53:56',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(118,1,0,'','Artists/untitled_2.jpg','0.0000',0,'2008-07-14 04:08:09','2009-05-13 06:54:02',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(119,1,0,'','Artists/untitled_3.jpg','0.0000',0,'2008-07-14 04:10:45','2009-05-13 06:54:08',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(120,1,0,'','Artists/blue_bay_on_paper 72DPI.jpg','0.0000',0,'2008-07-15 06:22:59','2009-04-29 07:03:31',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',13,1,0,0,0,0,0),(145,1,0,'','Artists/A Shadow of a Doubt 100DPI.jpg','0.0000',0,'2008-08-27 20:32:40','2010-02-10 23:21:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(140,1,0,'','Artists/aqua.jpg','0.0000',0,'2008-08-26 10:00:16','2008-09-12 03:17:08',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',35,1,0,0,0,0,0),(129,1,0,'','Artists/bedroom_prompt.jpg','0.0000',0,'2008-08-23 22:28:15','2008-11-12 07:32:25',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',33,1,0,0,0,0,0),(130,1,0,'','Artists/Mixed Media Platter & Photograph.jpg','0.0000',0,'2008-08-23 22:31:29','2008-11-12 07:30:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',33,1,0,0,0,0,0),(131,1,0,'','Artists/Drop Koalas.jpg','0.0000',0,'2008-08-23 22:50:26','2009-01-29 02:15:59',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(132,1,0,'','Artists/Chick Magnet 060808.jpg','0.0000',0,'2008-08-23 22:51:31','2008-10-17 07:50:35',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(133,1,0,'','Artists/1of60 magic minutes72DPI.jpg','0.0000',0,'2008-08-23 23:23:07','2010-03-12 21:46:45',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,46,0,0,'0.0000',8,1,0,0,0,0,0),(134,1,0,'','Artists/beautiful-black-swan-72-DPI.jpg','0.0000',0,'2008-08-23 23:37:42','2009-08-25 20:54:12',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,40,0,0,'0.0000',8,1,0,0,0,0,0),(135,1,0,'','Artists/GeorgMollFlyFlowWEB.jpg','0.0000',0,'2008-08-23 23:59:14','2009-08-25 20:55:22',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,37,0,0,'0.0000',8,1,0,0,0,0,0),(136,1,0,'','Artists/I_was_wondering_where_you_wereWEB.jpg','0.0000',0,'2008-08-24 00:06:13','2010-03-12 21:58:14',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,28,0,0,'0.0000',8,1,0,0,0,0,0),(137,1,0,'','Artists/sunshine-road-trip-WEB.jpg','0.0000',0,'2008-08-24 00:31:49','2009-08-25 20:56:18',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,36,0,0,'0.0000',8,1,0,0,0,0,0),(138,1,0,'','Artists/sunlit-mountainWEB.jpg','0.0000',0,'2008-08-24 00:33:13','2009-08-25 20:56:39',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,35,0,0,'0.0000',8,1,0,0,0,0,0),(139,1,0,'','Artists/abcds.jpg','0.0000',0,'2008-08-24 00:47:44','2008-11-24 20:11:40',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(143,1,0,'','Artists/silverback.jpg','0.0000',0,'2008-08-26 10:08:17','2008-09-12 03:18:27',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',35,1,0,0,0,0,0),(144,1,0,'','Artists/stealth.jpg','0.0000',0,'2008-08-26 10:09:26','2008-09-12 03:18:55',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',35,1,0,0,0,0,0),(146,1,0,'','Artists/BA 100DPI.jpg','0.0000',0,'2008-08-27 21:54:29','2010-02-10 23:22:16',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(147,1,0,'','Artists/Me, Myself and I 72DPI.jpg','0.0000',0,'2008-08-27 22:38:43','2010-02-10 23:25:28',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(148,1,0,'','Artists/Bon Voyage.jpg','0.0000',0,'2008-08-27 23:31:12','2010-02-10 23:22:57',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(149,1,0,'','Artists/Hello Sailor.jpg','0.0000',0,'2008-08-27 23:42:16','2010-02-10 23:23:48',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(150,1,0,'','Artists/On A Clear Day.jpg','0.0000',0,'2008-08-27 23:58:50','2010-02-10 23:26:00',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(151,1,0,'','Artists/The Great Escape 200DPI.jpg','0.0000',0,'2008-08-28 00:03:25','2010-02-10 23:27:19',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(152,1,0,'','Artists/The_Empty_Bowl 200DPI.jpg','0.0000',0,'2008-08-28 07:08:42','2008-12-30 01:41:55',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(153,1,0,'','Artists/Exodus 72DPI.jpg','0.0000',0,'2008-08-28 07:31:52','2008-12-30 01:42:00',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(154,1,0,'','Artists/Long Walk to Freedom 72DPI.jpg','0.0000',0,'2008-08-28 07:35:03','2009-09-18 20:12:27',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(155,1,0,'','Artists/Glasshouse_Mountain 200DPI.jpg','0.0000',0,'2008-08-28 07:39:03','2009-09-18 20:14:06',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(156,1,0,'','Artists/a grey day in ipswich 72DPI.jpg','0.0000',0,'2008-08-28 08:31:55','2009-02-11 22:51:32',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(157,1,0,'','Artists/windorah_sandhill_II 72DPI.jpg','0.0000',0,'2008-08-28 08:43:14','2009-09-19 00:47:02',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(158,1,0,'','Artists/track_to_glen_davis_nsw.JPG','0.0000',0,'2008-08-28 08:46:09','2009-02-11 20:44:30',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(161,1,0,'','Artists/Eumundi Markets H66XW102 Acrylic 72dpi.jpg','0.0000',0,'2008-08-29 07:42:50',NULL,NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',11,1,0,0,0,0,0),(164,1,0,'','Artists/Noosa Banksia H60xW50 72dpi.jpg','0.0000',0,'2008-09-02 21:51:27','2008-09-02 21:53:55',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',11,1,0,0,0,0,0),(165,1,0,'','Artists/At the Cafe H70xW90 72dpi.jpg','0.0000',0,'2008-09-02 22:00:33','2008-09-02 22:03:52',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',11,1,0,0,0,0,0),(166,1,0,'','Artists/catalogue-page-1WEB.jpg','0.0000',0,'2008-09-12 03:07:40',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',35,1,0,0,0,0,0),(167,1,0,'','Artists/catalogue-page-2WEB.jpg','0.0000',0,'2008-09-12 03:11:17',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',35,1,0,0,0,0,0),(168,1,0,'','Artists/catalogue-page-3WEB.jpg','0.0000',0,'2008-09-12 03:12:50',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',35,1,0,0,0,0,0),(169,1,0,'','Artists/catalogue-page-4WEB.jpg','0.0000',0,'2008-09-12 03:13:39',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',35,1,0,0,0,0,0),(170,1,0,'','Artists/catalogue-page-5-WEB.jpg','0.0000',0,'2008-09-12 03:14:32',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',35,1,0,0,0,0,0),(171,1,0,'','Artists/Nude with Red Ribbon 72DPI.jpg','0.0000',0,'2008-10-04 22:49:18','2008-10-04 22:59:24',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',54,1,0,0,0,0,0),(172,1,0,'','Artists/Wilpena Pound I and II 72DPI.jpg','0.0000',0,'2008-10-04 23:05:28',NULL,NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',54,1,0,0,0,0,0),(173,1,0,'','Artists/Bribie Island 72 DPI.jpg','0.0000',0,'2008-10-04 23:09:53',NULL,NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',54,1,0,0,0,0,0),(174,1,0,'','Artists/Maroochy River 72 DPI.jpg','0.0000',0,'2008-10-04 23:15:05',NULL,NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',54,1,0,0,0,0,0),(175,1,0,'','Artists/IMG_0535.jpg','0.0000',0,'2008-10-08 21:59:22',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',41,1,0,0,0,0,0),(176,1,0,'','Artists/IMG_0537.jpg','0.0000',0,'2008-10-08 22:00:20',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',41,1,0,0,0,0,0),(177,1,0,'','Artists/July 394.jpg','0.0000',0,'2008-10-09 00:03:47',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',41,1,0,0,0,0,0),(178,1,0,'','Artists/new photos 355.jpg','0.0000',0,'2008-10-09 00:06:59',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',41,1,0,0,0,0,0),(179,1,0,'','Artists/IMG_0517.jpg','0.0000',0,'2008-10-09 00:09:25',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',41,1,0,0,0,0,0),(180,1,0,'','Artists/IMG_0520.jpg','0.0000',0,'2008-10-09 00:10:31',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',41,1,0,0,0,0,0),(181,1,0,'','Artists/Tulips 72 DPI.jpg','0.0000',0,'2008-10-09 00:14:45','2008-10-09 00:19:24',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',46,1,0,0,0,0,0),(182,1,0,'','Artists/PICT0061-1 72 DPI.jpg','0.0000',0,'2008-10-09 00:25:58','2008-10-09 00:38:47',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',46,1,0,0,0,0,0),(183,1,0,'','Artists/Serenity.JPG','0.0000',0,'2008-10-09 00:28:32',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',46,1,0,0,0,0,0),(184,1,0,'','Artists/PICT0038-1 72 DPI.jpg','0.0000',0,'2008-10-09 00:30:41',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',46,1,0,0,0,0,0),(185,1,0,'','Artists/Rising Up 72 DPI.jpg','0.0000',0,'2008-10-09 00:33:14',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',46,1,0,0,0,0,0),(186,1,0,'','Artists/PETRAI FERGUSON 22 72 DPI.jpg','0.0000',0,'2008-10-09 00:36:04','2008-10-09 00:38:07',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',46,1,0,0,0,0,0),(187,1,0,'','Artists/THE FINAL ENCOUNTER 72 DPI.jpg','0.0000',0,'2008-10-09 00:56:00',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',42,1,0,0,0,0,0),(188,1,0,'','Artists/FIRST BLOOD 72 DPI.jpg','0.0000',0,'2008-10-09 00:57:33',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',42,1,0,0,0,0,0),(189,1,0,'','Artists/TURBULENCE 72 DPI.jpg','0.0000',0,'2008-10-09 00:59:08',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',42,1,0,0,0,0,0),(190,1,0,'','Artists/FOXTAILS AND FOG 72 DPI.jpg','0.0000',0,'2008-10-09 01:03:35',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',42,1,0,0,0,0,0),(191,1,0,'','Artists/TO THE BACK OF BEYOND 72 DPI.jpg','0.0000',0,'2008-10-09 01:05:02',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',42,1,0,0,0,0,0),(192,1,0,'','Artists/TRAMMING IT 72 DPI.jpg','0.0000',0,'2008-10-09 01:06:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',42,1,0,0,0,0,0),(193,1,0,'','Artists/RIMG0200 72 DPI.jpg','0.0000',0,'2008-10-09 01:12:08','2008-10-09 01:29:23',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',44,1,0,0,0,0,0),(194,1,0,'','Artists/RIMG0687 72 DPI.jpg','0.0000',0,'2008-10-09 01:14:14','2008-10-09 01:28:33',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',44,1,0,0,0,0,0),(195,1,0,'','Artists/RIMG0666_1 72 DPI.jpg','0.0000',0,'2008-10-09 01:17:13','2008-10-09 01:27:58',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',44,1,0,0,0,0,0),(196,1,0,'','Artists/RIMG0668 72 DPI.jpg','0.0000',0,'2008-10-09 01:18:15','2008-10-09 01:29:59',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',44,1,0,0,0,0,0),(197,1,0,'','Artists/Guinea Fowl at Sapphire 4 72DPI.jpg','0.0000',0,'2008-10-09 01:36:58','2008-10-09 01:46:38',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',43,1,0,0,0,0,0),(198,1,0,'','Artists/Sacred Scavengers of the City, reworked.jpg','0.0000',0,'2008-10-09 01:39:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',43,1,0,0,0,0,0),(199,1,0,'','Artists/Sleeping Out at Sapphire.jpg','0.0000',0,'2008-10-09 01:40:47',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',43,1,0,0,0,0,0),(200,1,0,'','Artists/Night Owl.jpg','0.0000',0,'2008-10-09 01:41:58',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',43,1,0,0,0,0,0),(201,1,0,'','Artists/The dream was about....JPG','0.0000',0,'2008-10-09 01:55:35',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',45,1,0,0,0,0,0),(202,1,0,'','Artists/Rich are the rooms....JPG','0.0000',0,'2008-10-09 01:58:01','2009-02-04 04:25:15',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',45,1,0,0,0,0,0),(203,1,0,'','Artists/Shaking down whole....JPG','0.0000',0,'2008-10-09 02:04:28','2008-11-16 19:59:23',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',45,1,0,0,0,0,0),(204,1,0,'','Artists/The light glides....JPG','0.0000',0,'2008-10-09 02:07:26',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',45,1,0,0,0,0,0),(205,1,0,'','Artists/With the plains....JPG','0.0000',0,'2008-10-09 02:09:50',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',45,1,0,0,0,0,0),(206,1,0,'','Artists/Summer unrolls its nature strips like carpets 72DPI.jpg','0.0000',0,'2008-10-09 02:13:34','2008-11-16 19:58:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',45,1,0,0,0,0,0),(207,1,0,'','Artists/A frog gulps on the path earth 72DPI.jpg','0.0000',0,'2008-10-09 02:17:00','2008-10-28 21:41:43',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',45,1,0,0,0,0,0),(208,1,0,'','Artists/SPearce_Abyss 72 DPI.jpg','0.0000',0,'2008-10-09 02:33:10',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',47,1,0,0,0,0,0),(209,1,0,'','Artists/SPearce_RiverStones 72 DPI.jpg','0.0000',0,'2008-10-09 02:34:37',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',47,1,0,0,0,0,0),(210,1,0,'','Artists/SPearce_Emerging 72 DPI.jpg','0.0000',0,'2008-10-09 02:36:10',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',47,1,0,0,0,0,0),(211,1,0,'','Artists/SPearce_Gorge 72 DPI.jpg','0.0000',0,'2008-10-09 02:37:19',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',47,1,0,0,0,0,0),(212,1,0,'','Artists/SPearce_Hanging 72 DPI.jpg','0.0000',0,'2008-10-09 02:39:01',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',47,1,0,0,0,0,0),(213,1,0,'','Artists/BRYAN McDONNELL Country Dew in Overcast Skies 109x48.jpg','0.0000',0,'2008-10-16 02:50:28','2008-10-16 02:52:46',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',52,1,0,0,0,0,0),(214,1,0,'','Artists/Whispers Scatter over Lost Memories 82x102.jpg','0.0000',0,'2008-10-16 03:09:01','2008-10-17 07:23:52',NULL,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,'0.0000',0,1,0,0,0,0,0),(215,1,0,'','Artists/Blades of Grass Stand Tall Along the River Bank.jpg','0.0000',0,'2008-10-16 03:11:27','2008-10-16 03:23:54',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',52,1,0,0,0,0,0),(216,1,0,'','Artists/BRYAN McDONNELL Childhood Pools in Times Past 67x97.jpg','0.0000',0,'2008-10-16 03:15:19',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',52,1,0,0,0,0,0),(217,1,0,'','Artists/Impressions on the Banks of the Dam 97x67.jpg','0.0000',0,'2008-10-16 03:29:03',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',52,1,0,0,0,0,0),(218,1,0,'','Artists/Sunlights Soft Touch on the Vineyard 98x68.jpg','0.0000',0,'2008-10-16 03:30:17',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',52,1,0,0,0,0,0),(219,1,0,'','Artists/The Muse.jpg','0.0000',0,'2008-10-17 07:41:36',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',50,1,0,0,0,0,0),(220,1,0,'','Artists/Alex.jpg','0.0000',0,'2008-10-17 07:43:02',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',50,1,0,0,0,0,0),(221,1,0,'','Artists/Eliza.jpg','0.0000',0,'2008-10-17 07:44:50','2008-10-21 20:43:20',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',50,1,0,0,0,0,0),(222,1,0,'','Artists/I Saw Her Walking Barefoot on the Beach.jpg','0.0000',0,'2008-10-17 07:47:42',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',50,1,0,0,0,0,0),(223,1,0,'','Artists/Dam Cecil 141008.jpg','0.0000',0,'2008-10-17 07:53:27','2010-02-16 20:59:16',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(224,1,0,'','Artists/IDA.jpg','0.0000',0,'2008-10-17 09:42:46',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',51,1,0,0,0,0,0),(225,1,0,'','Artists/PENNY.jpg','0.0000',0,'2008-10-17 09:44:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',51,1,0,0,0,0,0),(226,1,0,'','Artists/JEMINMA.jpg','0.0000',0,'2008-10-17 09:46:14',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',51,1,0,0,0,0,0),(227,1,0,'','Artists/LUCY.jpg','0.0000',0,'2008-10-17 09:47:23','2008-10-21 21:29:56',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',51,1,0,0,0,0,0),(228,1,0,'','Artists/SAM.jpg','0.0000',0,'2008-10-17 09:48:48','2008-10-17 09:55:43',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',51,1,0,0,0,0,0),(229,1,0,'','Artists/Sunlight on the Waterlillies.jpg','0.0000',0,'2008-10-17 09:52:38',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',51,1,0,0,0,0,0),(230,1,0,'','Artists/Sunshine on the Waterlillies.jpg','0.0000',0,'2008-10-17 09:54:03',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',51,1,0,0,0,0,0),(231,1,0,'','Artists/WintersLastFireandNotesofSpringSingintheAir.jpg','0.0000',0,'2008-10-21 21:58:21','2008-10-21 22:01:38',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',49,1,0,0,0,0,0),(232,1,0,'','Artists/TheSongwasWhiteandHer BreathwasSilver .jpg','0.0000',0,'2008-10-21 22:07:55',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',49,1,0,0,0,0,0),(233,1,0,'','Artists/UpontheYellowLatticeParchmentLinesofMusic.jpg','0.0000',0,'2008-10-21 22:12:17','2009-01-06 19:56:39',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',49,1,0,0,0,0,0),(234,1,0,'','Artists/PLAYING_TO_THE_RHODODENDRONS.jpg','0.0000',0,'2008-10-21 22:20:30','2008-10-21 22:55:38',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',49,1,0,0,0,0,0),(235,1,0,'','Artists/Crimson Blossoms of Potted Geraniums.jpg','0.0000',0,'2008-10-21 22:37:43',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',49,1,0,0,0,0,0),(236,1,0,'','Artists/Harpsicord Keys & Goblets of Mulled Wine.jpg','0.0000',0,'2008-10-21 22:41:20',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',49,1,0,0,0,0,0),(237,1,0,'','Artists/SONGS OF OWLS & PEA GREEN BOATS.jpg','0.0000',0,'2008-10-21 22:42:54','2008-10-21 22:47:10',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',49,1,0,0,0,0,0),(238,1,0,'','Artists/Every Path Has Music.jpg','0.0000',0,'2008-10-22 00:59:48','2009-06-07 00:12:34',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(239,1,0,'','Artists/Music Around Us.jpg','0.0000',0,'2008-10-22 01:00:58','2009-06-07 00:14:59',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(240,1,0,'','Artists/Ringtones In Our Life.jpg','0.0000',0,'2008-10-22 01:02:09','2009-02-09 19:44:19',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(241,1,0,'','Artists/My_Favourite_Chair.jpg','0.0000',0,'2008-10-22 02:47:42','2009-03-22 18:22:41',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(242,1,0,'','Artists/Bflat__and__THE_INNOCENCE_OF_MANKIND.jpg','0.0000',0,'2008-10-22 02:50:14','2009-06-07 00:19:06',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(243,1,0,'','Artists/Summers Song  Inks.jpg','0.0000',0,'2008-10-22 03:05:42','2009-06-07 00:21:10',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(244,1,0,'','Artists/The Red Piano Stool.jpg','0.0000',0,'2008-10-22 03:07:24','2009-06-07 00:21:18',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(245,1,0,'','Artists/A. NATASHA KHM 1.jpg','0.0000',0,'2008-10-22 03:30:51',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(246,1,0,'','Artists/A. NATASHA KHM 4.jpg','0.0000',0,'2008-10-22 03:35:51',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(247,1,0,'','Artists/Red Vase.jpg','0.0000',0,'2008-10-22 03:40:14',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(248,1,0,'','Artists/Pagoda.jpg','0.0000',0,'2008-10-22 03:46:22',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(249,1,0,'','Artists/Eddy Teddy Freddy.jpg','0.0000',0,'2008-10-22 03:51:03',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(250,1,0,'','Artists/Acrobats.jpg','0.0000',0,'2008-10-22 03:53:50',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(251,1,0,'','Artists/its all about the smile.jpg','0.0000',0,'2008-10-22 03:57:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(252,1,0,'','Artists/A. NATASHA KHM 5.jpg','0.0000',0,'2008-10-22 03:59:37','2008-10-22 04:34:28',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(253,1,0,'','Artists/Cheer up Firefly.jpg','0.0000',0,'2008-10-22 04:02:55','2008-10-22 04:06:41',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(254,1,0,'','Artists/A. NATASHA KHM 7.jpg','0.0000',0,'2008-10-22 04:09:48',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(255,1,0,'','Artists/Fish Faces.jpg','0.0000',0,'2008-10-22 04:12:15',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(256,1,0,'','Artists/Red Bird Forest.jpg','0.0000',0,'2008-10-22 04:17:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(257,1,0,'','Artists/Sunny Morning.jpg','0.0000',0,'2008-10-22 04:21:28',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(258,1,0,'','Artists/Happy Birthday Raff.jpg','0.0000',0,'2008-10-22 04:23:15',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',53,1,0,0,0,0,0),(259,1,0,'','Artists/Beached Bums 72DPI.jpg','0.0000',0,'2008-10-28 22:43:43','2009-08-26 01:39:19',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',57,1,0,0,0,0,0),(260,1,0,'','Artists/Mike 72DPI.jpg','0.0000',0,'2008-10-28 22:47:22','2009-08-26 01:38:27',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',57,1,0,0,0,0,0),(261,1,0,'','Artists/Woman Waiting 72DPI.jpg','0.0000',0,'2008-10-29 00:27:08',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',57,1,0,0,0,0,0),(262,1,0,'','Artists/Male Poppy 72DPI.jpg','0.0000',0,'2008-10-29 00:32:37','2008-10-29 02:28:19',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',57,1,0,0,0,0,0),(263,1,0,'','Artists/no-mans-land 72DPI.jpg','0.0000',0,'2008-10-29 02:34:25','2009-05-13 06:55:57',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(264,1,0,'','Artists/MS I.jpg','0.0000',0,'2008-10-29 03:18:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(265,1,0,'','Artists/MS II.jpg','0.0000',0,'2008-10-29 03:20:18',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(266,1,0,'','Artists/MS III.jpg','0.0000',0,'2008-10-29 03:21:33','2010-01-14 21:21:21',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(267,1,0,'','Artists/MS IV.jpg','0.0000',0,'2008-10-29 03:22:43',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(268,1,0,'','Artists/MS V.jpg','0.0000',0,'2008-10-29 03:24:05',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(269,1,0,'','Artists/MS VI.jpg','0.0000',0,'2008-10-29 03:25:21',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(270,1,0,'','Artists/Heart of the Soprano 72DPI.jpg','0.0000',0,'2008-11-02 00:02:16','2009-03-22 18:28:11',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(271,1,0,'','Artists/SPearce_Abyss 72 DPI.jpg','0.0000',0,'2008-11-12 06:09:54','2008-11-12 06:12:14','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',58,1,0,0,0,0,0),(272,1,0,'','Artists/SPearce_Emerging 72 DPI.jpg','0.0000',0,'2008-11-12 06:10:43','2009-02-09 19:42:34',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',58,1,0,0,0,0,0),(273,1,0,'','Artists/SPearce_Gorge 72 DPI.jpg','0.0000',0,'2008-11-12 06:11:18','2008-11-12 06:12:22','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',58,1,0,0,0,0,0),(274,1,0,'','Artists/SPearce_Hanging 72 DPI.jpg','0.0000',0,'2008-11-12 06:11:44','2008-11-12 06:12:26','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',58,1,0,0,0,0,0),(275,1,0,'','Artists/SPearce_RiverStones 72 DPI.jpg','0.0000',0,'2008-11-12 06:12:10','2008-11-12 06:12:30','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',58,1,0,0,0,0,0),(276,1,0,'','Artists/Eddy Teddy Freddy.jpg','0.0000',0,'2008-11-12 06:33:19','2008-11-12 06:36:30','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',59,1,0,0,0,0,0),(277,1,0,'','Artists/its all about the smile.jpg','0.0000',0,'2008-11-12 06:34:30','2009-01-14 00:21:13',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',59,1,0,0,0,0,0),(278,1,0,'','Artists/Pagoda.jpg','0.0000',0,'2008-11-12 06:35:06','2008-11-12 06:36:43','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',59,1,0,0,0,0,0),(279,1,0,'','Artists/A. NATASHA KHM 4.jpg','0.0000',0,'2008-11-12 06:35:42','2008-11-12 06:36:39','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',59,1,0,0,0,0,0),(280,1,0,'','Artists/Red Bird Forest.jpg','0.0000',0,'2008-11-12 06:36:23','2008-11-12 06:36:47','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',59,1,0,0,0,0,0),(317,1,0,'','Artists/cockatoo calling 72DPI.jpg','0.0000',0,'2009-01-15 04:35:21','2010-03-12 23:03:20',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,26,0,0,'0.0000',8,1,0,0,0,0,0),(281,1,0,'','Artists/Kanji Portal.jpg','0.0000',0,'2008-11-12 07:36:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',33,1,0,0,0,0,0),(282,1,0,'','Artists/Geisha Fan.jpg','0.0000',0,'2008-11-12 07:45:08',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',33,1,0,0,0,0,0),(283,1,0,'','Artists/Shut up Shutters.jpg','0.0000',0,'2008-11-12 07:51:54',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',33,1,0,0,0,0,0),(284,1,0,'','Artists/Feldspar V.jpg','0.0000',0,'2008-11-12 07:56:34','2008-11-12 08:11:33',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',23,1,0,0,0,0,0),(286,1,0,'','Artists/Kanji Portal.jpg','0.0000',0,'2008-11-12 08:09:21','2008-11-12 08:12:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',23,1,0,0,0,0,0),(287,1,0,'','Artists/Feldspar V.jpg','0.0000',0,'2008-11-12 08:09:53','2008-11-12 08:10:00','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',33,1,0,0,0,0,0),(291,1,0,'','Artists/beyond the continuum 72DPI.jpg','0.0000',0,'2008-12-29 23:25:18','2009-01-26 21:34:09',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(289,1,0,'','Artists/Shut up Shutters.jpg','0.0000',0,'2008-11-12 08:11:02','2008-11-12 08:12:51',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',23,1,0,0,0,0,0),(290,1,0,'','Artists/Mango Series 72DPI.jpg','0.0000',0,'2008-11-29 00:58:44','2009-01-14 00:20:36',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(292,1,0,'','Artists/ethereal imprint emu 72DPI.jpg','0.0000',0,'2008-12-29 23:29:55','2009-02-02 07:15:45',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(293,1,0,'','Artists/a long way up 72DPI.jpg','0.0000',0,'2008-12-29 23:32:56','2009-02-07 22:11:08',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(294,1,0,'','Artists/tracings of memory (McDonnell Ranges) 72DPI.jpg','0.0000',0,'2008-12-29 23:35:40','2009-01-26 21:35:48',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(295,1,0,'','Artists/jellyfish landscape 72DPI.jpg','0.0000',0,'2008-12-29 23:38:30','2009-02-06 22:18:39',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(296,1,0,'','Artists/watching from the long grass 72DPI.jpg','0.0000',0,'2008-12-29 23:41:26','2009-02-07 22:15:17',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(297,1,0,'','Artists/shall we have this dance 72DPI.jpg','0.0000',0,'2008-12-29 23:44:46','2009-02-06 22:20:00',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(298,1,0,'','Artists/cathy freeman 72DPI.jpg','0.0000',0,'2008-12-29 23:48:32',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(299,1,0,'','Artists/I Travelled All Night 72DPI.jpg','0.0000',0,'2008-12-29 23:51:02','2009-01-26 21:34:56',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(300,1,0,'','Artists/we travel this land 72DPI.jpg','0.0000',0,'2008-12-29 23:56:02','2009-02-06 22:19:24',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(301,1,0,'','Artists/Big RedSMALL 72DPI.jpg','0.0000',0,'2008-12-30 00:06:07','2009-01-06 06:00:03',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(302,1,0,'','Artists/bundle-of-joy 72DPI.jpg','0.0000',0,'2008-12-30 00:19:05','2009-02-07 22:13:28',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(304,1,0,'','Artists/I Feel Like DancingSMALL 72DPI.jpg','0.0000',0,'2008-12-30 00:27:30','2009-02-09 19:45:18',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(305,1,0,'','Artists/old friends 72DPI.jpg','0.0000',0,'2008-12-30 00:32:36','2009-01-01 22:40:25',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(306,1,0,'','Artists/stand-by-meWEB 72DPI.jpg','0.0000',0,'2008-12-30 00:35:41','2009-01-06 06:01:32',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(308,1,0,'','Artists/love lingers in the bunglesSMALL 72DPI.jpg','0.0000',0,'2008-12-30 01:05:53','2009-02-07 22:14:07',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(309,1,0,'','Artists/nocturnal SMALL 72DPI.jpg','0.0000',0,'2008-12-30 01:08:59','2009-02-09 19:46:53',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(310,1,0,'','Artists/kangaroo at duskSMALL 72DPI.jpg','0.0000',0,'2008-12-30 01:13:46','2009-02-09 19:45:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(311,1,0,'','Artists/kangaroo hiding SMALL 72DPI.jpg','0.0000',0,'2008-12-30 01:15:36','2008-12-30 01:31:42',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(312,1,0,'','Artists/walk-with-meWEB 72DPI.jpg','0.0000',0,'2008-12-30 01:20:12','2009-01-06 06:02:26',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(313,1,0,'','Artists/modern girlsSMALL 72DPI.jpg','0.0000',0,'2008-12-30 01:30:37','2009-01-10 20:32:43',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(314,1,0,'','Artists/henry taking liberties 72DPI.jpg','0.0000',0,'2009-01-02 00:05:15','2009-01-10 20:32:06',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(315,1,0,'','Artists/henry taking yet more liberties 72DPI.jpg','0.0000',0,'2009-01-02 00:18:22','2009-01-30 23:55:59',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(316,1,0,'','Artists/UpontheYellowLatticeParchmentLinesofMusic.jpg','0.0000',0,'2009-01-06 20:06:11','2009-03-22 18:18:56',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(318,1,0,'','Artists/Wet Seasons Torrents 72DPI.jpg','0.0000',0,'2009-01-29 04:11:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',69,1,0,0,0,0,0),(319,1,0,'','Artists/Cyclone II Country 72DPI.jpg','0.0000',0,'2009-01-29 04:13:45','2009-01-29 04:15:05',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',69,1,0,0,0,0,0),(320,1,0,'','Artists/Cyclone Reef 72DPI.jpg','0.0000',0,'2009-01-29 04:14:40',NULL,NULL,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,'0.0000',69,1,0,0,0,0,0),(321,1,0,'','Artists/Cyclone II Country 72DPI.jpg','0.0000',0,'2009-01-29 04:15:31','2009-05-13 10:07:51','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(322,1,0,'','Artists/Cyclone Reef 72DPI.jpg','0.0000',0,'2009-01-29 04:16:16','2009-05-13 10:07:56','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(323,1,0,'','Artists/Wet Seasons Torrents 72DPI.jpg','0.0000',0,'2009-01-29 04:16:47','2009-05-13 10:08:21','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(324,1,0,'','Artists/red coat 72DPI.jpg','0.0000',0,'2009-01-29 22:08:42','2009-04-26 08:14:22',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',73,1,0,0,0,0,0),(325,1,0,'','Artists/btgl.jpg','0.0000',0,'2009-01-29 22:09:52','2009-01-29 22:23:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',73,1,0,0,0,0,0),(326,1,0,'','Artists/ssl.jpg','0.0000',0,'2009-01-29 22:11:14','2009-01-29 22:24:07',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',73,1,0,0,0,0,0),(327,1,0,'','Artists/horse in creek 72DPI.jpg','0.0000',0,'2009-01-29 22:13:31','2009-07-14 23:52:14',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',73,1,0,0,0,0,0),(328,1,0,'','Artists/btgl.jpg','0.0000',0,'2009-01-29 22:25:25','2009-01-29 22:25:30','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(329,1,0,'','Artists/horse in creek 72DPI.jpg','0.0000',0,'2009-01-29 22:25:57','2009-07-14 23:51:20',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(330,1,0,'','Artists/red coat 72DPI.jpg','0.0000',0,'2009-01-29 22:26:29','2009-04-26 08:13:00',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(331,1,0,'','Artists/ssl.jpg','0.0000',0,'2009-01-29 22:26:59','2009-07-31 00:49:53','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(332,1,0,'','Artists/Water Rats 72DPI.jpg','0.0000',0,'2009-01-30 02:23:36','2009-01-30 02:35:26',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',65,1,0,0,0,0,0),(333,1,0,'','Artists/Autumn Light Maldon 72DPI.jpg','0.0000',0,'2009-01-30 02:39:26','2009-01-30 03:00:06',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',65,1,0,0,0,0,0),(334,1,0,'','Artists/Sofarla Post Office 72DPI.jpg','0.0000',0,'2009-01-30 02:43:50',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',65,1,0,0,0,0,0),(335,1,0,'','Artists/Nillbertie Road Mudgee 72DPI.jpg','0.0000',0,'2009-01-30 02:59:36',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',65,1,0,0,0,0,0),(336,1,0,'','Artists/Autumn Light Maldon 72DPI.jpg','0.0000',0,'2009-01-30 03:00:40','2009-01-30 03:00:46','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(337,1,0,'','Artists/Nillbertie Road Mudgee 72DPI.jpg','0.0000',0,'2009-01-30 03:02:02','2009-01-30 03:11:14','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(338,1,0,'','Artists/Sofarla Post Office 72DPI.jpg','0.0000',0,'2009-01-30 03:11:47','2009-01-30 03:11:55','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(339,1,0,'','Artists/Water Rats 72DPI.jpg','0.0000',0,'2009-01-30 03:12:25','2009-01-30 03:12:31','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(340,1,0,'','Artists/Ross Creek, Yeppoon 72DPI.jpg','0.0000',0,'2009-01-31 00:24:12','2009-01-31 00:26:46',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',65,1,0,0,0,0,0),(341,1,0,'','Artists/Ross Creek, Yeppoon 72DPI.jpg','0.0000',0,'2009-01-31 00:27:33','2009-01-31 00:27:41','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(342,1,0,'','Artists/Morning Sun on the Dragons Back 72DPI.jpg','0.0000',0,'2009-01-31 00:45:23','2009-09-19 00:50:18',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(343,1,0,'','Artists/follow in flight 72DPI.jpg','0.0000',0,'2009-02-02 06:04:51','2009-04-29 01:03:10',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',68,1,0,0,0,0,0),(344,1,0,'','Artists/some travel sec places 72DPI.jpg','0.0000',0,'2009-02-02 06:20:00',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',68,1,0,0,0,0,0),(345,1,0,'','Artists/I Dream of Flying 72DPI.jpg','0.0000',0,'2009-02-02 06:42:07','2009-02-02 06:51:01',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',68,1,0,0,0,0,0),(346,1,0,'','Artists/Imprint Landscape 72DPI.jpg','0.0000',0,'2009-02-02 07:00:58',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',68,1,0,0,0,0,0),(347,1,0,'','Artists/Mountains of Memory 72DPI.jpg','0.0000',0,'2009-02-02 07:02:32','2009-02-02 07:10:17',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',68,1,0,0,0,0,0),(348,1,0,'','Artists/watchful_lit_magpie 72DPI.jpg','0.0000',0,'2009-02-02 07:05:24',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',68,1,0,0,0,0,0),(349,1,0,'','Artists/Imprint Landscape 72DPI.jpg','0.0000',0,'2009-02-02 07:09:19','2010-03-12 21:57:54',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,29,0,0,'0.0000',8,1,0,0,0,0,0),(350,1,0,'','Artists/Mountains of Memory 72DPI.jpg','0.0000',0,'2009-02-02 07:11:16','2010-03-12 21:57:31',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,30,0,0,'0.0000',8,1,0,0,0,0,0),(351,1,0,'','Artists/watchful_lit_magpie 72DPI.jpg','0.0000',0,'2009-02-02 07:12:25','2010-03-12 21:58:42',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,27,0,0,'0.0000',8,1,0,0,0,0,0),(352,1,0,'','Artists/follow in flight 72DPI.jpg','0.0000',0,'2009-02-02 07:13:22','2010-03-12 23:03:45',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,25,0,0,'0.0000',8,1,0,0,0,0,0),(355,1,0,'','Artists/bus drivers dog 72DPI.jpg','0.0000',0,'2009-03-30 03:53:23','2009-04-03 00:57:14',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(353,1,0,'','Artists/Tree Girls 72DPI.jpg','0.0000',0,'2009-02-06 22:44:40',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',55,1,0,0,0,0,0),(354,1,0,'','Artists/last light on min min ridge 72DPI.jpg','0.0000',0,'2009-03-18 23:00:35','2010-03-12 21:45:09',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,44,0,0,'0.0000',8,1,0,0,0,0,0),(356,1,0,'','Artists/island in the south 72DPI.jpg','0.0000',0,'2009-03-30 04:19:41','2009-04-26 08:09:36',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(357,1,0,'','Artists/man on a lake 72DPI.jpg','0.0000',0,'2009-03-30 05:54:03','2009-04-02 19:54:21',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(358,1,0,'','Artists/mensch am strand 72DPI.jpg','0.0000',0,'2009-03-30 05:57:43','2009-04-02 19:55:09',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(359,1,0,'','Artists/messenger 72DPI.jpg','0.0000',0,'2009-03-30 06:01:26','2010-01-01 22:30:27',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(360,1,0,'','Artists/middle age with dressing gown on fire 72DPI.jpg','0.0000',0,'2009-03-30 06:06:56','2009-04-02 19:56:17',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(361,1,0,'','Artists/saint imbecile guides my steps 72DPI.jpg','0.0000',0,'2009-03-30 06:11:45','2009-04-26 08:08:59',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(362,1,0,'','Artists/yellow dog crying 72DPI.jpg','0.0000',0,'2009-03-30 06:17:10','2009-04-02 19:57:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(363,1,0,'','Artists/woman and towel 72DPI.jpg','0.0000',0,'2009-03-30 06:18:48','2009-04-02 19:57:17',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(364,1,0,'','Artists/allans cat 72DPI.jpg','0.0000',0,'2009-04-02 07:36:07','2009-05-13 06:42:04',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(365,1,0,'','Artists/girl in tunic 72DPI.jpg','0.0000',0,'2009-04-02 07:38:00','2009-04-02 20:32:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',76,1,0,0,0,0,0),(366,1,0,'','Artists/Saving Grace 72DPI.jpg','0.0000',0,'2009-04-29 01:20:32',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',71,1,0,0,0,0,0),(367,1,0,'','Artists/Coming Around Again 72DPI.jpg','0.0000',0,'2009-04-29 01:25:36',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',71,1,0,0,0,0,0),(368,1,0,'','Artists/Wild at Heart 72DPI.jpg','0.0000',0,'2009-04-29 01:27:20',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',71,1,0,0,0,0,0),(369,1,0,'','Artists/Sweetness and Light 72DPI.jpg','0.0000',0,'2009-04-29 02:20:53',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',71,1,0,0,0,0,0),(370,1,0,'','Artists/Turning Japanese 72DPI.jpg','0.0000',0,'2009-04-29 02:23:44','2009-04-29 02:39:20',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',71,1,0,0,0,0,0),(371,1,0,'','Artists/Rest Assured 72DPI.jpg','0.0000',0,'2009-04-29 02:32:23','2009-07-15 00:04:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',71,1,0,0,0,0,0),(372,1,0,'','Artists/Coming Around Again 72DPI.jpg','0.0000',0,'2009-04-29 02:33:30','2009-07-23 23:37:06','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',120,1,0,0,0,0,0),(373,1,0,'','Artists/Rest Assured 72DPI.jpg','0.0000',0,'2009-04-29 02:34:39','2010-02-10 23:26:27',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(374,1,0,'','Artists/Saving Grace 72DPI.jpg','0.0000',0,'2009-04-29 02:38:03','2009-07-23 23:37:11','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',120,1,0,0,0,0,0),(375,1,0,'','Artists/Sweetness and Light 72DPI.jpg','0.0000',0,'2009-04-29 02:38:46','2010-02-02 21:43:36',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(376,1,0,'','Artists/Turning Japanese 72DPI.jpg','0.0000',0,'2009-04-29 02:39:39','2010-02-02 21:44:23',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(634,1,0,'','Artists/Collector of Stars 72DPI.jpg','0.0000',0,'2009-11-20 01:59:20','2010-02-02 21:45:49',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(377,1,0,'','Artists/GREEN STRIPES 72X66 CMS 72DPI.jpg','0.0000',0,'2009-04-29 03:00:27',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',60,1,0,0,0,0,0),(378,1,0,'','Artists/POPPY CARNIVAL 80 X 80 CMS 72dpi (2).jpg','0.0000',0,'2009-04-29 03:02:01',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',60,1,0,0,0,0,0),(379,1,0,'','Artists/SERENE 60 X 50 72DPI (2).jpg','0.0000',0,'2009-04-29 03:03:45',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',60,1,0,0,0,0,0),(380,1,0,'','Artists/PINK AND WHITE ROSES 70 X 70 CMS 72dpi (2).jpg','0.0000',0,'2009-04-29 03:05:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',60,1,0,0,0,0,0),(381,1,0,'','Artists/beachside II 72DPI.jpg','0.0000',0,'2009-04-29 07:09:06',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',13,1,0,0,0,0,0),(382,1,0,'','Artists/beachside v2 72DPI.jpg','0.0000',0,'2009-04-29 07:15:52','2009-04-29 07:19:24','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',64,1,0,0,0,0,0),(383,1,0,'','Artists/beachside II 72DPI.jpg','0.0000',0,'2009-04-29 07:16:27','2009-04-29 07:19:28','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',64,1,0,0,0,0,0),(384,1,0,'','Artists/blue_bay 72DPI.jpg','0.0000',0,'2009-04-29 07:17:03','2009-04-29 07:19:33','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',64,1,0,0,0,0,0),(385,1,0,'','Artists/blue_bay_on_paper 72DPI.jpg','0.0000',0,'2009-04-29 07:17:34','2009-04-29 07:19:37','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',64,1,0,0,0,0,0),(386,1,0,'','Artists/calm 72DPI.jpg','0.0000',0,'2009-04-29 07:18:14','2009-04-29 07:19:42','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',64,1,0,0,0,0,0),(387,1,0,'','Artists/ebb_tide 72DPI.jpg','0.0000',0,'2009-04-29 07:19:16','2009-04-29 07:19:46','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',64,1,0,0,0,0,0),(388,1,0,'','Artists/Goat Herders McIvors Creek 72DPI.jpg','0.0000',0,'2009-04-29 08:02:33',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',18,1,0,0,0,0,0),(389,1,0,'','Artists/old farmhouse Mt Crosby 72DPI.jpg','0.0000',0,'2009-04-29 08:05:27',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',18,1,0,0,0,0,0),(390,1,0,'','Artists/jockey with whip 72DPI.jpg','0.0000',0,'2009-04-29 08:08:51',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',18,1,0,0,0,0,0),(391,1,0,'','Artists/return to sale 72DPI.jpg','0.0000',0,'2009-04-29 08:13:42',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',18,1,0,0,0,0,0),(392,1,0,'','Artists/Goat Herders McIvors Creek 72DPI.jpg','0.0000',0,'2009-04-29 08:15:00','2009-04-29 08:16:20','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',70,1,0,0,0,0,0),(393,1,0,'','Artists/jockey with whip 72DPI.jpg','0.0000',0,'2009-04-29 08:15:26','2009-04-29 08:16:24','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',70,1,0,0,0,0,0),(394,1,0,'','Artists/old farmhouse Mt Crosby 72DPI.jpg','0.0000',0,'2009-04-29 08:15:52','2009-04-29 08:16:28','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',70,1,0,0,0,0,0),(395,1,0,'','Artists/return to sale 72DPI.jpg','0.0000',0,'2009-04-29 08:16:15','2009-04-29 08:16:32','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',70,1,0,0,0,0,0),(396,1,0,'','Artists/girl in tunic 72DPI.jpg','0.0000',0,'2009-05-13 06:45:00','2009-05-13 06:51:50','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(397,1,0,'','Artists/man on a lake 72DPI.jpg','0.0000',0,'2009-05-13 06:45:55','2009-05-13 06:51:55','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(398,1,0,'','Artists/mensch am strand 72DPI.jpg','0.0000',0,'2009-05-13 06:46:49','2009-05-13 06:52:01','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(399,1,0,'','Artists/messenger 72DPI.jpg','0.0000',0,'2009-05-13 06:47:54','2010-01-01 22:31:06',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(400,1,0,'','Artists/middle age with dressing gown on fire 72DPI.jpg','0.0000',0,'2009-05-13 06:48:32','2009-05-13 06:52:12','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(401,1,0,'','Artists/woman and towel 72DPI.jpg','0.0000',0,'2009-05-13 06:49:29','2009-05-13 06:51:40','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(402,1,0,'','Artists/yellow dog crying 72DPI.jpg','0.0000',0,'2009-05-13 06:51:25','2009-05-13 06:51:36','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',1,1,0,0,0,0,0),(403,1,0,'','Artists/A Stitch in Time 72DPI.jpg','0.0000',0,'2009-05-13 07:19:30','2009-05-13 07:32:20',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(404,1,0,'','Artists/Boo Who 72DPI.jpg','0.0000',0,'2009-05-13 07:30:03','2009-05-13 07:42:58',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(405,1,0,'','Artists/Dove Coat 72DPI.39.jpg','0.0000',0,'2009-05-13 07:36:05',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(406,1,0,'','Artists/Dove Tail 72DPI.jpg','0.0000',0,'2009-05-13 07:37:58','2009-05-13 07:42:19',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(407,1,0,'','Artists/Ewe 72DPI.jpg','0.0000',0,'2009-05-13 07:40:50',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(408,1,0,'','Artists/Green Tea 72DPI.jpg','0.0000',0,'2009-05-13 07:49:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(409,1,0,'','Artists/Heart Strings 72DPI.jpg','0.0000',0,'2009-05-13 07:55:42',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(410,1,0,'','Artists/Its Beautiful Here 72DPI.jpg','0.0000',0,'2009-05-13 08:00:07',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(411,1,0,'','Artists/Simply Ned 72DPI.jpg','0.0000',0,'2009-05-13 08:02:39','2009-05-23 22:48:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(412,1,0,'','Artists/Tea Shirt 72DPI.jpg','0.0000',0,'2009-05-13 08:05:28',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(413,1,0,'','Artists/The Night Dress Never Worn 72DPI.jpg','0.0000',0,'2009-05-13 08:14:17',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(414,1,0,'','Artists/A Tree for Thee 72DPI.jpg','0.0000',0,'2009-05-13 08:17:08',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(415,1,0,'','Artists/Yesterdays Tears 72DPI.jpg','0.0000',0,'2009-05-13 08:19:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(416,1,0,'','Artists/You have my Heart 72DPI.jpg','0.0000',0,'2009-05-13 08:22:03',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(417,1,0,'','Artists/The Mysteries of Memories I 72DPI.jpg','0.0000',0,'2009-05-13 08:24:44',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(418,1,0,'','Artists/The Mysteries of Memories III 72DPI.jpg','0.0000',0,'2009-05-13 08:26:26',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(419,1,0,'','Artists/Blue by You 72DPI.JPG','0.0000',0,'2009-05-13 08:28:34',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(420,1,0,'','Artists/Carnival 72DPI.JPG','0.0000',0,'2009-05-13 08:29:35',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(421,1,0,'','Artists/Mellow Yellow 72DPI.JPG','0.0000',0,'2009-05-13 08:30:44',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(422,1,0,'','Artists/Fade to Pink 72DPI.JPG','0.0000',0,'2009-05-13 08:31:51','2009-05-23 22:48:55',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',78,1,0,0,0,0,0),(423,1,0,'','Artists/Memories and Music 72DPI.jpg','0.0000',0,'2009-06-07 01:06:31',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',74,1,0,0,0,0,0),(424,1,0,'','Artists/UpontheYellowLatticeParchmentLinesofMusic.jpg','0.0000',0,'2009-06-07 01:07:40','2009-06-07 01:07:47','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',74,1,0,0,0,0,0),(425,1,0,'','Artists/Soft Voices & Sweet Music 72DPI.jpg','0.0000',0,'2009-06-07 01:10:44',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',74,1,0,0,0,0,0),(426,1,0,'','Artists/Pearls & Silent Waters 72DI.jpg','0.0000',0,'2009-06-07 01:13:37',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',74,1,0,0,0,0,0),(427,1,0,'','Artists/dancer 72DPI.jpg','0.0000',0,'2009-06-07 01:15:32',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',74,1,0,0,0,0,0),(428,1,0,'','Artists/Pearls & Silent Waters 72DI.jpg','0.0000',0,'2009-06-07 01:16:52','2010-01-02 02:43:29','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(429,1,0,'','Artists/dancer 72DPI.jpg','0.0000',0,'2009-06-07 01:17:32','2010-01-02 02:44:19','0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(430,1,0,'','Artists/Dance Under the Cherry Tree 72DPI.jpg','0.0000',0,'2009-06-07 02:04:51',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(431,1,0,'','Artists/Ballgowns & Butterflies 72DPI.jpg','0.0000',0,'2009-06-07 02:06:43','2010-01-02 02:44:08',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(432,1,0,'','Artists/Cello Under the Mulga Tree 72DPI.jpg','0.0000',0,'2009-06-07 02:13:17','2009-09-05 00:32:13',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(433,1,0,'','Artists/empty bowl small 72DPI.jpg','0.0000',0,'2009-06-07 02:23:04',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',61,1,0,0,0,0,0),(434,1,0,'','Artists/exodus small 72DPI.jpg','0.0000',0,'2009-06-07 02:24:14',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',61,1,0,0,0,0,0),(435,1,0,'','Artists/the arrivals small 72DPI.jpg','0.0000',0,'2009-06-07 02:25:27',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',61,1,0,0,0,0,0),(436,1,0,'','Artists/cheetah 72DPI.jpg','0.0000',0,'2009-06-07 02:27:19',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',61,1,0,0,0,0,0),(437,1,0,'','Artists/cheetah 72DPI.jpg','0.0000',0,'2009-06-07 02:27:40',NULL,'0001-01-01 00:00:00',0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(438,1,0,'','Artists/empty bowl small 72DPI.jpg','0.0000',0,'2009-06-07 02:28:19','2009-06-07 02:28:36','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(439,1,0,'','Artists/exodus small 72DPI.jpg','0.0000',0,'2009-06-07 02:29:29','2009-06-07 02:29:42','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(440,1,0,'','Artists/the arrivals small 72DPI.jpg','0.0000',0,'2009-06-07 02:30:11','2009-06-07 02:30:16','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(441,1,0,'','Artists/red flowers 72DPI.jpg','0.0000',0,'2009-06-07 02:43:18','2009-06-14 02:58:26',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(442,1,0,'','Artists/reserved 72DPI.jpg','0.0000',0,'2009-06-07 02:44:29','2009-07-09 02:27:06',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(443,1,0,'','Artists/the artist 72DPI.jpg','0.0000',0,'2009-06-07 02:45:48','2009-12-22 19:02:25',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(444,1,0,'','Artists/desert crossing 72DPI.jpg','0.0000',0,'2009-06-07 02:55:36','2009-06-14 01:01:39',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(445,1,0,'','Artists/empty bowl 72DPI.jpg','0.0000',0,'2009-06-07 02:59:11','2009-06-14 01:05:43',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(446,1,0,'','Artists/Olympic Mowing Team 141008.jpg','0.0000',0,'2009-06-07 03:07:50',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',66,1,0,0,0,0,0),(447,1,0,'','Artists/Groupie Chicks 141008.jpg','0.0000',0,'2009-06-07 03:10:03','2010-02-16 21:02:45',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',66,1,0,0,0,0,0),(448,1,0,'','Artists/Ugly Duckling 301108.jpg','0.0000',0,'2009-06-07 03:11:18',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',66,1,0,0,0,0,0),(449,1,0,'','Artists/Wombat Wiggle 011208.jpg','0.0000',0,'2009-06-07 03:13:16','2009-06-07 03:54:28',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',66,1,0,0,0,0,0),(450,1,0,'','Artists/Groupie Chicks 141008.jpg','0.0000',0,'2009-06-07 03:13:37','2009-06-30 04:22:48',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(451,1,0,'','Artists/Olympic Mowing Team 141008.jpg','0.0000',0,'2009-06-07 03:14:14','2009-06-07 03:14:18','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(452,1,0,'','Artists/Healthy Competition.jpg','0.0000',0,'2009-06-07 03:29:00','2009-09-05 02:17:21',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(453,1,0,'','Artists/Unconditional Love 141008.jpg','0.0000',0,'2009-06-07 03:30:35','2009-07-20 03:31:29',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(454,1,0,'','Artists/Forecast Fine Showers.jpg','0.0000',0,'2009-06-07 03:32:04','2009-07-20 03:30:20',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(455,1,0,'','Artists/SPearce_Hinterland 72DPI.jpg','0.0000',0,'2009-06-07 03:45:11','2009-06-07 04:11:58',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',63,1,0,0,0,0,0),(456,1,0,'','Artists/Spearce_Escarpment 72DPI.jpg','0.0000',0,'2009-06-07 03:46:43','2009-06-07 04:12:14',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',63,1,0,0,0,0,0),(457,1,0,'','Artists/SPearce_Monument_to_Strength 72DPI.jpg','0.0000',0,'2009-06-07 03:48:10','2009-06-07 04:11:44',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',63,1,0,0,0,0,0),(458,1,0,'','Artists/Spearce_Escarpment 72DPI.jpg','0.0000',0,'2009-06-07 03:49:02','2009-06-07 04:09:58',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',58,1,0,0,0,0,0),(459,1,0,'','Artists/SPearce_Hinterland 72DPI.jpg','0.0000',0,'2009-06-07 03:49:33','2009-06-07 04:10:36',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',58,1,0,0,0,0,0),(460,1,0,'','Artists/SPearce_Monument_to_Strength 72DPI.jpg','0.0000',0,'2009-06-07 03:49:58','2009-06-07 04:10:53',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',58,1,0,0,0,0,0),(627,1,0,'','Artists/Night Crosssing 72DPI.jpg','0.0000',0,'2009-11-13 23:31:02',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(461,1,0,'','Artists/Darkness_Before_Dawn_Chorus.jpg','0.0000',0,'2009-06-07 04:06:22',NULL,NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',58,1,0,0,0,0,0),(462,1,0,'','Artists/Threading its Way 72DPI.jpg','0.0000',0,'2009-06-07 04:08:02','2009-06-30 04:19:59',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',58,1,0,0,0,0,0),(463,1,0,'','Artists/Beached Bums 72DPI.jpg','0.0000',0,'2009-06-07 04:35:20','2009-07-14 23:54:34',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',72,1,0,0,0,0,0),(464,1,0,'','Artists/Mike 72DPI.jpg','0.0000',0,'2009-06-07 04:35:59','2009-06-07 04:37:05','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',72,1,0,0,0,0,0),(465,1,0,'','Artists/Male Poppy 72DPI.jpg','0.0000',0,'2009-06-07 04:36:23','2009-06-07 04:37:08','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',72,1,0,0,0,0,0),(466,1,0,'','Artists/Con Gravita 72DPI.jpg','0.0000',0,'2009-06-07 04:52:11',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',75,1,0,0,0,0,0),(467,1,0,'','Artists/Nexus 1 72DPI.jpg','0.0000',0,'2009-06-07 04:54:06','2009-06-07 04:57:04',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',75,1,0,0,0,0,0),(468,1,0,'','Artists/Orplid 1 72DPI.jpg','0.0000',0,'2009-06-07 04:55:30','2009-06-07 04:57:31',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',75,1,0,0,0,0,0),(469,1,0,'','Artists/Orplid 2 72DPI.jpg','0.0000',0,'2009-06-07 04:56:46',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',75,1,0,0,0,0,0),(470,1,0,'','Artists/Orplid 3 72DPI.jpg','0.0000',0,'2009-06-07 04:58:55','2009-06-07 05:00:50',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',75,1,0,0,0,0,0),(471,1,0,'','Artists/Orplid 4 72DPI.jpg','0.0000',0,'2009-06-07 05:00:15',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',75,1,0,0,0,0,0),(472,1,0,'','Artists/Con Gravita 72DPI.jpg','0.0000',0,'2009-06-08 21:21:56','2009-06-08 21:22:02','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(473,1,0,'','Artists/Melinda 2 72DPI.jpg','0.0000',0,'2009-06-10 07:18:04','2009-07-03 00:19:01',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,'0.0000',89,1,0,0,0,0,0),(474,1,0,'','Artists/Melinda 72DPI.jpg','0.0000',0,'2009-06-10 07:19:46','2009-07-03 00:18:32',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,'0.0000',89,1,0,0,0,0,0),(475,1,0,'','Artists/Kalliarne 11 72DPI.jpg','0.0000',0,'2009-06-10 07:22:26','2009-07-03 00:18:01',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,'0.0000',89,1,0,0,0,0,0),(476,1,0,'','Artists/Sarah adjusting her hair 72DPI.jpg','0.0000',0,'2009-06-10 07:24:41','2009-07-03 00:21:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,'0.0000',89,1,0,0,0,0,0),(477,1,0,'','Artists/Tania 2 72DPI.jpg','0.0000',0,'2009-06-10 07:31:42','2009-07-03 00:28:16',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,'0.0000',89,1,0,0,0,0,0),(478,1,0,'','Artists/Girl fixing her hair 72DPI.jpg','0.0000',0,'2009-06-10 08:01:48','2009-07-03 00:17:26',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,'0.0000',89,1,0,0,0,0,0),(479,1,0,'','Artists/Sarah being coy 72DPI.jpg','0.0000',0,'2009-06-10 08:04:36','2009-07-04 01:28:42',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,14,0,0,'0.0000',89,1,0,0,0,0,0),(480,1,0,'','Artists/Belinda Walking 72DPI.jpg','0.0000',0,'2009-06-10 08:07:26','2009-07-04 01:28:23',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,15,0,0,'0.0000',89,1,0,0,0,0,0),(481,1,0,'','Artists/Melinda Resting 72DPI.jpg','0.0000',0,'2009-06-10 08:10:14','2009-07-03 00:20:16',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,'0.0000',89,1,0,0,0,0,0),(482,1,0,'','Artists/Tania 72DPI.jpg','0.0000',0,'2009-06-10 08:13:49','2009-07-03 00:27:08',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,'0.0000',89,1,0,0,0,0,0),(483,1,0,'','Artists/Woman resting on a stool 72DPI.jpg','0.0000',0,'2009-06-10 08:18:24','2009-07-04 01:32:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,20,0,0,'0.0000',89,1,0,0,0,0,0),(484,1,0,'','Artists/Sarah Montage 72DPI.jpg','0.0000',0,'2009-06-10 08:20:30','2009-07-04 01:29:00',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,13,0,0,'0.0000',89,1,0,0,0,0,0),(485,1,0,'','Artists/Tuesday Morning 72DPI.jpg','0.0000',0,'2009-06-10 08:22:57','2009-07-04 01:33:39',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,21,0,0,'0.0000',89,1,0,0,0,0,0),(486,1,0,'','Artists/Sarah quick sketch No2 72DPI.jpg','0.0000',0,'2009-06-10 08:24:31','2009-07-23 23:15:35',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,17,0,0,'0.0000',89,1,0,0,0,0,0),(487,1,0,'','Artists/Sarah quick sketch No3 72DPI.jpg','0.0000',0,'2009-06-10 08:25:44','2009-07-04 01:27:19',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,18,0,0,'0.0000',89,1,0,0,0,0,0),(488,1,0,'','Artists/Moving Figure 72DPI.jpg','0.0000',0,'2009-06-10 08:27:32','2009-07-04 01:26:31',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,19,0,0,'0.0000',89,1,0,0,0,0,0),(489,1,0,'','Artists/reclining nude 72DPI.jpg','0.0000',0,'2009-06-10 08:28:58','2009-07-04 01:29:34',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,'0.0000',89,1,0,0,0,0,0),(490,1,0,'','Artists/Tania - study in Chiaroscuro 72DPI.jpg','0.0000',0,'2009-06-10 08:31:50','2009-07-20 03:32:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,12,0,0,'0.0000',89,1,0,0,0,0,0),(491,1,0,'','Artists/Teresa 72DPI.jpg','0.0000',0,'2009-06-10 08:34:05','2009-07-04 01:29:55',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,10,0,0,'0.0000',89,1,0,0,0,0,0),(492,1,0,'','Artists/Noosa River Dinghy_2 72DPI.jpg','0.0000',0,'2009-06-10 09:02:31','2009-06-19 03:27:51',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',86,1,0,0,0,0,0),(493,1,0,'','Artists/Nightfall on Barkley plains 72DPI.jpg','0.0000',0,'2009-06-10 09:05:02','2009-09-05 02:31:48',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',86,1,0,0,0,0,0),(494,1,0,'','Artists/Rich are the rooms 72DPI.jpg','0.0000',0,'2009-06-10 09:10:12','2009-08-01 23:49:35',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(495,1,0,'','Artists/Shaking down whole 72DPI.jpg','0.0000',0,'2009-06-10 09:10:58','2009-08-01 23:52:55',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(496,1,0,'','Artists/Summer unrolls its nature strips like carpets 72DPI.jpg','0.0000',0,'2009-06-10 09:11:43','2009-06-10 09:12:00','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(497,1,0,'','Artists/Remembering_Georgiana_Molloy 72DPI.jpg','0.0000',0,'2009-06-12 02:09:44','2010-03-12 21:46:15',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,47,0,0,'0.0000',8,1,0,0,0,0,0),(498,1,0,'','Artists/I Know She Lingers 72DPI.jpg','0.0000',0,'2009-06-12 02:16:29','2009-08-25 20:57:33',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,33,0,0,'0.0000',8,1,0,0,0,0,0),(499,1,0,'','Artists/eveybodys looking for something 72DPI.jpg','0.0000',0,'2009-06-12 02:20:33','2010-03-12 23:04:03',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,24,0,0,'0.0000',8,1,0,0,0,0,0),(500,1,0,'','Artists/gathering place 72DPI.jpg','0.0000',0,'2009-06-12 02:27:56','2010-03-12 21:45:43',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,45,0,0,'0.0000',8,1,0,0,0,0,0),(501,1,0,'','Artists/the swan and emu 72DPI.jpg','0.0000',0,'2009-06-12 02:29:37','2010-03-12 21:36:55',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,43,0,0,'0.0000',8,1,0,0,0,0,0),(502,1,0,'','Artists/gazing over desert mountains 72DPI.jpg','0.0000',0,'2009-06-12 02:30:45','2009-11-06 00:59:07',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,41,0,0,'0.0000',8,1,0,0,0,0,0),(503,1,0,'','Artists/my emu and me 72DPI.jpg','0.0000',0,'2009-06-12 02:33:59','2010-03-12 23:07:41',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,17,0,0,'0.0000',8,1,0,0,0,0,0),(504,1,0,'','Artists/night walk 72DPI.jpg','0.0000',0,'2009-06-12 02:36:17','2009-12-16 08:24:21',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',83,1,0,0,0,0,0),(505,1,0,'','Artists/Kangaroo & Emu Dreams 72DPI.jpg','0.0000',0,'2009-06-12 02:41:39','2010-03-12 21:36:22',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,42,0,0,'0.0000',8,1,0,0,0,0,0),(506,1,0,'','Artists/Eumundi Hill.jpg','0.0000',0,'2009-06-12 03:10:55','2009-08-19 08:45:45',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',9,1,0,0,0,0,0),(507,1,0,'','Artists/Boreen Point.jpg','0.0000',0,'2009-06-12 03:12:12','2009-08-19 08:45:04',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',9,1,0,0,0,0,0),(508,1,0,'','Artists/Deep in the Forest.jpg','0.0000',0,'2009-06-12 03:13:19','2009-08-19 08:45:25',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',9,1,0,0,0,0,0),(509,1,0,'','Artists/Sarah 72DPI.jpg','0.0000',0,'2009-06-12 03:18:04',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',9,1,0,0,0,0,0),(510,1,0,'','Artists/wallum seed pods and italian journey 72DPI.jpg','0.0000',0,'2009-06-14 00:24:54','2009-07-09 01:04:43',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',87,1,0,0,0,0,0),(511,1,0,'','Artists/Old Suburb 72dpi.jpg','0.0000',0,'2009-06-14 00:30:16',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',87,1,0,0,0,0,0),(512,1,0,'','Artists/Towards End of Night 2 72DPI.jpg','0.0000',0,'2009-06-14 00:34:11',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',87,1,0,0,0,0,0),(513,1,0,'','Artists/run mary run2 72DPI.jpg','0.0000',0,'2009-06-14 00:52:44','2009-11-14 00:40:43',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',87,1,0,0,0,0,0),(514,1,0,'','Artists/Kimberley Sunset 2 72DPI.jpg','0.0000',0,'2009-06-14 01:25:55','2009-06-14 02:29:33',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',86,1,0,0,0,0,0),(515,1,0,'','Artists/Morning Light Moorings 72DPI.jpg','0.0000',0,'2009-06-14 01:27:52',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',86,1,0,0,0,0,0),(516,1,0,'','Artists/Manari 72DPI.jpg','0.0000',0,'2009-06-19 03:04:56','2009-06-19 03:08:19',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',86,1,0,0,0,0,0),(517,1,0,'','Artists/A Liitle Bit Later 72DPI.jpg','0.0000',0,'2009-06-19 03:21:05',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',86,1,0,0,0,0,0),(518,1,0,'','Artists/Noosa Reflections 72DPI.jpg','0.0000',0,'2009-06-19 03:27:22',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',86,1,0,0,0,0,0),(519,1,0,'','Artists/sailing 72DPI.jpg','0.0000',0,'2009-07-02 01:05:05',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(520,1,0,'','Artists/Butterflies and Pussycats 72DPI.jpg','0.0000',0,'2009-07-02 01:07:39','2009-11-20 19:43:58',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(521,1,0,'','Artists/making music 72DPI.jpg','0.0000',0,'2009-07-02 01:08:52','2009-10-13 22:52:23',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(522,1,0,'','Artists/desire 72DPI.jpg','0.0000',0,'2009-07-02 01:10:02',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(523,1,0,'','Artists/love is like a rose 72DPI.jpg','0.0000',0,'2009-07-02 01:11:56',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(524,1,0,'','Artists/untitled 72DPI.jpg','0.0000',0,'2009-07-02 01:13:12',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',3,1,0,0,0,0,0),(525,1,0,'','Artists/sarah rehearsing 72DPI.jpg','0.0000',0,'2009-07-03 00:04:42','2009-07-04 01:27:56',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,16,0,0,'0.0000',89,1,0,0,0,0,0),(526,1,0,'','Artists/Tania resting on a chair 72DPI.jpg','0.0000',0,'2009-07-04 00:52:53','2009-07-04 01:30:25',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,'0.0000',89,1,0,0,0,0,0),(527,1,0,'','Artists/windorah sandhill 72DPI.jpg','0.0000',0,'2009-07-11 03:05:51','2009-09-19 00:47:38',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(528,1,0,'','Artists/windorah dune series xv 72DPI.jpg','0.0000',0,'2009-07-11 03:08:47','2009-09-19 00:48:11',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(529,1,0,'','Artists/Little Cove 72DPI.jpg','0.0000',0,'2009-07-11 03:14:26',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',9,1,0,0,0,0,0),(530,1,0,'','Artists/Family Beach No2 72DPI.jpg','0.0000',0,'2009-07-11 03:17:35',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',9,1,0,0,0,0,0),(531,1,0,'','Artists/Muddy Waters Lake Cooroibah 72DPI.jpg','0.0000',0,'2009-07-11 03:44:55',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',9,1,0,0,0,0,0),(532,1,0,'','Artists/Family Beach No2 72DPI.jpg','0.0000',0,'2009-07-11 03:45:40','2009-07-11 03:45:44','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',62,1,0,0,0,0,0),(533,1,0,'','Artists/Little Cove 72DPI.jpg','0.0000',0,'2009-07-11 03:46:18','2009-07-11 03:46:25','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',62,1,0,0,0,0,0),(534,1,0,'','Artists/Muddy Waters Lake Cooroibah 72DPI.jpg','0.0000',0,'2009-07-11 03:46:57','2009-07-11 03:47:02','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',62,1,0,0,0,0,0),(535,1,0,'','Artists/track to the hills 72DPI.jpg','0.0000',0,'2009-07-11 03:49:55','2009-09-19 00:48:54',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',32,1,0,0,0,0,0),(536,1,0,'','Artists/swamp magic - verse 1 72DPI.jpg','0.0000',0,'2009-07-15 03:46:39','2010-03-12 23:07:19',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,18,0,0,'0.0000',8,1,0,0,0,0,0),(537,1,0,'','Artists/swamp symphony 72DPI.jpg','0.0000',0,'2009-07-15 03:49:21','2010-03-12 23:05:42',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,20,0,0,'0.0000',8,1,0,0,0,0,0),(538,1,0,'','Artists/come flying dreams with me 72DPI.jpg','0.0000',0,'2009-07-15 03:51:03','2010-03-12 23:05:08',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,21,0,0,'0.0000',8,1,0,0,0,0,0),(539,1,0,'','Artists/Lilly Pond at Coolum 72DPI.jpg','0.0000',0,'2009-07-15 03:53:30','2010-03-12 23:04:51',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,22,0,0,'0.0000',8,1,0,0,0,0,0),(540,1,0,'','Artists/Blue by You 72DPI.JPG','0.0000',0,'2009-07-23 23:33:14','2009-07-23 23:36:29','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',120,1,0,0,0,0,0),(541,1,0,'','Artists/Dove Coat 72DPI.39.jpg','0.0000',0,'2009-07-23 23:34:12','2009-07-23 23:36:24','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',120,1,0,0,0,0,0),(542,1,0,'','Artists/Heart Strings 72DPI.jpg','0.0000',0,'2009-07-23 23:34:55','2009-07-23 23:36:20','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',120,1,0,0,0,0,0),(543,1,0,'','Artists/Mellow Yellow 72DPI.JPG','0.0000',0,'2009-07-23 23:35:26','2009-07-23 23:36:15','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',120,1,0,0,0,0,0),(544,1,0,'','Artists/The Night Dress Never Worn 72DPI.jpg','0.0000',0,'2009-07-23 23:35:59','2009-07-23 23:36:07','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',120,1,0,0,0,0,0),(545,1,0,'','Artists/Concerning Assimilation II 72DPI.jpg','0.0000',0,'2009-08-01 23:58:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',23,1,0,0,0,0,0),(546,1,0,'','Artists/Journey through the  Landscape 1 72DPI.jpg','0.0000',0,'2009-08-12 04:07:25','2009-09-11 22:08:53',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',91,1,0,0,0,0,0),(547,1,0,'','Artists/JOURNEY THROUGH THE LANDSCAPE 2 72DPI.jpg','0.0000',0,'2009-08-12 04:08:10','2009-09-11 22:08:04',NULL,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',91,1,0,0,0,0,0),(548,1,0,'','Artists/I knew as a kid I would be big one day 72DPI.jpg','0.0000',0,'2009-08-12 04:13:07','2010-03-12 20:57:26',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',91,1,0,0,0,0,0),(549,1,0,'','Artists/PAINTING EMAIL WARHOL 72DPI.jpg','0.0000',0,'2009-08-12 04:14:21','2009-08-13 22:25:39',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',91,1,0,0,0,0,0),(550,1,0,'','Artists/PAINTING EMAIL WHITELEY 72DPI.jpg','0.0000',0,'2009-08-12 04:16:31','2009-08-13 22:26:11',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',91,1,0,0,0,0,0),(551,1,0,'','Artists/PAINTING EMAIL KAHLO 72 DPI.jpg','0.0000',0,'2009-08-12 04:17:49','2009-08-13 22:24:37',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',91,1,0,0,0,0,0),(553,1,0,'','Artists/american positive 72 DPI.jpg','0.0000',0,'2009-08-15 04:55:31',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',91,1,0,0,0,0,0),(552,1,0,'','Artists/The Beautiful 72DPI.jpg','0.0000',0,'2009-08-13 22:31:27','2009-09-11 22:09:13',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',91,1,0,0,0,0,0),(554,1,0,'','Artists/limbo 72DPI.jpg','0.0000',0,'2009-08-16 04:01:53','2009-08-16 04:04:55',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',92,1,0,0,0,0,0),(555,1,0,'','Artists/In silence in silence and clear delight go we 72DPI.jpg','0.0000',0,'2009-08-19 08:27:42','2009-08-19 23:42:35',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(556,1,0,'','Artists/And so the mellow 72DPI.jpg','0.0000',0,'2009-08-19 08:31:54','2009-08-19 23:30:58',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(557,1,0,'','Artists/Facing the wind 72DPI.jpg','0.0000',0,'2009-08-19 08:33:38','2009-08-23 00:05:57',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(558,1,0,'','Artists/I fortunate, I 72DPI.jpg','0.0000',0,'2009-08-19 08:35:09','2009-08-19 23:34:38',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(559,1,0,'','Artists/The blue cloud 72DPI.jpg','0.0000',0,'2009-08-19 08:36:38','2009-09-02 19:10:45',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(560,1,0,'','Artists/The gods are near 72DPI.jpg','0.0000',0,'2009-08-19 08:40:33','2009-08-23 00:07:53',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(561,1,0,'','Artists/Colour floods 72DPI.jpg','0.0000',0,'2009-08-19 08:42:01','2009-08-19 23:40:51',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(562,1,0,'','Artists/It is a very magic 72DPI.jpg','0.0000',0,'2009-08-19 08:44:20','2009-09-02 19:10:03',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',88,1,0,0,0,0,0),(563,1,0,'','Artists/Sarah quick sketch No3 72DPI.jpg','0.0000',0,'2009-08-19 08:57:30','2009-08-19 09:01:20','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,18,0,0,'0.0000',9,1,0,0,0,0,0),(564,1,0,'','Artists/Moving Figure 72DPI.jpg','0.0000',0,'2009-08-19 08:58:12','2009-08-19 09:01:21','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,19,0,0,'0.0000',9,1,0,0,0,0,0),(565,1,0,'','Artists/Tania resting on a chair 72DPI.jpg','0.0000',0,'2009-08-19 08:59:28','2009-08-19 09:01:19','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,'0.0000',9,1,0,0,0,0,0),(566,1,0,'','Artists/Melinda Resting 72DPI.jpg','0.0000',0,'2009-08-19 09:00:08','2009-08-19 09:01:18','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,'0.0000',9,1,0,0,0,0,0),(567,1,0,'','Artists/Tania 2 72DPI.jpg','0.0000',0,'2009-08-19 09:01:09','2009-08-19 09:01:17','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,'0.0000',9,1,0,0,0,0,0),(568,1,0,'','Artists/Full_Moon_Rising_72DPI.jpg','0.0000',0,'2009-08-20 03:54:05',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',94,1,0,0,0,0,0),(569,1,0,'','Artists/soldier_instincts_72DPI.jpg','0.0000',0,'2009-08-20 03:56:38','2009-09-08 23:21:12',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',94,1,0,0,0,0,0),(570,1,0,'','Artists/the_game_72DPI.jpg','0.0000',0,'2009-08-20 03:58:38','2009-11-13 22:36:16',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',94,1,0,0,0,0,0),(571,1,0,'','Artists/I_Feel_Super_Happy_Today_72DPI.jpg','0.0000',0,'2009-08-20 04:00:34',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',94,1,0,0,0,0,0),(572,1,0,'','Artists/contemplating flight_72DPI.jpg','0.0000',0,'2009-08-20 04:05:34',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',94,1,0,0,0,0,0),(573,1,0,'','Artists/swamp magic - verse 2 72DPI.jpg','0.0000',0,'2009-08-25 21:24:06','2010-03-20 22:14:12',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,19,0,0,'0.0000',8,1,0,0,0,0,0),(574,1,0,'','Artists/Unfinished Business 72DPI.jpg','0.0000',0,'2009-09-05 02:29:52','2010-02-16 20:55:28',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(575,1,0,'','Artists/Goat Envy 72DPI.jpg','0.0000',0,'2009-09-05 02:31:16',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(576,1,0,'','Artists/Abandoned 72DPI.jpg','0.0000',0,'2009-09-05 02:44:20','2009-12-30 00:05:14',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',86,1,0,0,0,0,0),(577,1,0,'','Artists/Far Folded Mists2 72DPI.jpg','0.0000',0,'2009-09-05 02:49:05',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',86,1,0,0,0,0,0),(578,1,0,'','Artists/Penetrative Thought 72DPI.jpg','0.0000',0,'2009-09-05 03:02:34',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',23,1,0,0,0,0,0),(579,1,0,'','Artists/Penetrative Thought 72DPI.jpg','0.0000',0,'2009-09-05 03:03:05','2009-09-05 03:06:33',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',33,1,0,0,0,0,0),(580,1,0,'','Artists/five_low.res.jpg','0.0000',0,'2009-09-19 01:52:26',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',93,1,0,0,0,0,0),(581,1,0,'','Artists/the question (2)_low.res.jpg','0.0000',0,'2009-09-19 01:53:32',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',93,1,0,0,0,0,0),(582,1,0,'','Artists/spider puppet_low.res.jpg','0.0000',0,'2009-09-19 01:54:29',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',93,1,0,0,0,0,0),(583,1,0,'','Artists/should i stay or should i go_low.res.jpg','0.0000',0,'2009-09-19 01:55:54','2009-09-19 01:56:21',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',93,1,0,0,0,0,0),(584,1,0,'','Artists/708_low.res.jpg','0.0000',0,'2009-09-19 01:57:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',93,1,0,0,0,0,0),(585,1,0,'','Artists/Atticus_low res.JPG','0.0000',0,'2009-09-19 01:58:37',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',93,1,0,0,0,0,0),(586,1,0,'','Artists/MissPrissyLaLa_low res.tif','0.0000',0,'2009-09-19 02:00:05',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',93,1,0,0,0,0,0),(587,1,0,'','Artists/contemplating flight_72DPI.jpg','0.0000',0,'2009-11-04 04:00:47','2009-11-04 04:02:52','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',114,1,0,0,0,0,0),(588,1,0,'','Artists/Full_Moon_Rising_72DPI.jpg','0.0000',0,'2009-11-04 04:01:22','2009-11-04 04:02:53','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',114,1,0,0,0,0,0),(589,1,0,'','Artists/I_Feel_Super_Happy_Today_72DPI.jpg','0.0000',0,'2009-11-04 04:01:52','2009-11-07 01:16:44',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',114,1,0,0,0,0,0),(590,1,0,'','Artists/the_game_72DPI.jpg','0.0000',0,'2009-11-04 04:02:46','2009-11-13 22:35:44',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',114,1,0,0,0,0,0),(591,1,0,'','Artists/limbo 72DPI.jpg','0.0000',0,'2009-11-04 04:03:35','2009-11-04 04:03:43','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',117,1,0,0,0,0,0),(592,1,0,'','Artists/limbo 72DPI.jpg','0.0000',0,'2009-11-04 04:04:15','2009-11-04 04:04:20','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',108,1,0,0,0,0,0),(593,1,0,'','Artists/708_low.res.jpg','0.0000',0,'2009-11-04 04:06:28','2009-11-04 04:09:45','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',116,1,0,0,0,0,0),(594,1,0,'','Artists/Atticus_low res.JPG','0.0000',0,'2009-11-04 04:06:55','2009-11-04 04:09:45','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',116,1,0,0,0,0,0),(595,1,0,'','Artists/five_low.res.jpg','0.0000',0,'2009-11-04 04:07:48','2009-11-04 04:09:46','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',116,1,0,0,0,0,0),(596,1,0,'','Artists/MissPrissyLaLa_low res.tif','0.0000',0,'2009-11-04 04:08:20','2009-11-04 04:09:47','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',116,1,0,0,0,0,0),(597,1,0,'','Artists/should i stay or should i go_low.res.jpg','0.0000',0,'2009-11-04 04:08:44','2009-11-04 04:09:48','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',116,1,0,0,0,0,0),(598,1,0,'','Artists/spider puppet_low.res.jpg','0.0000',0,'2009-11-04 04:09:09','2009-11-04 04:09:49','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',116,1,0,0,0,0,0),(599,1,0,'','Artists/the question (2)_low.res.jpg','0.0000',0,'2009-11-04 04:09:38','2009-11-04 04:09:50','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',116,1,0,0,0,0,0),(600,1,0,'','Artists/american positive 72 DPI.jpg','0.0000',0,'2009-11-04 04:12:28','2009-11-06 02:23:53',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',115,1,0,0,0,0,0),(601,1,0,'','Artists/PAINTING EMAIL WARHOL 72DPI.jpg','0.0000',0,'2009-11-04 04:13:01','2009-11-04 04:16:31','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',115,1,0,0,0,0,0),(602,1,0,'','Artists/PAINTING EMAIL WHITELEY 72DPI.jpg','0.0000',0,'2009-11-04 04:14:05','2009-11-04 04:16:32','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',115,1,0,0,0,0,0),(603,1,0,'','Artists/PAINTING EMAIL KAHLO 72 DPI.jpg','0.0000',0,'2009-11-04 04:14:39','2009-11-04 04:16:33','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',115,1,0,0,0,0,0),(604,1,0,'','Artists/I knew as a kid I would be big one day 72DPI.jpg','0.0000',0,'2009-11-04 04:15:17','2009-11-04 04:16:33','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',115,1,0,0,0,0,0),(605,1,0,'','Artists/Journey through the  Landscape 1 72DPI.jpg','0.0000',0,'2009-11-04 04:15:47','2009-11-04 04:16:34','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',115,1,0,0,0,0,0),(606,1,0,'','Artists/The Beautiful 72DPI.jpg','0.0000',0,'2009-11-04 04:16:18','2009-11-04 04:16:35','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',115,1,0,0,0,0,0),(607,1,0,'','Artists/The Winds of Change 72DPI.jpg','0.0000',0,'2009-11-05 02:13:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',92,1,0,0,0,0,0),(608,1,0,'','Artists/The Winds of Change 72DPI.jpg','0.0000',0,'2009-11-05 02:13:45','2009-11-05 02:13:52','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',117,1,0,0,0,0,0),(609,1,0,'','Artists/The Winds of Change 72DPI.jpg','0.0000',0,'2009-11-05 02:14:10','2009-11-05 02:14:15','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',108,1,0,0,0,0,0),(610,1,0,'','Artists/Boyhood Series 72DPI.jpg','0.0000',0,'2009-11-05 02:36:36',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',115,1,0,0,0,0,0),(611,1,0,'','Artists/Tears of the Dead 72DPI.jpg','0.0000',0,'2009-11-05 03:12:08',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',118,1,0,0,0,0,0),(612,1,0,'','Artists/Stations of the Cross 72DPI.jpg','0.0000',0,'2009-11-05 03:13:23',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',118,1,0,0,0,0,0),(613,1,0,'','Artists/Torn Sky 72DPI.jpg','0.0000',0,'2009-11-05 03:15:25','2009-11-05 03:16:04',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',118,1,0,0,0,0,0),(614,1,0,'','Artists/Green Bag 72DPI.jpg','0.0000',0,'2009-11-05 03:17:38',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',118,1,0,0,0,0,0),(615,1,0,'','Artists/saucy postcards 72DPI.jpg','0.0000',0,'2009-11-05 03:19:51','2009-11-06 02:32:00',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',115,1,0,0,0,0,0),(616,1,0,'','Artists/Crisis 72DPI.jpg','0.0000',0,'2009-11-06 02:14:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',118,1,0,0,0,0,0),(617,1,0,'','Artists/Caravan Park 72DPI.jpg','0.0000',0,'2009-11-06 02:16:43',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',118,1,0,0,0,0,0),(618,1,0,'','Artists/harnessing the ability to fly 72DPI.jpg','0.0000',0,'2009-11-06 03:33:13','2009-11-07 01:15:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',114,1,0,0,0,0,0),(619,1,0,'','Artists/Future Woman 72DPI.jpg','0.0000',0,'2009-11-06 03:55:13','2009-11-07 01:14:21',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',114,1,0,0,0,0,0),(620,1,0,'','Artists/Intergallactic War Hero 72DPI.jpg','0.0000',0,'2009-11-06 03:59:08','2009-11-07 01:13:57',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',114,1,0,0,0,0,0),(621,1,0,'','Artists/I Want Your Soul 72DPI.jpg','0.0000',0,'2009-11-06 04:01:35','2009-11-07 01:14:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',114,1,0,0,0,0,0),(622,1,0,'','Artists/Evolution Outback 2 72DPI.jpg','0.0000',0,'2009-11-06 04:09:56','2009-11-07 01:11:20',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',114,1,0,0,0,0,0),(623,1,0,'','Artists/Conversations with Leo 72DPI.jpg','0.0000',0,'2009-11-06 05:35:05','2009-11-07 01:06:06',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',116,1,0,0,0,0,0),(624,1,0,'','Artists/Wild Orchid 72DPI.jpg','0.0000',0,'2009-11-06 05:37:26','2009-11-07 01:08:15',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',116,1,0,0,0,0,0),(625,1,0,'','Artists/All the Pretty People 72DPI.jpg','0.0000',0,'2009-11-06 05:40:06','2009-11-07 01:03:58',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',116,1,0,0,0,0,0),(626,1,0,'','Artists/cathy freeman 72DPI.jpg','0.0000',0,'2009-11-06 06:57:47','2010-03-12 23:04:26',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,23,0,0,'0.0000',8,1,0,0,0,0,0),(628,1,0,'','Artists/The Arrivals III 72DPI.jpg','0.0000',0,'2009-11-13 23:33:06','2010-01-13 02:17:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(629,1,0,'','Artists/Abstract Unearthed 72DPI.jpg','0.0000',0,'2009-11-13 23:35:47',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(630,1,0,'','Artists/Beaches on the Mary 72DPI.jpg','0.0000',0,'2009-11-14 00:11:06',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',87,1,0,0,0,0,0),(631,1,0,'','Artists/Run Mary Run Triptych 72DPI.jpg','0.0000',0,'2009-11-14 00:32:16','2009-11-14 01:41:52',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',87,1,0,0,0,0,0),(632,1,0,'','Artists/Mt Cooroy Primeval 72DPI.jpg','0.0000',0,'2009-11-14 00:38:49',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',87,1,0,0,0,0,0),(633,1,0,'','Artists/Fallen 72DPI.jpg','0.0000',0,'2009-11-20 01:49:31','2010-02-10 23:23:20',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(635,1,0,'','Artists/Sky Scraper 72DPI.jpg','0.0000',0,'2009-11-20 02:06:25','2010-02-10 23:26:57',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(636,1,0,'','Artists/Outside the Square 72DPI.jpg','0.0000',0,'2009-11-20 02:15:01','2010-02-10 23:27:50',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(637,1,0,'','Artists/Lifes Like a Box of Chocolates 72DPI.jpg','0.0000',0,'2009-11-20 02:26:05','2010-02-10 23:24:17',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',119,1,0,0,0,0,0),(638,1,0,'','Artists/Valley of the Bats 72DPI.jpg','0.0000',0,'2009-11-25 20:50:28','2009-12-04 00:51:37',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',128,1,0,0,0,0,0),(639,1,0,'','Artists/My Place 72DPI.jpg','0.0000',0,'2009-11-25 20:52:30','2009-12-04 00:51:18',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',128,1,0,0,0,0,0),(640,1,0,'','Artists/Boy and Dogs 72DPI.jpg','0.0000',0,'2009-11-25 21:15:59','2009-12-04 00:50:18',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',128,1,0,0,0,0,0),(641,1,0,'','Artists/Go West 72DPI.jpg','0.0000',0,'2009-11-25 21:17:05','2009-12-04 00:50:40',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',128,1,0,0,0,0,0),(642,1,0,'','Artists/Mining 72DPI.jpg','0.0000',0,'2009-11-25 21:18:37','2010-02-10 23:29:08',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',128,1,0,0,0,0,0),(643,1,0,'','Artists/Crisis 72DPI.jpg','0.0000',0,'2009-11-25 23:07:48','2009-11-25 23:10:20','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',122,1,0,0,0,0,0),(644,1,0,'','Artists/Green Bag 72DPI.jpg','0.0000',0,'2009-11-25 23:08:23','2010-02-02 20:00:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',122,1,0,0,0,0,0),(645,1,0,'','Artists/Stations of the Cross 72DPI.jpg','0.0000',0,'2009-11-25 23:09:00','2009-11-25 23:10:22','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',122,1,0,0,0,0,0),(646,1,0,'','Artists/Tears of the Dead 72DPI.jpg','0.0000',0,'2009-11-25 23:09:38','2009-11-25 23:10:23','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',122,1,0,0,0,0,0),(647,1,0,'','Artists/Torn Sky 72DPI.jpg','0.0000',0,'2009-11-25 23:10:14','2009-11-25 23:10:24','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',122,1,0,0,0,0,0),(648,1,0,'','Artists/Irukandji 72DPI.jpg','0.0000',0,'2009-11-26 00:07:43',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',2,1,0,0,0,0,0),(649,1,0,'','Artists/adelaide street No11 72DPI.jpg','0.0000',0,'2009-11-26 00:47:27',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',107,1,0,0,0,0,0),(650,1,0,'','Artists/building with sky 72DPI.jpg','0.0000',0,'2009-11-26 00:49:50',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',107,1,0,0,0,0,0),(651,1,0,'','Artists/building with night sky 72DPI.jpg','0.0000',0,'2009-11-26 02:34:30',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',107,1,0,0,0,0,0),(652,1,0,'','Artists/building at night 72DPI.jpg','0.0000',0,'2009-11-26 02:36:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',107,1,0,0,0,0,0),(653,1,0,'','Artists/state library No9 72DPI.jpg','0.0000',0,'2009-11-26 02:37:55',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',107,1,0,0,0,0,0),(654,1,0,'','Artists/state library no10 72DPI.jpg','0.0000',0,'2009-11-26 02:39:11',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',107,1,0,0,0,0,0),(655,1,0,'','Artists/ram paddock hill at dusk 72DPI.jpg','0.0000',0,'2009-12-15 08:29:41','2009-12-16 08:24:22',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',83,1,0,0,0,0,0),(656,1,0,'','Artists/after the twighlight 72DPI.jpg','0.0000',0,'2009-12-15 08:36:07','2010-01-05 03:55:45',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',83,1,0,0,0,0,0),(657,1,0,'','Artists/follow the light messenger 72DPI.jpg','0.0000',0,'2009-12-15 08:44:10','2009-12-22 19:01:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',83,1,0,0,0,0,0),(658,1,0,'','Artists/hover where the west wind blows 72DPI.jpg','0.0000',0,'2009-12-15 08:55:33','2009-12-31 02:30:20',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',83,1,0,0,0,0,0),(659,1,0,'','Artists/I thought I heard you call 72DPI.jpg','0.0000',0,'2009-12-15 09:00:43','2009-12-16 08:24:20',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',83,1,0,0,0,0,0),(660,1,0,'','Artists/sentinel 72DPI.jpg','0.0000',0,'2009-12-15 09:03:03','2009-12-16 08:24:22',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',83,1,0,0,0,0,0),(661,1,0,'','Artists/Study - channel country - furrowed ground 72DPI.jpg','0.0000',0,'2009-12-15 09:13:15','2009-12-16 08:24:25',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,'0.0000',83,1,0,0,0,0,0),(662,1,0,'','Artists/Study - Coolibah Moscow Waterhole 72DPI.jpg','0.0000',0,'2009-12-15 09:18:07','2010-02-02 19:58:02',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,12,0,0,'0.0000',83,1,0,0,0,0,0),(663,1,0,'','Artists/Study - Beyond the Gidgee Line 72DPI.jpg','0.0000',0,'2009-12-15 09:20:21','2009-12-16 08:24:24',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,10,0,0,'0.0000',83,1,0,0,0,0,0),(664,1,0,'','Artists/Study - Dawn over Grey Ranges 72DPI.jpg','0.0000',0,'2009-12-15 09:21:51','2009-12-16 08:24:28',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,13,0,0,'0.0000',83,1,0,0,0,0,0),(665,1,0,'','Artists/Study - Distant Morning Haze 72DPI.jpg','0.0000',0,'2009-12-15 09:23:45','2009-12-16 08:24:29',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,14,0,0,'0.0000',83,1,0,0,0,0,0),(666,1,0,'','Artists/Study - Ironstone & Gidgee Line 72DPI.jpg','0.0000',0,'2009-12-15 09:25:31','2009-12-16 08:24:31',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,15,0,0,'0.0000',83,1,0,0,0,0,0),(667,1,0,'','Artists/Study - Misty Gidgee Ridge 72DPI.jpg','0.0000',0,'2009-12-15 09:26:57','2009-12-16 08:24:32',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,16,0,0,'0.0000',83,1,0,0,0,0,0),(668,1,0,'','Artists/Study - Ram Paddock Hill 72DPI.jpg','0.0000',0,'2009-12-15 09:28:29','2009-12-16 08:24:33',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,17,0,0,'0.0000',83,1,0,0,0,0,0),(669,1,0,'','Artists/Study - Small Channel 72DPI.jpg','0.0000',0,'2009-12-15 09:30:03','2009-12-16 08:24:07',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,18,0,0,'0.0000',83,1,0,0,0,0,0),(670,1,0,'','Artists/Study - Vista Grey Ranges 72DPI.jpg','0.0000',0,'2009-12-15 09:31:44','2009-12-16 08:24:06',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,19,0,0,'0.0000',83,1,0,0,0,0,0),(671,1,0,'','Artists/After the burnoff 2 72DPI.jpg','0.0000',0,'2009-12-30 00:04:24',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',86,1,0,0,0,0,0),(672,1,0,'','Artists/HighHopes_1_72DPI.jpg','0.0000',0,'2009-12-30 00:31:44','2010-02-16 20:59:38',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(673,1,0,'','Artists/running with kangaroo 72DPI.jpg','0.0000',0,'2010-01-02 02:38:58','2010-03-25 20:24:54',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,'0.0000',8,1,0,0,0,0,0),(674,1,0,'','Artists/colour at twilight 72DPI.jpg','0.0000',0,'2010-01-02 02:42:47',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',83,1,0,0,0,0,0),(675,1,0,'','Artists/HighHopes_2_72DPI.jpg','0.0000',0,'2010-01-02 02:46:23','2010-02-16 20:59:59',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',31,1,0,0,0,0,0),(676,1,0,'','Artists/Colour in the Bark 72dpi.jpg','0.0000',0,'2010-01-02 03:22:00',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(677,1,0,'','Artists/The Colours at Sunset 72DPI.jpg','0.0000',0,'2010-01-02 03:24:28',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(678,1,0,'','Artists/The Keyboard is the Path 72DPI.jpg','0.0000',0,'2010-01-02 03:25:43',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(679,1,0,'','Artists/Sunset in the Mangroves 72DPI.jpg','0.0000',0,'2010-01-02 03:26:55',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(680,1,0,'','Artists/The Tree & Song of Sunset 72DPI.jpg','0.0000',0,'2010-01-02 03:28:13',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(681,1,0,'','Artists/Champagne Memories 72DPI.jpg','0.0000',0,'2010-01-02 03:29:47',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(682,1,0,'','Artists/Seashells & Green Parakeets 72DPI.jpg','0.0000',0,'2010-01-02 03:31:42',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',14,1,0,0,0,0,0),(683,1,0,'','Artists/I thought I heard you call 72DPI.jpg','0.0000',0,'2010-03-19 08:40:21','2010-03-25 20:26:17',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,'0.0000',8,1,0,0,0,0,0),(684,1,0,'','Artists/after the twighlight 72DPI.jpg','0.0000',0,'2010-03-19 08:47:31','2010-03-25 20:24:05',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,'0.0000',8,1,0,0,0,0,0),(685,1,0,'','Artists/running with kangaroo 72DPI.jpg','0.0000',0,'2010-03-19 08:52:41','2010-03-19 08:53:02','0001-01-01 00:00:00',0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',83,1,0,0,0,0,0),(686,1,0,'','Artists/sentinel 72DPI.jpg','0.0000',0,'2010-03-19 08:54:54','2010-03-25 20:25:32',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,'0.0000',8,1,0,0,0,0,0),(687,1,0,'','Artists/colour at twilight 72DPI.jpg','0.0000',0,'2010-03-19 08:59:43','2010-03-25 20:23:11',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,'0.0000',8,1,0,0,0,0,0),(688,1,0,'','Artists/night walk 72DPI.jpg','0.0000',0,'2010-03-19 09:00:45','2010-03-25 20:22:18',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,10,0,0,'0.0000',8,1,0,0,0,0,0),(689,1,0,'','Artists/ram paddock hill at dusk 72DPI.jpg','0.0000',0,'2010-03-19 09:02:20','2010-03-25 20:20:42',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,'0.0000',8,1,0,0,0,0,0),(690,1,0,'','Artists/follow the light messenger 72DPI.jpg','0.0000',0,'2010-03-19 09:05:00','2010-03-25 20:20:05',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,12,0,0,'0.0000',8,1,0,0,0,0,0),(691,1,0,'','Artists/guardian 72DPI.jpg','0.0000',0,'2010-03-19 09:22:35',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',124,1,0,0,0,0,0),(692,1,0,'','Artists/vessel 1 72DPI.jpg','0.0000',0,'2010-03-19 09:24:24',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',124,1,0,0,0,0,0),(693,1,0,'','Artists/vessel 2 72DPI.jpg','0.0000',0,'2010-03-19 09:27:04',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',124,1,0,0,0,0,0),(694,1,0,'','Artists/wounded lake 72DPI.jpg','0.0000',0,'2010-03-19 09:28:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',124,1,0,0,0,0,0),(695,1,0,'','Artists/boreen point 72DPI.jpg','0.0000',0,'2010-03-19 09:29:42',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',124,1,0,0,0,0,0),(696,1,0,'','Artists/vessel 5 72DPI.jpg','0.0000',0,'2010-03-19 09:32:34',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',124,1,0,0,0,0,0),(697,1,0,'','Artists/vessel 6 72DPI.jpg','0.0000',0,'2010-03-19 09:33:38',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',124,1,0,0,0,0,0),(698,1,0,'','Artists/arbeit macht frei 72DPI.jpg','0.0000',0,'2010-03-19 09:48:33',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',122,1,0,0,0,0,0),(699,1,0,'','Artists/the kiss 72DPI.jpg','0.0000',0,'2010-03-19 09:51:10',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',122,1,0,0,0,0,0),(700,1,0,'','Artists/Horsemen of the Acropolis 72DPI.jpg','0.0000',0,'2010-03-20 01:42:59',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',123,1,0,0,0,0,0),(701,1,0,'','Artists/Riders on the Acropolis 72DPI.jpg','0.0000',0,'2010-03-20 01:45:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',123,1,0,0,0,0,0),(702,1,0,'','Artists/Hi Ho Silver I 72DPI.jpg','0.0000',0,'2010-03-20 01:48:41',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',123,1,0,0,0,0,0),(703,1,0,'','Artists/Hi Ho Silver II 72DPI.jpg','0.0000',0,'2010-03-20 01:50:02','2010-03-20 01:51:33',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',123,1,0,0,0,0,0),(704,1,0,'','Artists/The Frustrated Painter 72DPI.jpg','0.0000',0,'2010-03-20 02:37:50',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(705,1,0,'','Artists/Pigmentation 72DPI.jpg','0.0000',0,'2010-03-20 02:39:58',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(706,1,0,'','Artists/Pigmentation II 72DPI.jpg','0.0000',0,'2010-03-20 02:41:12',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',34,1,0,0,0,0,0),(707,1,0,'','Artists/A New Beginning 72DPI.jpg','0.0000',0,'2010-03-20 03:07:26','2010-03-23 22:28:59',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',125,1,0,0,0,0,0),(708,1,0,'','Artists/Sands of Time 72DPI.jpg','0.0000',0,'2010-03-23 22:33:02','2010-03-30 23:47:44',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',125,1,0,0,0,0,0),(709,1,0,'','Artists/February (Blue Hills) 72DPI.jpg','0.0000',0,'2010-03-23 22:35:09',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',125,1,0,0,0,0,0),(710,1,0,'','Artists/November 72DPI.jpg','0.0000',0,'2010-03-23 22:37:33','2010-03-23 22:38:45',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',125,1,0,0,0,0,0),(711,1,0,'','Artists/deer_man-72DPI.jpg','0.0000',0,'2010-03-23 22:40:20','2010-03-25 20:15:31',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',94,1,0,0,0,0,0),(712,1,0,'','Artists/deer_oh_deer 72DPI.jpg','0.0000',0,'2010-03-23 22:41:17','2010-03-25 20:09:14',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',94,1,0,0,0,0,0),(713,1,0,'','Artists/psychedelic_dance_revolution-72DPI.jpg','0.0000',0,'2010-03-23 22:42:55','2010-03-25 20:18:37',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',94,1,0,0,0,0,0),(714,1,0,'','Artists/Super Happy Lady 72DPI.jpg','0.0000',0,'2010-03-23 22:47:04','2010-03-25 20:11:01',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',94,1,0,0,0,0,0),(715,1,0,'','Artists/The Trespasser 72DPI.jpg','0.0000',0,'2010-03-25 20:28:02','2010-03-30 23:47:56',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,'0.0000',8,1,0,0,0,0,0),(716,1,0,'','Artists/Wade in the Water 72DPI.jpg','0.0000',0,'2010-03-25 20:29:20','2010-03-30 23:47:57',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,'0.0000',8,1,0,0,0,0,0),(717,1,0,'','Artists/Exogen 1 72DPI.jpg','0.0000',0,'2010-03-30 23:56:44',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(718,1,0,'','Artists/Exogen 2 72DPI.jpg','0.0000',0,'2010-03-30 23:59:01',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(719,1,0,'','Artists/Exogen 3 72DPI.jpg','0.0000',0,'2010-03-31 00:00:25',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',19,1,0,0,0,0,0),(720,1,0,'','Artists/Grindingstonelargepeople $1500 72dpi.jpg','0.0000',0,'2010-04-01 00:20:11','2010-04-03 01:48:27',NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',129,1,0,0,0,0,0),(721,1,0,'','Artists/bundy$175072dpi.jpg','0.0000',0,'2010-04-01 00:23:11',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',129,1,0,0,0,0,0),(722,1,0,'','Artists/grindingstonelargebark72dpi.jpg','0.0000',0,'2010-04-03 01:47:57',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',129,1,0,0,0,0,0),(723,1,0,'','Artists/grindingstonemediumbark$1100 72dpi.jpg','0.0000',0,'2010-04-03 01:50:11',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',129,1,0,0,0,0,0),(724,1,0,'','Artists/mediumgrindingstonebubble110072dpi.jpg','0.0000',0,'2010-04-03 01:51:19',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',129,1,0,0,0,0,0),(725,1,0,'','Artists/Small grindingstone town 72dpi.jpg','0.0000',0,'2010-04-03 01:53:05',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',129,1,0,0,0,0,0),(726,1,0,'','Artists/Small grinding stone $80072dpi.jpg','0.0000',0,'2010-04-03 01:57:15',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',129,1,0,0,0,0,0),(727,1,0,'','Artists/stone$450 72dpi.jpg','0.0000',0,'2010-04-03 02:03:10',NULL,NULL,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,'0.0000',129,1,0,0,0,0,0);
/*!40000 ALTER TABLE `zen_products` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_products_attributes`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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=728 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 (25,1,'Tante','<p>Oil on Linen<br />\r\n77cm x 63cm<br />\r\nAUD$3500</p>','',177),(23,1,'Playing without Music','<p>Oil on Linen<br />\r\n86.5cm x 76cm<br />\r\nAUD$3300</p>','',160),(8,1,'Whispering of the Wildflowers','<p>The fresh winds rustle the new grasses and whisper to the wildflowers that food will soon be plentiful in freshwater country as the barra are running upstream to spawn<br />\r\n<br />\r\nAcrylic on canvas<br />\r\n97cm x 160cm<br />\r\nAUD$4500</p>','',93),(7,1,'Caught up in the Music','<p>Oil on Canvas<br />\r\n75cm x 50cm<br />\r\nSOLD</p>','',361),(5,1,'Upload Images to SLIDESHOW or PICS','','',137),(26,1,'Portrait of my Mother','<p>Oil on Linen<br />\r\n70cm x 94cm<br />\r\nAUD$3900</p>','',149),(27,1,'Shifting Sands','<p>The incoming and outgoing tides continuously shift the sand on the sandbars leaving a \'telltale\' story in rows of seashells. We learnt to read the shells to find out what the seabed would provide in food and what the weather pattern had been like in the previous cycle of the changing tides<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n160cm x 63cm<br />\r\nAUD$3200</p>','',5),(24,1,'Mid Life Crisis in Eumundi','<p>Oil on Canvas<br />\r\n95cm x 105cm<br />\r\nAUD$4900</p>','',310),(10,1,'Singing up Country','<p>Acrylic on Canvas<br />\r\n183cm x 128cm<br />\r\nAUD$9900</p>','',253),(11,1,'Barramundi Dreaming','<p>Acrylic on Canvas<br />\r\n183cm x 128cm <br />\r\nAUD$9900</p>','',122),(12,1,'Bushscape','<p>Acrylic on Canvas<br />\r\n75cm x 60cm</p>','',236),(13,1,'Embrace','<p>Acrylic on Canvas<br />\r\n75cm x 60cm</p>\r\n<p>&nbsp;</p>','',225),(15,1,'Pornum','<p>Acrylic on Canvas<br />\r\n75cm x 60cm</p>','',371),(19,1,'Pornum Athoy','<p>Lino cut on water colour paper<br />\r\n65cm x 29cm<br />\r\nAUD$550</p>','',405),(22,1,'Mosquito Men','<p>Linocut Print <br />\r\n63cm x 28cm<br />\r\nAUD$550</p>','',244),(28,1,'Untitled','<p>Oil on Linen<br />\r\n75cm x 66cm<br />\r\nAUD$2900</p>','',138),(29,1,'Girl with Prickly Pear','<p>Oil on Board<br />\r\nFramed<br />\r\n35cm x 40cm<br />\r\nSOLD</p>','',265),(31,1,'Silent Starry Night','<p>The stars in the sky guided our mob when they travelled through the night on their errant journey. They all felt safe as they believed that the moonlit bush made them visible to their \'protectors\' and gave them sustenance along the way and the energy to hasten their journey<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n165cm x 60cm<br />\r\nAUD$4200</p>','',4),(159,1,'Happy Hour','<p>Oil on Canvas<br />\r\n70cm x 90cm<br />\r\nAUD$POA</p>','',87),(33,1,'Sea of Hope','<p>The abundance of fish and marine life gives us hope for survival, however we need to heed the warnings of global warming and read the signs from what the sea is bringing forth<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n63cm x 167cm<br />\r\nAUD$3500</p>','',58),(34,1,'Seasonal Change','<p>Knowledge of the seasonal changes is a very important thing to know for Aboriginal people. We can tell when certain fruit are ripe to eat by watching the flowers bloom and what is happening on the land. When certain things happen, like the leaves beginning to fall, it is time to make our way through the bush to gather them<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n100cm x 163cm<br />\r\nAUD$4900</p>','',63),(37,1,'Meandering','<p>The ever changing landscape in the wetlands turns the billabongs into meandering streams where the small fish seem to appear out of \'nowhere\'. These places on the high-ground are always places where Aboriginal people will camp, as they know that food will be plentiful in the wet seasons<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n60cm x 70cm<br />\r\nAUD$2600</p>','',87),(38,1,'Girl  at Piano 2','<p>Charcoal &amp; Ink Wash<br />\r\nFramed<br />\r\n60cm x 50cm<br />\r\nSOLD</p>','',336),(160,1,'Sundancers','<p>Oil on Canvas<br />\r\n90cm x 120cm<br />\r\nAUD$POA</p>','',99),(40,1,'Outback','<p>The Australian Scrub turkey is a wandering bird that will go back to the same place every day as long as the food is there. They love to \'scratch up\' the ground and make mounds in secluded places to lay their eggs<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n38cm x 45cm<br />\r\nAUD$900</p>','',85),(41,1,'Gathering Mussels','<p>A day out collecting mussels has to be timed with the incoming tides. They are left until they are full before they are gathered. Aboriginal people always used to take only what they needed for themselves, and left some for others who may come behind<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n128cm x 67cm<br />\r\nAUD$4200</p>','',1),(42,1,'Wet Season','<p>The billabongs are a delight to see after the summer rains when the waters are replenished. They fill with wildlife, tadpoles and waterlilies. This is when the dragonflies are aplenty<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n126cm x 58cm<br />\r\nAUD$2800</p>','',67),(43,1,'Sharing Fruits & Berries','<p>The white cockatoo sits and watches the mob walk through the forest gathering the fruit and the berries. He knows that they will leave some behind for the birds and other wildlife so that the cycle of life can begin again<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n125cm x 58cm<br />\r\nAUD$3200</p>','',55),(44,1,'Poppies & Apples','<p>Oil on Canvas<br />\r\n90cm x 120cm<br />\r\nAUD$1900</p>','',100),(45,1,'Ulysses Woman','<p>The Ulysses Butterflys hover around the Ulysses woman to protect her while she gathers food in the forest. She as a revered female is alone and has been guided into this special place in the forest<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n125cm x 56cm<br />\r\nAUD$2800</p>','',53),(46,1,'Rainforest Walk','<p>Aboriginal people are dependent on the seasons for different varieties of food. When gathering they are always mindful of leaving some for other families and individuals and also that there is enough left so that the cycle of growth can begin again for the next season<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n146cm x 83cm<br />\r\nSOLD</p>','',70),(47,1,'Banksia Noosa','<p>Oil on Canvas<br />\r\n60.5cm x 50.5cm<br />\r\nAUD$980</p>','',97),(48,1,'Crossroads','<p>The crossroads represent the choices we have in life to make decisions. We all choose pathways for different reasons and often the end destination is out of sight. Crossroads is a point in an experience where one often has to draw on so many of our physical senses. This painting is about conquering fear and having the confidence to start a new journey<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n63cm x 71cm<br />\r\nAUD$2400</p>','',98),(50,1,'Meeting Place','<p>Many tribes travel for miles to get to an arranged meeting place. Here the landscape is depicted as \'out bush\' where one can often see kangaroos and other wildlife along the way<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n58cm x 72cm<br />\r\nAUD$1500</p>','',95),(51,1,'Protecting Territories','<p>Here the Shield is portrayed as a weapon of defence. It is traditionally carved out of wood in one piece with consideration of the type of wood due to the preferred finished weight. Designs are often used as tribal identification and are numerous in style. Most are not intricate but bold solid colours in abstract design favouring the ochre colours<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n69cm x 99cm<br />\r\nAUD$3600</p>','',66),(52,1,'Mythical Being','<p>My \'works of art\' are inspired by my traditional cultural background and is intended to pay respect and tribute to the traditions and artistic \'talents of the past\' who were able to portray thoughts and beliefs as records, worthy of mention and keepsake<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n45cm x 46cm<br />\r\nAUD$1100</p>','',63),(53,1,'Visiting Indigenous Culture','<p>My \'works of art\' are inspired by my traditional cultural background and is intended to pay respect and tribute to the traditions and artistic \'talents of the past\' who were able to portray thoughts and beliefs as records, worthy of mention and keepsake<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n70cm x 45cm</p>','',71),(54,1,'Desert Country','<p>The artists relays a conversation when sitting around the campfire one night talking about desert country. \'Desert country\', \' Freshwater country\', \'outback country, way out\', \'all same story\', \'mostly all same colour\'s, \'mostly all same feeling\'. \'Sometimes good feeling\', and we all smile, \' sometimes not so good feeling\', and we all go quiet, feel sad, and keep listening, \'when that tucker hard to find\' and we all laugh out loud<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n70cm x 45cm<br />\r\nAUD$1800</p>','',86),(55,1,'After the Summer Rain','<p>After the wet season, the long neck turtles are plentiful and are to be seen enjoying the new growth of water plants and lillies blooming in abundance, making the high ground above the billabong a favourite place for the mobs to set up camp<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n110cm x 190cm<br />\r\nAUD$6500</p>','',112),(56,1,'Desert Walk','<p>The Australian landscape is so diverse in colour and foliage. I am drawn to making comparisons with Saltwater &amp; Saltwater country, when walking over this kind of country in my work travels. Mostly, this happens when it is hot and I am thinking and seeing in terms of the ochres. It is always pleasing and refreshing to come across places with a scattering of blossoming wattle and bottlebrush<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n63cm x 43cm<br />\r\nAUD$1300</p>','',82),(57,1,'Listening to the Land','<p>For many a year past, when Aboriginal people took guidance from the Rainbow Serpent, they did many things according to the seasons, by \'knowing\' and listening to the land. They knew when to burn off the grasses and the bushlands ready for for the early rains to ensure the new growth bore edible fruits and berries for their families and for the animals to survive and reproduce. Here the Raibow Serpent moves across the country releasing the grasses and the new leaves after the bushfire. Aboriginal people controlled the environment and were rewarded with the seasons coming when they were expected<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n110cm x 190cm<br />\r\nAUD$6900</p>','',87),(58,1,'I Love a Sunburnt Country - the Land of Wattle and Dreams','<p>The Australian bushlands in Far North Queensland are an array of wonderful colours at certain times of the year. The contrast between all the different shades of green foliage and the glorious colour of our Australian wattle is always a reminder that \'I live in a lucky country and proud to call Australia home\'. When viewed from the vantage points of rock escarpments, while they take shapes of block colour, the vividness of the wattle, is always a reminder that \'we do live in the lucky country\'<br />\r\n<br />\r\nAcrylic on Canvas<br />\r\n122cm x 200cm<br />\r\nAUD$7900</p>','',81),(59,1,'Always Watching','<p>Contemporary Aboriginal art is a vital part of the world\'s oldest continuous cultural tradition. Supernatural beings and sprituality is heartfelt, and comforts the soul. Here the Ancestors\' \'Protectors\' are keeping a watchful eye over the children<br />\r\n<br />\r\nLow fired terracotta clay slabs under glass<br />\r\n48cm x 64cm<br />\r\nAUD$1900</p>','',93),(60,1,'Symbols of Life','<p>Conventional designs and symbols are now becoming a tradition by both traditional &amp; urban Aboriginal Artists in Aboriginal art. When applied to the body of a person taking part in a ceremony or the surface of an object, such designs assume a powerful transformation within the focussed object and so begins a belief of religious cultural significance<br />\r\n<br />\r\nLow fired terracotta clay slabs under glass<br />\r\n63cm x 48cm<br />\r\nAUD$1900</p>','',51),(61,1,'Take Only What You Need','<p>Paintings of marine life in their natural environment context bridges the connections between the \'now\' and traditional practice \'lore\' when hunting, gathering, fishing for food; instills respect for their knowledge, consideration of our Indigenous cultures in preservation and conversation<br />\r\n<br />\r\nLow fired terracotta clay slabs under glass<br />\r\n48cm x 64cm<br />\r\nAUD$1900</p>','',53),(62,1,'I Want to Stay','<p>Oil on Canvas<br />\r\n80cm x 120cm<br />\r\nSOLD</p>','',323),(63,1,'Red Playground 3','<p>Oil on Canvas<br />\r\n100cm x 120cm<br />\r\nSOLD</p>','',266),(64,1,'Phenomena Twighlight Creek','<p>Oil on Canvas<br />\r\n88cm x 106cm<br />\r\nAUD$4700</p>','',133),(73,1,'Sarah and Pet','<p>Oil on Canvas<br />\r\n40cm x 50cm<br />\r\nAUD$1100</p>','',238),(74,1,'The Man behind the Shell','<p>Mixed Media Assemblage with Platter and Photograph<br />\r\n63cm x 85cm<br />\r\nAUD$1900</p>','',123),(72,1,'Monet\'s Garden','<p>Acrylic on Canvas<br />\r\n168cm x 118cm<br />\r\nAUD$4200</p>','',304),(67,1,'The Joy of Love','<p>Acrylic on Canvas<br />\r\n91cm x 91cm<br />\r\nSOLD</p>','',276),(68,1,'The Poetry of Love','<p>Acrylic on Canvas<br />\r\n91cm x 91cm<br />\r\n$3900</p>','',272),(69,1,'Remembering','<p>Acrylic on Canvas<br />\r\n120cm x90cm<br />\r\nSOLD</p>','',323),(70,1,'Harbour View','<p>Oil on Canvas<br />\r\n170cm x 138cm <br />\r\nAUD$4200</p>','',314),(71,1,'The Gift of Love','<p>Acrylic on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$4200</p>','',302),(76,1,'Notes of Mozart','<p>Ink on Paper<br />\r\n57cm x 62cm<br />\r\nFramed<br />\r\nAUD$430</p>','',207),(77,1,'Jazz Played All Night','<p>Enamel &amp; Acrylic on Canvas<br />\r\n100cm x 50cm<br />\r\nAUD$600</p>','',137),(78,1,'Crimson Blossoms of Potted Geraniums','<p>Enamel &amp; Acrylic on Canvas<br />\r\n76cm x 102cm<br />\r\nAUD$900</p>','',133),(79,1,'Tea in the Greenhouse','<p>Acrylic on Canvas<br />\r\n76cm x 102cm<br />\r\nSOLD</p>','',144),(80,1,'Tea, Toast and Daisies','<p>Enamel &amp; Acrylic on Canvas<br />\r\n76cm x 102cm<br />\r\nSOLD</p>','',158),(81,1,'The World','<p>Hand coloured Lithographs<br />\r\n35cm x 100cm<br />\r\nAUD$POA</p>','',192),(82,1,'Red House','<p>Hand coloured Lithographs<br />\r\n49cm x 46cm<br />\r\nAUD$POA</p>','',180),(83,1,'Turning','<p>Print<br />\r\n55cm x 72cm<br />\r\nAUD$POA</p>','',190),(84,1,'Dreamers','<p>Hand coloured Lithographs<br />\r\n<br />\r\nAUD$540</p>','',157),(85,1,'Angels on the Desert Sand','<p>Acrylic on Canvas<br />\r\n120cm x 90cm<br />\r\nAUD$4200</p>','',10),(86,1,'Ebb Tide','<p>Acrylic on Canvas<br />\r\n90cm x 75cm<br />\r\nAUD$1700</p>','',205),(87,1,'Beachside','<p>Acrylic on Canvas<br />\r\n90cm x 90cm<br />\r\nAUD$1900</p>','',241),(88,1,'Blue Bay','<p>Acrylic on Canvas<br />\r\n50cm x 50cm<br />\r\n$950</p>','',227),(89,1,'Calm','<p>Acrylic on Paper<br />\r\n23cm x 16cm<br />\r\nAUD$550</p>','',214),(382,1,'Beachside','<p>Acrylic on Canvas<br />\r\n90cm x 90cm<br />\r\nAUD$1900</p>','',55),(90,1,'Bedroom Prompt','<p>Glazed Ceramic &amp; Bone on Wood<br />\r\n64cm X 54cm<br />\r\n$AUD900</p>','',131),(91,1,'Glam Girls outa Town No 1','<p>Clay Pieces<br />\r\nHand Carved and Painted<br />\r\nAUD$1100</p>','',62),(92,1,'Glam Girls outa Town No 2','<p>Clay Pieces<br />\r\nHand Carved and Painted<br />\r\nAUD$1100</p>','',66),(93,1,'Glam Girls outa Town No 3','<p>Clay Pieces<br />\r\nHand Carved and Painted<br />\r\nAUD$1100</p>','',60),(121,1,'Circumscription','<p>Mixed Media on Canvas<br />\r\n120cm x 120cm<br />\r\nAUD$2500</p>','',140),(98,1,'Mythical Birds 4','<p>Clay Pieces<br />\r\nHand Carved and Painted<br />\r\nMale Bird (LHS)<br />\r\nFemale Bird (RHS)<br />\r\nSOLD</p>','',97),(99,1,'Mythical Bird 5','<p>Clay Pieces<br />\r\nHand Carved and Painted <br />\r\nSOLD</p>','',75),(150,1,'On a Clear Day','<p>2005<br />\r\nBronze<br />\r\n(H) 30cm (W) 11cm (D) 11cm<br />\r\n1/25 AUD$1100</p>','',148),(101,1,'Womens Business No 3','<p>Clay Pieces<br />\r\nHand Carved and Painted<br />\r\n65cm tall<br />\r\nAUD$1700</p>','',66),(102,1,'Womens Business No 4','<p>Clay Pieces<br />\r\nHand Carved and Painted<br />\r\n65cm tall<br />\r\nAUD$1700</p>','',61),(124,1,'Chiffre I','<p>Lino on Board with Mixed Media<br />\r\n30cm x 30cm<br />\r\nAUD$400</p>','',92),(123,1,'White lines on Innocent Ground','<p>Mixed Media on Canvas<br />\r\n155cm x 130cm<br />\r\nAUD$2850</p>','',0),(122,1,'Concordant','<p>Mixed Media on Canvas<br />\r\n90cm x 90cm<br />\r\nAUD$1700</p>','',118),(587,1,'Contemplating Flight','<p>Acrylic on Linen<br />\r\n60cm x 60cm<br />\r\nAUD$610</p>','',8),(146,1,'Balancing Act','<p>2005<br />\r\nBronze&nbsp;on a White Reconstituted Marble Base<br />\r\n(H) 32cm (W) 26cm (D) 30cm<br />\r\nAP AUD$1300</p>','',169),(147,1,'Me, Myself and I','<p>Ever wanted to dance with your shadow? In this solid bronze sculpture the figure (with companion of little bird who rests of his head) finds his shadow on the wall and invites it to dance. They are then both captured in another shadow which is cast across the floor and forms the base for the whole sculpture and is completely free-standing.<br />\r\n<br />\r\n2004<br />\r\nBronze<br />\r\n(H) 20cm (W) 45cm (D) 13cm<br />\r\n1/25 AUD$1100 (STOLEN)</p>','',183),(105,1,'More Secret Places','<p>Oil on Canvas<br />\r\n64cm x 64 cm<br />\r\nAUD$2000</p>','',192),(106,1,'Into the Mystic','<p>Oil on Canvas<br />\r\n120cm x 90 cm<br />\r\nAUD$4500</p>','',133),(107,1,'Vaduz I','<p>Lino on Board with Mixed Media<br />\r\n90cm x 90cm<br />\r\nAUD$1700</p>','',86),(148,1,'Bon Voyage','<p>This little fellow kneels, and is about to launch a &quot;paper&quot; boat. Another little boat rests near his left hand.<br />\r\n<br />\r\n2006<br />\r\nBronze on a Sandstone Base<br />\r\n(H) 25cm (W) 20cm (D) 20cm<br />\r\n1/25 SOLD<br />\r\n11/25 AUD$2200</p>','',180),(149,1,'Hello Sailor','<p>Haven\'t you always wanted to make a paper boat and sail away to somewhere magical? A little bird drops in to say &quot;Hello Sailor&quot;. The flag is a copy of the flag used on the Titanic. This is a solid bronze sculpture. The figure has a green patina, the little bird is polished bronze (gold in colour), the boat is nickle over bronze and the flag is polished bronze.<br />\r\n<br />\r\n2004<br />\r\nBronze on a&nbsp;Sandstone Base<br />\r\n(H) 36cm (W) 23cm (D) 10cm<br />\r\nAP AUD$2300</p>','',152),(108,1,'Vaduz II','<p>Lino on Board with Mixed Media<br />\r\n60cm x 60cm<br />\r\nAUD$950</p>','',86),(109,1,'Mara','<p>Lino on Board with Mixed Media<br />\r\n60cm x 60cm<br />\r\nAUD$950</p>','',145),(110,1,'Lysis','<p>Lino on Board with Mixed Media<br />\r\n120cm x 120cm<br />\r\nAUD$2100</p>','',47),(111,1,'Silur IV','<p>Lino with Mixed Media on Board <br />\r\n30cm x 30cm<br />\r\nSOLD</p>','',104),(112,1,'Silur VI','<p>Lino with Mixed Media on Board<br />\r\n30cm x 30cm<br />\r\nSOLD</p>','',75),(113,1,'Silur V','<p>Lino with Mixed Media on Board<br />\r\n30cm x 30cm<br />\r\nSOLD</p>','',83),(114,1,'Exlex I','<p>Lino on Board with Mixed Media<br />\r\n30cm x 30cm<br />\r\nAUD$380</p>','',209),(115,1,'Exlex II','<p>Lino on Board with Mixed Media<br />\r\n30cm x 30cm<br />\r\nAUD$380</p>','',214),(281,1,'Kanji Portal','<p>RD003 2008<br />\r\nGlazed Ceramic on Wood<br />\r\n77.5cm X 60cm<br />\r\n$AUD900</p>','',172),(120,1,'Blue Bay (on paper)','<p>Acrylic on Paper<br />\r\n23cm x 16cm<br />\r\nAUD$550</p>','',197),(117,1,'Inlets I','<p>Acrylic Paint and Mixed Media on Canvas<br />\r\n30cm x 30cm<br />\r\nAUD$380</p>','',98),(118,1,'Inlets II','<p>Acrylic Paint and Mixed Media on Canvas<br />\r\n30cm x 30cm<br />\r\nAUD$380</p>','',112),(119,1,'Inlets III','<p>Acrylic Paint and Mixed Media on Canvas<br />\r\n30cm x 30cm<br />\r\nAUD$380</p>','',100),(125,1,'Chiffre II','<p>Lino on Board with Mixed Media<br />\r\n30cm x 30cm<br />\r\nAUD$400</p>','',90),(126,1,'Chiffre III','<p>Lino on Board with Mixed Media<br />\r\n30cm x 30cm<br />\r\nAUD$400</p>','',93),(145,1,'A Shadow of a Doubt','<p>Your shadow usually follows you anywhere on a bright and sunny day, that\'s a comforting thought, perhaps we\'re never alone?! This solid bronze sculpture is finished in a gold-brown patina and the shadow forms the base for the figure and the whole sculpture is completely free-standing.<br />\r\n<br />\r\n2004<br />\r\nBronze<br />\r\n(H) 21cm (W) 32cm (D) 7cm<br />\r\n1/25 SOLD</p>','',170),(140,1,'Aqua','<p>2008<br />\r\nGiclee on Canvas<br />\r\n71cm x 56.5cm<br />\r\nAUD$580</p>','',190),(141,1,'Azure','<p>2008<br />\r\nGiclee on Canvas<br />\r\n71cm x 56.5cm<br />\r\nAUD$580</p>','',168),(142,1,'Rogue','<p>2008<br />\r\nGiclee on Canvas<br />\r\n71cm x 56.5cm<br />\r\nAUD$580</p>','',166),(143,1,'Silverback','<p>2008<br />\r\nGiclee on Canvas<br />\r\n71cm x 56.5cm<br />\r\nAUD$580</p>','',166),(144,1,'Stealth','<p>2008<br />\r\nGiclee on Canvas<br />\r\n71cm x 56.5cm<br />\r\nAUD$580</p>','',164),(129,1,'Bedroom Prompt','<p>RD002 2008<br />\r\nGlazed Ceramic &amp; Bone on Wood<br />\r\n64cm X 54cm<br />\r\n$AUD900</p>','',179),(130,1,'The Man behind the Shell','<p>RD001 2008<br />\r\nMixed Media Assemblage with Platter and Photograph<br />\r\n63cm x 85cm<br />\r\nAUD$1900</p>','',169),(131,1,'Drop Koalas','<p>Acrylic on Linen<br />\r\n100cm x 100cm<br />\r\nSOLD</p>','',332),(132,1,'Chick Magnet','<p>Acrylic on Linen<br />\r\n100cm x 100cm<br />\r\nSOLD</p>','',322),(223,1,'Dam Cecil','<p>Acrylic on Linen<br />\r\n60cm x 150cm<br />\r\nSOLD</p>','',301),(133,1,'1 of 60 Magic Minutes','<p>Oil on Canvas<br />\r\n140cm x 140cm<br />\r\nAUD$8000</p>','',273),(134,1,'Beautiful Black Swan','<p>Oil on Canvas<br />\r\n100cm x 120cm<br />\r\nAUD$5700</p>','',91),(135,1,'Georgiana Molloy Flying with Flowers','<p>Oil on Canvas<br />\r\n90cm x 100cm<br />\r\nAUD$4700</p>','',185),(136,1,'I was wondering where you were','<p>Oil on Canvas<br />\r\n60cm x 60cm<br />\r\nSOLD</p>','',291),(137,1,'Sunshine Road Trip','<p>Crayon &amp; Mixed Media on Paper<br />\r\n37cm x 33cm<br />\r\nFramed<br />\r\nSOLD</p>','',191),(138,1,'Sunlit Mountain','<p>Crayon &amp; Mixed Media on Paper<br />\r\n37cm x 33cm<br />\r\nFramed<br />\r\nSOLD</p>','',195),(224,1,'Ida','<p>Acrylic on Canvas<br />\r\n76cm x 61cm<br />\r\nAUD$300</p>','',62),(139,1,'Woman in Costume','<p>Oil Sketch on Raw Linen<br />\r\n70cm x 50cm<br />\r\nSOLD</p>','',201),(151,1,'The Great Escape','<p>Based on Di West\'s own Fighting Fish, who I\'m sure would love to leap out of his bowl and be free!<br />\r\n<br />\r\n2007<br />\r\nBronze<br />\r\nUnique<br />\r\n(H) 25cm (W) 30cm (D) 30cm<br />\r\nAP AUD$1300</p>','',137),(318,1,'Wet Seasons Torrents','<p>Acrylic on Canvas<br />\r\n183cm x 60cm<br />\r\nAUD$4400</p>','',44),(152,1,'The Empty Bowl (African)','<p>Acrylic on Board Framed<br />\r\n113cm x 110cm<br />\r\nAUD$9900</p>','',58),(153,1,'Exodus','<p>Acrylic on Canvas Framed<br />\r\n128cm x 180cm<br />\r\nAUD$16500</p>','',72),(155,1,'Gathering at Glasshouse','<p>Acrylic on Canvas<br />\r\n95cm x 95cm<br />\r\nFramed<br />\r\nAUD$9900</p>','',431),(154,1,'Long Walk to Freedom','<p>Acrylic on Canvas<br />\r\n96cm x 96cm<br />\r\nFramed<br />\r\nSOLD</p>','',477),(156,1,'A Grey Day in Ipswich','<p>Pastel on Paper <br />\r\n45cm x 56cm<br />\r\nFramed<br />\r\nAUD$1500</p>','',398),(157,1,'Windorah Sandhill II','<p>Pastel on Paper<br />\r\n47cm x 62cm<br />\r\nFramed<br />\r\nAUD$750</p>','',240),(158,1,'Track to Glen Davis, NSW','<p>Pastel on Paper<br />\r\n23cm x 46cm<br />\r\nFramed<br />\r\nSOLD</p>','',315),(161,1,'Eumundi Markets','<p>Acrylic on Canvas<br />\r\n66cm x 102cm<br />\r\nAUD$1900</p>','',94),(164,1,'Noosa Banksia','<p>Oil on Canvas<br />\r\nFramed<br />\r\n72cm x 60cm<br />\r\nAUD$980</p>','',89),(165,1,'At the Café','<p>Oil on Canvas<br />\r\nFramed<br />\r\n76cm x 97cm<br />\r\nSOLD</p>','',99),(166,1,'Sweet skins Suite 1','','',148),(167,1,'Sweet skins Suite 2','','',148),(168,1,'Sweet skins Suite 3','','',159),(169,1,'Sweet skins Suite 4','','',153),(170,1,'Sweet skins Suite 5','','',161),(171,1,'Nude with Red Ribbon','<p>Charcoal<br />\r\nFramed<br />\r\n77.5cm x 54.5cm<br />\r\nAUD$575</p>','',117),(172,1,'Wilpena Pound I & II','<p>Acrylic on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$1800</p>','',103),(173,1,'Bribie Island','<p>Acrylic on Paper<br />\r\nFramed<br />\r\n55cm x 73cm<br />\r\nAUD$650</p>','',108),(174,1,'Maroochy River','<p>Acrylic on Paper<br />\r\nFramed<br />\r\n57.5cm x 75.5cm<br />\r\nAUD$750</p>','',108),(175,1,'Winds of Time','<p>Acrylic on Canvas<br />\r\n41cm x 101cm<br />\r\nAUD$275</p>','',67),(176,1,'Beached','<p>Acrylic on Canvas<br />\r\n41cm x 101cm<br />\r\nAUD$275</p>','',66),(177,1,'Heavens Gateway','<p>Pastel<br />\r\nFramed<br />\r\n71cm x 42cm<br />\r\nAUD$420</p>','',69),(178,1,'Heavens Window','<p>Pastel<br />\r\nFramed<br />\r\n74cm x 42cm<br />\r\nAUD$420</p>','',69),(179,1,'The Song of the Sea','<p>Pastel<br />\r\nFramed<br />\r\n74cm x 44.5cm<br />\r\nAUD$420</p>','',64),(180,1,'Summer Treasure','<p>Pastel<br />\r\nFramed<br />\r\n74cm x 44.5cm<br />\r\nAUD$420</p>','',63),(181,1,'Tulips','<p>Pastel<br />\r\nFramed<br />\r\n70cm x 51cm<br />\r\nSOLD&nbsp;</p>','',67),(182,1,'Thai Orchids','<p>Pastel &amp; Acrylic<br />\r\nFramed<br />\r\n63cm x 75cm<br />\r\nAUD$550</p>','',70),(183,1,'Serenity','<p>Pastel &amp; Watercolour<br />\r\nFramed<br />\r\n48cm x 82cm<br />\r\nAUD$495</p>','',60),(184,1,'On the Run','<p>Pastel<br />\r\nFramed<br />\r\n55cm x 55cm<br />\r\nAUD$395</p>','',62),(185,1,'Rising up','<p>Pastel<br />\r\nFramed<br />\r\n46cm x 38cm<br />\r\nAUD$360</p>','',64),(186,1,'Words can seldom express the magic of Life\'s Loveliness','<p>Pastel<br />\r\nFramed<br />\r\n56cm x 47cm<br />\r\nSOLD</p>','',82),(187,1,'The Final Engagement','<p>Oil on Canvas<br />\r\n40.7cm x 122cm<br />\r\nAUD$520</p>','',58),(188,1,'First Blood','<p>Oil on Canvas<br />\r\n40.7cm x 122cm<br />\r\nAUD$520</p>','',56),(189,1,'Turbulence','<p>Oil on Canvas<br />\r\n45.3cm x 91.5cm<br />\r\nAUD$650</p>','',53),(190,1,'Foxtails & Fog','<p>Oil on Canvas<br />\r\n61cm x 76cm<br />\r\nAUD$520</p>','',59),(191,1,'To the Back of Beyond','<p>Oil on Canvas<br />\r\n61cm x 76cm<br />\r\nAUD$780</p>','',51),(192,1,'Tramming it','<p>Oil on Canvas<br />\r\n61cm x 76cm<br />\r\nAUD$780</p>','',48),(193,1,'Valley','<p>Acrylic on Canvas<br />\r\n92cm x 62cm<br />\r\nAUD$375</p>','',63),(194,1,'Red','<p>Acrylic on Canvas<br />\r\n93cm x 63cm<br />\r\nSOLD</p>','',65),(195,1,'Maryland','<p>Acrylic on Linen<br />\r\n102cm x 77cm<br />\r\nAUD$650</p>','',67),(196,1,'Veranda','<p>Acrylic on Linen<br />\r\n102cm x 77cm<br />\r\nAUD$650</p>','',68),(197,1,'Guinea Fowl at Sapphire','<p>Acrylic &amp; Charcoal on Canvas<br />\r\n79cm x 90cm<br />\r\nAUD$450</p>','',76),(198,1,'Sacred Scavengers of the City','<p>Acrylic &amp; Charcoal on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$450</p>','',69),(199,1,'Sleeping out at Sapphire','<p>Acrylic &amp; Charcoal on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$800</p>','',66),(200,1,'Night Owl','<p>Acrylic &amp; Charcoal on Canvas<br />\r\n60cm x 60cm<br />\r\nAUD$300</p>','',67),(201,1,'Dream was about grown children and the babies dancing in my arms','<p>Oil on Canvas<br />\r\n66cm x 46cm<br />\r\nAUD$600</p>','',69),(202,1,'Rich are the rooms and the comforts therein','<p>Oil on Canvas<br />\r\n78cm x 43cm<br />\r\nSOLD</p>','',74),(203,1,'Shaking down whole blocks of green gold scarlet brown leading...','<p>Oil on Canvas on Board<br />\r\nFramed<br />\r\n59.5cm x 49.5cm<br />\r\nSOLD</p>','',83),(204,1,'The light glides with a rhythmic stillness out of sight','<p>Oil on Canvas on Board<br />\r\nFramed<br />\r\n54cm x 44cm<br />\r\nAUD$480</p>','',72),(205,1,'With the plains around and the blue sky above','<p>Oil on Canvas on Board<br />\r\nFramed<br />\r\n59.5cm x 49.5cm<br />\r\nAUD$480</p>','',75),(206,1,'Summer unrolls its nature strips like carpets seesaws & sundials','<p>Oil on Canvas<br />\r\nFramed<br />\r\n91.5cm x 71cm<br />\r\nSOLD</p>','',86),(207,1,'A frog gulps on the path earth - bubble green, deep water speaks','<p>Oil on Canvas<br />\r\nFramed<br />\r\n91.5cm x 71cm<br />\r\nSOLD</p>','',80),(290,1,'Mango Series Drawing','<p>Ink on Archival Paper<br />\r\nFramed<br />\r\n102cm x 83cm<br />\r\nSOLD</p>','',174),(208,1,'Abyss','<p>Mixed Media on Canvas<br />\r\n92cm x 92cm<br />\r\nAUD$1570</p>','',72),(209,1,'Riverstones','<p>Mixed Media on Canvas<br />\r\n102cm x 102cm<br />\r\nAUD$1680</p>','',68),(210,1,'Emerging','<p>Mixed Media on Canvas<br />\r\n60cm x 60cm<br />\r\nAUD$960</p>','',64),(211,1,'Gorge','<p>Mixed Media on Canvas<br />\r\n41cm x 122cm<br />\r\nAUD$960</p>','',68),(212,1,'Hanging','<p>Mixed Media on Canvas<br />\r\n102cm x 102cm<br />\r\nAUD$1680</p>','',67),(213,1,'Country Dew in Overcast Skies','<p>Acrylic on Canvas<br />\r\n48cm x 109cm<br />\r\nFramed<br />\r\nAUD$360</p>','',73),(214,1,'Whispers scatter lost Memories','<p>Acrylic on Canvas<br />\r\n102cm x 82cm<br />\r\nFramed<br />\r\nAUD$420</p>','',89),(215,1,'Blades of Grass Stand Tall Along the River Bank','<p>Acrylic on Canvas<br />\r\n102cm x 82cm<br />\r\nFramed<br />\r\nAUD$420</p>','',77),(216,1,'Childhood Pools in Time Past','<p>Acrylic on Canvas<br />\r\n97cm x 67cm<br />\r\nFramed<br />\r\nAUD$420</p>','',68),(217,1,'Impressions on the Banks of the Dam','<p>Acrylic on Canvas<br />\r\n67cm x 97cm<br />\r\nFramed<br />\r\nAUD$500</p>','',58),(218,1,'Sunlight\'s Soft Touch on the Vineyard','<p>Acrylic on Canvas<br />\r\n68cm x 96cm<br />\r\nFramed<br />\r\nAUD$500</p>','',62),(219,1,'Muse','<p>Oil on Canvas<br />\r\n60cm x 90cm<br />\r\nAUD$650</p>','',64),(220,1,'Alex','<p>Oil on Canvas<br />\r\n103cm x 50cm<br />\r\nAUD$500</p>','',75),(221,1,'Eliza','<p>Oil on Canvas<br />\r\n78cm x 60cm<br />\r\nSOLD</p>','',62),(222,1,'I saw her walking barefoot on the beach','<p>Oil &amp; Acrylic on Canvas<br />\r\n120cm x 41cm<br />\r\nAUD$320</p>','',74),(225,1,'Penny','<p>Acrylic on Canvas<br />\r\n76cm x 51cm<br />\r\nAUD$300</p>','',59),(226,1,'Jemima','<p>Acrylic on Canvas<br />\r\n76cm x 51cm<br />\r\nAUD$300</p>','',61),(227,1,'Lucy','<p>Acrylic on Canvas<br />\r\n76cm x 51cm<br />\r\nSOLD</p>','',57),(228,1,'Sam','<p>Acrylic on Canvas<br />\r\n91cm x 61cm<br />\r\nAUD$380</p>','',55),(229,1,'Sunlight on Water Lilies','<p>Acrylic on Canvas<br />\r\n46cm x 91cm<br />\r\nAUD$300</p>','',63),(230,1,'Sunshine on Water Lilies','<p>Acrylic on Canvas<br />\r\n46cm x 91cm<br />\r\nAUD$300</p>','',56),(231,1,'Winters last Fire & Notes of Spring Sing in the Air','<p>Enamel &amp; Acrylic on Canvas<br />\r\n90cm x 70cm<br />\r\nAUD$860</p>','',73),(232,1,'The Song was White & her Breath was Silver','<p>Enamel &amp; Acrylic on Canvas<br />\r\n90cm x 60cm<br />\r\nAUD$750</p>','',73),(233,1,'Upon the Yellow Lattice Parchment, Lines of Music are Inscribed','<p>Enamel &amp; Acrylic on Canvas<br />\r\n50cm x 75cm<br />\r\nSOLD</p>','',76),(234,1,'Playing to the Rhododendrons','<p>Ink on Paper<br />\r\n42cm x 60cm<br />\r\nFramed<br />\r\nAUD$350</p>','',66),(235,1,'Crimson Blossoms of Potted Geraniums','<p>Enamel &amp; Acrylic on Canvas<br />\r\n76cm x 102cm<br />\r\nAUD$900</p>','',65),(236,1,'Harpsichord Keys & Goblets Mulled Wine','<p>Enamel &amp; Acrylic on Canvas<br />\r\n60cm x 90cm<br />\r\nAUD$750</p>','',64),(237,1,'Songs of Owls & Pea Green Boats','<p>Enamel &amp; Acrylic on Canvas<br />\r\n76cm x 102cm<br />\r\nAUD$1200</p>','',69),(316,1,'Upon the Yellow Lattice Parchment, Lines of Music are Inscribed','<p>Enamel &amp; Acrylic on Canvas<br />\r\n50cm x 75cm<br />\r\nSOLD</p>','',82),(238,1,'Every Path has Music','<p>Enamel &amp; Acrylic on Canvas<br />\r\n25cm x 25cm<br />\r\nAUD$500</p>','',192),(239,1,'Music all around Us','<p>Enamel &amp; Acrylic on Canvas<br />\r\n25cm x 25cm<br />\r\nAUD$500</p>','',185),(240,1,'Ringtones in our Life','<p>Enamel &amp; Acrylic on Canvas<br />\r\n25cm x 25cm<br />\r\nSOLD</p>','',196),(241,1,'My Favourite Chair','<p>Enamel &amp; Acrylic on Canvas<br />\r\n102cm x 51cm<br />\r\nSOLD</p>','',199),(242,1,'B-flat & the Innocence of Mankind','<p>Enamel &amp; Acrylic on Canvas<br />\r\n100cm x 80cm<br />\r\nAUD$1400</p>','',98),(243,1,'Summer\'s Song','<p>Ink on Paper<br />\r\n51cm x 41cm<br />\r\nAUD$350</p>','',97),(244,1,'The Red Piano Stool','<p>Ink on Paper<br />\r\n51cm x 41cm<br />\r\nAUD$350</p>','',46),(245,1,'I\'ve been waiting for you','<p>Watercolour on Paper<br />\r\n56cm x 46cm<br />\r\nFramed<br />\r\nAUD$500</p>','',60),(246,1,'Lullaby','<p>Watercolour on Paper<br />\r\n44cm x 47.5cm<br />\r\nFramed<br />\r\nAUD$500</p>','',59),(247,1,'Red Vase','<p>Watercolour on Paper<br />\r\n66cm x 38cm<br />\r\nFramed<br />\r\nAUD$550</p>','',40),(248,1,'Pagoda','<p>Watercolour on Paper<br />\r\n55cm x 45cm<br />\r\nFramed<br />\r\nAUD$520</p>','',44),(249,1,'Eddy, Teddy, Freddy','<p>Watercolour on Paper<br />\r\n52cm x 52cm<br />\r\nFramed<br />\r\nAUD$780</p>','',64),(250,1,'Acrobats (Balance)','<p>Watercolour on Paper<br />\r\n71cm x 61cm<br />\r\nFramed<br />\r\nAUD$570</p>','',55),(251,1,'It\'s all about the Smile','<p>Watercolour on Paper<br />\r\n53cm x 43cm<br />\r\nFramed<br />\r\nAUD$470</p>','',61),(252,1,'Lilu & Fred','<p>Watercolour on Paper<br />\r\n71cm x 57cm<br />\r\nFramed<br />\r\nAUD$1000</p>','',62),(253,1,'Cheer up Firefly','<p>Watercolour on Paper<br />\r\n50cm x 70cm<br />\r\nFramed<br />\r\nAUD$670</p>','',60),(254,1,'Friend to lean on','<p>Watercolour on Paper<br />\r\n73.5cm x 53cm<br />\r\nFramed<br />\r\nAUD$720</p>','',54),(255,1,'Fish Faces','<p>Watercolour on Paper<br />\r\n50cm x 40cm<br />\r\nFramed<br />\r\nAUD$300</p>','',57),(256,1,'Red Bird Forest','<p>Watercolour on Paper<br />\r\n56cm x 76cm<br />\r\nFramed<br />\r\nAUD$570</p>','',37),(257,1,'Sunny Morning','<p>Watercolour on Paper<br />\r\n33cm x 41cm<br />\r\nFramed<br />\r\nNOT FOR SALE<br />\r\nCommissions can be Ordered</p>','',41),(258,1,'Happy Birthday Raff','<p>Watercolour on Paper<br />\r\n76cm x 106cm<br />\r\nFramed<br />\r\nNOT FOR SALE<br />\r\nCommissions can be Ordered</p>','',55),(259,1,'Beached Bums - Kev & Johnno','<p>The series \'Beached Bums\' was inspired by wonderful memories of exploring along the beach to discover what treasures have been left by the retreating tide. And the names? This is Australia where we abbreviate names or add an &lsquo;o&rsquo; - and sometimes we do both. So Kev &amp; Johnno they became.<br />\r\n<br />\r\nBronze<br />\r\nLimited Edition of 9 (1/9)<br />\r\nAUD$1100 each</p>','',193),(260,1,'Mike','<p>&lsquo;Mike&rsquo; stands about 70cms tall and is a very simple stylised male torso and is one of Rhonda\'s favourite pieces.<br />\r\n<br />\r\nBronze<br />\r\nLimited Edition of 9 (3/9)<br />\r\nSOLD</p>','',156),(527,1,'Windorah Sandhill','<p>Pastel on Paper<br />\r\n50cm x 63cm<br />\r\nFramed<br />\r\nAUD$850</p>','',100),(261,1,'Woman Waiting','<p>&quot;Woman Waiting&quot; was conceived from charcoal and pastel illustrations, which&nbsp;Rhonda did in 2003 as part of a study exploring the lines and shapes of the female form. This piece was named Woman Waiting because it suggested to Rhonda a woman comfortable with herself, flaunting her femininity, relaxed, waiting and wondering.<br />\r\n<br />\r\nBronze<br />\r\nLimited Edition of 9 (1/9)<br />\r\nAUD$2850</p>','',133),(262,1,'Tall Poppies','<p>The working title for these pieces was &ldquo;Tall Poppies in the Garden of Support and Strangulation&quot; because we do provide a healthy and supportive environment for people to be high achievers. However, it seems we don&rsquo;t want them to get beyond a certain level of success because it is then that we wait for them to fail - perhaps even want them to fail. And then we seem to get a great deal of pleasure out of their downfall.<br />\r\n<br />\r\nCertainly there seems to be much more media coverage when our heroes falter rather than when they succeed. Is this syndrome uniquely Australian?<br />\r\n<br />\r\nBronze<br />\r\nLimited Edition (1/1)<br />\r\nAUD$1850 each</p>','',156),(263,1,'No Man\'s Land','<p>Mixed Media &amp; Acrylic on Canvas<br />\r\n160cm x 90cm<br />\r\nAUD$2950</p>','',28),(264,1,'Minor Studies I','<p>Mixed Media<br />\r\n32cm x 32cm<br />\r\nAUD$450</p>','',112),(265,1,'Minor Studies II','<p>Mixed Media<br />\r\n32cm x 32cm<br />\r\nAUD$450</p>','',107),(266,1,'Minor Studies III','<p>Mixed Media<br />\r\n32cm x 32cm<br />\r\nSOLD</p>','',120),(267,1,'Minor Studies IV','<p>Mixed Media<br />\r\n32cm x 32cm<br />\r\nAUD$450</p>','',107),(268,1,'Minor Studies V','<p>Mixed Media<br />\r\n32cm x 32cm<br />\r\nAUD$450</p>','',98),(269,1,'Minor Studies VI','<p>Mixed Media<br />\r\n32cm x 32cm<br />\r\nAUD$450</p>','',99),(270,1,'Heart of the Soprano','<p>Ink on Canvas<br />\r\n83cm x 56cm<br />\r\nFramed<br />\r\nSOLD</p>','',175),(355,1,'Bus Drivers\' Dog','<p>Oil on Board<br />\r\n125.5cm x 95.5cm<br />\r\nFramed<br />\r\nSOLD<br />\r\n&nbsp;</p>','',130),(271,1,'Abyss','<p>Mixed Media on Canvas<br />\r\n92cm x 92cm<br />\r\nAUD$1570</p>','',125),(272,1,'Emerging','<p>Mixed Media on Canvas<br />\r\n60cm x 60cm<br />\r\nSOLD</p>','',130),(273,1,'Gorge','<p>Mixed Media on Canvas<br />\r\n41cm x 122cm<br />\r\nAUD$960</p>','',128),(274,1,'Hanging','<p>Mixed Media on Canvas<br />\r\n102cm x 102cm<br />\r\nAUD$1680</p>','',108),(275,1,'Riverstones','<p>Mixed Media on Canvas<br />\r\n102cm x 102cm<br />\r\nAUD$1680</p>','',112),(276,1,'Eddy, Teddy, Freddy','<p>Watercolour on Paper<br />\r\n52cm x 52cm<br />\r\nFramed<br />\r\nAUD$780</p>','',92),(277,1,'It\'s all about the Smile','<p>Watercolour on Paper<br />\r\n53cm x 43cm<br />\r\nFramed<br />\r\nSOLD</p>','',79),(278,1,'Pagoda','<p>Watercolour on Paper<br />\r\n55cm x 45cm<br />\r\nFramed<br />\r\nAUD$520</p>','',76),(279,1,'Lullaby','<p>Watercolour on Paper<br />\r\n44cm x 47.5cm<br />\r\nFramed<br />\r\nAUD$500</p>','',83),(280,1,'Red Bird Forest','<p>Watercolour on Paper<br />\r\n56cm x 76cm<br />\r\nFramed<br />\r\nAUD$570</p>','',89),(282,1,'Geisha Fan','<p>RD004 2008<br />\r\nKomona Knife (Bone), Silver, Glazed Drops, Porcelain on Farm Weave<br />\r\n38cm x 96cm<br />\r\nSOLD</p>','',111),(354,1,'Last Light on Min Min Ridge','<p>Oil on Canvas<br />\r\n100cm x 100cm<br />\r\nAUD$5200</p>','',125),(283,1,'Shut up Shutters','<p>RD005 2008<br />\r\nPaint, Ink &amp; Charcoal on Shutters<br />\r\n74cm X 54cm<br />\r\n$AUD1750</p>','',123),(284,1,'Feldspar V','<p>Ceramic Feldspar &amp; Painted Wood<br />\r\n64cm X 64cm<br />\r\n$AUD1700</p>','',70),(286,1,'Kanji Portal','<p>Glazed Ceramic on Wood<br />\r\n77.5cm X 60cm<br />\r\n$AUD900</p>','',83),(287,1,'Feldspar V','<p>RD007 2008<br />\r\nCeramic Feldspar &amp; Painted Wood<br />\r\n64cm X 64cm<br />\r\n$AUD1700</p>','',118),(291,1,'Beyond the Continuum','<p>Oil on Canvas<br />\r\n90cm x 90cm<br />\r\nSOLD</p>','',179),(292,1,'Ethereal Imprint - Emu','<p>Oil on Canvas<br />\r\n120cm x 120cm<br />\r\nSOLD</p>','',171),(289,1,'Shut up Shutters','<p>Paint, Ink &amp; Charcoal on Shutters<br />\r\n74cm X 54cm<br />\r\n$AUD1750</p>','',89),(293,1,'A Long Way Up','<p>Oil on Canvas<br />\r\n90cm x 90cm<br />\r\nSOLD</p>','',180),(294,1,'Tracings of Memory - MacDonnell Ranges','<p>Oil on Canvas<br />\r\n120cm x 100cm<br />\r\nSOLD</p>','',103),(295,1,'Jellyfish Gliding','<p>Oil on Canvas<br />\r\n90cm x 110cm<br />\r\nSOLD</p>','',174),(296,1,'Watching from the Long Grass','<p>Oil on Canvas<br />\r\n100cm x 100cm<br />\r\nSOLD</p>','',101),(297,1,'Shall We Have This Dance','<p>Oil on Canvas<br />\r\n120cm x 100cm<br />\r\nSOLD</p>','',100),(298,1,'We Share a Dream (Cathy Freeman)','<p>Oil on Canvas<br />\r\n120cm x 120cm<br />\r\nNOT FOR SALE<br />\r\n(Entry for 2009 Archibald Prize)</p>','',113),(299,1,'I Travelled All Night','<p>Oil on Canvas<br />\r\n60cm x 60cm<br />\r\nSOLD</p>','',206),(300,1,'We Travel This Land','<p>Oil on Canvas<br />\r\n100cm x 100cm<br />\r\nSOLD</p>','',104),(301,1,'Big Red','<p>Watercolour Pencil &amp; <br />\r\nOil Crayon on Arches<br />\r\n21cm x 15cm<br />\r\nFramed<br />\r\nSOLD</p>','',165),(302,1,'Bundle of Joy','<p>Ink, Watercolour Pencil &amp; <br />\r\nWatercolour on Arches<br />\r\n20cm x 13cm<br />\r\nFramed<br />\r\nSOLD</p>','',182),(511,1,'Old Suburb','<p>Collagraph<br />\r\n55cm x 67cm<br />\r\nFramed<br />\r\nLimited Edition 2/2<br />\r\nAUD$500</p>','',88),(304,1,'I Feel Like Dancing','<p>Watercolour Pencil &amp; <br />\r\nOil Crayon on Arches<br />\r\n18cm x 15cm<br />\r\nFramed<br />\r\nSOLD</p>','',153),(305,1,'Old Friends','<p>Watercolour Pencil on Arches<br />\r\n40cm x 30cm<br />\r\nFramed<br />\r\nSOLD</p>','',87),(306,1,'Stand by Me','<p>Ink, Watercolour Pencil &amp; <br />\r\nWatercolour on Arches<br />\r\n20cm x 13cm<br />\r\nFramed<br />\r\nSOLD</p>','',92),(308,1,'Love Lingers in the Bungles','<p>Watercolour Pencil &amp; <br />\r\nOil Crayon on Arches<br />\r\n16cm x 14cm<br />\r\nFramed<br />\r\nSOLD</p>','',90),(309,1,'Nocturnal','<p>Watercolour Pencil &amp; <br />\r\nOil Crayon on Arches<br />\r\n16cm x 14cm<br />\r\nFramed<br />\r\nSOLD</p>','',82),(310,1,'Kangaroo at Dusk','<p>Watercolour Pencil &amp; <br />\r\nOil Crayon on Arches<br />\r\n16cm x 14cm<br />\r\nFramed<br />\r\nSOLD</p>','',101),(311,1,'Kangaroo Hiding','<p>Watercolour Pencil &amp; <br />\r\nOil Crayon on Arches<br />\r\n16cm x 14cm<br />\r\nFramed<br />\r\nSOLD</p>','',99),(312,1,'Walk with Me','<p>Ink, Watercolour Pencil &amp; <br />\r\nWatercolour on Arches<br />\r\n20cm x 13cm<br />\r\nFramed<br />\r\nSOLD</p>','',105),(313,1,'Modern Girls','<p>Watercolour Pencil on Arches<br />\r\n30cm x 20cm<br />\r\nFramed<br />\r\nSOLD</p>','',95),(510,1,'Wallum Seed Pods & Italian Journey','<p>Etching &amp; Chino Colle<br />\r\n84cm x 75cm<br />\r\nFramed<br />\r\nLimited Edition V1/1<br />\r\nSOLD</p>','',85),(353,1,'Tree Girls','<p>Charcoal on Board<br />\r\n30cm x 15cm<br />\r\nFramed<br />\r\nSOLD</p>','',58),(314,1,'Henry Taking Liberties','<p>Watercolour Pencil on Arches<br />\r\n29cm x 21cm<br />\r\nFramed<br />\r\nSOLD</p>','',157),(315,1,'Henry Taking Yet More Liberties','<p>Watercolour Pencil on Arches<br />\r\n29cm x 21cm<br />\r\nFramed<br />\r\nSOLD</p>','',167),(317,1,'Cockatoo Calling Print','<p>Limited Edition of 25<br />\r\nAvailable on Paper or Canvas and Signed &amp; Numbered by Artist<br />\r\n40cm x 40cm Framed AUD$750<br />\r\n80cm x 80cm Framed SOLD<br />\r\n90cm x 90cm Framed SOLD<br />\r\n<br />\r\n*40cm x 40cm AUD$600<br />\r\n*80cm x 80cm SOLD<br />\r\n(*Prices quoted are for unframed prints on 320gsm Elite Rough Texture Paper)</p>','',306),(340,1,'Ross Creek, Yeppon','<p>Pen &amp; Wash<br />\r\n63cm x 79cm<br />\r\nFramed<br />\r\nAUD$550</p>','',46),(319,1,'Cyclone II Country','<p>Acrylic on Canvas<br />\r\n183cm x 60cm<br />\r\nAUD$4400</p>','',45),(320,1,'Cyclone Reef','<p>Acrylic on Canvas<br />\r\n183cm x 60cm<br />\r\nAUD$4400</p>','',44),(321,1,'Cyclone II Country','<p>Acrylic on Canvas<br />\r\n183cm x 60cm<br />\r\nAUD$4400</p>','',30),(322,1,'Cyclone Reef','<p>Acrylic on Canvas<br />\r\n183cm x 60cm<br />\r\nAUD$4400</p>','',28),(323,1,'Wet Seasons Torrents','<p>Acrylic on Canvas<br />\r\n183cm x 60cm<br />\r\nAUD$4400</p>','',13),(324,1,'Red Coat','<p>Oil on Canvas<br />\r\n72cm x 55cm<br />\r\nSOLD</p>','',52),(325,1,'Before the Gates','<p>Oil on Canvas<br />\r\n74cm x 74cm<br />\r\nAUD$3000</p>','',44),(326,1,'The Sisters','<p>Oil on Canvas<br />\r\n79cm x 62cm<br />\r\nAUD$3000</p>','',44),(327,1,'Horse in Creek','<p>Watercolour<br />\r\n41cm x 51cm<br />\r\nSOLD</p>','',47),(328,1,'Before the Gates','<p>Oil on Canvas<br />\r\n74cm x 74cm<br />\r\nAUD$3000</p>','',222),(329,1,'Horse in Creek','<p>Watercolour<br />\r\n41cm x 51cm<br />\r\nSOLD</p>','',183),(330,1,'Red Coat','<p>Oil on Canvas<br />\r\n72cm x 55cm<br />\r\nSOLD</p>','',148),(331,1,'The Sisters','<p>Oil on Canvas<br />\r\n79cm x 62cm<br />\r\nAUD$3000</p>','',70),(332,1,'Water Rats','<p>Oil on Canvas<br />\r\n82cm x 111cm<br />\r\nFramed<br />\r\nAUD$2750</p>','',39),(333,1,'Autumn Light, Maldon','<p>Pastel on Paper<br />\r\n82cm x 100cm<br />\r\nFramed<br />\r\nAUD$2500</p>','',38),(334,1,'Sofarla Post Office','<p>Pastel on Paper<br />\r\n61cm x 74cm<br />\r\nFramed<br />\r\nAUD$999</p>','',42),(335,1,'Nillbertie Road, Mudgee','<p>Pastel on Paper<br />\r\n61cm x 73cm<br />\r\nFramed<br />\r\nSOLD</p>','',42),(336,1,'Autumn Light, Maldon','<p>Pastel on Paper<br />\r\n82cm x 100cm<br />\r\nFramed<br />\r\nAUD$2500</p>','',213),(337,1,'Nillbertie Road, Mudgee','<p>Pastel on Paper<br />\r\n61cm x 73cm<br />\r\nFramed<br />\r\nSOLD</p>','',253),(338,1,'Sofarla Post Office','<p>Pastel on Paper<br />\r\n61cm x 74cm<br />\r\nFramed<br />\r\nAUD$999</p>','',224),(339,1,'Water Rats','<p>Oil on Canvas<br />\r\n82cm x 111cm<br />\r\nFramed<br />\r\nAUD$2750</p>','',243),(341,1,'Ross Creek, Yeppon','<p>Pen &amp; Wash<br />\r\n63cm x 79cm<br />\r\nFramed<br />\r\nAUD$550</p>','',229),(342,1,'Morning Sun on the Dragon\'s Back','<p>Pastel on Paper<br />\r\n116cm x 144cm<br />\r\nFramed<br />\r\nAUD$5000</p>','',122),(343,1,'Follow in Flight','<p>Oil on Canvas<br />\r\n45cm x 55cm<br />\r\nSOLD</p>','',39),(344,1,'Sometimes I Travel to Secret Places','<p>Oil on Canvas<br />\r\n64cm x 64cm<br />\r\nFramed<br />\r\nAUD$2000</p>','',41),(345,1,'I Dream of Flying','<p>Oil on Canvas<br />\r\n64cm x 64cm<br />\r\nFramed<br />\r\nAUD$2000</p>','',40),(346,1,'Imprint Landscape','<p>Oil on Canvas<br />\r\n26cm x 20cm<br />\r\nAUD$600</p>','',39),(347,1,'Mountains of Memory','<p>Oil on Canvas<br />\r\n26cm x 20cm<br />\r\nAUD$600</p>','',40),(348,1,'Watchful Little Magpie','<p>Oil on Canvas<br />\r\n46cm x 46cm<br />\r\nAUD$1400</p>','',38),(366,1,'Saving Grace','<p>Oil on Canvas<br />\r\n90cm x 60cm<br />\r\nAUD$1100</p>','',37),(349,1,'Imprint Landscape','<p>Oil on Canvas<br />\r\n26cm x 20cm<br />\r\nAUD$600</p>','',201),(350,1,'Mountains of Memory','<p>Oil on Canvas<br />\r\n26cm x 20cm<br />\r\nAUD$600</p>','',199),(351,1,'Watchful Little Magpie','<p>Oil on Canvas<br />\r\n46cm x 46cm<br />\r\nAUD$1400</p>','',163),(352,1,'Follow in Flight','<p>Oil on Canvas<br />\r\n45cm x 55cm<br />\r\nSOLD</p>','',229),(356,1,'Island in the South','<p>Oil on Linen<br />\r\n102cm x 92cm<br />\r\nSOLD</p>','',116),(357,1,'Man on a Lake','<p>Oil on Linen<br />\r\n100cm x 90cm<br />\r\nAUD$5500</p>','',103),(358,1,'Mensch am Strand','<p>Oil on Paper<br />\r\n93cm x 76cm<br />\r\nFramed<br />\r\nAUD$1500</p>','',114),(359,1,'Messenger','<p>Oil on Board<br />\r\n54cm x 44cm<br />\r\nFramed<br />\r\nSOLD</p>','',112),(360,1,'Middle Age with Dressing Gown on Fire','<p>Oil on Linen<br />\r\n106.5cm x 95.5cm<br />\r\nAUD$5600</p>','',103),(361,1,'Saint Imbecile Guides my Steps','<p>Oil on Board<br />\r\n54cm x 44cm<br />\r\nFramed<br />\r\nSOLD</p>','',118),(362,1,'Yellow Dog Crying','<p>Oil on Linen<br />\r\n86.5cm x 76.5cm<br />\r\nAUD$5200</p>','',78),(363,1,'Woman and Towel','<p>Oil on Linen<br />\r\n92cm x 102cm<br />\r\nAUD$5500</p>','',115),(364,1,'Allan\'s Cat','<p>Drypoint and Open Bite Etching<br />\r\n(AP series of 12)<br />\r\n52cm x 48cm<br />\r\nFramed<br />\r\nSOLD</p>','',113),(365,1,'Girl in Tunic','<p>Drypoint and Open Bite Etching<br />\r\n(AP series of 12)<br />\r\n52cm x 48cm<br />\r\nFramed<br />\r\nAUD$455</p>','',97),(367,1,'Coming Around Again','<p>Oil on Canvas<br />\r\n90cm x 60cm<br />\r\nAUD$1100</p>','',32),(368,1,'Wild at Heart','<p>Oil on Canvas<br />\r\n100cm x 100cm<br />\r\nSOLD</p>','',36),(369,1,'Sweetness and Light','<p>2008<br />\r\nBronze on a Marble Base<br />\r\nUnique<br />\r\n(H) 22cm (W) 36cm (D) 7cm<br />\r\nAUD$1390</p>','',35),(370,1,'Turning Japanese','<p>2008Bronze<br />\r\nUnique<br />\r\n(H) 19cm (W) 23cm (D) 14cm<br />\r\nAUD$1150</p>','',35),(371,1,'Rest Assured','<p>2005<br />\r\nBronze on a Sanstone Base<br />\r\nLimited Edition of 7 (4/7)<br />\r\n(H) 50cm (W) 20cm (D) 10cm<br />\r\nSOLD</p>','',34),(372,1,'Coming Around Again','<p>Oil on Canvas<br />\r\n90cm x 60cm<br />\r\nAUD$1100</p>','',17),(373,1,'Rest Assured','<p>2005<br />\r\nBronze on a Sanstone Base<br />\r\nLimited Edition of 7 (4/7)<br />\r\n(H) 50cm (W) 20cm (D) 10cm<br />\r\n1/25 SOLD</p>','',87),(374,1,'Saving Grace','<p>Oil on Canvas<br />\r\n90cm x 60cm<br />\r\nAUD$1100</p>','',17),(375,1,'Sweetness and Light','<p>2008<br />\r\nBronze on a Marble Base<br />\r\nUnique<br />\r\n(H) 22cm (W) 36cm (D) 7cm<br />\r\nSOLD</p>','',72),(376,1,'Turning Japanese','<p>2008<br />\r\nBronze<br />\r\nUnique<br />\r\n(H) 19cm (W) 23cm (D) 14cm<br />\r\nSOLD</p>','',51),(377,1,'Green Stripes','<p>Oil on Canvas<br />\r\n72cm x 66cm<br />\r\nAUD$1500</p>','',35),(378,1,'Poppy Carnival','<p>Oil on Canvas<br />\r\n80cm x 80cm<br />\r\nAUD$1900</p>','',35),(379,1,'Serene','<p>Oil on Canvas<br />\r\n50cm x 60cm<br />\r\nAUD$950</p>','',37),(380,1,'Pink & White Roses','<p>Oil on Canvas<br />\r\n70cm x 70cm<br />\r\nAUD$1200</p>','',43),(381,1,'Beachside II','<p>Arylic on Paper<br />\r\n23cm x 16cm<br />\r\nAUD$550</p>','',103),(383,1,'Beachside II','<p>Arylic on Paper<br />\r\n23cm x 16cm<br />\r\nAUD$550</p>','',49),(384,1,'Blue Bay','<p>Acrylic on Canvas<br />\r\n50cm x 50cm<br />\r\n$950</p>','',67),(385,1,'Blue Bay (on paper)','<p>Acrylic on Paper<br />\r\n23cm x 16cm<br />\r\nAUD$550</p>','',49),(386,1,'Calm','<p>Acrylic on Paper<br />\r\n23cm x 16cm<br />\r\nAUD$550</p>','',57),(387,1,'Ebb Tide','<p>Acrylic on Canvas<br />\r\n90cm x 75cm<br />\r\nAUD$1700</p>','',55),(388,1,'Goat Herders, McIvors Creek','<p>Acrylic on Canvas<br />\r\n52cm x 62cm<br />\r\nFramed<br />\r\nAUD$2400</p>','',113),(389,1,'Old Farmhouse, Mount Crosby','<p>Acrylic on Board<br />\r\n51cm x 60cm<br />\r\nFramed<br />\r\nAUD$2400</p>','',124),(390,1,'Jockey with Whip','<p>Acrylic on Board<br />\r\n62cm x 44cm<br />\r\nFramed<br />\r\nAUD$2200</p>','',105),(391,1,'Return to Sale','<p>Acrylic on Board<br />\r\n60cm x 45cm<br />\r\nFramed<br />\r\nAUD$2200</p>','',115),(392,1,'Goat Herders, McIvors Creek','<p>Acrylic on Canvas<br />\r\n52cm x 62cm<br />\r\nFramed<br />\r\nAUD$2400</p>','',40),(393,1,'Jockey with Whip','<p>Acrylic on Board<br />\r\n62cm x 44cm<br />\r\nFramed<br />\r\nAUD$2200</p>','',42),(394,1,'Old Farmhouse, Mount Crosby','<p>Acrylic on Board<br />\r\n51cm x 60cm<br />\r\nFramed<br />\r\nAUD$2400</p>','',49),(395,1,'Return to Sale','<p>Acrylic on Board<br />\r\n60cm x 45cm<br />\r\nFramed<br />\r\nAUD$2200</p>','',45),(540,1,'Blue by You','<p>Recycled Tea Bag Paper &amp; Watercolour<br />\r\n61cm x 51cm<br />\r\nFramed<br />\r\nAUD$690</p>','',52),(536,1,'Swamp Magic - Verse 1','<p>Oil on Canvas<br />\r\n110cm x 90cm<br />\r\nAUD$5200</p>','',180),(396,1,'Girl in Tunic','<p>Drypoint and Open Bite Etching<br />\r\n(AP series of 12)<br />\r\n52cm x 48cm<br />\r\nFramed<br />\r\nAUD$455</p>','',134),(397,1,'Man on a Lake','<p>Oil on Linen<br />\r\n100cm x 90cm<br />\r\nAUD$5500</p>','',135),(398,1,'Mensch am Strand','<p>Oil on Paper<br />\r\n93cm x 76cm<br />\r\nFramed<br />\r\nAUD$1500</p>','',126),(399,1,'Messenger','<p>Oil on Board<br />\r\n54cm x 44cm<br />\r\nFramed<br />\r\nSOLD</p>','',131),(400,1,'Middle Age with Dressing Gown on Fire','<p>Oil on Linen<br />\r\n106.5cm x 95.5cm<br />\r\nAUD$5600</p>','',141),(401,1,'Woman and Towel','<p>Oil on Linen<br />\r\n92cm x 102cm<br />\r\nAUD$5500</p>','',90),(402,1,'Yellow Dog Crying','<p>Oil on Linen<br />\r\n86.5cm x 76.5cm<br />\r\nAUD$5200</p>','',102),(403,1,'A Stitch in Time','<p>Recycled Tea Bag Paper, Collage, Thread Cotton,&nbsp;Recycled Coffee Filter Paper<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',76),(404,1,'Boo Who?','<p>Recycled Tea Bag Paper &amp; Recycled Coffee Filter Paper<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',71),(405,1,'Dove Coat','<p>Recycled Tea Bag Paper, Collage, Thread Cotton, Recycled Coffee Filter Paper<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',87),(406,1,'Dove Tail','<p>Recycled Tea Bag Paper, Collage &amp; Feather<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',67),(407,1,'Ewe','<p>Recycled Tea Bag Paper &amp; Collage<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',70),(408,1,'Green Tea','<p>Recycled Tea Bag Paper, Collage, Thread Cotton, Recycled Coffee Filter Paper &amp; Paint<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',70),(409,1,'Heart Strings','<p>Recycled Tea Bag Paper &amp; Thread<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',49),(410,1,'It\'s Beautiful Here','<p>Recycled Tea Bag Paper, Silver Leaf &amp; Collage<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',41),(411,1,'Simply Ned','<p>Recycled Tea Bag Paper &amp; Collage<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nSOLD</p>','',38),(412,1,'Tea Shirt','<p>Recycled Tea Bag Paper, Collage, Thread Cotton, Recycled Coffee Filter Paper<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',32),(423,1,'Memories & Music','<p>Ink on Paper<br />\r\n50cm x 39cm<br />\r\nFramed<br />\r\nAUD$300</p>','',29),(413,1,'The Night Dress Never Worn','<p>Recycled Tea Bag Paper, Paper Doiley, Thread &amp; Button<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',34),(414,1,'A Tree for Thee','<p>Recycled Tea Bag Paper, Collage &amp; Found Object<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',75),(415,1,'Yesterday\'s Tears','<p>Recycled Tea Bag Paper &amp; Silver Leaf<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',37),(416,1,'You have my Heart','<p>Recycled Tea Bag Paper, Collage &amp; Found Object<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',40),(417,1,'The Mysteries of Memories I','<p>Recycled Tea Bag Paper &amp; Silver Leaf<br />\r\n85cm x 110cm<br />\r\nFramed<br />\r\nAUD$990</p>','',33),(418,1,'The Mysteries of Memories III','<p>Recycled Tea Bag Paper &amp; Silver Leaf<br />\r\n85cm x 110cm<br />\r\nFramed<br />\r\nAUD$990</p>','',33),(419,1,'Blue by You','<p>Recycled Tea Bag Paper &amp; Watercolour<br />\r\n61cm x 51cm<br />\r\nFramed<br />\r\nAUD$690</p>','',81),(420,1,'Carnival','<p>Recycled Tea Bag Paper &amp; Watercolour<br />\r\n61cm x 51cm<br />\r\nFramed<br />\r\nAUD$690</p>','',77),(421,1,'Mellow Yellow','<p>Recycled Tea Bag Paper &amp; Watercolour<br />\r\n61cm x 51cm<br />\r\nFramed<br />\r\nAUD$690</p>','',35),(422,1,'Fade to Pink','<p>Recycled Tea Bag Paper &amp; Watercolour<br />\r\n61cm x 51cm<br />\r\nFramed<br />\r\nSOLD</p>','',90),(673,1,'Running with Kangaroo','<p>Oil on Canvas<br />\r\n120cm x 90cm<br />\r\nFramed<br />\r\nAUD$7000</p>','',150),(424,1,'Upon the Yellow Lattice Parchment, Lines of Music are Inscribed','<p>Enamel &amp; Acrylic on Canvas<br />\r\n50cm x 75cm<br />\r\nSOLD</p>','',31),(425,1,'Soft Voices & Sweet Music','<p>Enamel &amp; Acrylic on Canvas<br />\r\n71cm x 50cm<br />\r\nAUD$450</p>','',31),(426,1,'Pearls and Silent Waters','<p>Ink on Paper<br />\r\n55cm x 73cm<br />\r\nFramed<br />\r\nAUD$1100</p>','',28),(427,1,'The Dancer','<p>Enamel &amp; Acrylic on Canvas<br />\r\n122cm x 40cm<br />\r\nAUD$1100</p>','',35),(428,1,'Pearls and Silent Waters','<p>Ink on Paper<br />\r\n55cm x 73cm<br />\r\nFramed<br />\r\nAUD$1100</p>','',46),(429,1,'The Dancer','<p>Enamel &amp; Acrylic on Canvas<br />\r\n122cm x 40cm<br />\r\nAUD$1100</p>','',30),(430,1,'Dance under the Cherry Tree','<p>Enamel &amp; Acrylic on Canvas<br />\r\n95cm x 50cm<br />\r\nAUD$1100</p>','',145),(431,1,'Ball Gowns and Butterflies','<p>Enamel &amp; Acrylic on Canvas<br />\r\n95cm x 50cm<br />\r\nAUD$1100</p>','',66),(432,1,'Cello under the Mulga Tree','<p>Enamel &amp; Acrylic on Canvas<br />\r\n82cm x 41cm<br />\r\nSOLD</p>','',119),(433,1,'Empty Bowl','<p>Acrylic on Board<br />\r\n41cm x 41cm<br />\r\nFramed<br />\r\nSOLD</p>','',33),(434,1,'Exodus','<p>Acrylic on Board<br />\r\n41cm x 41cm<br />\r\nFramed<br />\r\nSOLD</p>','',34),(435,1,'The Arrivals','<p>Acrylic on Board<br />\r\n41cm x 41cm<br />\r\nFramed<br />\r\nSOLD</p>','',37),(436,1,'Cheetah in Flight','<p>Acrylic on Board<br />\r\n88cm x 100cm<br />\r\nFramed<br />\r\nAUD$6000</p>','',32),(437,1,'Cheetah in Flight','<p>Acrylic on Board<br />\r\n88cm x 100cm<br />\r\nFramed<br />\r\nAUD$6000</p>','',0),(438,1,'Empty Bowl','<p>Acrylic on Board<br />\r\n41cm x 41cm<br />\r\nFramed<br />\r\nSOLD</p>','',267),(439,1,'Exodus','<p>Acrylic on Board<br />\r\n41cm x 41cm<br />\r\nFramed<br />\r\nSOLD</p>','',273),(440,1,'The Arrivals','<p>Acrylic on Board<br />\r\n41cm x 41cm<br />\r\nFramed<br />\r\nSOLD</p>','',266),(441,1,'Red Flowers','<p>Acrylic on Board<br />\r\n93cm x 75cm<br />\r\nFramed<br />\r\nAUD$7500</p>','',278),(442,1,'Reserved','<p>Acrylic on Board<br />\r\n90cm x 90cm<br />\r\nFramed<br />\r\nAUD$9000</p>','',23),(443,1,'The Artist','<p>Acrylic on Board<br />\r\n81cm x 64cm<br />\r\nFramed<br />\r\nSOLD</p>','',205),(444,1,'Desert Crossing','<p>Acrylic on Board<br />\r\n71cm x 91cm<br />\r\nFramed<br />\r\nAUD$8500</p>','',305),(445,1,'The Empty Bowl','<p>Acrylic on Board<br />\r\n100cm x 100cm<br />\r\nFramed<br />\r\nAUD$11000</p>','',242),(446,1,'Olympic Mowing Team','<p>Acrylic on Canvas<br />\r\n70cm x 70cm<br />\r\nSOLD</p>','',43),(447,1,'Groupie Chicks','<p>Acrylic on Canvas<br />\r\n100cm x 100cm<br />\r\nSOLD</p>','',41),(448,1,'Ugly Duckling','<p>Acrylic on Canvas<br />\r\n122cm x 40cm<br />\r\nSOLD</p>','',38),(449,1,'Wombat Wiggle','<p>Acrylic on Linen<br />\r\n76cm x 102cm<br />\r\nSOLD</p>','',43),(450,1,'Groupie Chicks','<p>Acrylic on Canvas<br />\r\n100cm x 100cm<br />\r\nSOLD</p>','',173),(451,1,'Olympic Mowing Team','<p>Acrylic on Canvas<br />\r\n70cm x 70cm<br />\r\nSOLD</p>','',154),(452,1,'Healthy Competition','<p>Acrylic on Canvas<br />\r\n50cm x 70cm<br />\r\nAUD$1490</p>','',188),(453,1,'Unconditional Love','<p>Acrylic on Canvas<br />\r\n60cm x 150cm<br />\r\nAUD$1980</p>','',42),(454,1,'Forecast Fine Showers','<p>Acrylic on Linen<br />\r\n61cm x 122cm<br />\r\nAUD$1650</p>','',46),(455,1,'Hinterland','<p>Mixed Media&nbsp;on Canvas<br />\r\n61cm x 122cm<br />\r\nSOLD</p>','',29),(456,1,'Escarpment','<p>Mixed Media&nbsp;on Canvas<br />\r\n76cm x 76cm<br />\r\nAUD$1200</p>','',31),(457,1,'Monument to Strength','<p>Mixed Media&nbsp;on Canvas<br />\r\n90cm x 30cm<br />\r\nAUD$960</p>','',30),(458,1,'Escarpment','<p>Mixed Media on Canvas<br />\r\n76cm x 76cm<br />\r\nAUD$1200</p>','',40),(459,1,'Hinterland','<p>Mixed Media&nbsp;on Canvas<br />\r\n61cm x 122cm<br />\r\nSOLD</p>','',40),(460,1,'Monument to Strength','<p>Mixed Media&nbsp;on Canvas<br />\r\n90cm x 30cm<br />\r\nAUD$960</p>','',34),(461,1,'Darkness before the Dawn Chorus','<p>Mixed Media on Canvas<br />\r\n76cm x 102cm<br />\r\nAUD$1350</p>','',33),(462,1,'Threading its Way','<p>Mixed Media on Canvas<br />\r\n100cm x 100cm<br />\r\nAUD$1680</p>','',31),(463,1,'Beached Bums - Kev & Johnno','<p>The series \'Beached Bums\' was inspired by wonderful memories of exploring along the beach to discover what treasures have been left by the retreating tide. And the names? This is Australia where we abbreviate names or add an &lsquo;o&rsquo; - and sometimes we do both. So Kev &amp; Johnno they became.<br />\r\n<br />\r\nBronze<br />\r\nLimited Edition of 9 (1/9)<br />\r\nSOLD</p>','',35),(464,1,'Mike','<p>&lsquo;Mike&rsquo; stands about 70cms tall and is a very simple stylised male torso and is one of Rhonda\'s favourite pieces.<br />\r\n<br />\r\nBronze<br />\r\nLimited Edition of 9 (3/9)<br />\r\nAUD$3750</p>','',29),(465,1,'Tall Poppies','<p>The working title for these pieces was &ldquo;Tall Poppies in the Garden of Support and Strangulation&quot; because we do provide a healthy and supportive environment for people to be high achievers. However, it seems we don&rsquo;t want them to get beyond a certain level of success because it is then that we wait for them to fail - perhaps even want them to fail. And then we seem to get a great deal of pleasure out of their downfall.<br />\r\n<br />\r\nCertainly there seems to be much more media coverage when our heroes falter rather than when they succeed. Is this syndrome uniquely Australian?<br />\r\n<br />\r\nBronze<br />\r\nLimited Edition (1/1)<br />\r\nAUD$1850 each</p>','',30),(466,1,'Con Gravita','<p>Mixed Media on Canvas<br />\r\n100cm x 120cm<br />\r\nAUD$2550</p>','',30),(467,1,'Nexus I','<p>Mixed Media on Canvas<br />\r\n60cm x 60cm<br />\r\nAUD$700</p>','',30),(468,1,'Orplid II','<p>Mixed Media on Canvas<br />\r\n60cm x 60cm<br />\r\nAUD$700</p>','',31),(469,1,'Orplid II','<p>Mixed Media on Canvas<br />\r\n60cm x 60cm<br />\r\nAUD$700</p>','',29),(470,1,'Orplid III','<p>Mixed Media on Canvas<br />\r\n31cm x 31cm<br />\r\nAUD$385</p>','',30),(471,1,'Orplid IV','<p>Mixed Media on Canvas<br />\r\n31cm x 31cm<br />\r\nAUD$385</p>','',29),(472,1,'Con Gravita','<p>Mixed Media on Canvas<br />\r\n100cm x 120cm<br />\r\nAUD$2550</p>','',107),(473,1,'Melinda 2','<p>Oil Pastel on Paper<br />\r\n100cm x 70cm<br />\r\nFramed<br />\r\nAUD$3300</p>','',90),(474,1,'Melinda','<p>Oil Pastel on Paper<br />\r\n70cm x 100cm<br />\r\nFramed<br />\r\nAUD$3100</p>','',98),(475,1,'Kaliarne 11','<p>Oil Pastel on Paper<br />\r\n70cm x 100cm<br />\r\nFramed<br />\r\nAUD$3100</p>','',89),(476,1,'Sarah adjusting her hair','<p>Oil Pastel on Paper<br />\r\n100cm x 70cm<br />\r\nFramed<br />\r\nAUD$3000</p>','',80),(477,1,'Tania 2','<p>Oil Pastel on Paper<br />\r\n70cm x 100cm<br />\r\nFramed<br />\r\nAUD$3000</p>','',83),(478,1,'Girl fixing her hair','<p>Oil Pastel on Paper<br />\r\n100cm x 70cm<br />\r\nFramed<br />\r\nAUD$3000</p>','',74),(479,1,'Sarah being coy','<p>Oil Pastel on Paper<br />\r\n24cm x 16cm<br />\r\nFramed<br />\r\nAUD$800</p>','',66),(480,1,'Belinda Walking','<p>Oil Pastel on Paper<br />\r\n24cm x 16cm<br />\r\nFramed<br />\r\nAUD$750</p>','',67),(481,1,'Melinda Resting (The Baroque Nude)','<p>Chalk Pastel on Paper<br />\r\n100cm x 70cm<br />\r\nFramed<br />\r\nAUD$2200</p>','',88),(482,1,'Tania','<p>Charcoal on Paper<br />\r\n100cm x 70cm<br />\r\nFramed<br />\r\nAUD$2200</p>','',81),(483,1,'Woman resting on a stool','<p>Charcoal on Paper<br />\r\n65cm x 50cm<br />\r\nAUD$1500</p>','',63),(484,1,'Sarah Montage','<p>Aqua Sketch on Paper<br />\r\n75cm x 56cm<br />\r\nFramed<br />\r\nAUD$1100</p>','',45),(485,1,'Tuesday Morning (three quick sketches of Melinda)','<p>Charcoal on Paper<br />\r\n65cm x 50cm<br />\r\nAUD$1100</p>','',69),(486,1,'Sarah quick sketch No.2','<p>Charcoal on Paper<br />\r\n24cm x 16cm<br />\r\nFramed<br />\r\nSOLD</p>','',58),(487,1,'Sarah quick sketch No.3','<p>Charcoal on Paper<br />\r\n24cm x 16cm<br />\r\nFramed<br />\r\nAUD$750</p>','',56),(488,1,'Moving Figure','<p>Aquatone on Paper<br />\r\n29.7cm x 20.7cm<br />\r\nFramed<br />\r\nAUD$750</p>','',64),(489,1,'Reclining Nude','<p>Charcoal on Paper<br />\r\n70cm x 50cm<br />\r\nFramed<br />\r\nAUD$1800</p>','',54),(490,1,'Tania (Study in Chiaroscuro)','<p>Chalk Pastel on Black Paper<br />\r\n65cm x 50cm<br />\r\nFramed<br />\r\nSOLD</p>','',43),(491,1,'Teresa','<p>Black Pencil on Paper<br />\r\n100cm x 70cm<br />\r\nFramed<br />\r\nAUD$2000</p>','',76),(492,1,'Noosa River Dinghy 2','<p>Acrylic on Arches Paper<br />\r\n53cm x 73cm<br />\r\nFramed<br />\r\nAUD$3500</p>','',147),(493,1,'Nightfall on Barkley Plains','<p>Acrylic on Canvas<br />\r\n75cm x 180cm<br />\r\nAUD$10000</p>','',33),(494,1,'Rich are the rooms and the comforts therein','<p>Oil on Canvas<br />\r\n78cm x 43cm<br />\r\nSOLD</p>','',95),(495,1,'Shaking down whole blocks of green gold scarlet brown leading...','<p>Oil on Canvas on Board<br />\r\nFramed<br />\r\n59.5cm x 49.5cm<br />\r\nSOLD</p>','',82),(496,1,'Summer unrolls its nature strips like carpets seesaws & sundials','<p>Oil on Canvas<br />\r\nFramed<br />\r\n91.5cm x 71cm<br />\r\nSOLD</p>','',112),(574,1,'Unfinished Business','<p>Acrylic on Linen<br />\r\n122cm x 61cm<br />\r\nSOLD</p>','',131),(497,1,'Remembering Georgiana Molloy','<p>Oil on Canvas<br />\r\n100cm x 100cm<br />\r\nAUD$4700</p>','',62),(498,1,'I know she lingers','<p>Oil on Canvas<br />\r\n70cm x 80cm<br />\r\nAUD$3900</p>','',102),(499,1,'Everybody\'s looking for something','<p>Oil on Canvas<br />\r\n45cm x 50cm<br />\r\nSOLD</p>','',144),(500,1,'Gathering Place','<p>Oil on Canvas<br />\r\n90cm x 90cm<br />\r\nAUD$4500</p>','',71),(501,1,'The Swan & Emu','<p>Oil on Canvas<br />\r\n100cm x 120cm<br />\r\nAUD$5900</p>','',107),(502,1,'Gazing over Desert Mountains','<p>Oil on Canvas<br />\r\n100cm x 200cm<br />\r\nAUD$8900</p>','',134),(503,1,'My Emu & Me','<p>Oil on Canvas<br />\r\n100cm x 60cm<br />\r\nAUD$4200</p>','',173),(504,1,'Night Walk','<p>Oil on Canvas<br />\r\n90cm x 100cm<br />\r\nFramed<br />\r\nAUD$5500</p>','',285),(505,1,'Kangaroo & Emu Dreams','<p>Oil on Canvas<br />\r\n100cm x 120cm<br />\r\nAUD$5900</p>','',120),(506,1,'Eumundi Hill','<p>Pastel on Paper<br />\r\n58cm x 49cm<br />\r\nFramed<br />\r\nSOLD</p>','',109),(507,1,'Boreen Point','<p>Pastel on Paper<br />\r\n58cm x 49cm<br />\r\nFramed<br />\r\nAUD$590</p>','',122),(508,1,'Deep in the Forest','<p>Pastel on Paper<br />\r\n58cm x 49cm<br />\r\nFramed<br />\r\nAUD$590</p>','',91),(509,1,'Sarah','<p>Charcoal on Paper<br />\r\n100cm x 70cm<br />\r\nFramed<br />\r\nSOLD</p>','',133),(563,1,'Sarah quick sketch No.3','<p>Charcoal on Paper<br />\r\n24cm x 16cm<br />\r\nFramed<br />\r\nAUD$750</p>','',50),(512,1,'Towards the End of the Night','<p>Collagraph with Chino Colle<br />\r\n55cm x 65cm<br />\r\nFramed<br />\r\nLimited Edition V1/4<br />\r\nAUD$500</p>','',95),(513,1,'Run Mary Run Diptych','<p>Diptych&nbsp;Woodcut Etching<br />\r\n66cm x 104cm<br />\r\nFramed<br />\r\nSOLD</p>','',97),(514,1,'Kimberley Sunset 2','<p>Acrylic on Arches<br />\r\n32cm x 66cm<br />\r\nAUD$1900</p>','',119),(515,1,'Morning Light Moorings','<p>Acrylic on Arches<br />\r\n73cm x 53cm<br />\r\nAUD$3500</p>','',114),(671,1,'After the Burn-off 2','<p>Acrylic on Linen<br />\r\n75cm x 180cm<br />\r\nFramed<br />\r\nAUD$10000</p>','',45),(516,1,'Manari','<p>Acrylic on Canvas<br />\r\n122cm x 91cm<br />\r\nAUD$7700</p>','',136),(517,1,'A little bit later','<p>Acrylic on Canvas<br />\r\n61cm x 122cm<br />\r\nAUD$5700</p>','',127),(518,1,'Noosa Reflections','<p>Acrylic on Arches Paper<br />\r\n53cm x 73cm<br />\r\nFramed<br />\r\nAUD$3500</p>','',118),(519,1,'Sailing','<p>Oil &amp; Acrylic on Canvas<br />\r\n152cm x 121cm<br />\r\nAUD$4500</p>','',93),(520,1,'Butterflies and Pussycats','<p>Oil &amp; Acrylic on Canvas<br />\r\n167cm x 122cm<br />\r\nSOLD</p>','',109),(521,1,'Making Music','<p>Oil &amp; Acrylic on Canvas<br />\r\n91cm x 91cm<br />\r\nSOLD</p>','',152),(522,1,'Desire','<p>Oil &amp; Acrylic on Canvas<br />\r\n122cm x 122cm<br />\r\nAUD$4900</p>','',119),(523,1,'Love is like a Rose','<p>Oil &amp; Acrylic on Canvas<br />\r\n121cm x 121cm<br />\r\nAUD$5300</p>','',133),(524,1,'Untitled','<p>Oil &amp; Acrylic on Canvas<br />\r\n198cm x 175cm<br />\r\nAUD$6900</p>','',55),(638,1,'Valley of the Bats','<p>Acrylic &amp;&nbsp;Oil Pastel&nbsp;on Canvas<br />\r\n60cm x 100cm<br />\r\nAUD$1250</p>','',53),(525,1,'Sarah Rehearsing','<p>Charcoal on Paper<br />\r\n24cm x 16cm<br />\r\nFramed<br />\r\nAUD$750</p>','',43),(526,1,'Tania resting on a chair','<p>Charcoal on Paper<br />\r\n100cm x 70cm<br />\r\nFramed<br />\r\nAUD$2200</p>','',59),(528,1,'Windorah Dune Series XV','<p>Pastel on Paper<br />\r\n45cm x 56cm<br />\r\nFramed<br />\r\nSOLD</p>','',146),(529,1,'Little Cove, Noosa','<p>Pastel on Paper<br />\r\nFramed<br />\r\n29cm x 42cm<br />\r\nAUD$980</p>','',78),(530,1,'Family Beach II, Noosa','<p>Pastel on Paper<br />\r\nFramed<br />\r\n29cm x 42cm<br />\r\nAUD$980</p>','',92),(531,1,'Muddy Waters, Lake Cooroibah','<p>Pastel on Paper<br />\r\nFramed<br />\r\n79cm x 60cm<br />\r\nAUD$1250</p>','',83),(532,1,'Family Beach II, Noosa','<p>Pastel on Paper<br />\r\nFramed<br />\r\n29cm x 42cm<br />\r\nAUD$980</p>','',35),(533,1,'Little Cove, Noosa','<p>Pastel on Paper<br />\r\nFramed<br />\r\n29cm x 42cm<br />\r\nAUD$980</p>','',33),(534,1,'Muddy Waters, Lake Cooroibah','<p>Pastel on Paper<br />\r\nFramed<br />\r\n79cm x 60cm<br />\r\nAUD$1250</p>','',38),(535,1,'Track to the Hills','<p>Pastel on Paper<br />\r\n44cm x 54cm<br />\r\nFramed<br />\r\nAUD$550</p>','',132),(537,1,'Swamp Symphony','<p>Oil on Canvas<br />\r\n80cm x 100cm<br />\r\nAUD$5000</p>','',171),(538,1,'Come Flying Dreams with Me','<p>Oil on Canvas<br />\r\n60cm x 100cm<br />\r\nAUD$4500</p>','',131),(539,1,'Lily Pond at Coolum','<p>Oil on Canvas<br />\r\n100cm x 120cm<br />\r\nAUD$6300</p>','',212),(541,1,'Dove Coat','<p>Recycled Tea Bag Paper, Collage, Thread Cotton, Recycled Coffee Filter Paper<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',49),(542,1,'Heart Strings','<p>Recycled Tea Bag Paper &amp; Thread<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',42),(543,1,'Mellow Yellow','<p>Recycled Tea Bag Paper &amp; Watercolour<br />\r\n61cm x 51cm<br />\r\nFramed<br />\r\nAUD$690</p>','',44),(544,1,'The Night Dress Never Worn','<p>Recycled Tea Bag Paper, Paper Doiley, Thread &amp; Button<br />\r\n53cm x 46cm<br />\r\nFramed<br />\r\nAUD$590</p>','',30),(545,1,'Concerning Assimilation II','<p>Treated Canvas &amp; Acrylic<br />\r\n122cm x 71cm<br />\r\nSOLD</p>','',48),(546,1,'Journey through the  Landscape 1','<p>Acrylic on Canvas<br />\r\n92cm x 122cm<br />\r\nFramed<br />\r\nAUD$3750</p>','',88),(547,1,'Journey through the  Landscape 2','<p>Acrylic on Canvas<br />\r\n92cm x 122cm<br />\r\nFramed<br />\r\nAUD$3750</p>','',17),(548,1,'I knew as a kid I would be big one day','<p>Acrylic &amp; Resin on Canvas<br />\r\n64cm x 64cm<br />\r\nFramed<br />\r\nSOLD</p>','',65),(549,1,'Andy Warhol - Art Giant Series','<p>Acrylic, Graphite &amp;<br />\r\nMixed Media on Canvas<br />\r\n102cm x 52cm<br />\r\nAUD$2750</p>','',73),(550,1,'Brett Whiteley - Art Giant Series','<p>Acrylic, Graphite &amp;<br />\r\nMixed Media&nbsp;on Canvas<br />\r\n102cm x 52cm<br />\r\nAUD$2750</p>','',71),(551,1,'Frida Kahlo - Art Giant Series','<p>Acrylic, Graphite &amp;<br />\r\nMixed Media on Canvas<br />\r\n102cm x 52cm<br />\r\nAUD$2750</p>','',85),(552,1,'The Beautiful One','<p>Acrylic &amp; Resin on Canvas<br />\r\n64cm x 64cm<br />\r\nFramed<br />\r\nAUD$1750</p>','',56),(553,1,'American Positive','<p>Hand Decorated Underglaze Ceramic<br />\r\n36cm x 38cm<br />\r\nAUD$1250</p>','',72),(683,1,'I thought I heard you call','<p>Oil on Canvas<br />\r\n100cm x 200cm<br />\r\nFramed<br />\r\nAUD$9900</p>','',19),(554,1,'Limbo','<p>Canvas on Board,<br />\r\nMixed Media&nbsp;&amp; Fibre Optics<br />\r\n150cm x 90cm<br />\r\nAUD$5800</p>','',105),(555,1,'In silence, in silence and clear delight go we','<p>Pastel on Canvas<br />\r\n90cm x 67cm<br />\r\nFramed<br />\r\nAUD$1200</p>','',68),(556,1,'And so the mellow day flows on to dusk','<p>Oil on Paper<br />\r\n58cm x 68cm<br />\r\nFramed<br />\r\nAUD$790</p>','',77),(557,1,'Facing the wind you go, splendid and free','<p>Pastel on Canvas Board<br />\r\n75cm x 65cm<br />\r\nFramed<br />\r\nAUD$820</p>','',72),(558,1,'I fortunate, I know a refuge when the strained spirit tires','<p>Oil on Paper<br />\r\n58cm x 68cm<br />\r\nFramed<br />\r\nAUD$790</p>','',67),(559,1,'The blue cloud-shadow flies and we have joined it\'s flight','<p>Pastel on Canvas<br />\r\n90cm x 67cm<br />\r\nFramed<br />\r\nSOLD</p>','',99),(560,1,'The Gods are near but we can never reach them','<p>Pastel on Canvas Board<br />\r\n75cm x 65cm<br />\r\nFramed<br />\r\nAUD$820</p>','',48),(561,1,'Colour floods our souls until they must brim & overspill','<p>Oil &amp; Acrylic on Canvas<br />\r\n82cm x 67cm<br />\r\nFramed<br />\r\nAUD$1500</p>','',78),(562,1,'It is a very magic place if I could stop there','<p>Pastel on Canvas Board<br />\r\n75cm x 65cm<br />\r\nFramed<br />\r\nSOLD</p>','',92),(564,1,'Moving Figure','<p>Aquatone on Paper<br />\r\n29.7cm x 20.7cm<br />\r\nFramed<br />\r\nAUD$750</p>','',47),(565,1,'Tania resting on a chair','<p>Charcoal on Paper<br />\r\n100cm x 70cm<br />\r\nFramed<br />\r\nAUD$2200</p>','',72),(566,1,'Melinda Resting (The Baroque Nude)','<p>Chalk Pastel on Paper<br />\r\n100cm x 70cm<br />\r\nFramed<br />\r\nAUD$2200</p>','',70),(567,1,'Tania 2','<p>Oil Pastel on Paper<br />\r\n70cm x 100cm<br />\r\nFramed<br />\r\nAUD$3000</p>','',88),(568,1,'Full Moon Rising','<p>Acrylic on Linen<br />\r\n61cm x 51cm<br />\r\nAUD$580</p>','',67),(569,1,'Soldier Instincts','<p>Acrylic on Linen<br />\r\n40cm x 35cm<br />\r\nSOLD</p>','',75),(570,1,'The Game','<p>Acrylic on Linen<br />\r\n40cm x 35cm<br />\r\nSOLD</p>','',75),(571,1,'I Feel Super Happy Today','<p>Acrylic on Linen<br />\r\n120cm x 120cm<br />\r\nAUD$1100</p>','',74),(572,1,'Contemplating Flight','<p>Acrylic on Linen<br />\r\n60cm x 60cm<br />\r\nAUD$610</p>','',76),(627,1,'Night Crossing','<p>Acrylic on Canvas<br />\r\n31cm x 31cm<br />\r\nFramed<br />\r\nAUD$2600</p>','',125),(573,1,'Swamp Magic - Verse 2 Print','<p>Limited Edition of 25<br />\r\nAvailable on Paper or Canvas and Signed &amp; Numbered by Artist<br />\r\n50cm x 40cm Framed AUD$900<br />\r\n80cm x 64cm Framed AUD$1400<br />\r\n<br />\r\n*50cm x 40cm AUD$650<br />\r\n*80cm x 64cm AUD$1000<br />\r\n(*Prices quoted are for unframed prints on 320gsm Elite Rough Texture Paper)</p>','',189),(575,1,'Goat Envy','<p>Acrylic on Canvas<br />\r\n100cm x 100cm<br />\r\nAUD$2475</p>','',113),(576,1,'Abandoned','<p>Acrylic on Linen<br />\r\n122cm x 122cm<br />\r\nFramed<br />\r\nAUD$10500</p>','',99),(577,1,'Far Folded Mists 2','<p>Acrylic on Linen<br />\r\n61cm x 122cm<br />\r\nAUD$5700</p>','',84),(578,1,'Penetrative Thought','<p>Wood Blind &amp; Mixed Media<br />\r\n146cm x 79cm<br />\r\nSOLD</p>','',42),(579,1,'Penetrative Thought','<p>RD012 2008<br />\r\nWood Blind &amp; Mixed Media<br />\r\n146cm x 79cm<br />\r\nSOLD</p>','',39),(580,1,'Five','<p>Oil on Canvas<br />\r\n55cm x 55cm<br />\r\nAUD$650</p>','',58),(581,1,'The Question','<p>Oil on Canvas<br />\r\n55cm x 55cm<br />\r\nAUD$650</p>','',61),(582,1,'Spider Puppet','<p>Oil on Canvas<br />\r\n55cm x 55cm<br />\r\nAUD$650</p>','',60),(583,1,'Should I stay or should I go?','<p>Oil on Canvas<br />\r\n55cm x 55cm<br />\r\nAUD$650</p>','',55),(584,1,'708','<p>Oil on Canvas<br />\r\n55cm x 55cm<br />\r\nAUD$650</p>','',78),(585,1,'Atticus Finch White','<p>Oil on Canvas<br />\r\n20cm x 20cm<br />\r\nAUD$550</p>','',60),(586,1,'Miss Prissy La La','<p>Oil on Canvas<br />\r\n61cm x 46cm<br />\r\nAUD$950</p>','',55),(588,1,'Full Moon Rising','<p>Acrylic on Linen<br />\r\n61cm x 51cm<br />\r\nAUD$580</p>','',10),(589,1,'I Feel Super Happy Today','<p>Acrylic on Linen<br />\r\n122cm x 122cm<br />\r\nAUD$1100</p>','',14),(590,1,'The Game','<p>Acrylic on Linen<br />\r\n40cm x 35cm<br />\r\nSOLD</p>','',12),(591,1,'Limbo','<p>Canvas on Board,<br />\r\nMixed Media&nbsp;&amp; Fibre Optics<br />\r\n150cm x 90cm<br />\r\nAUD$5800</p>','',15),(592,1,'Limbo','<p>Canvas on Board,<br />\r\nMixed Media&nbsp;&amp; Fibre Optics<br />\r\n150cm x 90cm<br />\r\nAUD$5800</p>','',13),(593,1,'708','<p>Oil on Canvas<br />\r\n55cm x 55cm<br />\r\nAUD$650</p>','',12),(594,1,'Atticus Finch White','<p>Oil on Canvas<br />\r\n20cm x 20cm<br />\r\nAUD$550</p>','',17),(595,1,'Five','<p>Oil on Canvas<br />\r\n55cm x 55cm<br />\r\nAUD$650</p>','',13),(596,1,'Miss Prissy La La','<p>Oil on Canvas<br />\r\n61cm x 46cm<br />\r\nAUD$950</p>','',8),(597,1,'Should I stay or should I go?','<p>Oil on Canvas<br />\r\n55cm x 55cm<br />\r\nAUD$650</p>','',13),(598,1,'Spider Puppet','<p>Oil on Canvas<br />\r\n55cm x 55cm<br />\r\nAUD$650</p>','',13),(599,1,'The Question','<p>Oil on Canvas<br />\r\n55cm x 55cm<br />\r\nAUD$650</p>','',12),(600,1,'American Positive','<p>Hand Decorated Underglaze Ceramic Blossom Jar<br />\r\n36cm x 38cm<br />\r\nAUD$1250</p>','',11),(601,1,'Andy Warhol - Art Giant Series','<p>Acrylic, Graphite &amp;<br />\r\nMixed Media on Canvas<br />\r\n102cm x 52cm<br />\r\nAUD$2750</p>','',18),(602,1,'Brett Whiteley - Art Giant Series','<p>Acrylic, Graphite &amp;<br />\r\nMixed Media&nbsp;on Canvas<br />\r\n102cm x 52cm<br />\r\nAUD$2750</p>','',14),(603,1,'Frida Kahlo - Art Giant Series','<p>Acrylic, Graphite &amp;<br />\r\nMixed Media on Canvas<br />\r\n102cm x 52cm<br />\r\nAUD$2750</p>','',13),(604,1,'I knew as a kid I would be big one day','<p>Acrylic &amp; Resin on Canvas<br />\r\n64cm x 64cm<br />\r\nFramed<br />\r\nAUD$1750</p>','',9),(605,1,'Journey through the  Landscape 1','<p>Acrylic on Canvas<br />\r\n92cm x 122cm<br />\r\nFramed<br />\r\nAUD$3750</p>','',8),(606,1,'The Beautiful One','<p>Acrylic &amp; Resin on Canvas<br />\r\n64cm x 64cm<br />\r\nFramed<br />\r\nAUD$1750</p>','',13),(607,1,'The Winds of Change','<p>Stoneware with Silver Lustre, Mixed Media<br />\r\n60cm x 30cm<br />\r\nAUD$1800</p>','',48),(608,1,'The Winds of Change','<p>Stoneware with Silver Lustre, Mixed Media<br />\r\n60cm x 30cm<br />\r\nAUD$1800</p>','',17),(609,1,'The Winds of Change','<p>Stoneware with Silver Lustre, Mixed Media<br />\r\n60cm x 30cm<br />\r\nAUD$1800</p>','',12),(610,1,'Boyhood Series','<p>Acrylic on Canvas &amp; T-Shirt<br />\r\n30cm x 30cm<br />\r\nAUD$300 each</p>','',12),(611,1,'Tears of the Dead','<p>Mixed Media on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$1250</p>','',23),(612,1,'Stations of the Cross','<p>Mixed Media on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$1250</p>','',25),(613,1,'Torn Sky','<p>Mixed Media on Canvas<br />\r\n91cm x 61cm<br />\r\nAUD$900</p>','',25),(614,1,'Green Bag','<p>Oil, Enamel, Pastel &amp; Pen on Canvas<br />\r\n100cm x 100cm<br />\r\nAUD$1350</p>','',21),(615,1,'Saucy','<p>Hand Decorated Underglaze Ceramic&nbsp;Blossom Jar<br />\r\n36cm x 38cm<br />\r\nAUD$950</p>','',10),(616,1,'Crisis','<p>Mixed Media on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$1250</p>','',10),(617,1,'Caravan Park','<p>Mixed Media on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$1250</p>','',16),(618,1,'Harnessing the ability to Fly','<p>Acrylic on Linen<br />\r\n122cm x 122cm<br />\r\nAUD$1100</p>','',11),(619,1,'Future Woman','<p>Acrylic on Canvas<br />\r\n35cm x 35cm<br />\r\nAUD$300</p>','',10),(620,1,'Intergallactic War Hero','<p>Acrylic on Linen<br />\r\n31cm x 31cm<br />\r\nAUD$200</p>','',9),(621,1,'I want your Soul','<p>Acrylic on Linen<br />\r\n31cm x 31cm<br />\r\nAUD$200</p>','',8),(622,1,'Evolution Outback 2','<p>Acrylic on Linen<br />\r\n71cm x 81cm<br />\r\nAUD$750</p>','',8),(623,1,'Conversations with Leo','<p>Oil &amp; Mixed Media on Wood Panel<br />\r\n77cm x 61cm<br />\r\nAUD$1250</p>','',15),(624,1,'Which way do we go?','<p>Oil, Asphalt &amp; Metal on Wood Panel<br />\r\n81cm x 61cm<br />\r\nAUD$1500</p>','',13),(625,1,'All the Pretty People','<p>Oil on Wood Panel<br />\r\n122cm x 122cm<br />\r\nAUD$2500</p>','',20),(626,1,'We Share a Dream (Cathy Freeman) Print','<p><span class=\"Apple-style-span\" style=\"font-family: \'Microsoft Sans Serif\', Verdana, sans-serif; font-size: 13px; color: rgb(66, 66, 66); line-height: 17px; \">Limited Edition of 25<br />\r\nAvailable on Paper or Canvas and Signed &amp; Numbered by Artist<br />\r\n80cm x 80cm Framed AUD$2100<br />\r\n*80cm x 80cm AUD$1700<br />\r\n(*Prices quoted are for unframed prints on 320gsm Elite Rough Texture Paper)<br />\r\n</span><br />\r\n20% of the proceeds go to the Catherine Freeman Foundation<br />\r\n(The original painting was entered into the 2009 Archibald Prize)</p>','',127),(628,1,'The Arrivals III','<p>Acrylic on Canvas<br />\r\n20cm x 20cm<br />\r\nFramed<br />\r\nSOLD</p>','',146),(629,1,'Abstract Unearthed','<p>Acrylic on Canvas<br />\r\n190cm x 250cm<br />\r\nAUD$19500</p>','',119),(630,1,'Beaches on the Mary','<p>Ink &amp; Wax Resist<br />\r\n60cm x 130cm<br />\r\nFramed<br />\r\nAUD$1900</p>','',36),(631,1,'Run Mary Run Triptych','<p>Triptych Woodcut Etching<br />\r\n65cm x 156cm<br />\r\nFramed<br />\r\nAUD$1500</p>','',41),(632,1,'Mt Cooroy Primeval','<p>Collagraph<br />\r\n66cm x 85cm<br />\r\nFramed<br />\r\nEdition 1/3<br />\r\nAUD$1200</p>','',36),(633,1,'Fallen','<p>2007<br />\r\nBronze on a Sandstone Base<br />\r\n(H) 23cm (W) 20cm (D) 20cm<br />\r\n5/25 AUD$2200</p>','',30),(634,1,'Collector of Stars','<p>The Collector of Stars holds a lasso with star caught, but his other hand holds a bag full of stars while he balances - perhaps eluding to the decisions we make in our lives.<br />\r\n<br />\r\n2009<br />\r\nBronze on a Sandstone Base<br />\r\n(H) 50cm (W) 16cm (D) 16cm<br />\r\n7/25 SOLD<br />\r\n8/25 SOLD<br />\r\n9/25 AUD$2200</p>','',34),(635,1,'Sky Scraper','<p>The title for this work came before the creation. The little figure holds a small pitchfork in his hand and he has luckily managed to spear a star, while endeavouring to reach as high as he can by standing on stilts.<br />\r\n<br />\r\n2009<br />\r\nBronze on a Marble Base<br />\r\n(H) 42cm (W) 15cm (D) 13cm<br />\r\n7/25 AUD$2200</p>','',24),(636,1,'Thinking Outside The Square','<p>The piece consists of a stylised figure who is seated on a stainless steel square bench seat. The figure holds a square within a square which is made from stainless steel.<br />\r\n<br />\r\n2003<br />\r\nBronze &amp; Stainless Steel<br />\r\n(H) 27cm (W) 17cm (D) 15cm<br />\r\n5/25 AUD$2100</p>','',20),(637,1,'Life\'s like a Chocolate Box','<p>2009<br />\r\nBronze on a Marble Base<br />\r\n(H) 24cm (W) 24cm (D) 20cm<br />\r\n1/25 AUD$2100</p>','',31),(639,1,'My Place','<p>Acrylic &amp;&nbsp;Oil Pastel&nbsp;on Linen<br />\r\n205cm x 85cm<br />\r\nFramed<br />\r\nAUD$3500</p>','',57),(640,1,'Boy and Dogs','<p>Acrylic &amp; Oil Pastel on Canvas<br />\r\n105cm x 65cm<br />\r\nFramed<br />\r\nAUD$1400</p>','',63),(641,1,'Go West','<p>Acrylic &amp;&nbsp;Oil Pastel&nbsp;on Canvas<br />\r\n60cm x 100cm<br />\r\nAUD$1250</p>','',51),(642,1,'Mining','<p>Acrylic &amp;&nbsp;Oil Pastel&nbsp;on Canvas<br />\r\n100cm x 60cm<br />\r\nSOLD</p>','',46),(643,1,'Crisis','<p>Mixed Media on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$1250</p>','',73),(644,1,'Green Bag','<p>Oil, Enamel, Pastel &amp; Pen on Canvas<br />\r\n100cm x 100cm<br />\r\nSOLD</p>','',67),(645,1,'Stations of the Cross','<p>Mixed Media on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$1250</p>','',90),(646,1,'Tears of the Dead','<p>Mixed Media on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$1250</p>','',61),(647,1,'Torn Sky','<p>Mixed Media on Canvas<br />\r\n91cm x 61cm<br />\r\nAUD$900</p>','',61),(648,1,'Irukandji','<p>Linocut<br />\r\nLimited Edition 26 of 50<br />\r\n71cm x 42cm<br />\r\nFramed<br />\r\nAUD$850</p>','',55),(649,1,'Adelaide Street No.11','<p>Mid Fired Ceramic, Glazes, Slip and Acrylic Paint<br />\r\n45cm x 30cm<br />\r\nSOLD</p>','',16),(650,1,'Building with Sky','<p>Mid Fired Ceramic, Glazes and Slip<br />\r\n45cm x 30cm<br />\r\nSOLD</p>','',13),(651,1,'Building with Night Sky','<p>Mid Fired Ceramic, Glazes and Slip<br />\r\n45cm x 30cm<br />\r\nSOLD</p>','',14),(652,1,'Building at Night','<p>Mid Fired Ceramic, Glazes and Slip<br />\r\n45cm x 30cm<br />\r\nSOLD</p>','',17),(653,1,'State Library No.9','<p>Mid Fired Ceramic, Glazes and Slip<br />\r\n35cm x 50cm<br />\r\nSOLD</p>','',15),(654,1,'State Library No.10','<p>Mid Fired Ceramic, Glazes and Slip<br />\r\n35cm x 50cm<br />\r\nSOLD</p>','',18),(655,1,'Ram Paddock Hill at Dusk','<p>Oil on Canvas<br />\r\n90cm x 90cm<br />\r\nFramed<br />\r\nAUD$5200</p>','',169),(656,1,'After the Twilight','<p>Oil on Canvas<br />\r\n90cm x 100cm<br />\r\nFramed<br />\r\nAUD$5700</p>','',211),(657,1,'Follow the Light Messenger','<p>Oil on Canvas<br />\r\n100cm x 90cm<br />\r\nFramed<br />\r\nSOLD</p>','',233),(658,1,'Hover where the West Wind Blows','<p>Oil on Canvas<br />\r\n120cm x 150cm<br />\r\nFramed<br />\r\nSOLD</p>','',185),(659,1,'I thought I heard you call','<p>Oil on Canvas<br />\r\n100cm x 200cm<br />\r\nFramed<br />\r\nAUD$9900</p>','',198),(660,1,'Sentinel','<p>Oil on Canvas<br />\r\n100cm x 120cm<br />\r\nFramed<br />\r\nAUD$7500</p>','',171),(661,1,'Channel Country – Furrowed Ground','<p>Oil on Canvas<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$1100</p>','',139),(662,1,'Coolibah Moscow Waterhole','<p>Oil on Canvas<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nSOLD</p>','',143),(663,1,'Beyond the Gidgee Line','<p>Oil on Canvas<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$1100</p>','',199),(664,1,'Dawn over Grey Ranges','<p>Oil on Canvas<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$1100</p>','',123),(665,1,'Distant Morning Haze','<p>Oil on Canvas<br />\r\n20cm x 30cm<br />\r\nFramed<br />\r\nAUD$900</p>','',138),(666,1,'Ironstone and Gidgee Line','<p>Oil on Canvas<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$1100</p>','',124),(667,1,'Misty Gidgee Ridge','<p>Oil on Canvas<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$1100</p>','',121),(668,1,'Ram Paddock Hill','<p>Oil on Canvas<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$1100</p>','',131),(669,1,'Small Channel','<p>Oil on Canvas<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$1100</p>','',122),(670,1,'Vista Grey Ranges','<p>Oil on Canvas<br />\r\n20cm x 30cm<br />\r\nFramed<br />\r\nAUD$900</p>','',128),(672,1,'High Hopes I','<p>Acrylic on Canvas<br />\r\n84cm x 56cm<br />\r\nSOLD</p>','',47),(674,1,'Colour at Twilight','<p>Oil on Canvas<br />\r\n90cm x 100cm<br />\r\nFramed<br />\r\nAUD$5700</p>','',137),(675,1,'High Hopes II','<p>Acrylic on Canvas<br />\r\n84cm x 56cm<br />\r\nSOLD</p>','',51),(676,1,'Colour in the Bark','<p>Enamel &amp; Acrylic on Board<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$250</p>','',43),(677,1,'The Colours at Sunset','<p>Enamel &amp; Acrylic on Board<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$250</p>','',23),(678,1,'The Keyboard is the path','<p>Enamel &amp; Acrylic on Board<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$250</p>','',21),(679,1,'Sunset in the Mangroves','<p>Enamel &amp; Acrylic on Board<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$250</p>','',24),(680,1,'The Tree and Song of Sunset','<p>Enamel &amp; Acrylic on Board<br />\r\n30cm x 30cm<br />\r\nFramed<br />\r\nAUD$250</p>','',24),(681,1,'Champagne Memories','<p>Enamel &amp; Acrylic on Canvas<br />\r\n70cm x 100cm<br />\r\nAUD$800</p>','',40),(682,1,'Seashells and Green Parakeets','<p>Enamel &amp; Acrylic on Canvas<br />\r\n80cm x 100cm<br />\r\nAUD$1100</p>','',23),(684,1,'After the Twilight','<p>Oil on Canvas<br />\r\n90cm x 100cm<br />\r\nFramed<br />\r\nAUD$5700</p>','',17),(685,1,'Running with Kangaroo','<p>Oil on Canvas<br />\r\n120cm x 90cm<br />\r\nFramed<br />\r\nAUD$7000</p>','',8),(686,1,'Sentinel','<p>Oil on Canvas<br />\r\n100cm x 120cm<br />\r\nFramed<br />\r\nAUD$7500</p>','',11),(687,1,'Colour at Twilight','<p>Oil on Canvas<br />\r\n90cm x 100cm<br />\r\nFramed<br />\r\nAUD$5700</p>','',14),(688,1,'Night Walk','<p>Oil on Canvas<br />\r\n90cm x 100cm<br />\r\nFramed<br />\r\nAUD$5500</p>','',14),(689,1,'Ram Paddock Hill at Dusk','<p>Oil on Canvas<br />\r\n90cm x 90cm<br />\r\nFramed<br />\r\nAUD$5200</p>','',10),(690,1,'Follow the Light Messenger Print','<p>Limited Edition of 25<br />\r\nAvailable on Paper or Canvas and Signed &amp; Numbered by Artist<br />\r\n50cm x 45cm Framed AUD$900<br />\r\n<br />\r\n*50cm x 45cm AUD$650<br />\r\n(*Prices quoted are for unframed prints on 320gsm Elite Rough Texture Paper)</p>','',20),(691,1,'Guardian','<p>Acrylic on Canvas<br />\r\n122cm x 122cm<br />\r\nSOLD</p>','',16),(692,1,'Vessel 1','<p>Acrylic on Canvas<br />\r\n91cm x 122cm<br />\r\nAUD$1750</p>','',17),(693,1,'Vessel 2','<p>Acrylic on Canvas<br />\r\n90cm x 90cm<br />\r\nAUD$1250</p>','',17),(694,1,'Wounded Lake','<p>Acrylic on Canvas<br />\r\n90cm x 90cm<br />\r\nAUD$1250</p>','',18),(695,1,'Boreen Point','<p>Acrylic on Canvas<br />\r\n91cm x 91cm<br />\r\nAUD$1250</p>','',14),(696,1,'Vessel 5','<p>Acrylic on Canvas<br />\r\n36cm x 46cm<br />\r\nAUD$500</p>','',14),(697,1,'Vessel 6','<p>Acrylic on Canvas<br />\r\n36cm x 46cm<br />\r\nAUD$500</p>','',11),(698,1,'Arbeit Macht Frei','<p>Mixed Media on Canvas<br />\r\n100cm x 100cm<br />\r\nAUD$1450</p>','',15),(699,1,'The Kiss','<p>Mixed Media on Canvas<br />\r\n122cm x 92cm<br />\r\nAUD$1750</p>','',23),(700,1,'Horseman of the Acropolis','<p>Ceramic &amp; MIxed Media<br />\r\n62cm x 62cm<br />\r\nFramed<br />\r\nAUD$1500</p>','',8),(701,1,'Riders on the Acropolis','<p>Ceramic &amp; MIxed Media<br />\r\n62cm x 62cm<br />\r\nFramed<br />\r\nAUD$1500</p>','',10),(702,1,'Hi Ho Silver I','<p>Fired black &amp; white slip on layered glass &amp; mixed media<br />\r\n62cm x 62cm<br />\r\nFramed<br />\r\nAUD$1800</p>','',14),(703,1,'Hi Ho Silver II','<p>Fired black &amp; white slip on layered glass &amp; mixed media<br />\r\n62cm x 62cm<br />\r\nFramed<br />\r\nAUD$1800</p>','',11),(704,1,'The Frustrated Painter','<p>Acrylic on Canvas<br />\r\n92cm x 92cm<br />\r\nAUD$9000</p>','',14),(705,1,'Pigmentation','<p>Acrylic on Board<br />\r\n111cm x 87cm<br />\r\nFramed<br />\r\nAUD$6500</p>','',17),(706,1,'Pigmentation II','<p>Acrylic on Board<br />\r\n109cm x 93cm<br />\r\nFramed<br />\r\nAUD$6500</p>','',21),(707,1,'A New Beginning','<p>Oil, pigment &amp; found ochre on Canvas<br />\r\n130cm x 75cm<br />\r\nAUD$2800</p>','',22),(708,1,'Sands of Time','<p>Pigment &amp; found ochre on Canvas<br />\r\n30cm x 80cm<br />\r\nFramed Diptych<br />\r\nAUD$1400</p>','',13),(709,1,'February - Blue Hills','<p>Pigment &amp; found ochre on Canvas<br />\r\n40cm x 30cm<br />\r\nAUD$650</p>','',19),(710,1,'November - Storms brewing','<p>Pigment &amp; found ochre on Canvas<br />\r\n30cm x 40cm<br />\r\nAUD$650</p>','',20),(711,1,'Deer Man','<p>Acrylic on Linen<br />\r\n60cm x 60cm<br />\r\nAUD$610</p>','',8),(712,1,'Deer Oh Deer','<p>Acrylic on Linen<br />\r\n60cm x 50cm<br />\r\nAUD$580</p>','',6),(713,1,'Psychedelic Dance Revolution','<p>Acrylic on Linen<br />\r\n60cm x 60cm<br />\r\nAUD$610</p>','',6),(714,1,'Super Happy Lady','<p>Acrylic on Linen<br />\r\n61cm x 51cm<br />\r\nAUD$580</p>','',6),(715,1,'The Trespassers','<p>Oil on Canvas<br />\r\n100cm x 100cm<br />\r\nFramed<br />\r\nAUD$5800</p>','',13),(716,1,'Wade in the Water','<p>Oil on Canvas<br />\r\n70cm x 70cm<br />\r\nFramed<br />\r\nAUD$4200</p>','',12),(717,1,'Exogen 1','<p>Mixed Media on Board<br />\r\n30cm x 30cm<br />\r\nAUD$450</p>','',10),(718,1,'Exogen 2','<p>Mixed Media on Board<br />\r\n30cm x 30cm<br />\r\nAUD$450</p>','',6),(719,1,'Exogen 3','<p>Mixed Media on Board<br />\r\n30cm x 30cm<br />\r\nAUD$450</p>','',5),(720,1,'Inscribed Grinding Stone (Large)','<p>Indigenous Artefact in Glass<br />\r\nSOLD</p>','',4),(721,1,'Bundy (Club)','<p>Indigenous Artefact in Glass<br />\r\nAUD$1750</p>','',4),(722,1,'Inscribed Grinding Stone (Large)','<p>Indigenous Artefact in Glass<br />\r\nAUD$1500</p>','',1),(723,1,'Inscribed Grinding Stone (Medium)','<p>Indigenous Artefact in Glass<br />\r\nAUD$1100</p>','',1),(724,1,'Inscribed Grinding Stone (Medium)','<p>Indigenous Artefact in Glass<br />\r\nAUD$1100</p>','',1),(725,1,'Inscribed Grinding Stone (Small)','<p>Indigenous Artefact in Glass<br />\r\nAUD$800</p>','',1),(726,1,'Inscribed Grinding Stone (Small)','<p>Indigenous Artefact in Glass<br />\r\nSOLD</p>','',1),(727,1,'Stone','<p>Indigenous Artefact in Glass<br />\r\nAUD$450</p>','',1);
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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 */;
/*!40000 ALTER TABLE `zen_products_notifications` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_products_options`;
SET @saved_cs_client     = @@character_set_client;
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;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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);
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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 (5,21),(7,8),(8,25),(10,2),(11,2),(12,2),(13,2),(15,2),(19,2),(22,2),(23,1),(24,1),(25,1),(26,1),(27,25),(28,1),(29,1),(31,25),(33,25),(34,25),(37,25),(38,1),(40,25),(41,25),(42,25),(43,25),(44,11),(45,25),(46,25),(47,11),(48,25),(50,25),(51,25),(52,25),(53,25),(54,25),(55,25),(56,25),(57,25),(58,25),(59,25),(60,25),(61,25),(62,8),(63,8),(64,8),(67,3),(68,3),(69,3),(70,3),(71,3),(72,3),(73,3),(74,23),(76,14),(77,14),(78,14),(79,14),(80,14),(81,27),(82,27),(83,27),(84,27),(85,16),(86,13),(87,13),(88,13),(89,13),(90,23),(91,26),(92,26),(93,26),(98,26),(99,26),(101,26),(102,26),(105,68),(106,8),(107,19),(108,19),(109,19),(110,19),(111,19),(112,19),(113,19),(114,19),(115,19),(117,19),(118,19),(119,19),(120,13),(121,19),(122,19),(123,19),(124,19),(125,19),(126,19),(129,33),(130,33),(131,31),(132,31),(133,8),(134,8),(135,8),(136,8),(137,8),(138,8),(139,1),(140,35),(141,35),(142,35),(143,35),(144,35),(145,119),(146,119),(147,119),(148,119),(149,119),(150,119),(151,119),(152,34),(153,34),(154,34),(155,34),(156,32),(157,32),(158,32),(159,11),(160,11),(161,11),(164,11),(165,11),(166,35),(167,35),(168,35),(169,35),(170,35),(171,54),(172,54),(173,54),(174,54),(175,41),(176,41),(177,41),(178,41),(179,41),(180,41),(181,46),(182,46),(183,46),(184,46),(185,46),(186,46),(187,42),(188,42),(189,42),(190,42),(191,42),(192,42),(193,44),(194,44),(195,44),(196,44),(197,43),(198,43),(199,43),(200,43),(201,45),(202,45),(203,45),(204,45),(205,45),(206,45),(207,45),(208,47),(209,47),(210,47),(211,47),(212,47),(213,52),(214,52),(215,52),(216,52),(217,52),(218,52),(219,50),(220,50),(221,50),(222,50),(223,31),(224,51),(225,51),(226,51),(227,51),(228,51),(229,51),(230,51),(231,49),(232,49),(233,49),(234,49),(235,49),(236,49),(237,49),(238,14),(239,14),(240,14),(241,14),(242,14),(243,14),(244,14),(245,53),(246,53),(247,53),(248,53),(249,53),(250,53),(251,53),(252,53),(253,53),(254,53),(255,53),(256,53),(257,53),(258,53),(259,57),(260,57),(261,57),(262,57),(263,19),(264,19),(265,19),(266,19),(267,19),(268,19),(269,19),(270,14),(271,58),(272,58),(273,58),(274,58),(275,58),(276,59),(277,59),(278,59),(279,59),(280,59),(281,33),(282,33),(283,33),(284,23),(286,23),(287,33),(289,23),(290,2),(291,55),(292,55),(293,55),(294,55),(295,55),(296,55),(297,55),(298,55),(299,55),(300,55),(301,55),(302,55),(304,55),(305,55),(306,55),(308,55),(309,55),(310,55),(311,55),(312,55),(313,55),(314,55),(315,55),(316,14),(317,8),(318,69),(319,69),(320,69),(321,2),(322,2),(323,2),(324,73),(325,73),(326,73),(327,73),(328,1),(329,1),(330,1),(331,1),(332,65),(333,65),(334,65),(335,65),(336,32),(337,32),(338,32),(339,32),(340,65),(341,32),(342,32),(343,68),(344,68),(345,68),(346,68),(347,68),(348,68),(349,8),(350,8),(351,8),(352,8),(353,55),(354,8),(355,76),(356,76),(357,76),(358,76),(359,76),(360,76),(361,76),(362,76),(363,76),(364,76),(365,76),(366,71),(367,71),(368,71),(369,71),(370,71),(371,71),(372,120),(373,119),(374,120),(375,119),(376,119),(377,60),(378,60),(379,60),(380,60),(381,13),(382,64),(383,64),(384,64),(385,64),(386,64),(387,64),(388,18),(389,18),(390,18),(391,18),(392,70),(393,70),(394,70),(395,70),(396,1),(397,1),(398,1),(399,1),(400,1),(401,1),(402,1),(403,78),(404,78),(405,78),(406,78),(407,78),(408,78),(409,78),(410,78),(411,78),(412,78),(413,78),(414,78),(415,78),(416,78),(417,78),(418,78),(419,78),(420,78),(421,78),(422,78),(423,74),(424,74),(425,74),(426,74),(427,74),(428,14),(429,14),(430,14),(431,14),(432,14),(433,61),(434,61),(435,61),(436,61),(437,34),(438,34),(439,34),(440,34),(441,34),(442,34),(443,34),(444,34),(445,34),(446,66),(447,66),(448,66),(449,66),(450,31),(451,31),(452,31),(453,31),(454,31),(455,63),(456,63),(457,63),(458,58),(459,58),(460,58),(461,58),(462,58),(463,72),(464,72),(465,72),(466,75),(467,75),(468,75),(469,75),(470,75),(471,75),(472,19),(473,89),(474,89),(475,89),(476,89),(477,89),(478,89),(479,89),(480,89),(481,89),(482,89),(483,89),(484,89),(485,89),(486,89),(487,89),(488,89),(489,89),(490,89),(491,89),(492,86),(493,86),(494,88),(495,88),(496,88),(497,8),(498,8),(499,8),(500,8),(501,8),(502,8),(503,8),(504,83),(505,8),(506,9),(507,9),(508,9),(509,9),(510,87),(511,87),(512,87),(513,87),(514,86),(515,86),(516,86),(517,86),(518,86),(519,3),(520,3),(521,3),(522,3),(523,3),(524,3),(525,89),(526,89),(527,32),(528,32),(529,9),(530,9),(531,9),(532,62),(533,62),(534,62),(535,32),(536,8),(537,8),(538,8),(539,8),(540,120),(541,120),(542,120),(543,120),(544,120),(545,23),(546,91),(547,91),(548,91),(549,91),(550,91),(551,91),(552,91),(553,91),(554,92),(555,88),(556,88),(557,88),(558,88),(559,88),(560,88),(561,88),(562,88),(563,9),(564,9),(565,9),(566,9),(567,9),(568,94),(569,94),(570,94),(571,94),(572,94),(573,8),(574,31),(575,31),(576,86),(577,86),(578,23),(579,33),(580,93),(581,93),(582,93),(583,93),(584,93),(585,93),(586,93),(587,114),(588,114),(589,114),(590,114),(591,117),(592,108),(593,116),(594,116),(595,116),(596,116),(597,116),(598,116),(599,116),(600,115),(601,115),(602,115),(603,115),(604,115),(605,115),(606,115),(607,92),(608,117),(609,108),(610,115),(611,118),(612,118),(613,118),(614,118),(615,115),(616,118),(617,118),(618,114),(619,114),(620,114),(621,114),(622,114),(623,116),(624,116),(625,116),(626,8),(627,34),(628,34),(629,34),(630,87),(631,87),(632,87),(633,119),(634,119),(635,119),(636,119),(637,119),(638,128),(639,128),(640,128),(641,128),(642,128),(643,122),(644,122),(645,122),(646,122),(647,122),(648,2),(649,107),(650,107),(651,107),(652,107),(653,107),(654,107),(655,83),(656,83),(657,83),(658,83),(659,83),(660,83),(661,83),(662,83),(663,83),(664,83),(665,83),(666,83),(667,83),(668,83),(669,83),(670,83),(671,86),(672,31),(673,8),(674,83),(675,31),(676,14),(677,14),(678,14),(679,14),(680,14),(681,14),(682,14),(683,8),(684,8),(685,83),(686,8),(687,8),(688,8),(689,8),(690,8),(691,124),(692,124),(693,124),(694,124),(695,124),(696,124),(697,124),(698,122),(699,122),(700,123),(701,123),(702,123),(703,123),(704,34),(705,34),(706,34),(707,125),(708,125),(709,125),(710,125),(711,94),(712,94),(713,94),(714,94),(715,8),(716,8),(717,19),(718,19),(719,19),(720,129),(721,129),(722,129),(723,129),(724,129),(725,129),(726,129),(727,129);
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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','2008-05-31 18:41:55'),(2,'Zen-Cart Database','1','3.8','','','','','Fresh Installation','2008-05-31 18:41:55');
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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','2008-05-31 18:41:55'),(2,'Zen-Cart Database','1','3.8','','Fresh Installation','2008-05-31 18:41:55');
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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','');
/*!40000 ALTER TABLE `zen_query_builder` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_record_artists`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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 AUTO_INCREMENT=147 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
INSERT INTO `zen_record_company` VALUES (1,'0','59b90.php','2009-09-26 13:36:31',NULL),(2,'0','sucz3.php','2009-10-13 10:24:56',NULL),(3,'0','sucz3.php','2009-10-13 10:25:11',NULL),(4,'0','sucz3.php','2009-10-13 10:26:18',NULL),(5,'0','wtf.php','2009-10-16 01:06:22',NULL),(6,'0','wtf.php','2009-10-16 01:25:05',NULL),(7,'0','wtf.php','2009-10-16 01:27:58',NULL),(8,'0','wtf.php','2009-10-16 02:06:26',NULL),(9,'0','odb.php','2009-10-17 13:52:39',NULL),(10,'0','img.php','2009-10-21 19:19:26',NULL),(11,'0','some.php','2009-10-24 04:28:36',NULL),(12,'0','some.php','2009-10-24 04:31:04',NULL),(13,'0','some.php','2009-10-24 04:53:25',NULL),(14,'0','captcha_.php','2009-10-29 19:37:00',NULL),(15,'0','acc3e.php','2009-11-03 03:39:00',NULL),(16,'0','7504a.php','2009-11-03 03:39:02',NULL),(17,'0','8f121.php','2009-11-03 03:41:00',NULL),(18,'0','605ff.php','2009-11-03 03:41:03',NULL),(19,'0','gov.php','2009-11-06 18:57:11',NULL),(20,'0','gov.php','2009-11-06 18:59:13',NULL),(21,'0','gov.php','2009-11-06 18:59:41',NULL),(22,'0','gov.php','2009-11-06 18:59:52',NULL),(23,'0','gov.php','2009-11-06 19:00:08',NULL),(24,'0','gov.php','2009-11-06 19:03:26',NULL),(25,'0','gov.php','2009-11-06 19:06:52',NULL),(26,'0','49182.php','2009-11-12 13:18:36',NULL),(27,'0','67e10.php','2009-11-12 13:18:42',NULL),(28,'0','8f14e.php','2009-11-12 13:18:56',NULL),(29,'0','eeb69.php','2009-11-12 13:18:58',NULL),(30,'0','69adc.php','2009-11-12 13:19:03',NULL),(31,'0','d34ab.php','2009-11-12 13:19:12',NULL),(32,'0','67d96.php','2009-11-12 13:19:14',NULL),(33,'0','43ec5.php','2009-11-12 13:19:18',NULL),(34,'0','4ca82.php','2009-11-12 13:19:30',NULL),(35,'0','883e8.php','2009-11-12 13:19:31',NULL),(36,'0','1b011.php','2009-11-12 13:19:31',NULL),(37,'0','9232f.php','2009-11-12 13:19:39',NULL),(38,'0','6aca9.php','2009-11-12 13:19:39',NULL),(39,'0','f0935.php','2009-11-12 13:19:44',NULL),(40,'0','4ca82.php','2009-11-12 13:19:47',NULL),(41,'0','fb60d.php','2009-11-12 13:19:54',NULL),(42,'0','03f54.php','2009-11-12 13:19:59',NULL),(43,'0','07cdf.php','2009-11-12 13:20:03',NULL),(44,'0','c3c59.php','2009-11-12 13:20:12',NULL),(45,'0','550a1.php','2009-11-12 13:21:23',NULL),(46,'0','07e1c.php','2009-11-12 13:21:29',NULL),(47,'0','59b90.php','2009-11-12 13:22:19',NULL),(48,'0','d1f49.php','2009-11-12 13:22:26',NULL),(49,'0','3435c.php','2009-11-12 13:22:30',NULL),(50,'0','e6b4b.php','2009-11-12 13:22:50',NULL),(51,'0','0deb1.php','2009-11-12 13:22:54',NULL),(52,'0','28dd2.php','2009-11-12 13:23:01',NULL),(53,'0','1905a.php','2009-11-12 13:23:49',NULL),(54,'0','15de2.php','2009-11-12 13:27:22',NULL),(55,'0','37bc2.php','2009-11-12 13:28:41',NULL),(56,'0','5f93f.php','2009-11-12 13:29:07',NULL),(57,'0','7fec3.php','2009-11-12 13:29:58',NULL),(58,'0','1534b.php','2009-11-12 13:34:54',NULL),(59,'0','e3698.php','2009-11-12 13:44:19',NULL),(60,'0','8df70.php','2009-11-12 13:44:38',NULL),(61,'0','22ac3.php','2009-11-12 13:44:41',NULL),(62,'0','e96ed.php','2009-11-12 13:44:57',NULL),(63,'0','9b698.php','2009-11-12 13:45:19',NULL),(64,'0','062dd.php','2009-11-12 13:45:19',NULL),(65,'0','e97ee.php','2009-11-12 13:45:23',NULL),(66,'0','9fd81.php','2009-11-12 13:46:18',NULL),(67,'0','70222.php','2009-11-12 13:46:42',NULL),(68,'0','b9228.php','2009-11-12 13:48:29',NULL),(69,'0','6a9ae.php','2009-11-12 13:49:32',NULL),(70,'0','07871.php','2009-11-12 13:49:45',NULL),(71,'0','cee63.php','2009-11-12 13:52:06',NULL),(72,'0','82b8a.php','2009-11-12 13:54:21',NULL),(73,'0','01f78.php','2009-11-12 13:57:15',NULL),(74,'0','e6b4b.php','2009-11-12 14:06:12',NULL),(75,'0','605ff.php','2009-11-12 14:06:22',NULL),(76,'0','fe131.php','2009-11-12 14:59:12',NULL),(77,'0','9da18.php','2009-11-12 15:51:12',NULL),(78,'0','28dd2.php','2009-11-14 14:47:16',NULL),(79,'0','170c9.php','2009-11-14 14:47:17',NULL),(80,'0','e6b4b.php','2009-11-14 14:47:22',NULL),(81,'0','b3ba8.php','2009-11-14 14:47:41',NULL),(82,'0','eba0d.php','2009-11-14 14:47:59',NULL),(83,'0','2b38c.php','2009-11-14 14:48:03',NULL),(84,'0','31857.php','2009-11-14 14:48:11',NULL),(85,'0','58238.php','2009-11-14 14:48:14',NULL),(86,'0','912d2.php','2009-11-14 14:48:14',NULL),(87,'0','30ef3.php','2009-11-14 14:48:16',NULL),(88,'0','e0c64.php','2009-11-14 14:48:24',NULL),(89,'0','cfbce.php','2009-11-14 14:49:01',NULL),(90,'0','d2dde.php','2009-11-14 14:49:34',NULL),(91,'0','d6baf.php','2009-11-14 14:50:24',NULL),(92,'0','0deb1.php','2009-11-14 14:50:48',NULL),(93,'0','3bf55.php','2009-11-14 14:51:12',NULL),(94,'0','274ad.php','2009-11-14 14:55:00',NULL),(95,'0','577ef.php','2009-11-14 14:59:51',NULL),(96,'0','99c5e.php','2009-11-14 15:17:09',NULL),(97,'0','be315.php','2009-11-14 15:18:06',NULL),(98,'0','4ca82.php','2009-11-16 10:31:17',NULL),(99,'0','ab1a4.php','2009-11-16 10:31:33',NULL),(100,'0','cd758.php','2009-11-16 10:32:45',NULL),(101,'0','c058f.php','2009-11-16 10:37:17',NULL),(102,'0','82161.php','2009-11-16 10:39:17',NULL),(103,'0','13f32.php','2009-11-16 10:46:17',NULL),(104,'0','17faf.php','2009-11-16 10:46:26',NULL),(105,'0','eb6fd.php','2009-11-16 10:57:08',NULL),(106,'0','e0c64.php','2009-11-16 11:01:12',NULL),(107,'0','44f68.php','2009-11-16 11:06:21',NULL),(108,'0','eba0d.php','2009-11-16 11:06:51',NULL),(109,'0','92cc2.php','2009-11-16 11:08:25',NULL),(110,'0','db576.php','2009-11-18 14:18:39',NULL),(111,'0','52292.php','2009-11-18 14:18:51',NULL),(112,'0','9232f.php','2009-11-18 14:18:52',NULL),(113,'0','63dc7.php','2009-11-18 14:18:55',NULL),(114,'0','077e2.php','2009-11-18 14:19:00',NULL),(115,'0','33e75.php','2009-11-18 14:19:15',NULL),(116,'0','76dc6.php','2009-11-18 14:19:19',NULL),(117,'0','847cc.php','2009-11-18 14:19:21',NULL),(118,'0','7eabe.php','2009-11-18 14:19:27',NULL),(119,'0','8b6dd.php','2009-11-18 14:19:37',NULL),(120,'0','f4b9e.php','2009-11-18 14:19:39',NULL),(121,'0','9c82c.php','2009-11-18 14:22:34',NULL),(122,'0','6f492.php','2009-11-18 14:22:52',NULL),(123,'0','ebd96.php','2009-11-18 14:36:38',NULL),(124,'0','0ce2f.php','2009-11-18 14:37:06',NULL),(125,'0','7eabe.php','2009-11-18 14:40:19',NULL),(126,'0','2a79e.php','2009-11-18 14:41:05',NULL),(127,'0','069d3.php','2009-11-18 14:41:10',NULL),(128,'0','b337e.php','2009-11-18 16:36:28',NULL),(129,'0','48ab2.php','2009-11-18 18:40:48',NULL),(130,'0','65cc2.php','2009-11-18 18:43:11',NULL),(131,'0','310ce.php','2009-11-18 18:43:46',NULL),(132,'0','18426.php','2009-11-18 18:43:49',NULL),(133,'0','1ff8a.php','2009-11-18 18:43:50',NULL),(134,'0','bf627.php','2009-11-18 18:44:26',NULL),(135,'0','5e388.php','2009-11-18 18:45:05',NULL),(136,'0','9bf31.php','2009-11-18 18:45:17',NULL),(137,'0','66f04.php','2009-11-18 19:02:00',NULL),(138,'0','36660.php','2009-11-18 19:07:31',NULL),(139,'0','f457c.php','2009-11-18 19:08:43',NULL),(140,'0','1e48c.php','2009-11-18 21:12:44',NULL),(141,'0','1nf3c7s.php','2009-12-03 16:09:36',NULL),(142,'0','.htaccess','2010-02-17 03:19:36',NULL),(143,'0','img46ba9.php','2010-02-17 03:19:40',NULL),(144,'0','c52f1.php','2010-02-28 00:00:20',NULL),(145,'test_company','3333384032_6590229829129709.php.dhtml','2010-03-22 17:40:23',NULL),(146,'test_company','3333384032_6590229829129709.php.dhtml','2010-03-22 17:40:30',NULL);
/*!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`;
SET @saved_cs_client     = @@character_set_client;
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;
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 */;
INSERT INTO `zen_record_company_info` VALUES (1,1,'',0,NULL),(2,1,'',0,NULL),(3,1,'',0,NULL),(4,1,'',0,NULL),(5,1,'',0,NULL),(6,1,'',0,NULL),(7,1,'',0,NULL),(8,1,'',0,NULL),(9,1,'',0,NULL),(10,1,'',0,NULL),(11,1,'',0,NULL),(12,1,'',0,NULL),(13,1,'',0,NULL),(14,1,'',0,NULL),(15,1,'',0,NULL),(16,1,'',0,NULL),(17,1,'',0,NULL),(18,1,'',0,NULL),(19,1,'',0,NULL),(20,1,'',0,NULL),(21,1,'',0,NULL),(22,1,'',0,NULL),(23,1,'',0,NULL),(24,1,'',0,NULL),(25,1,'',0,NULL),(26,1,'',0,NULL),(27,1,'',0,NULL),(28,1,'',0,NULL),(29,1,'',0,NULL),(30,1,'',0,NULL),(31,1,'',0,NULL),(32,1,'',0,NULL),(33,1,'',0,NULL),(34,1,'',0,NULL),(35,1,'',0,NULL),(36,1,'',0,NULL),(37,1,'',0,NULL),(38,1,'',0,NULL),(39,1,'',0,NULL),(40,1,'',0,NULL),(41,1,'',0,NULL),(42,1,'',0,NULL),(43,1,'',0,NULL),(44,1,'',0,NULL),(45,1,'',0,NULL),(46,1,'',0,NULL),(47,1,'',0,NULL),(48,1,'',0,NULL),(49,1,'',0,NULL),(50,1,'',0,NULL),(51,1,'',0,NULL),(52,1,'',0,NULL),(53,1,'',0,NULL),(54,1,'',0,NULL),(55,1,'',0,NULL),(56,1,'',0,NULL),(57,1,'',0,NULL),(58,1,'',0,NULL),(59,1,'',0,NULL),(60,1,'',0,NULL),(61,1,'',0,NULL),(62,1,'',0,NULL),(63,1,'',0,NULL),(64,1,'',0,NULL),(65,1,'',0,NULL),(66,1,'',0,NULL),(67,1,'',0,NULL),(68,1,'',0,NULL),(69,1,'',0,NULL),(70,1,'',0,NULL),(71,1,'',0,NULL),(72,1,'',0,NULL),(73,1,'',0,NULL),(74,1,'',0,NULL),(75,1,'',0,NULL),(76,1,'',0,NULL),(77,1,'',0,NULL),(78,1,'',0,NULL),(79,1,'',0,NULL),(80,1,'',0,NULL),(81,1,'',0,NULL),(82,1,'',0,NULL),(83,1,'',0,NULL),(84,1,'',0,NULL),(85,1,'',0,NULL),(86,1,'',0,NULL),(87,1,'',0,NULL),(88,1,'',0,NULL),(89,1,'',0,NULL),(90,1,'',0,NULL),(91,1,'',0,NULL),(92,1,'',0,NULL),(93,1,'',0,NULL),(94,1,'',0,NULL),(95,1,'',0,NULL),(96,1,'',0,NULL),(97,1,'',0,NULL),(98,1,'',0,NULL),(99,1,'',0,NULL),(100,1,'',0,NULL),(101,1,'',0,NULL),(102,1,'',0,NULL),(103,1,'',0,NULL),(104,1,'',0,NULL),(105,1,'',0,NULL),(106,1,'',0,NULL),(107,1,'',0,NULL),(108,1,'',0,NULL),(109,1,'',0,NULL),(110,1,'',0,NULL),(111,1,'',0,NULL),(112,1,'',0,NULL),(113,1,'',0,NULL),(114,1,'',0,NULL),(115,1,'',0,NULL),(116,1,'',0,NULL),(117,1,'',0,NULL),(118,1,'',0,NULL),(119,1,'',0,NULL),(120,1,'',0,NULL),(121,1,'',0,NULL),(122,1,'',0,NULL),(123,1,'',0,NULL),(124,1,'',0,NULL),(125,1,'',0,NULL),(126,1,'',0,NULL),(127,1,'',0,NULL),(128,1,'',0,NULL),(129,1,'',0,NULL),(130,1,'',0,NULL),(131,1,'',0,NULL),(132,1,'',0,NULL),(133,1,'',0,NULL),(134,1,'',0,NULL),(135,1,'',0,NULL),(136,1,'',0,NULL),(137,1,'',0,NULL),(138,1,'',0,NULL),(139,1,'',0,NULL),(140,1,'',0,NULL),(141,1,'',0,NULL),(142,1,'',0,NULL),(143,1,'',0,NULL),(144,1,'',0,NULL),(145,1,'',0,NULL),(146,1,'',0,NULL);
/*!40000 ALTER TABLE `zen_record_company_info` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_reviews`;
SET @saved_cs_client     = @@character_set_client;
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 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 */;
/*!40000 ALTER TABLE `zen_reviews` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_reviews_description`;
SET @saved_cs_client     = @@character_set_client;
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;
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 */;
/*!40000 ALTER TABLE `zen_reviews_description` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_salemaker_sales`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `zen_sessions` (
  `sesskey` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `expiry` int(11) unsigned NOT NULL DEFAULT '0',
  `value` mediumblob NOT NULL,
  PRIMARY KEY (`sesskey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
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 ('2b55fc3a89ae57bbc1fedf4d7c70c856',1270776805,'securityToken|s:32:\"3df5131e6d968f7045a775e3c8647c0e\";customers_host_address|s:36:\"c-69-245-213-202.hsd1.in.comcast.net\";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:1:{s:5:\"cPath\";s:3:\"7_3\";}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:\"2010-04-08\";updateExpirations|b:1;category_tree|O:22:\"simple_categories_tree\":8:{s:13:\"category_tree\";a:114:{i:7;a:6:{s:4:\"name\";s:18:\"Exhibiting Artists\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"7\";}s:8:\"sub_cats\";a:28:{i:0;s:2:\"94\";i:1;s:3:\"125\";i:2;s:1:\"2\";i:3;s:2:\"92\";i:4;s:1:\"1\";i:5;s:2:\"32\";i:6;s:2:\"93\";i:7;s:1:\"8\";i:8;s:1:\"9\";i:9;s:2:\"85\";i:10;s:2:\"91\";i:11;s:2:\"86\";i:12;s:1:\"3\";i:13;s:2:\"12\";i:14;s:2:\"13\";i:15;s:2:\"14\";i:16;s:2:\"27\";i:17;s:2:\"88\";i:18;s:2:\"34\";i:19;s:2:\"31\";i:20;s:3:\"122\";i:21;s:2:\"17\";i:22;s:2:\"87\";i:23;s:3:\"121\";i:24;s:3:\"124\";i:25;s:2:\"18\";i:26;s:2:\"19\";i:27;s:3:\"123\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"7\";}i:0;a:3:{s:8:\"sub_cats\";a:7:{i:0;s:1:\"7\";i:1;s:2:\"29\";i:2;s:2:\"37\";i:3;s:1:\"6\";i:4;s:1:\"5\";i:5;s:1:\"4\";i:6;s:2:\"21\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";i:0;}i:29;a:6:{s:4:\"name\";s:20:\"Exhibiting Sculptors\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"29\";}s:8:\"sub_cats\";a:2:{i:0;s:2:\"30\";i:1;s:2:\"57\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:2:\"29\";}i:37;a:5:{s:4:\"name\";s:11:\"Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"37\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:2:\"37\";}i:6;a:6:{s:4:\"name\";s:18:\"Coming Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"6\";}s:8:\"sub_cats\";a:3:{i:0;s:3:\"126\";i:1;s:2:\"80\";i:2;s:2:\"90\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"6\";}i:5;a:5:{s:4:\"name\";s:19:\"Current Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"5\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:1:\"5\";}i:4;a:6:{s:4:\"name\";s:20:\"Previous Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"4\";}s:8:\"sub_cats\";a:3:{i:0;s:2:\"98\";i:1;s:2:\"96\";i:2;s:2:\"97\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"4\";}i:21;a:5:{s:4:\"name\";s:13:\"Upload Images\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"21\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:2:\"21\";}i:98;a:6:{s:4:\"name\";s:4:\"2010\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"98\";}s:8:\"sub_cats\";a:1:{i:0;s:2:\"83\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_98\";}i:96;a:6:{s:4:\"name\";s:4:\"2009\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"96\";}s:8:\"sub_cats\";a:8:{i:0;s:2:\"55\";i:1;s:2:\"76\";i:2;s:2:\"84\";i:3;s:2:\"78\";i:4;s:2:\"89\";i:5;s:2:\"82\";i:6;s:3:\"113\";i:7;s:2:\"95\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_96\";}i:97;a:6:{s:4:\"name\";s:4:\"2008\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"97\";}s:8:\"sub_cats\";a:5:{i:0;s:2:\"33\";i:1;s:2:\"35\";i:2;s:2:\"40\";i:3;s:2:\"48\";i:4;s:2:\"56\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_97\";}i:126;a:5:{s:4:\"name\";s:32:\"Masked Gallery Art Walk May 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:3:\"126\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"6_126\";}i:80;a:5:{s:4:\"name\";s:25:\"James Ainslie - June 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:2:\"80\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"6_80\";}i:90;a:5:{s:4:\"name\";s:25:\"Michelle Pike - Sept 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:2:\"90\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"6_90\";}i:94;a:5:{s:4:\"name\";s:11:\"Amos Duggan\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"94\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_94\";}i:125;a:5:{s:4:\"name\";s:13:\"Annabel Tully\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"125\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_125\";}i:2;a:5:{s:4:\"name\";s:11:\"Arone Meeks\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"2\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_2\";}i:92;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"92\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_92\";}i:1;a:5:{s:4:\"name\";s:15:\"Caroline Magerl\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"1\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_1\";}i:32;a:5:{s:4:\"name\";s:11:\"Chris Blake\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"32\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_32\";}i:93;a:5:{s:4:\"name\";s:7:\"de Shan\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"93\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_93\";}i:8;a:5:{s:4:\"name\";s:9:\"Des Rolph\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"8\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_8\";}i:9;a:5:{s:4:\"name\";s:10:\"Eden Scott\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"9\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_9\";}i:85;a:5:{s:4:\"name\";s:12:\"Frances Luke\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"85\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_85\";}i:91;a:5:{s:4:\"name\";s:8:\"Ian Gunn\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"91\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_91\";}i:86;a:5:{s:4:\"name\";s:13:\"James Ainslie\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"86\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_86\";}i:3;a:5:{s:4:\"name\";s:12:\"Jenny Mulder\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"3\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_3\";}i:12;a:6:{s:4:\"name\";s:9:\"Jenuarrie\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"12\";}s:8:\"sub_cats\";a:2:{i:0;s:2:\"25\";i:1;s:2:\"26\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"7_12\";}i:13;a:5:{s:4:\"name\";s:10:\"Ken Barker\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"13\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_13\";}i:14;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"14\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_14\";}i:27;a:5:{s:4:\"name\";s:14:\"Margi Sheppard\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"27\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_27\";}i:88;a:5:{s:4:\"name\";s:12:\"Marilyn Lane\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"88\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_88\";}i:34;a:5:{s:4:\"name\";s:9:\"Mel Brigg\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"34\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_34\";}i:31;a:5:{s:4:\"name\";s:13:\"Michelle Pike\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"31\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_31\";}i:122;a:5:{s:4:\"name\";s:13:\"Paul Reynolds\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"122\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_122\";}i:17;a:6:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"17\";}s:8:\"sub_cats\";a:3:{i:0;s:2:\"28\";i:1;s:2:\"24\";i:2;s:2:\"23\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"7_17\";}i:87;a:5:{s:4:\"name\";s:14:\"Shirley Strano\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"87\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_87\";}i:121;a:6:{s:4:\"name\";s:13:\"Sue McPherson\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"121\";}s:8:\"sub_cats\";a:2:{i:0;s:3:\"129\";i:1;s:3:\"128\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:5:\"7_121\";}i:124;a:5:{s:4:\"name\";s:12:\"Susan Coburn\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"124\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_124\";}i:18;a:5:{s:4:\"name\";s:11:\"Tom McAulay\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"18\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_18\";}i:19;a:5:{s:4:\"name\";s:12:\"Ute Dittrich\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"19\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_19\";}i:123;a:5:{s:4:\"name\";s:13:\"Warren Palmer\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"123\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_123\";}i:25;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:2:\"12\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"12\";i:2;s:2:\"25\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_12_25\";}i:26;a:5:{s:4:\"name\";s:9:\"Sculpture\";s:9:\"parent_id\";s:2:\"12\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"12\";i:2;s:2:\"26\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_12_26\";}i:28;a:5:{s:4:\"name\";s:7:\"Acclaim\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"28\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_28\";}i:24;a:5:{s:4:\"name\";s:20:\"Ceramics & Sculpture\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"24\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_24\";}i:23;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"23\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_23\";}i:30;a:6:{s:4:\"name\";s:7:\"Di West\";s:9:\"parent_id\";s:2:\"29\";s:4:\"path\";a:2:{i:0;s:2:\"29\";i:1;s:2:\"30\";}s:8:\"sub_cats\";a:2:{i:0;s:3:\"120\";i:1;s:3:\"119\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:5:\"29_30\";}i:57;a:5:{s:4:\"name\";s:10:\"Rhonda Cao\";s:9:\"parent_id\";s:2:\"29\";s:4:\"path\";a:2:{i:0;s:2:\"29\";i:1;s:2:\"57\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"29_57\";}i:120;a:5:{s:4:\"name\";s:22:\"Paintings & Assemblage\";s:9:\"parent_id\";s:2:\"30\";s:4:\"path\";a:3:{i:0;s:2:\"29\";i:1;s:2:\"30\";i:2;s:3:\"120\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"29_30_120\";}i:119;a:5:{s:4:\"name\";s:9:\"Sculpture\";s:9:\"parent_id\";s:2:\"30\";s:4:\"path\";a:3:{i:0;s:2:\"29\";i:1;s:2:\"30\";i:2;s:3:\"119\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"29_30_119\";}i:41;a:5:{s:4:\"name\";s:14:\"Catherine Land\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:2:{i:0;s:2:\"40\";i:1;s:2:\"41\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"40_41\";}i:40;a:6:{s:8:\"sub_cats\";a:7:{i:0;s:2:\"41\";i:1;s:2:\"42\";i:2;s:2:\"43\";i:3;s:2:\"44\";i:4;s:2:\"45\";i:5;s:2:\"46\";i:6;s:2:\"47\";}s:4:\"name\";s:25:\"\'OMSA\' Artists - Oct 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_40\";}i:42;a:5:{s:4:\"name\";s:9:\"John Hill\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"42\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_42\";}i:43;a:5:{s:4:\"name\";s:12:\"Jude Townson\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"43\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_43\";}i:44;a:5:{s:4:\"name\";s:15:\"Margaret Klumpp\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"44\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_44\";}i:45;a:5:{s:4:\"name\";s:12:\"Marilyn Lane\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"45\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_45\";}i:46;a:5:{s:4:\"name\";s:15:\"Petrai Ferguson\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"46\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_46\";}i:47;a:5:{s:4:\"name\";s:13:\"Sandra Pearce\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"47\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_47\";}i:50;a:5:{s:4:\"name\";s:12:\"Alex Ekeblad\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:2:{i:0;s:2:\"48\";i:1;s:2:\"50\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"48_50\";}i:48;a:6:{s:8:\"sub_cats\";a:5:{i:0;s:2:\"50\";i:1;s:2:\"52\";i:2;s:2:\"49\";i:3;s:2:\"51\";i:4;s:2:\"53\";}s:4:\"name\";s:28:\"\'A Family Affair\' - Oct 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_48\";}i:52;a:5:{s:4:\"name\";s:15:\"Bryan McDonnell\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"52\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_52\";}i:49;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"49\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_49\";}i:51;a:5:{s:4:\"name\";s:16:\"Muriel McDonnell\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"51\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_51\";}i:53;a:5:{s:4:\"name\";s:11:\"Natasha KHM\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"53\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_53\";}i:69;a:5:{s:4:\"name\";s:11:\"Arone Meeks\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:2:{i:0;s:2:\"56\";i:1;s:2:\"69\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"56_69\";}i:56;a:6:{s:8:\"sub_cats\";a:16:{i:0;s:2:\"69\";i:1;s:2:\"73\";i:2;s:2:\"65\";i:3;s:2:\"68\";i:4;s:2:\"71\";i:5;s:2:\"62\";i:6;s:2:\"60\";i:7;s:2:\"64\";i:8;s:2:\"74\";i:9;s:2:\"61\";i:10;s:2:\"66\";i:11;s:2:\"72\";i:12;s:2:\"67\";i:13;s:2:\"63\";i:14;s:2:\"70\";i:15;s:2:\"75\";}s:4:\"name\";s:28:\"\'Christmas Stars\' - Dec 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_56\";}i:73;a:5:{s:4:\"name\";s:15:\"Caroline Magerl\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"73\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_73\";}i:65;a:5:{s:4:\"name\";s:11:\"Chris Blake\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"65\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_65\";}i:68;a:5:{s:4:\"name\";s:9:\"Des Rolph\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"68\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_68\";}i:71;a:5:{s:4:\"name\";s:7:\"Di West\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"71\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_71\";}i:62;a:5:{s:4:\"name\";s:10:\"Eden Scott\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"62\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_62\";}i:60;a:5:{s:4:\"name\";s:12:\"Helen Lawson\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"60\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_60\";}i:64;a:5:{s:4:\"name\";s:10:\"Ken Barker\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"64\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_64\";}i:74;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"74\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_74\";}i:61;a:5:{s:4:\"name\";s:9:\"Mel Brigg\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"61\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_61\";}i:66;a:5:{s:4:\"name\";s:13:\"Michelle Pike\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"66\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_66\";}i:72;a:5:{s:4:\"name\";s:10:\"Rhonda Cao\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"72\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_72\";}i:67;a:5:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"67\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_67\";}i:63;a:5:{s:4:\"name\";s:13:\"Sandra Pearce\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"63\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_63\";}i:70;a:5:{s:4:\"name\";s:11:\"Tom McAulay\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"70\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_70\";}i:75;a:5:{s:4:\"name\";s:12:\"Ute Dittrich\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"75\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_75\";}i:99;a:5:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:2:{i:0;s:2:\"82\";i:1;s:2:\"99\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"82_99\";}i:82;a:6:{s:8:\"sub_cats\";a:14:{i:0;s:2:\"99\";i:1;s:3:\"100\";i:2;s:3:\"101\";i:3;s:3:\"102\";i:4;s:3:\"103\";i:5;s:3:\"104\";i:6;s:3:\"105\";i:7;s:3:\"106\";i:8;s:3:\"107\";i:9;s:3:\"108\";i:10;s:3:\"112\";i:11;s:3:\"111\";i:12;s:3:\"110\";i:13;s:3:\"109\";}s:4:\"name\";s:31:\"Drysdale & Artists of Quixotica\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_96_82\";}i:100;a:5:{s:4:\"name\";s:10:\"Kim Se Wan\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"100\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_100\";}i:101;a:5:{s:4:\"name\";s:10:\"James Seet\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"101\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_101\";}i:102;a:5:{s:4:\"name\";s:13:\"Laura MacLean\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"102\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_102\";}i:103;a:5:{s:4:\"name\";s:10:\"Paul Davis\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"103\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_103\";}i:104;a:5:{s:4:\"name\";s:10:\"Julie Wall\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"104\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_104\";}i:105;a:5:{s:4:\"name\";s:4:\"Kari\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"105\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_105\";}i:106;a:5:{s:4:\"name\";s:15:\"Stephen Roberts\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"106\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_106\";}i:107;a:5:{s:4:\"name\";s:12:\"Wesley Denic\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"107\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_107\";}i:108;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"108\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_108\";}i:112;a:5:{s:4:\"name\";s:13:\"Tony Grimshaw\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"112\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_112\";}i:111;a:5:{s:4:\"name\";s:13:\"Ellen Appleby\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"111\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_111\";}i:110;a:5:{s:4:\"name\";s:8:\"Liz Cels\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"110\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_110\";}i:109;a:5:{s:4:\"name\";s:12:\"Mark O\'Neill\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"109\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_109\";}i:55;a:5:{s:4:\"name\";s:24:\"Des Rolph - January 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"55\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_55\";}i:76;a:5:{s:4:\"name\";s:28:\"Caroline Magerl - April 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"76\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_76\";}i:84;a:5:{s:4:\"name\";s:29:\"Galleries of Eumundi Art Walk\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"84\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_84\";}i:78;a:5:{s:4:\"name\";s:18:\"Di West - May 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"78\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_78\";}i:89;a:5:{s:4:\"name\";s:22:\"Eden Scott - July 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"89\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_89\";}i:113;a:6:{s:4:\"name\";s:24:\"the edge - November 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";}s:8:\"sub_cats\";a:5:{i:0;s:3:\"114\";i:1;s:3:\"117\";i:2;s:3:\"116\";i:3;s:3:\"115\";i:4;s:3:\"118\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:8:\"4_96_113\";}i:95;a:5:{s:4:\"name\";s:32:\"Best of 2009 Stars @ The Gallery\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"95\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_95\";}i:33;a:5:{s:4:\"name\";s:26:\"Rowley Drysdale - Aug 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"33\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_97_33\";}i:35;a:5:{s:4:\"name\";s:23:\"Sandra Conte - Sep 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"35\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_97_35\";}i:83;a:5:{s:4:\"name\";s:24:\"Des Rolph - January 2010\";s:9:\"parent_id\";s:2:\"98\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"98\";i:2;s:2:\"83\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_98_83\";}i:114;a:5:{s:4:\"name\";s:11:\"Amos Duggan\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"114\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_114\";}i:117;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"117\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_117\";}i:116;a:5:{s:4:\"name\";s:7:\"de Shan\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"116\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_116\";}i:115;a:5:{s:4:\"name\";s:8:\"Ian Gunn\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"115\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_115\";}i:118;a:5:{s:4:\"name\";s:13:\"Paul Reynolds\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"118\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_118\";}i:129;a:5:{s:4:\"name\";s:9:\"Hot Glass\";s:9:\"parent_id\";s:3:\"121\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:3:\"121\";i:2;s:3:\"129\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"7_121_129\";}i:128;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:3:\"121\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:3:\"121\";i:2;s:3:\"128\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"7_121_128\";}}s:21:\"is_deepest_cats_built\";b:0;s:15:\"parent_open_tag\";s:0:\"\";s:16:\"parent_close_tag\";s:0:\"\";s:14:\"child_open_tag\";s:0:\"\";s:15:\"child_close_tag\";s:0:\"\";s:10:\"current_id\";s:1:\"3\";s:16:\"exceptional_list\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"3\";}}session_counter|b:1;customers_ip_address|s:14:\"69.245.213.202\";'),('6641c70b4dbcc5ba8f7b44c67ecccdb0',1270799368,'securityToken|s:32:\"8c644bdcdc5269769cfaa09f5bfd3345\";language|s:7:\"english\";languages_id|s:1:\"1\";languages_code|s:2:\"en\";selected_box|s:13:\"configuration\";html_editor_preference_status|s:9:\"FCKEDITOR\";'),('843c861c9a6563f36b1116ebf5e9d06d',1270799372,'securityToken|s:32:\"36aa150e2a4a457e1c823ffeb55c5cdf\";language|s:7:\"english\";languages_id|s:1:\"1\";languages_code|s:2:\"en\";selected_box|s:13:\"configuration\";html_editor_preference_status|s:9:\"FCKEDITOR\";'),('91322e745eb813acd657b504674c8d75',1270774252,'securityToken|s:32:\"b96fa45d639ee9f79d667d45f3a2337f\";customers_host_address|s:42:\"CPE-124-186-76-196.lns3.woo.bigpond.net.au\";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:\"2010-04-08\";updateExpirations|b:1;category_tree|O:22:\"simple_categories_tree\":8:{s:13:\"category_tree\";a:114:{i:7;a:6:{s:4:\"name\";s:18:\"Exhibiting Artists\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"7\";}s:8:\"sub_cats\";a:28:{i:0;s:2:\"94\";i:1;s:3:\"125\";i:2;s:1:\"2\";i:3;s:2:\"92\";i:4;s:1:\"1\";i:5;s:2:\"32\";i:6;s:2:\"93\";i:7;s:1:\"8\";i:8;s:1:\"9\";i:9;s:2:\"85\";i:10;s:2:\"91\";i:11;s:2:\"86\";i:12;s:1:\"3\";i:13;s:2:\"12\";i:14;s:2:\"13\";i:15;s:2:\"14\";i:16;s:2:\"27\";i:17;s:2:\"88\";i:18;s:2:\"34\";i:19;s:2:\"31\";i:20;s:3:\"122\";i:21;s:2:\"17\";i:22;s:2:\"87\";i:23;s:3:\"121\";i:24;s:3:\"124\";i:25;s:2:\"18\";i:26;s:2:\"19\";i:27;s:3:\"123\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"7\";}i:0;a:3:{s:8:\"sub_cats\";a:7:{i:0;s:1:\"7\";i:1;s:2:\"29\";i:2;s:2:\"37\";i:3;s:1:\"6\";i:4;s:1:\"5\";i:5;s:1:\"4\";i:6;s:2:\"21\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";i:0;}i:29;a:6:{s:4:\"name\";s:20:\"Exhibiting Sculptors\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"29\";}s:8:\"sub_cats\";a:2:{i:0;s:2:\"30\";i:1;s:2:\"57\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:2:\"29\";}i:37;a:5:{s:4:\"name\";s:11:\"Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"37\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:2:\"37\";}i:6;a:6:{s:4:\"name\";s:18:\"Coming Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"6\";}s:8:\"sub_cats\";a:3:{i:0;s:3:\"126\";i:1;s:2:\"80\";i:2;s:2:\"90\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"6\";}i:5;a:5:{s:4:\"name\";s:19:\"Current Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"5\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:1:\"5\";}i:4;a:6:{s:4:\"name\";s:20:\"Previous Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"4\";}s:8:\"sub_cats\";a:3:{i:0;s:2:\"98\";i:1;s:2:\"96\";i:2;s:2:\"97\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"4\";}i:21;a:5:{s:4:\"name\";s:13:\"Upload Images\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"21\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:2:\"21\";}i:98;a:6:{s:4:\"name\";s:4:\"2010\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"98\";}s:8:\"sub_cats\";a:1:{i:0;s:2:\"83\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_98\";}i:96;a:6:{s:4:\"name\";s:4:\"2009\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"96\";}s:8:\"sub_cats\";a:8:{i:0;s:2:\"55\";i:1;s:2:\"76\";i:2;s:2:\"84\";i:3;s:2:\"78\";i:4;s:2:\"89\";i:5;s:2:\"82\";i:6;s:3:\"113\";i:7;s:2:\"95\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_96\";}i:97;a:6:{s:4:\"name\";s:4:\"2008\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"97\";}s:8:\"sub_cats\";a:5:{i:0;s:2:\"33\";i:1;s:2:\"35\";i:2;s:2:\"40\";i:3;s:2:\"48\";i:4;s:2:\"56\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_97\";}i:126;a:5:{s:4:\"name\";s:32:\"Masked Gallery Art Walk May 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:3:\"126\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"6_126\";}i:80;a:5:{s:4:\"name\";s:25:\"James Ainslie - June 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:2:\"80\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"6_80\";}i:90;a:5:{s:4:\"name\";s:25:\"Michelle Pike - Sept 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:2:\"90\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"6_90\";}i:94;a:5:{s:4:\"name\";s:11:\"Amos Duggan\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"94\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_94\";}i:125;a:5:{s:4:\"name\";s:13:\"Annabel Tully\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"125\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_125\";}i:2;a:5:{s:4:\"name\";s:11:\"Arone Meeks\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"2\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_2\";}i:92;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"92\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_92\";}i:1;a:5:{s:4:\"name\";s:15:\"Caroline Magerl\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"1\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_1\";}i:32;a:5:{s:4:\"name\";s:11:\"Chris Blake\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"32\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_32\";}i:93;a:5:{s:4:\"name\";s:7:\"de Shan\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"93\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_93\";}i:8;a:5:{s:4:\"name\";s:9:\"Des Rolph\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"8\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_8\";}i:9;a:5:{s:4:\"name\";s:10:\"Eden Scott\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"9\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_9\";}i:85;a:5:{s:4:\"name\";s:12:\"Frances Luke\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"85\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_85\";}i:91;a:5:{s:4:\"name\";s:8:\"Ian Gunn\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"91\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_91\";}i:86;a:5:{s:4:\"name\";s:13:\"James Ainslie\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"86\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_86\";}i:3;a:5:{s:4:\"name\";s:12:\"Jenny Mulder\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"3\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_3\";}i:12;a:6:{s:4:\"name\";s:9:\"Jenuarrie\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"12\";}s:8:\"sub_cats\";a:2:{i:0;s:2:\"25\";i:1;s:2:\"26\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"7_12\";}i:13;a:5:{s:4:\"name\";s:10:\"Ken Barker\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"13\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_13\";}i:14;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"14\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_14\";}i:27;a:5:{s:4:\"name\";s:14:\"Margi Sheppard\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"27\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_27\";}i:88;a:5:{s:4:\"name\";s:12:\"Marilyn Lane\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"88\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_88\";}i:34;a:5:{s:4:\"name\";s:9:\"Mel Brigg\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"34\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_34\";}i:31;a:5:{s:4:\"name\";s:13:\"Michelle Pike\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"31\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_31\";}i:122;a:5:{s:4:\"name\";s:13:\"Paul Reynolds\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"122\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_122\";}i:17;a:6:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"17\";}s:8:\"sub_cats\";a:3:{i:0;s:2:\"28\";i:1;s:2:\"24\";i:2;s:2:\"23\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"7_17\";}i:87;a:5:{s:4:\"name\";s:14:\"Shirley Strano\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"87\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_87\";}i:121;a:6:{s:4:\"name\";s:13:\"Sue McPherson\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"121\";}s:8:\"sub_cats\";a:2:{i:0;s:3:\"129\";i:1;s:3:\"128\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:5:\"7_121\";}i:124;a:5:{s:4:\"name\";s:12:\"Susan Coburn\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"124\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_124\";}i:18;a:5:{s:4:\"name\";s:11:\"Tom McAulay\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"18\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_18\";}i:19;a:5:{s:4:\"name\";s:12:\"Ute Dittrich\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"19\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_19\";}i:123;a:5:{s:4:\"name\";s:13:\"Warren Palmer\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"123\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_123\";}i:25;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:2:\"12\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"12\";i:2;s:2:\"25\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_12_25\";}i:26;a:5:{s:4:\"name\";s:9:\"Sculpture\";s:9:\"parent_id\";s:2:\"12\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"12\";i:2;s:2:\"26\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_12_26\";}i:28;a:5:{s:4:\"name\";s:7:\"Acclaim\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"28\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_28\";}i:24;a:5:{s:4:\"name\";s:20:\"Ceramics & Sculpture\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"24\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_24\";}i:23;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"23\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_23\";}i:30;a:6:{s:4:\"name\";s:7:\"Di West\";s:9:\"parent_id\";s:2:\"29\";s:4:\"path\";a:2:{i:0;s:2:\"29\";i:1;s:2:\"30\";}s:8:\"sub_cats\";a:2:{i:0;s:3:\"120\";i:1;s:3:\"119\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:5:\"29_30\";}i:57;a:5:{s:4:\"name\";s:10:\"Rhonda Cao\";s:9:\"parent_id\";s:2:\"29\";s:4:\"path\";a:2:{i:0;s:2:\"29\";i:1;s:2:\"57\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"29_57\";}i:120;a:5:{s:4:\"name\";s:22:\"Paintings & Assemblage\";s:9:\"parent_id\";s:2:\"30\";s:4:\"path\";a:3:{i:0;s:2:\"29\";i:1;s:2:\"30\";i:2;s:3:\"120\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"29_30_120\";}i:119;a:5:{s:4:\"name\";s:9:\"Sculpture\";s:9:\"parent_id\";s:2:\"30\";s:4:\"path\";a:3:{i:0;s:2:\"29\";i:1;s:2:\"30\";i:2;s:3:\"119\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"29_30_119\";}i:41;a:5:{s:4:\"name\";s:14:\"Catherine Land\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:2:{i:0;s:2:\"40\";i:1;s:2:\"41\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"40_41\";}i:40;a:6:{s:8:\"sub_cats\";a:7:{i:0;s:2:\"41\";i:1;s:2:\"42\";i:2;s:2:\"43\";i:3;s:2:\"44\";i:4;s:2:\"45\";i:5;s:2:\"46\";i:6;s:2:\"47\";}s:4:\"name\";s:25:\"\'OMSA\' Artists - Oct 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_40\";}i:42;a:5:{s:4:\"name\";s:9:\"John Hill\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"42\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_42\";}i:43;a:5:{s:4:\"name\";s:12:\"Jude Townson\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"43\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_43\";}i:44;a:5:{s:4:\"name\";s:15:\"Margaret Klumpp\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"44\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_44\";}i:45;a:5:{s:4:\"name\";s:12:\"Marilyn Lane\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"45\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_45\";}i:46;a:5:{s:4:\"name\";s:15:\"Petrai Ferguson\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"46\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_46\";}i:47;a:5:{s:4:\"name\";s:13:\"Sandra Pearce\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"47\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_47\";}i:50;a:5:{s:4:\"name\";s:12:\"Alex Ekeblad\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:2:{i:0;s:2:\"48\";i:1;s:2:\"50\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"48_50\";}i:48;a:6:{s:8:\"sub_cats\";a:5:{i:0;s:2:\"50\";i:1;s:2:\"52\";i:2;s:2:\"49\";i:3;s:2:\"51\";i:4;s:2:\"53\";}s:4:\"name\";s:28:\"\'A Family Affair\' - Oct 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_48\";}i:52;a:5:{s:4:\"name\";s:15:\"Bryan McDonnell\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"52\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_52\";}i:49;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"49\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_49\";}i:51;a:5:{s:4:\"name\";s:16:\"Muriel McDonnell\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"51\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_51\";}i:53;a:5:{s:4:\"name\";s:11:\"Natasha KHM\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"53\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_53\";}i:69;a:5:{s:4:\"name\";s:11:\"Arone Meeks\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:2:{i:0;s:2:\"56\";i:1;s:2:\"69\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"56_69\";}i:56;a:6:{s:8:\"sub_cats\";a:16:{i:0;s:2:\"69\";i:1;s:2:\"73\";i:2;s:2:\"65\";i:3;s:2:\"68\";i:4;s:2:\"71\";i:5;s:2:\"62\";i:6;s:2:\"60\";i:7;s:2:\"64\";i:8;s:2:\"74\";i:9;s:2:\"61\";i:10;s:2:\"66\";i:11;s:2:\"72\";i:12;s:2:\"67\";i:13;s:2:\"63\";i:14;s:2:\"70\";i:15;s:2:\"75\";}s:4:\"name\";s:28:\"\'Christmas Stars\' - Dec 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_56\";}i:73;a:5:{s:4:\"name\";s:15:\"Caroline Magerl\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"73\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_73\";}i:65;a:5:{s:4:\"name\";s:11:\"Chris Blake\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"65\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_65\";}i:68;a:5:{s:4:\"name\";s:9:\"Des Rolph\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"68\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_68\";}i:71;a:5:{s:4:\"name\";s:7:\"Di West\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"71\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_71\";}i:62;a:5:{s:4:\"name\";s:10:\"Eden Scott\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"62\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_62\";}i:60;a:5:{s:4:\"name\";s:12:\"Helen Lawson\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"60\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_60\";}i:64;a:5:{s:4:\"name\";s:10:\"Ken Barker\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"64\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_64\";}i:74;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"74\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_74\";}i:61;a:5:{s:4:\"name\";s:9:\"Mel Brigg\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"61\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_61\";}i:66;a:5:{s:4:\"name\";s:13:\"Michelle Pike\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"66\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_66\";}i:72;a:5:{s:4:\"name\";s:10:\"Rhonda Cao\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"72\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_72\";}i:67;a:5:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"67\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_67\";}i:63;a:5:{s:4:\"name\";s:13:\"Sandra Pearce\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"63\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_63\";}i:70;a:5:{s:4:\"name\";s:11:\"Tom McAulay\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"70\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_70\";}i:75;a:5:{s:4:\"name\";s:12:\"Ute Dittrich\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"75\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_75\";}i:99;a:5:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:2:{i:0;s:2:\"82\";i:1;s:2:\"99\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"82_99\";}i:82;a:6:{s:8:\"sub_cats\";a:14:{i:0;s:2:\"99\";i:1;s:3:\"100\";i:2;s:3:\"101\";i:3;s:3:\"102\";i:4;s:3:\"103\";i:5;s:3:\"104\";i:6;s:3:\"105\";i:7;s:3:\"106\";i:8;s:3:\"107\";i:9;s:3:\"108\";i:10;s:3:\"112\";i:11;s:3:\"111\";i:12;s:3:\"110\";i:13;s:3:\"109\";}s:4:\"name\";s:31:\"Drysdale & Artists of Quixotica\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_96_82\";}i:100;a:5:{s:4:\"name\";s:10:\"Kim Se Wan\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"100\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_100\";}i:101;a:5:{s:4:\"name\";s:10:\"James Seet\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"101\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_101\";}i:102;a:5:{s:4:\"name\";s:13:\"Laura MacLean\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"102\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_102\";}i:103;a:5:{s:4:\"name\";s:10:\"Paul Davis\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"103\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_103\";}i:104;a:5:{s:4:\"name\";s:10:\"Julie Wall\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"104\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_104\";}i:105;a:5:{s:4:\"name\";s:4:\"Kari\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"105\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_105\";}i:106;a:5:{s:4:\"name\";s:15:\"Stephen Roberts\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"106\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_106\";}i:107;a:5:{s:4:\"name\";s:12:\"Wesley Denic\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"107\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_107\";}i:108;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"108\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_108\";}i:112;a:5:{s:4:\"name\";s:13:\"Tony Grimshaw\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"112\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_112\";}i:111;a:5:{s:4:\"name\";s:13:\"Ellen Appleby\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"111\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_111\";}i:110;a:5:{s:4:\"name\";s:8:\"Liz Cels\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"110\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_110\";}i:109;a:5:{s:4:\"name\";s:12:\"Mark O\'Neill\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"109\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_109\";}i:55;a:5:{s:4:\"name\";s:24:\"Des Rolph - January 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"55\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_55\";}i:76;a:5:{s:4:\"name\";s:28:\"Caroline Magerl - April 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"76\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_76\";}i:84;a:5:{s:4:\"name\";s:29:\"Galleries of Eumundi Art Walk\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"84\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_84\";}i:78;a:5:{s:4:\"name\";s:18:\"Di West - May 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"78\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_78\";}i:89;a:5:{s:4:\"name\";s:22:\"Eden Scott - July 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"89\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_89\";}i:113;a:6:{s:4:\"name\";s:24:\"the edge - November 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";}s:8:\"sub_cats\";a:5:{i:0;s:3:\"114\";i:1;s:3:\"117\";i:2;s:3:\"116\";i:3;s:3:\"115\";i:4;s:3:\"118\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:8:\"4_96_113\";}i:95;a:5:{s:4:\"name\";s:32:\"Best of 2009 Stars @ The Gallery\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"95\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_95\";}i:33;a:5:{s:4:\"name\";s:26:\"Rowley Drysdale - Aug 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"33\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_97_33\";}i:35;a:5:{s:4:\"name\";s:23:\"Sandra Conte - Sep 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"35\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_97_35\";}i:83;a:5:{s:4:\"name\";s:24:\"Des Rolph - January 2010\";s:9:\"parent_id\";s:2:\"98\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"98\";i:2;s:2:\"83\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_98_83\";}i:114;a:5:{s:4:\"name\";s:11:\"Amos Duggan\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"114\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_114\";}i:117;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"117\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_117\";}i:116;a:5:{s:4:\"name\";s:7:\"de Shan\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"116\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_116\";}i:115;a:5:{s:4:\"name\";s:8:\"Ian Gunn\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"115\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_115\";}i:118;a:5:{s:4:\"name\";s:13:\"Paul Reynolds\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"118\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_118\";}i:129;a:5:{s:4:\"name\";s:9:\"Hot Glass\";s:9:\"parent_id\";s:3:\"121\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:3:\"121\";i:2;s:3:\"129\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"7_121_129\";}i:128;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:3:\"121\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:3:\"121\";i:2;s:3:\"128\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"7_121_128\";}}s:21:\"is_deepest_cats_built\";b:0;s:15:\"parent_open_tag\";s:0:\"\";s:16:\"parent_close_tag\";s:0:\"\";s:14:\"child_open_tag\";s:0:\"\";s:15:\"child_close_tag\";s:0:\"\";s:10:\"current_id\";i:-1;s:16:\"exceptional_list\";a:0:{}}session_counter|b:1;customers_ip_address|s:14:\"124.186.76.196\";'),('84384cd5ebfcd4d5e5275e8c1849a911',1270774200,'securityToken|s:32:\"5a2162586660b1e099e9e2076342eae7\";customers_host_address|s:34:\"ppp184-150.static.internode.on.net\";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:12:\"product_info\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:1:{s:11:\"products_id\";s:3:\"506\";}s:4:\"post\";a:0:{}}}s:8:\"snapshot\";a:4:{s:4:\"page\";s:12:\"product_info\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:1:{s:11:\"products_id\";s:3:\"506\";}s:4:\"post\";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:\"2010-04-08\";updateExpirations|b:1;category_tree|O:22:\"simple_categories_tree\":8:{s:13:\"category_tree\";a:114:{i:7;a:6:{s:4:\"name\";s:18:\"Exhibiting Artists\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"7\";}s:8:\"sub_cats\";a:28:{i:0;s:2:\"94\";i:1;s:3:\"125\";i:2;s:1:\"2\";i:3;s:2:\"92\";i:4;s:1:\"1\";i:5;s:2:\"32\";i:6;s:2:\"93\";i:7;s:1:\"8\";i:8;s:1:\"9\";i:9;s:2:\"85\";i:10;s:2:\"91\";i:11;s:2:\"86\";i:12;s:1:\"3\";i:13;s:2:\"12\";i:14;s:2:\"13\";i:15;s:2:\"14\";i:16;s:2:\"27\";i:17;s:2:\"88\";i:18;s:2:\"34\";i:19;s:2:\"31\";i:20;s:3:\"122\";i:21;s:2:\"17\";i:22;s:2:\"87\";i:23;s:3:\"121\";i:24;s:3:\"124\";i:25;s:2:\"18\";i:26;s:2:\"19\";i:27;s:3:\"123\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"7\";}i:0;a:3:{s:8:\"sub_cats\";a:7:{i:0;s:1:\"7\";i:1;s:2:\"29\";i:2;s:2:\"37\";i:3;s:1:\"6\";i:4;s:1:\"5\";i:5;s:1:\"4\";i:6;s:2:\"21\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";i:0;}i:29;a:6:{s:4:\"name\";s:20:\"Exhibiting Sculptors\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"29\";}s:8:\"sub_cats\";a:2:{i:0;s:2:\"30\";i:1;s:2:\"57\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:2:\"29\";}i:37;a:5:{s:4:\"name\";s:11:\"Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"37\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:2:\"37\";}i:6;a:6:{s:4:\"name\";s:18:\"Coming Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"6\";}s:8:\"sub_cats\";a:3:{i:0;s:3:\"126\";i:1;s:2:\"80\";i:2;s:2:\"90\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"6\";}i:5;a:5:{s:4:\"name\";s:19:\"Current Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"5\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:1:\"5\";}i:4;a:6:{s:4:\"name\";s:20:\"Previous Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"4\";}s:8:\"sub_cats\";a:3:{i:0;s:2:\"98\";i:1;s:2:\"96\";i:2;s:2:\"97\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"4\";}i:21;a:5:{s:4:\"name\";s:13:\"Upload Images\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"21\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:2:\"21\";}i:98;a:6:{s:4:\"name\";s:4:\"2010\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"98\";}s:8:\"sub_cats\";a:1:{i:0;s:2:\"83\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_98\";}i:96;a:6:{s:4:\"name\";s:4:\"2009\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"96\";}s:8:\"sub_cats\";a:8:{i:0;s:2:\"55\";i:1;s:2:\"76\";i:2;s:2:\"84\";i:3;s:2:\"78\";i:4;s:2:\"89\";i:5;s:2:\"82\";i:6;s:3:\"113\";i:7;s:2:\"95\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_96\";}i:97;a:6:{s:4:\"name\";s:4:\"2008\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"97\";}s:8:\"sub_cats\";a:5:{i:0;s:2:\"33\";i:1;s:2:\"35\";i:2;s:2:\"40\";i:3;s:2:\"48\";i:4;s:2:\"56\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_97\";}i:126;a:5:{s:4:\"name\";s:32:\"Masked Gallery Art Walk May 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:3:\"126\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"6_126\";}i:80;a:5:{s:4:\"name\";s:25:\"James Ainslie - June 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:2:\"80\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"6_80\";}i:90;a:5:{s:4:\"name\";s:25:\"Michelle Pike - Sept 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:2:\"90\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"6_90\";}i:94;a:5:{s:4:\"name\";s:11:\"Amos Duggan\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"94\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_94\";}i:125;a:5:{s:4:\"name\";s:13:\"Annabel Tully\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"125\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_125\";}i:2;a:5:{s:4:\"name\";s:11:\"Arone Meeks\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"2\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_2\";}i:92;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"92\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_92\";}i:1;a:5:{s:4:\"name\";s:15:\"Caroline Magerl\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"1\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_1\";}i:32;a:5:{s:4:\"name\";s:11:\"Chris Blake\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"32\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_32\";}i:93;a:5:{s:4:\"name\";s:7:\"de Shan\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"93\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_93\";}i:8;a:5:{s:4:\"name\";s:9:\"Des Rolph\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"8\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_8\";}i:9;a:5:{s:4:\"name\";s:10:\"Eden Scott\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"9\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_9\";}i:85;a:5:{s:4:\"name\";s:12:\"Frances Luke\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"85\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_85\";}i:91;a:5:{s:4:\"name\";s:8:\"Ian Gunn\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"91\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_91\";}i:86;a:5:{s:4:\"name\";s:13:\"James Ainslie\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"86\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_86\";}i:3;a:5:{s:4:\"name\";s:12:\"Jenny Mulder\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"3\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_3\";}i:12;a:6:{s:4:\"name\";s:9:\"Jenuarrie\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"12\";}s:8:\"sub_cats\";a:2:{i:0;s:2:\"25\";i:1;s:2:\"26\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"7_12\";}i:13;a:5:{s:4:\"name\";s:10:\"Ken Barker\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"13\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_13\";}i:14;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"14\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_14\";}i:27;a:5:{s:4:\"name\";s:14:\"Margi Sheppard\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"27\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_27\";}i:88;a:5:{s:4:\"name\";s:12:\"Marilyn Lane\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"88\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_88\";}i:34;a:5:{s:4:\"name\";s:9:\"Mel Brigg\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"34\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_34\";}i:31;a:5:{s:4:\"name\";s:13:\"Michelle Pike\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"31\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_31\";}i:122;a:5:{s:4:\"name\";s:13:\"Paul Reynolds\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"122\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_122\";}i:17;a:6:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"17\";}s:8:\"sub_cats\";a:3:{i:0;s:2:\"28\";i:1;s:2:\"24\";i:2;s:2:\"23\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"7_17\";}i:87;a:5:{s:4:\"name\";s:14:\"Shirley Strano\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"87\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_87\";}i:121;a:6:{s:4:\"name\";s:13:\"Sue McPherson\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"121\";}s:8:\"sub_cats\";a:2:{i:0;s:3:\"129\";i:1;s:3:\"128\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:5:\"7_121\";}i:124;a:5:{s:4:\"name\";s:12:\"Susan Coburn\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"124\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_124\";}i:18;a:5:{s:4:\"name\";s:11:\"Tom McAulay\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"18\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_18\";}i:19;a:5:{s:4:\"name\";s:12:\"Ute Dittrich\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"19\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_19\";}i:123;a:5:{s:4:\"name\";s:13:\"Warren Palmer\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"123\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_123\";}i:25;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:2:\"12\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"12\";i:2;s:2:\"25\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_12_25\";}i:26;a:5:{s:4:\"name\";s:9:\"Sculpture\";s:9:\"parent_id\";s:2:\"12\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"12\";i:2;s:2:\"26\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_12_26\";}i:28;a:5:{s:4:\"name\";s:7:\"Acclaim\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"28\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_28\";}i:24;a:5:{s:4:\"name\";s:20:\"Ceramics & Sculpture\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"24\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_24\";}i:23;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"23\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_23\";}i:30;a:6:{s:4:\"name\";s:7:\"Di West\";s:9:\"parent_id\";s:2:\"29\";s:4:\"path\";a:2:{i:0;s:2:\"29\";i:1;s:2:\"30\";}s:8:\"sub_cats\";a:2:{i:0;s:3:\"120\";i:1;s:3:\"119\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:5:\"29_30\";}i:57;a:5:{s:4:\"name\";s:10:\"Rhonda Cao\";s:9:\"parent_id\";s:2:\"29\";s:4:\"path\";a:2:{i:0;s:2:\"29\";i:1;s:2:\"57\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"29_57\";}i:120;a:5:{s:4:\"name\";s:22:\"Paintings & Assemblage\";s:9:\"parent_id\";s:2:\"30\";s:4:\"path\";a:3:{i:0;s:2:\"29\";i:1;s:2:\"30\";i:2;s:3:\"120\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"29_30_120\";}i:119;a:5:{s:4:\"name\";s:9:\"Sculpture\";s:9:\"parent_id\";s:2:\"30\";s:4:\"path\";a:3:{i:0;s:2:\"29\";i:1;s:2:\"30\";i:2;s:3:\"119\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"29_30_119\";}i:41;a:5:{s:4:\"name\";s:14:\"Catherine Land\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:2:{i:0;s:2:\"40\";i:1;s:2:\"41\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"40_41\";}i:40;a:6:{s:8:\"sub_cats\";a:7:{i:0;s:2:\"41\";i:1;s:2:\"42\";i:2;s:2:\"43\";i:3;s:2:\"44\";i:4;s:2:\"45\";i:5;s:2:\"46\";i:6;s:2:\"47\";}s:4:\"name\";s:25:\"\'OMSA\' Artists - Oct 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_40\";}i:42;a:5:{s:4:\"name\";s:9:\"John Hill\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"42\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_42\";}i:43;a:5:{s:4:\"name\";s:12:\"Jude Townson\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"43\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_43\";}i:44;a:5:{s:4:\"name\";s:15:\"Margaret Klumpp\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"44\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_44\";}i:45;a:5:{s:4:\"name\";s:12:\"Marilyn Lane\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"45\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_45\";}i:46;a:5:{s:4:\"name\";s:15:\"Petrai Ferguson\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"46\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_46\";}i:47;a:5:{s:4:\"name\";s:13:\"Sandra Pearce\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"47\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_47\";}i:50;a:5:{s:4:\"name\";s:12:\"Alex Ekeblad\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:2:{i:0;s:2:\"48\";i:1;s:2:\"50\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"48_50\";}i:48;a:6:{s:8:\"sub_cats\";a:5:{i:0;s:2:\"50\";i:1;s:2:\"52\";i:2;s:2:\"49\";i:3;s:2:\"51\";i:4;s:2:\"53\";}s:4:\"name\";s:28:\"\'A Family Affair\' - Oct 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_48\";}i:52;a:5:{s:4:\"name\";s:15:\"Bryan McDonnell\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"52\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_52\";}i:49;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"49\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_49\";}i:51;a:5:{s:4:\"name\";s:16:\"Muriel McDonnell\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"51\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_51\";}i:53;a:5:{s:4:\"name\";s:11:\"Natasha KHM\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"53\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_53\";}i:69;a:5:{s:4:\"name\";s:11:\"Arone Meeks\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:2:{i:0;s:2:\"56\";i:1;s:2:\"69\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"56_69\";}i:56;a:6:{s:8:\"sub_cats\";a:16:{i:0;s:2:\"69\";i:1;s:2:\"73\";i:2;s:2:\"65\";i:3;s:2:\"68\";i:4;s:2:\"71\";i:5;s:2:\"62\";i:6;s:2:\"60\";i:7;s:2:\"64\";i:8;s:2:\"74\";i:9;s:2:\"61\";i:10;s:2:\"66\";i:11;s:2:\"72\";i:12;s:2:\"67\";i:13;s:2:\"63\";i:14;s:2:\"70\";i:15;s:2:\"75\";}s:4:\"name\";s:28:\"\'Christmas Stars\' - Dec 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_56\";}i:73;a:5:{s:4:\"name\";s:15:\"Caroline Magerl\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"73\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_73\";}i:65;a:5:{s:4:\"name\";s:11:\"Chris Blake\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"65\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_65\";}i:68;a:5:{s:4:\"name\";s:9:\"Des Rolph\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"68\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_68\";}i:71;a:5:{s:4:\"name\";s:7:\"Di West\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"71\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_71\";}i:62;a:5:{s:4:\"name\";s:10:\"Eden Scott\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"62\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_62\";}i:60;a:5:{s:4:\"name\";s:12:\"Helen Lawson\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"60\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_60\";}i:64;a:5:{s:4:\"name\";s:10:\"Ken Barker\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"64\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_64\";}i:74;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"74\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_74\";}i:61;a:5:{s:4:\"name\";s:9:\"Mel Brigg\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"61\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_61\";}i:66;a:5:{s:4:\"name\";s:13:\"Michelle Pike\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"66\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_66\";}i:72;a:5:{s:4:\"name\";s:10:\"Rhonda Cao\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"72\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_72\";}i:67;a:5:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"67\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_67\";}i:63;a:5:{s:4:\"name\";s:13:\"Sandra Pearce\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"63\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_63\";}i:70;a:5:{s:4:\"name\";s:11:\"Tom McAulay\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"70\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_70\";}i:75;a:5:{s:4:\"name\";s:12:\"Ute Dittrich\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"75\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_75\";}i:99;a:5:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:2:{i:0;s:2:\"82\";i:1;s:2:\"99\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"82_99\";}i:82;a:6:{s:8:\"sub_cats\";a:14:{i:0;s:2:\"99\";i:1;s:3:\"100\";i:2;s:3:\"101\";i:3;s:3:\"102\";i:4;s:3:\"103\";i:5;s:3:\"104\";i:6;s:3:\"105\";i:7;s:3:\"106\";i:8;s:3:\"107\";i:9;s:3:\"108\";i:10;s:3:\"112\";i:11;s:3:\"111\";i:12;s:3:\"110\";i:13;s:3:\"109\";}s:4:\"name\";s:31:\"Drysdale & Artists of Quixotica\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_96_82\";}i:100;a:5:{s:4:\"name\";s:10:\"Kim Se Wan\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"100\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_100\";}i:101;a:5:{s:4:\"name\";s:10:\"James Seet\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"101\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_101\";}i:102;a:5:{s:4:\"name\";s:13:\"Laura MacLean\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"102\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_102\";}i:103;a:5:{s:4:\"name\";s:10:\"Paul Davis\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"103\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_103\";}i:104;a:5:{s:4:\"name\";s:10:\"Julie Wall\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"104\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_104\";}i:105;a:5:{s:4:\"name\";s:4:\"Kari\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"105\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_105\";}i:106;a:5:{s:4:\"name\";s:15:\"Stephen Roberts\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"106\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_106\";}i:107;a:5:{s:4:\"name\";s:12:\"Wesley Denic\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"107\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_107\";}i:108;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"108\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_108\";}i:112;a:5:{s:4:\"name\";s:13:\"Tony Grimshaw\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"112\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_112\";}i:111;a:5:{s:4:\"name\";s:13:\"Ellen Appleby\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"111\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_111\";}i:110;a:5:{s:4:\"name\";s:8:\"Liz Cels\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"110\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_110\";}i:109;a:5:{s:4:\"name\";s:12:\"Mark O\'Neill\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"109\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_109\";}i:55;a:5:{s:4:\"name\";s:24:\"Des Rolph - January 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"55\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_55\";}i:76;a:5:{s:4:\"name\";s:28:\"Caroline Magerl - April 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"76\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_76\";}i:84;a:5:{s:4:\"name\";s:29:\"Galleries of Eumundi Art Walk\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"84\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_84\";}i:78;a:5:{s:4:\"name\";s:18:\"Di West - May 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"78\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_78\";}i:89;a:5:{s:4:\"name\";s:22:\"Eden Scott - July 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"89\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_89\";}i:113;a:6:{s:4:\"name\";s:24:\"the edge - November 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";}s:8:\"sub_cats\";a:5:{i:0;s:3:\"114\";i:1;s:3:\"117\";i:2;s:3:\"116\";i:3;s:3:\"115\";i:4;s:3:\"118\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:8:\"4_96_113\";}i:95;a:5:{s:4:\"name\";s:32:\"Best of 2009 Stars @ The Gallery\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"95\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_95\";}i:33;a:5:{s:4:\"name\";s:26:\"Rowley Drysdale - Aug 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"33\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_97_33\";}i:35;a:5:{s:4:\"name\";s:23:\"Sandra Conte - Sep 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"35\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_97_35\";}i:83;a:5:{s:4:\"name\";s:24:\"Des Rolph - January 2010\";s:9:\"parent_id\";s:2:\"98\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"98\";i:2;s:2:\"83\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_98_83\";}i:114;a:5:{s:4:\"name\";s:11:\"Amos Duggan\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"114\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_114\";}i:117;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"117\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_117\";}i:116;a:5:{s:4:\"name\";s:7:\"de Shan\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"116\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_116\";}i:115;a:5:{s:4:\"name\";s:8:\"Ian Gunn\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"115\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_115\";}i:118;a:5:{s:4:\"name\";s:13:\"Paul Reynolds\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"118\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_118\";}i:129;a:5:{s:4:\"name\";s:9:\"Hot Glass\";s:9:\"parent_id\";s:3:\"121\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:3:\"121\";i:2;s:3:\"129\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"7_121_129\";}i:128;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:3:\"121\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:3:\"121\";i:2;s:3:\"128\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"7_121_128\";}}s:21:\"is_deepest_cats_built\";b:0;s:15:\"parent_open_tag\";s:0:\"\";s:16:\"parent_close_tag\";s:0:\"\";s:14:\"child_open_tag\";s:0:\"\";s:15:\"child_close_tag\";s:0:\"\";s:10:\"current_id\";i:-1;s:16:\"exceptional_list\";a:0:{}}session_counter|b:1;customers_ip_address|s:15:\"150.101.184.150\";'),('c1dbc3d0a3c26606a003c437b5f80b31',1270772821,'securityToken|s:32:\"afdb214c5c69bde8d462efbe36fc6232\";customers_host_address|s:35:\"msnbot-207-46-12-113.search.msn.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: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:\"2010-04-08\";updateExpirations|b:1;category_tree|O:22:\"simple_categories_tree\":8:{s:13:\"category_tree\";a:114:{i:7;a:6:{s:4:\"name\";s:18:\"Exhibiting Artists\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"7\";}s:8:\"sub_cats\";a:28:{i:0;s:2:\"94\";i:1;s:3:\"125\";i:2;s:1:\"2\";i:3;s:2:\"92\";i:4;s:1:\"1\";i:5;s:2:\"32\";i:6;s:2:\"93\";i:7;s:1:\"8\";i:8;s:1:\"9\";i:9;s:2:\"85\";i:10;s:2:\"91\";i:11;s:2:\"86\";i:12;s:1:\"3\";i:13;s:2:\"12\";i:14;s:2:\"13\";i:15;s:2:\"14\";i:16;s:2:\"27\";i:17;s:2:\"88\";i:18;s:2:\"34\";i:19;s:2:\"31\";i:20;s:3:\"122\";i:21;s:2:\"17\";i:22;s:2:\"87\";i:23;s:3:\"121\";i:24;s:3:\"124\";i:25;s:2:\"18\";i:26;s:2:\"19\";i:27;s:3:\"123\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"7\";}i:0;a:3:{s:8:\"sub_cats\";a:7:{i:0;s:1:\"7\";i:1;s:2:\"29\";i:2;s:2:\"37\";i:3;s:1:\"6\";i:4;s:1:\"5\";i:5;s:1:\"4\";i:6;s:2:\"21\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";i:0;}i:29;a:6:{s:4:\"name\";s:20:\"Exhibiting Sculptors\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"29\";}s:8:\"sub_cats\";a:2:{i:0;s:2:\"30\";i:1;s:2:\"57\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:2:\"29\";}i:37;a:5:{s:4:\"name\";s:11:\"Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"37\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:2:\"37\";}i:6;a:6:{s:4:\"name\";s:18:\"Coming Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"6\";}s:8:\"sub_cats\";a:3:{i:0;s:3:\"126\";i:1;s:2:\"80\";i:2;s:2:\"90\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"6\";}i:5;a:5:{s:4:\"name\";s:19:\"Current Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"5\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:1:\"5\";}i:4;a:6:{s:4:\"name\";s:20:\"Previous Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"4\";}s:8:\"sub_cats\";a:3:{i:0;s:2:\"98\";i:1;s:2:\"96\";i:2;s:2:\"97\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"4\";}i:21;a:5:{s:4:\"name\";s:13:\"Upload Images\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"21\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:2:\"21\";}i:98;a:6:{s:4:\"name\";s:4:\"2010\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"98\";}s:8:\"sub_cats\";a:1:{i:0;s:2:\"83\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_98\";}i:96;a:6:{s:4:\"name\";s:4:\"2009\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"96\";}s:8:\"sub_cats\";a:8:{i:0;s:2:\"55\";i:1;s:2:\"76\";i:2;s:2:\"84\";i:3;s:2:\"78\";i:4;s:2:\"89\";i:5;s:2:\"82\";i:6;s:3:\"113\";i:7;s:2:\"95\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_96\";}i:97;a:6:{s:4:\"name\";s:4:\"2008\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"97\";}s:8:\"sub_cats\";a:5:{i:0;s:2:\"33\";i:1;s:2:\"35\";i:2;s:2:\"40\";i:3;s:2:\"48\";i:4;s:2:\"56\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_97\";}i:126;a:5:{s:4:\"name\";s:32:\"Masked Gallery Art Walk May 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:3:\"126\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"6_126\";}i:80;a:5:{s:4:\"name\";s:25:\"James Ainslie - June 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:2:\"80\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"6_80\";}i:90;a:5:{s:4:\"name\";s:25:\"Michelle Pike - Sept 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:2:\"90\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"6_90\";}i:94;a:5:{s:4:\"name\";s:11:\"Amos Duggan\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"94\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_94\";}i:125;a:5:{s:4:\"name\";s:13:\"Annabel Tully\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"125\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_125\";}i:2;a:5:{s:4:\"name\";s:11:\"Arone Meeks\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"2\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_2\";}i:92;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"92\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_92\";}i:1;a:5:{s:4:\"name\";s:15:\"Caroline Magerl\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"1\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_1\";}i:32;a:5:{s:4:\"name\";s:11:\"Chris Blake\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"32\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_32\";}i:93;a:5:{s:4:\"name\";s:7:\"de Shan\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"93\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_93\";}i:8;a:5:{s:4:\"name\";s:9:\"Des Rolph\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"8\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_8\";}i:9;a:5:{s:4:\"name\";s:10:\"Eden Scott\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"9\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_9\";}i:85;a:5:{s:4:\"name\";s:12:\"Frances Luke\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"85\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_85\";}i:91;a:5:{s:4:\"name\";s:8:\"Ian Gunn\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"91\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_91\";}i:86;a:5:{s:4:\"name\";s:13:\"James Ainslie\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"86\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_86\";}i:3;a:5:{s:4:\"name\";s:12:\"Jenny Mulder\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"3\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_3\";}i:12;a:6:{s:4:\"name\";s:9:\"Jenuarrie\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"12\";}s:8:\"sub_cats\";a:2:{i:0;s:2:\"25\";i:1;s:2:\"26\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"7_12\";}i:13;a:5:{s:4:\"name\";s:10:\"Ken Barker\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"13\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_13\";}i:14;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"14\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_14\";}i:27;a:5:{s:4:\"name\";s:14:\"Margi Sheppard\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"27\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_27\";}i:88;a:5:{s:4:\"name\";s:12:\"Marilyn Lane\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"88\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_88\";}i:34;a:5:{s:4:\"name\";s:9:\"Mel Brigg\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"34\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_34\";}i:31;a:5:{s:4:\"name\";s:13:\"Michelle Pike\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"31\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_31\";}i:122;a:5:{s:4:\"name\";s:13:\"Paul Reynolds\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"122\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_122\";}i:17;a:6:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"17\";}s:8:\"sub_cats\";a:3:{i:0;s:2:\"28\";i:1;s:2:\"24\";i:2;s:2:\"23\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"7_17\";}i:87;a:5:{s:4:\"name\";s:14:\"Shirley Strano\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"87\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_87\";}i:121;a:6:{s:4:\"name\";s:13:\"Sue McPherson\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"121\";}s:8:\"sub_cats\";a:2:{i:0;s:3:\"129\";i:1;s:3:\"128\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:5:\"7_121\";}i:124;a:5:{s:4:\"name\";s:12:\"Susan Coburn\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"124\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_124\";}i:18;a:5:{s:4:\"name\";s:11:\"Tom McAulay\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"18\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_18\";}i:19;a:5:{s:4:\"name\";s:12:\"Ute Dittrich\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"19\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_19\";}i:123;a:5:{s:4:\"name\";s:13:\"Warren Palmer\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"123\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_123\";}i:25;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:2:\"12\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"12\";i:2;s:2:\"25\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_12_25\";}i:26;a:5:{s:4:\"name\";s:9:\"Sculpture\";s:9:\"parent_id\";s:2:\"12\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"12\";i:2;s:2:\"26\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_12_26\";}i:28;a:5:{s:4:\"name\";s:7:\"Acclaim\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"28\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_28\";}i:24;a:5:{s:4:\"name\";s:20:\"Ceramics & Sculpture\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"24\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_24\";}i:23;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"23\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_23\";}i:30;a:6:{s:4:\"name\";s:7:\"Di West\";s:9:\"parent_id\";s:2:\"29\";s:4:\"path\";a:2:{i:0;s:2:\"29\";i:1;s:2:\"30\";}s:8:\"sub_cats\";a:2:{i:0;s:3:\"120\";i:1;s:3:\"119\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:5:\"29_30\";}i:57;a:5:{s:4:\"name\";s:10:\"Rhonda Cao\";s:9:\"parent_id\";s:2:\"29\";s:4:\"path\";a:2:{i:0;s:2:\"29\";i:1;s:2:\"57\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"29_57\";}i:120;a:5:{s:4:\"name\";s:22:\"Paintings & Assemblage\";s:9:\"parent_id\";s:2:\"30\";s:4:\"path\";a:3:{i:0;s:2:\"29\";i:1;s:2:\"30\";i:2;s:3:\"120\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"29_30_120\";}i:119;a:5:{s:4:\"name\";s:9:\"Sculpture\";s:9:\"parent_id\";s:2:\"30\";s:4:\"path\";a:3:{i:0;s:2:\"29\";i:1;s:2:\"30\";i:2;s:3:\"119\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"29_30_119\";}i:41;a:5:{s:4:\"name\";s:14:\"Catherine Land\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:2:{i:0;s:2:\"40\";i:1;s:2:\"41\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"40_41\";}i:40;a:6:{s:8:\"sub_cats\";a:7:{i:0;s:2:\"41\";i:1;s:2:\"42\";i:2;s:2:\"43\";i:3;s:2:\"44\";i:4;s:2:\"45\";i:5;s:2:\"46\";i:6;s:2:\"47\";}s:4:\"name\";s:25:\"\'OMSA\' Artists - Oct 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_40\";}i:42;a:5:{s:4:\"name\";s:9:\"John Hill\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"42\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_42\";}i:43;a:5:{s:4:\"name\";s:12:\"Jude Townson\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"43\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_43\";}i:44;a:5:{s:4:\"name\";s:15:\"Margaret Klumpp\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"44\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_44\";}i:45;a:5:{s:4:\"name\";s:12:\"Marilyn Lane\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"45\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_45\";}i:46;a:5:{s:4:\"name\";s:15:\"Petrai Ferguson\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"46\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_46\";}i:47;a:5:{s:4:\"name\";s:13:\"Sandra Pearce\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"47\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_47\";}i:50;a:5:{s:4:\"name\";s:12:\"Alex Ekeblad\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:2:{i:0;s:2:\"48\";i:1;s:2:\"50\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"48_50\";}i:48;a:6:{s:8:\"sub_cats\";a:5:{i:0;s:2:\"50\";i:1;s:2:\"52\";i:2;s:2:\"49\";i:3;s:2:\"51\";i:4;s:2:\"53\";}s:4:\"name\";s:28:\"\'A Family Affair\' - Oct 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_48\";}i:52;a:5:{s:4:\"name\";s:15:\"Bryan McDonnell\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"52\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_52\";}i:49;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"49\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_49\";}i:51;a:5:{s:4:\"name\";s:16:\"Muriel McDonnell\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"51\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_51\";}i:53;a:5:{s:4:\"name\";s:11:\"Natasha KHM\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"53\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_53\";}i:69;a:5:{s:4:\"name\";s:11:\"Arone Meeks\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:2:{i:0;s:2:\"56\";i:1;s:2:\"69\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"56_69\";}i:56;a:6:{s:8:\"sub_cats\";a:16:{i:0;s:2:\"69\";i:1;s:2:\"73\";i:2;s:2:\"65\";i:3;s:2:\"68\";i:4;s:2:\"71\";i:5;s:2:\"62\";i:6;s:2:\"60\";i:7;s:2:\"64\";i:8;s:2:\"74\";i:9;s:2:\"61\";i:10;s:2:\"66\";i:11;s:2:\"72\";i:12;s:2:\"67\";i:13;s:2:\"63\";i:14;s:2:\"70\";i:15;s:2:\"75\";}s:4:\"name\";s:28:\"\'Christmas Stars\' - Dec 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_56\";}i:73;a:5:{s:4:\"name\";s:15:\"Caroline Magerl\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"73\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_73\";}i:65;a:5:{s:4:\"name\";s:11:\"Chris Blake\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"65\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_65\";}i:68;a:5:{s:4:\"name\";s:9:\"Des Rolph\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"68\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_68\";}i:71;a:5:{s:4:\"name\";s:7:\"Di West\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"71\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_71\";}i:62;a:5:{s:4:\"name\";s:10:\"Eden Scott\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"62\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_62\";}i:60;a:5:{s:4:\"name\";s:12:\"Helen Lawson\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"60\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_60\";}i:64;a:5:{s:4:\"name\";s:10:\"Ken Barker\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"64\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_64\";}i:74;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"74\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_74\";}i:61;a:5:{s:4:\"name\";s:9:\"Mel Brigg\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"61\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_61\";}i:66;a:5:{s:4:\"name\";s:13:\"Michelle Pike\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"66\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_66\";}i:72;a:5:{s:4:\"name\";s:10:\"Rhonda Cao\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"72\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_72\";}i:67;a:5:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"67\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_67\";}i:63;a:5:{s:4:\"name\";s:13:\"Sandra Pearce\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"63\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_63\";}i:70;a:5:{s:4:\"name\";s:11:\"Tom McAulay\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"70\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_70\";}i:75;a:5:{s:4:\"name\";s:12:\"Ute Dittrich\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"75\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_75\";}i:99;a:5:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:2:{i:0;s:2:\"82\";i:1;s:2:\"99\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"82_99\";}i:82;a:6:{s:8:\"sub_cats\";a:14:{i:0;s:2:\"99\";i:1;s:3:\"100\";i:2;s:3:\"101\";i:3;s:3:\"102\";i:4;s:3:\"103\";i:5;s:3:\"104\";i:6;s:3:\"105\";i:7;s:3:\"106\";i:8;s:3:\"107\";i:9;s:3:\"108\";i:10;s:3:\"112\";i:11;s:3:\"111\";i:12;s:3:\"110\";i:13;s:3:\"109\";}s:4:\"name\";s:31:\"Drysdale & Artists of Quixotica\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_96_82\";}i:100;a:5:{s:4:\"name\";s:10:\"Kim Se Wan\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"100\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_100\";}i:101;a:5:{s:4:\"name\";s:10:\"James Seet\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"101\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_101\";}i:102;a:5:{s:4:\"name\";s:13:\"Laura MacLean\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"102\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_102\";}i:103;a:5:{s:4:\"name\";s:10:\"Paul Davis\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"103\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_103\";}i:104;a:5:{s:4:\"name\";s:10:\"Julie Wall\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"104\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_104\";}i:105;a:5:{s:4:\"name\";s:4:\"Kari\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"105\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_105\";}i:106;a:5:{s:4:\"name\";s:15:\"Stephen Roberts\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"106\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_106\";}i:107;a:5:{s:4:\"name\";s:12:\"Wesley Denic\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"107\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_107\";}i:108;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"108\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_108\";}i:112;a:5:{s:4:\"name\";s:13:\"Tony Grimshaw\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"112\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_112\";}i:111;a:5:{s:4:\"name\";s:13:\"Ellen Appleby\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"111\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_111\";}i:110;a:5:{s:4:\"name\";s:8:\"Liz Cels\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"110\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_110\";}i:109;a:5:{s:4:\"name\";s:12:\"Mark O\'Neill\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"109\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_109\";}i:55;a:5:{s:4:\"name\";s:24:\"Des Rolph - January 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"55\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_55\";}i:76;a:5:{s:4:\"name\";s:28:\"Caroline Magerl - April 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"76\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_76\";}i:84;a:5:{s:4:\"name\";s:29:\"Galleries of Eumundi Art Walk\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"84\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_84\";}i:78;a:5:{s:4:\"name\";s:18:\"Di West - May 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"78\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_78\";}i:89;a:5:{s:4:\"name\";s:22:\"Eden Scott - July 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"89\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_89\";}i:113;a:6:{s:4:\"name\";s:24:\"the edge - November 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";}s:8:\"sub_cats\";a:5:{i:0;s:3:\"114\";i:1;s:3:\"117\";i:2;s:3:\"116\";i:3;s:3:\"115\";i:4;s:3:\"118\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:8:\"4_96_113\";}i:95;a:5:{s:4:\"name\";s:32:\"Best of 2009 Stars @ The Gallery\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"95\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_95\";}i:33;a:5:{s:4:\"name\";s:26:\"Rowley Drysdale - Aug 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"33\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_97_33\";}i:35;a:5:{s:4:\"name\";s:23:\"Sandra Conte - Sep 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"35\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_97_35\";}i:83;a:5:{s:4:\"name\";s:24:\"Des Rolph - January 2010\";s:9:\"parent_id\";s:2:\"98\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"98\";i:2;s:2:\"83\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_98_83\";}i:114;a:5:{s:4:\"name\";s:11:\"Amos Duggan\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"114\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_114\";}i:117;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"117\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_117\";}i:116;a:5:{s:4:\"name\";s:7:\"de Shan\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"116\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_116\";}i:115;a:5:{s:4:\"name\";s:8:\"Ian Gunn\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"115\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_115\";}i:118;a:5:{s:4:\"name\";s:13:\"Paul Reynolds\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"118\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_118\";}i:129;a:5:{s:4:\"name\";s:9:\"Hot Glass\";s:9:\"parent_id\";s:3:\"121\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:3:\"121\";i:2;s:3:\"129\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"7_121_129\";}i:128;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:3:\"121\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:3:\"121\";i:2;s:3:\"128\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"7_121_128\";}}s:21:\"is_deepest_cats_built\";b:0;s:15:\"parent_open_tag\";s:0:\"\";s:16:\"parent_close_tag\";s:0:\"\";s:14:\"child_open_tag\";s:0:\"\";s:15:\"child_close_tag\";s:0:\"\";s:10:\"current_id\";i:-1;s:16:\"exceptional_list\";a:0:{}}session_counter|b:1;customers_ip_address|s:13:\"207.46.12.113\";'),('5a02112394782142b78e4a305c7d8217',1270772891,'securityToken|s:32:\"fd6c0d0f7c3e8b5eaf3f31ca282814e8\";customers_host_address|s:26:\"ycar2.mobile.re3.yahoo.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:\"2010-04-08\";updateExpirations|b:1;category_tree|O:22:\"simple_categories_tree\":8:{s:13:\"category_tree\";a:114:{i:7;a:6:{s:4:\"name\";s:18:\"Exhibiting Artists\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"7\";}s:8:\"sub_cats\";a:28:{i:0;s:2:\"94\";i:1;s:3:\"125\";i:2;s:1:\"2\";i:3;s:2:\"92\";i:4;s:1:\"1\";i:5;s:2:\"32\";i:6;s:2:\"93\";i:7;s:1:\"8\";i:8;s:1:\"9\";i:9;s:2:\"85\";i:10;s:2:\"91\";i:11;s:2:\"86\";i:12;s:1:\"3\";i:13;s:2:\"12\";i:14;s:2:\"13\";i:15;s:2:\"14\";i:16;s:2:\"27\";i:17;s:2:\"88\";i:18;s:2:\"34\";i:19;s:2:\"31\";i:20;s:3:\"122\";i:21;s:2:\"17\";i:22;s:2:\"87\";i:23;s:3:\"121\";i:24;s:3:\"124\";i:25;s:2:\"18\";i:26;s:2:\"19\";i:27;s:3:\"123\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"7\";}i:0;a:3:{s:8:\"sub_cats\";a:7:{i:0;s:1:\"7\";i:1;s:2:\"29\";i:2;s:2:\"37\";i:3;s:1:\"6\";i:4;s:1:\"5\";i:5;s:1:\"4\";i:6;s:2:\"21\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";i:0;}i:29;a:6:{s:4:\"name\";s:20:\"Exhibiting Sculptors\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"29\";}s:8:\"sub_cats\";a:2:{i:0;s:2:\"30\";i:1;s:2:\"57\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:2:\"29\";}i:37;a:5:{s:4:\"name\";s:11:\"Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"37\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:2:\"37\";}i:6;a:6:{s:4:\"name\";s:18:\"Coming Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"6\";}s:8:\"sub_cats\";a:3:{i:0;s:3:\"126\";i:1;s:2:\"80\";i:2;s:2:\"90\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"6\";}i:5;a:5:{s:4:\"name\";s:19:\"Current Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"5\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:1:\"5\";}i:4;a:6:{s:4:\"name\";s:20:\"Previous Exhibitions\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:1:\"4\";}s:8:\"sub_cats\";a:3:{i:0;s:2:\"98\";i:1;s:2:\"96\";i:2;s:2:\"97\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:1:\"4\";}i:21;a:5:{s:4:\"name\";s:13:\"Upload Images\";s:9:\"parent_id\";s:1:\"0\";s:4:\"path\";a:1:{i:0;s:2:\"21\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:2:\"21\";}i:98;a:6:{s:4:\"name\";s:4:\"2010\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"98\";}s:8:\"sub_cats\";a:1:{i:0;s:2:\"83\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_98\";}i:96;a:6:{s:4:\"name\";s:4:\"2009\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"96\";}s:8:\"sub_cats\";a:8:{i:0;s:2:\"55\";i:1;s:2:\"76\";i:2;s:2:\"84\";i:3;s:2:\"78\";i:4;s:2:\"89\";i:5;s:2:\"82\";i:6;s:3:\"113\";i:7;s:2:\"95\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_96\";}i:97;a:6:{s:4:\"name\";s:4:\"2008\";s:9:\"parent_id\";s:1:\"4\";s:4:\"path\";a:2:{i:0;s:1:\"4\";i:1;s:2:\"97\";}s:8:\"sub_cats\";a:5:{i:0;s:2:\"33\";i:1;s:2:\"35\";i:2;s:2:\"40\";i:3;s:2:\"48\";i:4;s:2:\"56\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"4_97\";}i:126;a:5:{s:4:\"name\";s:32:\"Masked Gallery Art Walk May 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:3:\"126\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"6_126\";}i:80;a:5:{s:4:\"name\";s:25:\"James Ainslie - June 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:2:\"80\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"6_80\";}i:90;a:5:{s:4:\"name\";s:25:\"Michelle Pike - Sept 2010\";s:9:\"parent_id\";s:1:\"6\";s:4:\"path\";a:2:{i:0;s:1:\"6\";i:1;s:2:\"90\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"6_90\";}i:94;a:5:{s:4:\"name\";s:11:\"Amos Duggan\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"94\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_94\";}i:125;a:5:{s:4:\"name\";s:13:\"Annabel Tully\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"125\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_125\";}i:2;a:5:{s:4:\"name\";s:11:\"Arone Meeks\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"2\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_2\";}i:92;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"92\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_92\";}i:1;a:5:{s:4:\"name\";s:15:\"Caroline Magerl\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"1\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_1\";}i:32;a:5:{s:4:\"name\";s:11:\"Chris Blake\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"32\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_32\";}i:93;a:5:{s:4:\"name\";s:7:\"de Shan\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"93\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_93\";}i:8;a:5:{s:4:\"name\";s:9:\"Des Rolph\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"8\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_8\";}i:9;a:5:{s:4:\"name\";s:10:\"Eden Scott\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"9\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_9\";}i:85;a:5:{s:4:\"name\";s:12:\"Frances Luke\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"85\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_85\";}i:91;a:5:{s:4:\"name\";s:8:\"Ian Gunn\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"91\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_91\";}i:86;a:5:{s:4:\"name\";s:13:\"James Ainslie\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"86\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_86\";}i:3;a:5:{s:4:\"name\";s:12:\"Jenny Mulder\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:1:\"3\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:3:\"7_3\";}i:12;a:6:{s:4:\"name\";s:9:\"Jenuarrie\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"12\";}s:8:\"sub_cats\";a:2:{i:0;s:2:\"25\";i:1;s:2:\"26\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"7_12\";}i:13;a:5:{s:4:\"name\";s:10:\"Ken Barker\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"13\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_13\";}i:14;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"14\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_14\";}i:27;a:5:{s:4:\"name\";s:14:\"Margi Sheppard\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"27\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_27\";}i:88;a:5:{s:4:\"name\";s:12:\"Marilyn Lane\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"88\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_88\";}i:34;a:5:{s:4:\"name\";s:9:\"Mel Brigg\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"34\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_34\";}i:31;a:5:{s:4:\"name\";s:13:\"Michelle Pike\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"31\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_31\";}i:122;a:5:{s:4:\"name\";s:13:\"Paul Reynolds\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"122\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_122\";}i:17;a:6:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"17\";}s:8:\"sub_cats\";a:3:{i:0;s:2:\"28\";i:1;s:2:\"24\";i:2;s:2:\"23\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:4:\"7_17\";}i:87;a:5:{s:4:\"name\";s:14:\"Shirley Strano\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"87\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_87\";}i:121;a:6:{s:4:\"name\";s:13:\"Sue McPherson\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"121\";}s:8:\"sub_cats\";a:2:{i:0;s:3:\"129\";i:1;s:3:\"128\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:5:\"7_121\";}i:124;a:5:{s:4:\"name\";s:12:\"Susan Coburn\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"124\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_124\";}i:18;a:5:{s:4:\"name\";s:11:\"Tom McAulay\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"18\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_18\";}i:19;a:5:{s:4:\"name\";s:12:\"Ute Dittrich\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:2:\"19\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:4:\"7_19\";}i:123;a:5:{s:4:\"name\";s:13:\"Warren Palmer\";s:9:\"parent_id\";s:1:\"7\";s:4:\"path\";a:2:{i:0;s:1:\"7\";i:1;s:3:\"123\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"7_123\";}i:25;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:2:\"12\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"12\";i:2;s:2:\"25\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_12_25\";}i:26;a:5:{s:4:\"name\";s:9:\"Sculpture\";s:9:\"parent_id\";s:2:\"12\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"12\";i:2;s:2:\"26\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_12_26\";}i:28;a:5:{s:4:\"name\";s:7:\"Acclaim\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"28\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_28\";}i:24;a:5:{s:4:\"name\";s:20:\"Ceramics & Sculpture\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"24\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_24\";}i:23;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:2:\"17\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:2:\"17\";i:2;s:2:\"23\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"7_17_23\";}i:30;a:6:{s:4:\"name\";s:7:\"Di West\";s:9:\"parent_id\";s:2:\"29\";s:4:\"path\";a:2:{i:0;s:2:\"29\";i:1;s:2:\"30\";}s:8:\"sub_cats\";a:2:{i:0;s:3:\"120\";i:1;s:3:\"119\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:5:\"29_30\";}i:57;a:5:{s:4:\"name\";s:10:\"Rhonda Cao\";s:9:\"parent_id\";s:2:\"29\";s:4:\"path\";a:2:{i:0;s:2:\"29\";i:1;s:2:\"57\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"29_57\";}i:120;a:5:{s:4:\"name\";s:22:\"Paintings & Assemblage\";s:9:\"parent_id\";s:2:\"30\";s:4:\"path\";a:3:{i:0;s:2:\"29\";i:1;s:2:\"30\";i:2;s:3:\"120\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"29_30_120\";}i:119;a:5:{s:4:\"name\";s:9:\"Sculpture\";s:9:\"parent_id\";s:2:\"30\";s:4:\"path\";a:3:{i:0;s:2:\"29\";i:1;s:2:\"30\";i:2;s:3:\"119\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"29_30_119\";}i:41;a:5:{s:4:\"name\";s:14:\"Catherine Land\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:2:{i:0;s:2:\"40\";i:1;s:2:\"41\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"40_41\";}i:40;a:6:{s:8:\"sub_cats\";a:7:{i:0;s:2:\"41\";i:1;s:2:\"42\";i:2;s:2:\"43\";i:3;s:2:\"44\";i:4;s:2:\"45\";i:5;s:2:\"46\";i:6;s:2:\"47\";}s:4:\"name\";s:25:\"\'OMSA\' Artists - Oct 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_40\";}i:42;a:5:{s:4:\"name\";s:9:\"John Hill\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"42\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_42\";}i:43;a:5:{s:4:\"name\";s:12:\"Jude Townson\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"43\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_43\";}i:44;a:5:{s:4:\"name\";s:15:\"Margaret Klumpp\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"44\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_44\";}i:45;a:5:{s:4:\"name\";s:12:\"Marilyn Lane\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"45\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_45\";}i:46;a:5:{s:4:\"name\";s:15:\"Petrai Ferguson\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"46\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_46\";}i:47;a:5:{s:4:\"name\";s:13:\"Sandra Pearce\";s:9:\"parent_id\";s:2:\"40\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"40\";i:3;s:2:\"47\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_40_47\";}i:50;a:5:{s:4:\"name\";s:12:\"Alex Ekeblad\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:2:{i:0;s:2:\"48\";i:1;s:2:\"50\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"48_50\";}i:48;a:6:{s:8:\"sub_cats\";a:5:{i:0;s:2:\"50\";i:1;s:2:\"52\";i:2;s:2:\"49\";i:3;s:2:\"51\";i:4;s:2:\"53\";}s:4:\"name\";s:28:\"\'A Family Affair\' - Oct 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_48\";}i:52;a:5:{s:4:\"name\";s:15:\"Bryan McDonnell\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"52\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_52\";}i:49;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"49\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_49\";}i:51;a:5:{s:4:\"name\";s:16:\"Muriel McDonnell\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"51\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_51\";}i:53;a:5:{s:4:\"name\";s:11:\"Natasha KHM\";s:9:\"parent_id\";s:2:\"48\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"48\";i:3;s:2:\"53\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_48_53\";}i:69;a:5:{s:4:\"name\";s:11:\"Arone Meeks\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:2:{i:0;s:2:\"56\";i:1;s:2:\"69\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"56_69\";}i:56;a:6:{s:8:\"sub_cats\";a:16:{i:0;s:2:\"69\";i:1;s:2:\"73\";i:2;s:2:\"65\";i:3;s:2:\"68\";i:4;s:2:\"71\";i:5;s:2:\"62\";i:6;s:2:\"60\";i:7;s:2:\"64\";i:8;s:2:\"74\";i:9;s:2:\"61\";i:10;s:2:\"66\";i:11;s:2:\"72\";i:12;s:2:\"67\";i:13;s:2:\"63\";i:14;s:2:\"70\";i:15;s:2:\"75\";}s:4:\"name\";s:28:\"\'Christmas Stars\' - Dec 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_97_56\";}i:73;a:5:{s:4:\"name\";s:15:\"Caroline Magerl\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"73\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_73\";}i:65;a:5:{s:4:\"name\";s:11:\"Chris Blake\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"65\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_65\";}i:68;a:5:{s:4:\"name\";s:9:\"Des Rolph\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"68\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_68\";}i:71;a:5:{s:4:\"name\";s:7:\"Di West\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"71\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_71\";}i:62;a:5:{s:4:\"name\";s:10:\"Eden Scott\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"62\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_62\";}i:60;a:5:{s:4:\"name\";s:12:\"Helen Lawson\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"60\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_60\";}i:64;a:5:{s:4:\"name\";s:10:\"Ken Barker\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"64\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_64\";}i:74;a:5:{s:4:\"name\";s:17:\"Madeleine Ekeblad\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"74\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_74\";}i:61;a:5:{s:4:\"name\";s:9:\"Mel Brigg\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"61\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_61\";}i:66;a:5:{s:4:\"name\";s:13:\"Michelle Pike\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"66\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_66\";}i:72;a:5:{s:4:\"name\";s:10:\"Rhonda Cao\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"72\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_72\";}i:67;a:5:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"67\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_67\";}i:63;a:5:{s:4:\"name\";s:13:\"Sandra Pearce\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"63\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_63\";}i:70;a:5:{s:4:\"name\";s:11:\"Tom McAulay\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"70\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_70\";}i:75;a:5:{s:4:\"name\";s:12:\"Ute Dittrich\";s:9:\"parent_id\";s:2:\"56\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"56\";i:3;s:2:\"75\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:10:\"4_97_56_75\";}i:99;a:5:{s:4:\"name\";s:15:\"Rowley Drysdale\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:2:{i:0;s:2:\"82\";i:1;s:2:\"99\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:5:\"82_99\";}i:82;a:6:{s:8:\"sub_cats\";a:14:{i:0;s:2:\"99\";i:1;s:3:\"100\";i:2;s:3:\"101\";i:3;s:3:\"102\";i:4;s:3:\"103\";i:5;s:3:\"104\";i:6;s:3:\"105\";i:7;s:3:\"106\";i:8;s:3:\"107\";i:9;s:3:\"108\";i:10;s:3:\"112\";i:11;s:3:\"111\";i:12;s:3:\"110\";i:13;s:3:\"109\";}s:4:\"name\";s:31:\"Drysdale & Artists of Quixotica\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:7:\"4_96_82\";}i:100;a:5:{s:4:\"name\";s:10:\"Kim Se Wan\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"100\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_100\";}i:101;a:5:{s:4:\"name\";s:10:\"James Seet\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"101\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_101\";}i:102;a:5:{s:4:\"name\";s:13:\"Laura MacLean\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"102\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_102\";}i:103;a:5:{s:4:\"name\";s:10:\"Paul Davis\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"103\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_103\";}i:104;a:5:{s:4:\"name\";s:10:\"Julie Wall\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"104\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_104\";}i:105;a:5:{s:4:\"name\";s:4:\"Kari\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"105\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_105\";}i:106;a:5:{s:4:\"name\";s:15:\"Stephen Roberts\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"106\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_106\";}i:107;a:5:{s:4:\"name\";s:12:\"Wesley Denic\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"107\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_107\";}i:108;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"108\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_108\";}i:112;a:5:{s:4:\"name\";s:13:\"Tony Grimshaw\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"112\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_112\";}i:111;a:5:{s:4:\"name\";s:13:\"Ellen Appleby\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"111\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_111\";}i:110;a:5:{s:4:\"name\";s:8:\"Liz Cels\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"110\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_110\";}i:109;a:5:{s:4:\"name\";s:12:\"Mark O\'Neill\";s:9:\"parent_id\";s:2:\"82\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"82\";i:3;s:3:\"109\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:11:\"4_96_82_109\";}i:55;a:5:{s:4:\"name\";s:24:\"Des Rolph - January 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"55\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_55\";}i:76;a:5:{s:4:\"name\";s:28:\"Caroline Magerl - April 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"76\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_76\";}i:84;a:5:{s:4:\"name\";s:29:\"Galleries of Eumundi Art Walk\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"84\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_84\";}i:78;a:5:{s:4:\"name\";s:18:\"Di West - May 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"78\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_78\";}i:89;a:5:{s:4:\"name\";s:22:\"Eden Scott - July 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"89\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_89\";}i:113;a:6:{s:4:\"name\";s:24:\"the edge - November 2009\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";}s:8:\"sub_cats\";a:5:{i:0;s:3:\"114\";i:1;s:3:\"117\";i:2;s:3:\"116\";i:3;s:3:\"115\";i:4;s:3:\"118\";}s:3:\"sub\";s:7:\"has_sub\";s:5:\"cPath\";s:8:\"4_96_113\";}i:95;a:5:{s:4:\"name\";s:32:\"Best of 2009 Stars @ The Gallery\";s:9:\"parent_id\";s:2:\"96\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:2:\"95\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_96_95\";}i:33;a:5:{s:4:\"name\";s:26:\"Rowley Drysdale - Aug 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"33\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_97_33\";}i:35;a:5:{s:4:\"name\";s:23:\"Sandra Conte - Sep 2008\";s:9:\"parent_id\";s:2:\"97\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"97\";i:2;s:2:\"35\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_97_35\";}i:83;a:5:{s:4:\"name\";s:24:\"Des Rolph - January 2010\";s:9:\"parent_id\";s:2:\"98\";s:4:\"path\";a:3:{i:0;s:1:\"4\";i:1;s:2:\"98\";i:2;s:2:\"83\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:7:\"4_98_83\";}i:114;a:5:{s:4:\"name\";s:11:\"Amos Duggan\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"114\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_114\";}i:117;a:5:{s:4:\"name\";s:10:\"Barry Tate\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"117\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_117\";}i:116;a:5:{s:4:\"name\";s:7:\"de Shan\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"116\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_116\";}i:115;a:5:{s:4:\"name\";s:8:\"Ian Gunn\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"115\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_115\";}i:118;a:5:{s:4:\"name\";s:13:\"Paul Reynolds\";s:9:\"parent_id\";s:3:\"113\";s:4:\"path\";a:4:{i:0;s:1:\"4\";i:1;s:2:\"96\";i:2;s:3:\"113\";i:3;s:3:\"118\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:12:\"4_96_113_118\";}i:129;a:5:{s:4:\"name\";s:9:\"Hot Glass\";s:9:\"parent_id\";s:3:\"121\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:3:\"121\";i:2;s:3:\"129\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"7_121_129\";}i:128;a:5:{s:4:\"name\";s:9:\"Paintings\";s:9:\"parent_id\";s:3:\"121\";s:4:\"path\";a:3:{i:0;s:1:\"7\";i:1;s:3:\"121\";i:2;s:3:\"128\";}s:3:\"sub\";s:6:\"no_sub\";s:5:\"cPath\";s:9:\"7_121_128\";}}s:21:\"is_deepest_cats_built\";b:0;s:15:\"parent_open_tag\";s:0:\"\";s:16:\"parent_close_tag\";s:0:\"\";s:14:\"child_open_tag\";s:0:\"\";s:15:\"child_close_tag\";s:0:\"\";s:10:\"current_id\";i:-1;s:16:\"exceptional_list\";a:0:{}}session_counter|b:1;customers_ip_address|s:13:\"69.147.115.59\";');
/*!40000 ALTER TABLE `zen_sessions` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_specials`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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,'2008-05-31 18:41:55');
/*!40000 ALTER TABLE `zen_tax_class` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_tax_rates`;
SET @saved_cs_client     = @@character_set_client;
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;
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%','2008-05-31 18:41:55','2008-05-31 18:41:55');
/*!40000 ALTER TABLE `zen_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_template_select`;
SET @saved_cs_client     = @@character_set_client;
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;
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,'mihluna','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`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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','','67.195.111.251','1270775303','1270775303','/index.php?main_page=popup_image&pID=290','b3091281.crawl.yahoo.net','Mozilla/5.0 (compatible; Yahoo! Slurp/3.0; http://help.yahoo.com/help/us/ysearch/slurp)'),(0,'&yen;Guest','2b55fc3a89ae57bbc1fedf4d7c70c856','69.245.213.202','1270775365','1270775365','/index.php?main_page=index&cPath=7_3','c-69-245-213-202.hsd1.in.comcast.net','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9');
/*!40000 ALTER TABLE `zen_whos_online` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `zen_zones`;
SET @saved_cs_client     = @@character_set_client;
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;
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`;
SET @saved_cs_client     = @@character_set_client;
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;
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,'2008-05-31 18:41:55');
/*!40000 ALTER TABLE `zen_zones_to_geo_zones` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2010-04-09  1:11:40
