-- MySQL dump 10.10
--
-- Host: localhost    Database: demo_shop
-- ------------------------------------------------------
-- Server version	5.0.18-max

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

DROP TABLE IF EXISTS `address_book`;
CREATE TABLE `address_book` (
  `address_book_id` int(11) NOT NULL auto_increment,
  `customers_id` int(11) NOT NULL,
  `entry_gender` char(1) NOT NULL,
  `entry_company` varchar(32) default NULL,
  `entry_firstname` varchar(32) NOT NULL,
  `entry_lastname` varchar(32) NOT NULL,
  `entry_street_address` varchar(64) NOT NULL,
  `entry_suburb` varchar(32) default NULL,
  `entry_postcode` varchar(10) NOT NULL,
  `entry_city` varchar(32) NOT NULL,
  `entry_state` varchar(32) 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` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `address_book`
--


/*!40000 ALTER TABLE `address_book` DISABLE KEYS */;
LOCK TABLES `address_book` WRITE;
INSERT INTO `address_book` VALUES (1,1,'m','ACME Inc.','John','Doe','1 Way Street','','12345','NeverNever','',223,12),(2,2,'m','','Mindaugas','Rimkus','Vilties g. 2','Tytuvënai','LT5453434','Kelmës raj.','Ðiauliø',123,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `address_book` ENABLE KEYS */;

--
-- Table structure for table `address_format`
--

DROP TABLE IF EXISTS `address_format`;
CREATE TABLE `address_format` (
  `address_format_id` int(11) NOT NULL auto_increment,
  `address_format` varchar(128) NOT NULL,
  `address_summary` varchar(48) NOT NULL,
  PRIMARY KEY  (`address_format_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `address_format`
--


/*!40000 ALTER TABLE `address_format` DISABLE KEYS */;
LOCK TABLES `address_format` WRITE;
INSERT INTO `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');
UNLOCK TABLES;
/*!40000 ALTER TABLE `address_format` ENABLE KEYS */;

--
-- Table structure for table `administrators`
--

DROP TABLE IF EXISTS `administrators`;
CREATE TABLE `administrators` (
  `id` int(11) NOT NULL auto_increment,
  `user_name` varchar(32) character set utf8 collate utf8_bin NOT NULL,
  `user_password` varchar(40) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `administrators`
--


/*!40000 ALTER TABLE `administrators` DISABLE KEYS */;
LOCK TABLES `administrators` WRITE;
INSERT INTO `administrators` VALUES (1,'admin','47eca96cecd970ff3bbd8bed8f28dab1:cd');
UNLOCK TABLES;
/*!40000 ALTER TABLE `administrators` ENABLE KEYS */;

--
-- Table structure for table `banners`
--

DROP TABLE IF EXISTS `banners`;
CREATE TABLE `banners` (
  `banners_id` int(11) NOT NULL auto_increment,
  `banners_title` varchar(64) NOT NULL,
  `banners_url` varchar(255) NOT NULL,
  `banners_image` varchar(64) NOT NULL,
  `banners_group` varchar(10) NOT NULL,
  `banners_html_text` text,
  `expires_impressions` int(7) default '0',
  `expires_date` datetime default NULL,
  `date_scheduled` datetime default NULL,
  `date_added` datetime NOT NULL,
  `date_status_change` datetime default NULL,
  `status` int(1) NOT NULL default '1',
  PRIMARY KEY  (`banners_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `banners`
--


/*!40000 ALTER TABLE `banners` DISABLE KEYS */;
LOCK TABLES `banners` WRITE;
INSERT INTO `banners` VALUES (1,'osCommerce','http://www.oscommerce.com','banners/oscommerce.gif','468x50','',0,NULL,NULL,'2007-12-26 21:20:13',NULL,1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `banners` ENABLE KEYS */;

--
-- Table structure for table `banners_history`
--

DROP TABLE IF EXISTS `banners_history`;
CREATE TABLE `banners_history` (
  `banners_history_id` int(11) NOT NULL auto_increment,
  `banners_id` int(11) NOT NULL,
  `banners_shown` int(5) NOT NULL default '0',
  `banners_clicked` int(5) NOT NULL default '0',
  `banners_history_date` datetime NOT NULL,
  PRIMARY KEY  (`banners_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `banners_history`
--


/*!40000 ALTER TABLE `banners_history` DISABLE KEYS */;
LOCK TABLES `banners_history` WRITE;
INSERT INTO `banners_history` VALUES (1,1,126,0,'2007-12-26 21:20:30'),(2,1,5,0,'2007-12-27 14:17:32'),(3,1,104,0,'2008-02-03 13:30:44'),(4,1,9,0,'2008-02-06 11:51:45'),(5,1,11,0,'2008-02-07 15:30:01'),(6,1,4,0,'2008-02-08 19:21:13'),(7,1,5,0,'2008-02-23 00:24:57'),(8,1,130,0,'2008-03-10 12:13:53'),(9,1,35,0,'2008-03-11 12:08:44'),(10,1,43,0,'2008-03-12 12:12:17'),(11,1,17,0,'2008-03-25 11:03:49'),(12,1,146,0,'2008-03-26 17:46:43'),(13,1,104,0,'2008-03-27 00:00:33');
UNLOCK TABLES;
/*!40000 ALTER TABLE `banners_history` ENABLE KEYS */;

--
-- Table structure for table `categories`
--

DROP TABLE IF EXISTS `categories`;
CREATE TABLE `categories` (
  `categories_id` int(11) NOT NULL auto_increment,
  `categories_image` varchar(64) 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,
  PRIMARY KEY  (`categories_id`),
  KEY `idx_categories_parent_id` (`parent_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `categories`
--


/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
LOCK TABLES `categories` WRITE;
INSERT INTO `categories` VALUES (44,'2-4metai.jpg',42,2,'2007-12-27 11:40:22',NULL),(43,'0-24men.jpg',42,1,'2007-12-27 11:40:09',NULL),(37,'0-24men.jpg',36,1,'2007-12-27 10:22:51','2007-12-27 10:23:12'),(38,'2-4metai.jpg',36,2,'2007-12-27 10:23:23',NULL),(39,'5-7metai.jpg',36,3,'2007-12-27 10:23:38',NULL),(40,'8-10metai.jpg',36,4,'2007-12-27 10:23:58',NULL),(41,'11-14metai.jpg',36,5,'2007-12-27 10:24:24',NULL),(42,'girl_kelnes.jpg',25,3,'2007-12-27 10:27:52','2007-12-27 10:43:41'),(36,'girl_suknele.jpg',25,2,'2007-12-27 10:21:40','2007-12-27 10:28:10'),(31,'0-24men.jpg',30,1,'2007-12-27 10:07:20','2007-12-27 10:18:15'),(30,'girl_batai.jpg',25,1,'2007-12-27 09:58:57','2007-12-27 10:28:03'),(25,'girl.jpg',0,1,'2007-12-26 23:57:28','2007-12-27 12:14:51'),(28,'boys.jpg',0,2,'2007-12-27 09:45:14','2007-12-27 14:11:14'),(32,'2-4metai.jpg',30,2,'2007-12-27 10:14:12','2007-12-27 10:18:33'),(33,'5-7metai.jpg',30,3,'2007-12-27 10:15:31','2007-12-27 10:18:42'),(34,'8-10metai.jpg',30,4,'2007-12-27 10:16:42','2007-12-27 10:18:48'),(35,'11-14metai.jpg',30,5,'2007-12-27 10:17:52','2007-12-27 10:18:55'),(45,'5-7metai.jpg',42,3,'2007-12-27 11:40:33',NULL),(46,'8-10metai.jpg',42,4,'2007-12-27 11:40:46',NULL),(47,'11-14metai.jpg',42,5,'2007-12-27 11:40:59',NULL),(48,'girl_marskineliai.jpg',25,4,'2007-12-27 11:46:28',NULL),(49,'0-24men.jpg',48,1,'2007-12-27 11:47:57',NULL),(50,'2-4metai.jpg',48,2,'2007-12-27 11:48:08',NULL),(51,'5-7metai.jpg',48,3,'2007-12-27 11:48:19',NULL),(52,'8-10metai.jpg',48,4,'2007-12-27 11:48:34',NULL),(53,'11-14metai.jpg',48,5,'2007-12-27 11:48:52',NULL),(54,'girl_striuke.jpg',25,5,'2007-12-27 11:52:01',NULL),(55,'0-24men.jpg',54,1,'2007-12-27 11:52:15',NULL),(56,'2-4metai.jpg',54,2,'2007-12-27 11:52:26',NULL),(57,'5-7metai.jpg',54,3,'2007-12-27 11:52:37',NULL),(58,'8-10metai.jpg',54,4,'2007-12-27 11:52:50',NULL),(59,'11-14metai.jpg',54,5,'2007-12-27 11:53:12',NULL),(60,'girl_dzemperis.jpg',25,6,'2007-12-27 11:56:12',NULL),(61,'0-24men.jpg',60,1,'2007-12-27 11:57:07','2007-12-27 11:57:31'),(62,'2-4metai.jpg',60,2,'2007-12-27 11:57:22',NULL),(63,'5-7metai.jpg',60,3,'2007-12-27 11:58:00',NULL),(64,'8-10metai.jpg',60,4,'2007-12-27 11:58:14',NULL),(65,'11-14metai.jpg',60,5,'2007-12-27 11:58:30',NULL),(66,'girl_pizamos.jpg',25,7,'2007-12-27 12:00:58',NULL),(67,'0-24men.jpg',66,1,'2007-12-27 12:01:13',NULL),(68,'2-4metai.jpg',66,2,'2007-12-27 12:01:23',NULL),(69,'5-7metai.jpg',66,3,'2007-12-27 12:01:40',NULL),(70,'8-10metai.jpg',66,4,'2007-12-27 12:01:53',NULL),(71,'11-14metai.jpg',66,5,'2007-12-27 12:02:07',NULL),(72,'girl_aksesuarai.jpg',25,8,'2007-12-27 12:05:05',NULL),(73,'0-24men.jpg',72,1,'2007-12-27 12:05:25',NULL),(74,'2-4metai.jpg',72,2,'2007-12-27 12:05:36',NULL),(75,'5-7metai.jpg',72,3,'2007-12-27 12:05:46',NULL),(76,'8-10metai.jpg',72,4,'2007-12-27 12:05:58',NULL),(77,'11-14metai.jpg',72,5,'2007-12-27 12:06:10',NULL),(78,'boys_batai.jpg',28,1,'2007-12-27 12:23:39','2007-12-27 12:53:52'),(79,'0-24men.jpg',78,1,'2007-12-27 12:25:20',NULL),(80,'2-4metai.jpg',78,2,'2007-12-27 12:25:32',NULL),(81,'5-7metai.jpg',78,3,'2007-12-27 12:25:43',NULL),(82,'8-10metai.jpg',78,4,'2007-12-27 12:25:56',NULL),(83,'11-14metai.jpg',78,5,'2007-12-27 12:26:07',NULL),(84,'boys_kelnes.jpg',28,2,'2007-12-27 12:30:02',NULL),(85,'0-24men.jpg',84,1,'2007-12-27 12:30:14',NULL),(86,'2-4metai.jpg',84,2,'2007-12-27 12:30:24',NULL),(87,'5-7metai.jpg',84,3,'2007-12-27 12:30:35',NULL),(88,'8-10metai.jpg',84,4,'2007-12-27 12:30:46',NULL),(89,'11-14metai.jpg',84,5,'2007-12-27 12:31:02',NULL),(90,'boys_marskineliai.jpg',28,3,'2007-12-27 12:42:49','2007-12-27 12:59:12'),(91,'0-24men.jpg',90,1,'2007-12-27 12:43:01',NULL),(92,'2-4metai.jpg',90,2,'2007-12-27 12:43:14',NULL),(93,'5-7metai.jpg',90,3,'2007-12-27 12:43:25',NULL),(94,'8-10metai.jpg',90,4,'2007-12-27 12:43:38',NULL),(95,'11-14metai.jpg',90,5,'2007-12-27 12:43:49',NULL),(96,'boys_striukes.jpg',28,4,'2007-12-27 12:46:21','2007-12-27 12:52:30'),(97,'0-24men.jpg',96,1,'2007-12-27 12:46:38',NULL),(98,'2-4metai.jpg',96,2,'2007-12-27 12:46:48',NULL),(99,'5-7metai.jpg',96,3,'2007-12-27 12:47:00',NULL),(100,'8-10metai.jpg',96,4,'2007-12-27 12:47:12',NULL),(101,'11-14metai.jpg',96,5,'2007-12-27 12:47:29',NULL),(102,'boys_dzemperiai.jpg',28,5,'2007-12-27 12:49:32','2007-12-27 12:58:06'),(103,'0-24men.jpg',102,1,'2007-12-27 12:49:44',NULL),(104,'2-4metai.jpg',102,2,'2007-12-27 12:50:01',NULL),(105,'5-7metai.jpg',102,3,'2007-12-27 12:50:12',NULL),(106,'8-10metai.jpg',102,4,'2007-12-27 12:50:24',NULL),(107,'11-14metai.jpg',102,5,'2007-12-27 12:50:37',NULL),(108,'boys_pizama.jpg',28,6,'2007-12-27 13:05:05',NULL),(109,'0-24men.jpg',108,1,'2007-12-27 13:05:43',NULL),(110,'2-4metai.jpg',108,2,'2007-12-27 13:06:02',NULL),(111,'5-7metai.jpg',108,3,'2007-12-27 13:06:13',NULL),(112,'8-10metai.jpg',108,4,'2007-12-27 13:06:28',NULL),(113,'11-14metai.jpg',108,5,'2007-12-27 13:06:43',NULL),(114,'boys_aksesuarai.jpg',28,7,'2007-12-27 13:08:43',NULL),(115,'0-24men.jpg',114,1,'2007-12-27 13:08:56',NULL),(116,'2-4metai.jpg',114,2,'2007-12-27 13:09:09',NULL),(117,'5-7metai.jpg',114,3,'2007-12-27 13:09:22',NULL),(118,'8-10metai.jpg',114,4,'2007-12-27 13:09:33',NULL),(119,'11-14metai.jpg',114,5,'2007-12-27 13:09:45',NULL),(132,'vaikiski_reikmenys.jpg',0,3,'2007-12-27 14:13:54','2007-12-27 14:38:58'),(133,'vaikiski_reikmenys_vezimeliai.jpg',132,1,'2007-12-27 14:20:53',NULL),(134,'vaikiski_reikmenys_kedutes.jpg',132,2,'2007-12-27 14:24:36','2007-12-27 14:38:46'),(135,'0-24men.jpg',134,1,'2007-12-27 14:24:48',NULL),(136,'2-4metai.jpg',134,2,'2007-12-27 14:24:59',NULL),(137,'5-7metai.jpg',134,3,'2007-12-27 14:25:11',NULL),(138,'8-10metai.jpg',134,4,'2007-12-27 14:25:23',NULL),(139,'11-14metai.jpg',134,5,'2007-12-27 14:25:33',NULL),(140,'vaikiski_reikmenys_supuokles.jpg',132,3,'2007-12-27 14:28:38',NULL),(141,'vaikiski_reikmenys_vaikstykles.jpg',132,4,'2007-12-27 14:31:01',NULL),(142,'vaikiski_reikmenys_lopseliai.jpg',132,5,'2007-12-27 14:34:10',NULL),(143,'vaikiski_reikmenys_valgymo_kedutes.jpg',132,6,'2007-12-27 14:46:02',NULL),(144,'vaikiski_reikmenys_kambario_dekoracijos.jpg',132,7,'2007-12-27 14:48:16','2007-12-27 14:50:39'),(145,'vaikiski_reikmenys_aksesuarai.jpg',132,8,'2007-12-27 14:50:00',NULL),(146,'moterims.jpg',0,4,'2007-12-27 15:05:21',NULL),(147,'moterims_rankine.jpg',146,1,'2007-12-27 15:09:57',NULL),(148,'moterims_pinigines.jpg',146,2,'2007-12-27 15:12:34',NULL),(149,'moterims_laikrodziai.jpg',146,3,'2007-12-27 15:15:50',NULL),(150,'moterims_dirzai.jpg',146,4,'2007-12-27 15:18:31',NULL),(151,'moterims_akiniai.jpg',146,5,'2007-12-27 15:21:06',NULL),(152,'moterims_papuosalai.jpg',146,6,'2007-12-27 15:23:46',NULL),(153,'moterims_kvepalai.jpg',146,7,'2007-12-27 15:26:11',NULL),(154,'man.jpg',0,5,'2007-12-27 15:34:28',NULL),(155,'man_rankines.jpg',154,1,'2007-12-27 15:36:29','2007-12-27 15:36:48'),(156,'man_pinigines.jpg',154,2,'2007-12-27 15:38:00','2007-12-27 15:38:19'),(157,'man_laikrodziai.jpg',154,3,'2007-12-27 15:40:33',NULL),(158,'man_dirzai.jpg',154,4,'2007-12-27 15:42:23',NULL),(159,'man_akiniai.jpg',154,5,'2007-12-27 15:44:34',NULL),(160,'man_papuosalai.jpg',154,6,'2007-12-27 15:47:03',NULL),(161,'man_kvepalai.jpg',154,7,'2007-12-27 15:49:12',NULL),(162,'toys.jpg',0,6,'2008-03-27 11:02:37','2008-03-27 11:03:09'),(163,'electronic.jpg',162,1,'2008-03-27 11:05:54',NULL),(164,'barbies.jpg',162,2,'2008-03-27 11:09:49',NULL),(165,'rails.jpg',162,3,'2008-03-27 11:12:20',NULL),(166,'constructors.jpg',162,4,'2008-03-27 11:14:55',NULL),(167,'infant.jpg',162,5,'2008-03-27 11:16:52',NULL);
UNLOCK TABLES;
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;

--
-- Table structure for table `categories_description`
--

DROP TABLE IF EXISTS `categories_description`;
CREATE TABLE `categories_description` (
  `categories_id` int(11) NOT NULL default '0',
  `language_id` int(11) NOT NULL default '1',
  `categories_name` varchar(32) NOT NULL,
  PRIMARY KEY  (`categories_id`,`language_id`),
  KEY `idx_categories_name` (`categories_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `categories_description`
--


/*!40000 ALTER TABLE `categories_description` DISABLE KEYS */;
LOCK TABLES `categories_description` WRITE;
INSERT INTO `categories_description` VALUES (41,4,'11-14 metai'),(42,4,'Kelnës,ðortai'),(39,4,'5-7 metai'),(35,4,'11-14 metai'),(36,4,'Suknel&#279;s,sijonai'),(40,4,'8-10 metai'),(38,4,'2-4 metai'),(33,4,'5-7 metai'),(32,4,'2-4 metai'),(28,4,'Berniukams'),(34,4,'8-10 metai'),(37,4,'0-24 m&#279;nesiai'),(30,4,'Batai'),(25,4,'Mergaitëms'),(31,4,'0-24 m&#279;nesiai'),(43,4,'0-24 mënesiai'),(44,4,'2-4 metai'),(45,4,'5-7 metai'),(46,4,'8-10 metai'),(47,4,'11-14 metai'),(48,4,'Bliuzelës,marðkinëliai'),(49,4,'0-24 mënesiai'),(50,4,'2-4 metai'),(51,4,'5-7 metai'),(52,4,'8-10 metai'),(53,4,'11-14 metai'),(54,4,'Striukës,Paltai,bliuzonai'),(55,4,'0-24 mënesiai'),(56,4,'2-4 metai'),(57,4,'5-7 metai'),(58,4,'8-10 metai'),(59,4,'11-14 metai'),(60,4,'Megztiniai,dþemperiai'),(61,4,'0-24 mënesiai'),(62,4,'2-4 metai'),(63,4,'5-7 metai'),(64,4,'8-10 metai'),(65,4,'11-14 metai'),(66,4,'Piþamos,apatiniai'),(67,4,'0-24 mënesiai'),(68,4,'2-4 metai'),(69,4,'5-7 metai'),(70,4,'8-10 metai'),(71,4,'11-14 metai'),(72,4,'Aksesuarai'),(73,4,'0-24 mënesiai'),(74,4,'2-4 metai'),(75,4,'5-7 metai'),(76,4,'8-10 metai'),(77,4,'11-14 metai'),(78,4,'Batai'),(79,4,'0-24 mënesiai'),(80,4,'2-4 metai'),(81,4,'5-7 metai'),(82,4,'8-10 metai'),(83,4,'11-14 metai'),(84,4,'Kelnës,ðortai'),(85,4,'0-24 mënesiai'),(86,4,'2-4 metai'),(87,4,'5-7 metai'),(88,4,'8-10 metai'),(89,4,'11-14 metai'),(90,4,'Bliuzelës,marðkinëliai'),(91,4,'0-24 mënesiai'),(92,4,'2-4 metai'),(93,4,'5-7 metai'),(94,4,'8-10 metai'),(95,4,'11-14 metai'),(96,4,'Striukës,Paltai,bliuzonai'),(97,4,'0-24 mënesiai'),(98,4,'2-4 metai'),(99,4,'5-7 metai'),(100,4,'8-10 metai'),(101,4,'11-14 metai'),(102,4,'Megztiniai,dþemperiai'),(103,4,'0-24 mënesiai'),(104,4,'2-4 metai'),(105,4,'5-7 metai'),(106,4,'8-10 metai'),(107,4,'11-14 metai'),(108,4,'Piþamos,apatiniai'),(109,4,'0-24 mënesiai'),(110,4,'2-4 metai'),(111,4,'5-7 metai'),(112,4,'8-10 metai'),(113,4,'11-14 metai'),(114,4,'Aksesuarai'),(115,4,'0-24 mënesiai'),(116,4,'2-4 metai'),(117,4,'5-7 metai'),(118,4,'8-10 metai'),(119,4,'11-14 metai'),(132,4,'Vaikiðki reikmenys'),(133,4,'Veþimëliai'),(134,4,'Maðininës&nbsp;këdutes'),(135,4,'0-24 mënesiai'),(136,4,'2-4 metai'),(137,4,'5-7 metai'),(138,4,'8-10 metai'),(139,4,'11-14 metai'),(140,4,'Supuoklës'),(141,4,'Vaikðtynës'),(142,4,'Lopðeliai'),(143,4,'Valgymo këdytës'),(144,4,'Kambario&nbsp;dekoracijos'),(145,4,'Aksesuarai'),(146,4,'Moterims'),(147,4,'Rankinës'),(148,4,'Piniginës'),(149,4,'Laikrodþiai'),(150,4,'Dirþai'),(167,4,'Þaislai kûdikiams'),(151,4,'Akiniai'),(152,4,'Papuoðalai'),(153,4,'Kvepalai'),(166,4,'Kaladëlës,konstruktoriai'),(154,4,'Vyrams'),(155,4,'Rankinës'),(165,4,'Maðinos,traukiniai'),(156,4,'Piniginës'),(157,4,'Laikrodþiai'),(164,4,'Lelës,figûrëlës'),(158,4,'Dirþai'),(159,4,'Akiniai'),(163,4,'Elektroniniai'),(160,4,'Papuoðalai'),(162,4,'Þaislai'),(161,4,'Kvepalai');
UNLOCK TABLES;
/*!40000 ALTER TABLE `categories_description` ENABLE KEYS */;

--
-- Table structure for table `configuration`
--

DROP TABLE IF EXISTS `configuration`;
CREATE TABLE `configuration` (
  `configuration_id` int(11) NOT NULL auto_increment,
  `configuration_title` varchar(255) NOT NULL,
  `configuration_key` varchar(255) NOT NULL,
  `configuration_value` varchar(255) NOT NULL,
  `configuration_description` varchar(255) NOT NULL,
  `configuration_group_id` int(11) NOT NULL,
  `sort_order` int(5) default NULL,
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL,
  `use_function` varchar(255) default NULL,
  `set_function` varchar(255) default NULL,
  PRIMARY KEY  (`configuration_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `configuration`
--


/*!40000 ALTER TABLE `configuration` DISABLE KEYS */;
LOCK TABLES `configuration` WRITE;
INSERT INTO `configuration` VALUES (1,'Store Name','STORE_NAME','UAB Infoside','The name of my store',1,1,NULL,'2007-12-26 21:20:13',NULL,NULL),(2,'Store Owner','STORE_OWNER','Mindaugas Rimkus','The name of my store owner',1,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(3,'E-Mail Address','STORE_OWNER_EMAIL_ADDRESS','mindaugas.rimkus@inbox.lt','The e-mail address of my store owner',1,3,'2008-03-26 20:21:00','2007-12-26 21:20:13',NULL,NULL),(4,'E-Mail From','EMAIL_FROM','\"Mindaugas Rimkus\" <mindaugas.rimkus@infoside.lt>','The e-mail address used in (sent) e-mails',1,4,NULL,'2007-12-26 21:20:13',NULL,NULL),(5,'Country','STORE_COUNTRY','123','The country my store is located in <br><br><b>Note: Please remember to update the store zone.</b>',1,6,'2008-02-03 16:47:06','2007-12-26 21:20:13','tep_get_country_name','tep_cfg_pull_down_country_list('),(6,'Zone','STORE_ZONE','18','The zone my store is located in',1,7,NULL,'2007-12-26 21:20:13','tep_cfg_get_zone_name','tep_cfg_pull_down_zone_list('),(7,'Expected Sort Order','EXPECTED_PRODUCTS_SORT','desc','This is the sort order used in the expected products box.',1,8,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'asc\', \'desc\'), '),(8,'Expected Sort Field','EXPECTED_PRODUCTS_FIELD','date_expected','The column to sort by in the expected products box.',1,9,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'products_name\', \'date_expected\'), '),(9,'Switch To Default Language Currency','USE_DEFAULT_LANGUAGE_CURRENCY','false','Automatically switch to the language\'s currency when it is changed',1,10,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(10,'Send Extra Order Emails To','SEND_EXTRA_ORDER_EMAILS_TO','','Send extra order emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',1,11,NULL,'2007-12-26 21:20:13',NULL,NULL),(11,'Use Search-Engine Safe URLs (still in development)','SEARCH_ENGINE_FRIENDLY_URLS','false','Use search-engine safe urls for all site links',1,12,'2008-02-03 16:45:57','2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(12,'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,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(13,'Allow Guest To Tell A Friend','ALLOW_GUEST_TO_TELL_A_FRIEND','false','Allow guests to tell a friend about a product',1,15,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(14,'Default Search Operator','ADVANCED_SEARCH_DEFAULT_OPERATOR','and','Default search operators',1,17,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'and\', \'or\'), '),(15,'Store Address and Phone','STORE_NAME_ADDRESS','Store Name\nAddress\nCountry\nPhone','This is the Store Name, Address and Phone used on printable documents and displayed online',1,18,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_textarea('),(16,'Show Category Counts','SHOW_COUNTS','true','Count recursively how many products are in each category',1,19,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(17,'Tax Decimal Places','TAX_DECIMAL_PLACES','0','Pad the tax value this amount of decimal places',1,20,NULL,'2007-12-26 21:20:13',NULL,NULL),(18,'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,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(19,'First Name','ENTRY_FIRST_NAME_MIN_LENGTH','2','Minimum length of first name',2,1,NULL,'2007-12-26 21:20:13',NULL,NULL),(20,'Last Name','ENTRY_LAST_NAME_MIN_LENGTH','2','Minimum length of last name',2,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(21,'Date of Birth','ENTRY_DOB_MIN_LENGTH','10','Minimum length of date of birth',2,3,NULL,'2007-12-26 21:20:13',NULL,NULL),(22,'E-Mail Address','ENTRY_EMAIL_ADDRESS_MIN_LENGTH','6','Minimum length of e-mail address',2,4,NULL,'2007-12-26 21:20:13',NULL,NULL),(23,'Street Address','ENTRY_STREET_ADDRESS_MIN_LENGTH','5','Minimum length of street address',2,5,NULL,'2007-12-26 21:20:13',NULL,NULL),(24,'Company','ENTRY_COMPANY_MIN_LENGTH','2','Minimum length of company name',2,6,NULL,'2007-12-26 21:20:13',NULL,NULL),(25,'Post Code','ENTRY_POSTCODE_MIN_LENGTH','4','Minimum length of post code',2,7,NULL,'2007-12-26 21:20:13',NULL,NULL),(26,'City','ENTRY_CITY_MIN_LENGTH','3','Minimum length of city',2,8,NULL,'2007-12-26 21:20:13',NULL,NULL),(27,'State','ENTRY_STATE_MIN_LENGTH','2','Minimum length of state',2,9,NULL,'2007-12-26 21:20:13',NULL,NULL),(28,'Telephone Number','ENTRY_TELEPHONE_MIN_LENGTH','3','Minimum length of telephone number',2,10,NULL,'2007-12-26 21:20:13',NULL,NULL),(29,'Password','ENTRY_PASSWORD_MIN_LENGTH','5','Minimum length of password',2,11,NULL,'2007-12-26 21:20:13',NULL,NULL),(30,'Credit Card Owner Name','CC_OWNER_MIN_LENGTH','3','Minimum length of credit card owner name',2,12,NULL,'2007-12-26 21:20:13',NULL,NULL),(31,'Credit Card Number','CC_NUMBER_MIN_LENGTH','10','Minimum length of credit card number',2,13,NULL,'2007-12-26 21:20:13',NULL,NULL),(32,'Review Text','REVIEW_TEXT_MIN_LENGTH','50','Minimum length of review text',2,14,NULL,'2007-12-26 21:20:13',NULL,NULL),(33,'Best Sellers','MIN_DISPLAY_BESTSELLERS','1','Minimum number of best sellers to display',2,15,NULL,'2007-12-26 21:20:13',NULL,NULL),(34,'Also Purchased','MIN_DISPLAY_ALSO_PURCHASED','1','Minimum number of products to display in the \'This Customer Also Purchased\' box',2,16,NULL,'2007-12-26 21:20:13',NULL,NULL),(35,'Address Book Entries','MAX_ADDRESS_BOOK_ENTRIES','5','Maximum address book entries a customer is allowed to have',3,1,NULL,'2007-12-26 21:20:13',NULL,NULL),(36,'Search Results','MAX_DISPLAY_SEARCH_RESULTS','10','Amount of products to list',3,2,'2008-03-26 16:55:04','2007-12-26 21:20:13',NULL,NULL),(37,'Page Links','MAX_DISPLAY_PAGE_LINKS','5','Number of \'number\' links use for page-sets',3,3,NULL,'2007-12-26 21:20:13',NULL,NULL),(38,'Special Products','MAX_DISPLAY_SPECIAL_PRODUCTS','9','Maximum number of products on special to display',3,4,NULL,'2007-12-26 21:20:13',NULL,NULL),(39,'New Products Module','MAX_DISPLAY_NEW_PRODUCTS','9','Maximum number of new products to display in a category',3,5,'2008-03-11 13:08:46','2007-12-26 21:20:13',NULL,NULL),(40,'Products Expected','MAX_DISPLAY_UPCOMING_PRODUCTS','10','Maximum number of products expected to display',3,6,NULL,'2007-12-26 21:20:13',NULL,NULL),(41,'Manufacturers List','MAX_DISPLAY_MANUFACTURERS_IN_A_LIST','0','Used in manufacturers box; when the number of manufacturers exceeds this number, a drop-down list will be displayed instead of the default list',3,7,NULL,'2007-12-26 21:20:13',NULL,NULL),(42,'Manufacturers Select Size','MAX_MANUFACTURERS_LIST','1','Used in manufacturers box; when this value is \'1\' the classic drop-down list will be used for the manufacturers box. Otherwise, a list-box with the specified number of rows will be displayed.',3,7,NULL,'2007-12-26 21:20:13',NULL,NULL),(43,'Length of Manufacturers Name','MAX_DISPLAY_MANUFACTURER_NAME_LEN','15','Used in manufacturers box; maximum length of manufacturers name to display',3,8,NULL,'2007-12-26 21:20:13',NULL,NULL),(44,'New Reviews','MAX_DISPLAY_NEW_REVIEWS','2','Maximum number of new reviews to display',3,9,'2008-03-11 12:03:01','2007-12-26 21:20:13',NULL,NULL),(45,'Selection of Random Reviews','MAX_RANDOM_SELECT_REVIEWS','10','How many records to select from to choose one random product review',3,10,NULL,'2007-12-26 21:20:13',NULL,NULL),(46,'Selection of Random New Products','MAX_RANDOM_SELECT_NEW','10','How many records to select from to choose one random new product to display',3,11,NULL,'2007-12-26 21:20:13',NULL,NULL),(47,'Selection of Products on Special','MAX_RANDOM_SELECT_SPECIALS','10','How many records to select from to choose one random product special to display',3,12,NULL,'2007-12-26 21:20:13',NULL,NULL),(48,'Categories To List Per Row','MAX_DISPLAY_CATEGORIES_PER_ROW','2','How many categories to list per row',3,13,'2008-03-11 11:55:39','2007-12-26 21:20:13',NULL,NULL),(49,'New Products Listing','MAX_DISPLAY_PRODUCTS_NEW','5','Maximum number of new products to display in new products page',3,14,'2008-03-26 18:05:13','2007-12-26 21:20:13',NULL,NULL),(50,'Best Sellers','MAX_DISPLAY_BESTSELLERS','10','Maximum number of best sellers to display',3,15,NULL,'2007-12-26 21:20:13',NULL,NULL),(51,'Also Purchased','MAX_DISPLAY_ALSO_PURCHASED','6','Maximum number of products to display in the \'This Customer Also Purchased\' box',3,16,'2008-03-11 13:07:25','2007-12-26 21:20:13',NULL,NULL),(52,'Customer Order History Box','MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX','6','Maximum number of products to display in the customer order history box',3,17,NULL,'2007-12-26 21:20:13',NULL,NULL),(53,'Order History','MAX_DISPLAY_ORDER_HISTORY','10','Maximum number of orders to display in the order history page',3,18,NULL,'2007-12-26 21:20:13',NULL,NULL),(54,'Product Quantities In Shopping Cart','MAX_QTY_IN_CART','99','Maximum number of product quantities that can be added to the shopping cart (0 for no limit)',3,19,NULL,'2007-12-26 21:20:13',NULL,NULL),(55,'Small Image Width','SMALL_IMAGE_WIDTH','100','The pixel width of small images',4,1,NULL,'2007-12-26 21:20:13',NULL,NULL),(56,'Small Image Height','SMALL_IMAGE_HEIGHT','80','The pixel height of small images',4,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(57,'Heading Image Width','HEADING_IMAGE_WIDTH','57','The pixel width of heading images',4,3,NULL,'2007-12-26 21:20:13',NULL,NULL),(58,'Heading Image Height','HEADING_IMAGE_HEIGHT','40','The pixel height of heading images',4,4,NULL,'2007-12-26 21:20:13',NULL,NULL),(59,'Subcategory Image Width','SUBCATEGORY_IMAGE_WIDTH','100','The pixel width of subcategory images',4,5,NULL,'2007-12-26 21:20:13',NULL,NULL),(60,'Subcategory Image Height','SUBCATEGORY_IMAGE_HEIGHT','57','The pixel height of subcategory images',4,6,NULL,'2007-12-26 21:20:13',NULL,NULL),(61,'Calculate Image Size','CONFIG_CALCULATE_IMAGE_SIZE','true','Calculate the size of images?',4,7,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(62,'Image Required','IMAGE_REQUIRED','true','Enable to display broken images. Good for development.',4,8,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(63,'Gender','ACCOUNT_GENDER','true','Display gender in the customers account',5,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(64,'Date of Birth','ACCOUNT_DOB','true','Display date of birth in the customers account',5,2,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(65,'Company','ACCOUNT_COMPANY','true','Display company in the customers account',5,3,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(66,'Suburb','ACCOUNT_SUBURB','true','Display suburb in the customers account',5,4,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(67,'State','ACCOUNT_STATE','true','Display state in the customers account',5,5,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(68,'Installed Modules','MODULE_PAYMENT_INSTALLED','webtopay.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,'2008-03-10 12:12:39','2007-12-26 21:20:13',NULL,NULL),(69,'Installed Modules','MODULE_ORDER_TOTAL_INSTALLED','ot_subtotal.php;ot_shipping.php;ot_tax.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,'2008-03-11 13:22:29','2007-12-26 21:20:13',NULL,NULL),(70,'Installed Modules','MODULE_SHIPPING_INSTALLED','flat.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,'2007-12-26 21:20:13',NULL,NULL),(160,'Change Order Status','MODULE_PAYMENT_WEBTOPAY_CH_ORDER_STATUS','Yes','Change order status to \"Payment Confirmed\" after payment done?',6,0,NULL,'2008-03-10 12:12:39',NULL,'tep_cfg_select_option(array(\'Yes\', \'No\'), '),(153,'Enable WebToPay Module','MODULE_PAYMENT_WEBTOPAY_STATUS','True','Do you want to accept WebToPay payments?',6,3,NULL,'2008-03-10 12:12:39',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(154,'MerchantID','MODULE_PAYMENT_WEBTOPAY_ID','0','The MerchantID to use for the WebToPay service',6,4,NULL,'2008-03-10 12:12:39',NULL,NULL),(155,'Password','MODULE_PAYMENT_WEBTOPAY_PASS','0','Password for the WebToPay service',6,5,NULL,'2008-03-10 12:12:39',NULL,NULL),(156,'Transaction Currency','MODULE_PAYMENT_WEBTOPAY_CURRENCY','Selected Currency','The currency to use for transactions',6,6,NULL,'2008-03-10 12:12:39',NULL,'tep_cfg_select_option(array(\'Selected Currency\',\'Only USD\',\'Only CAD\',\'Only EUR\',\'Only GBP\',\'Only JPY\'), '),(157,'Payment Zone','MODULE_PAYMENT_WEBTOPAY_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,2,NULL,'2008-03-10 12:12:39','tep_get_zone_class_title','tep_cfg_pull_down_zone_classes('),(158,'Sort order of display.','MODULE_PAYMENT_WEBTOPAY_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2008-03-10 12:12:39',NULL,NULL),(159,'Testing Service','MODULE_PAYMENT_WEBTOPAY_TESTING','Yes','Use Testing Service?',6,0,NULL,'2008-03-10 12:12:39',NULL,'tep_cfg_select_option(array(\'Yes\', \'No\'), '),(80,'Enable Flat Shipping','MODULE_SHIPPING_FLAT_STATUS','True','Do you want to offer flat rate shipping?',6,0,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(81,'Shipping Cost','MODULE_SHIPPING_FLAT_COST','5.00','The shipping cost for all orders using this shipping method.',6,0,NULL,'2007-12-26 21:20:13',NULL,NULL),(82,'Tax Class','MODULE_SHIPPING_FLAT_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2007-12-26 21:20:13','tep_get_tax_class_title','tep_cfg_pull_down_tax_classes('),(83,'Shipping Zone','MODULE_SHIPPING_FLAT_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2007-12-26 21:20:13','tep_get_zone_class_title','tep_cfg_pull_down_zone_classes('),(84,'Sort Order','MODULE_SHIPPING_FLAT_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2007-12-26 21:20:13',NULL,NULL),(85,'Default Currency','DEFAULT_CURRENCY','LT','Default Currency',6,0,NULL,'2007-12-26 21:20:13',NULL,NULL),(86,'Default Language','DEFAULT_LANGUAGE','lt','Default Language',6,0,NULL,'2007-12-26 21:20:13',NULL,NULL),(87,'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,'2007-12-26 21:20:13',NULL,NULL),(88,'Display Shipping','MODULE_ORDER_TOTAL_SHIPPING_STATUS','true','Do you want to display the order shipping cost?',6,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(89,'Sort Order','MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER','2','Sort order of display.',6,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(90,'Allow Free Shipping','MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING','false','Do you want to allow free shipping?',6,3,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(91,'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,'2007-12-26 21:20:13','currencies->format',NULL),(92,'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,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'national\', \'international\', \'both\'), '),(93,'Display Sub-Total','MODULE_ORDER_TOTAL_SUBTOTAL_STATUS','true','Do you want to display the order sub-total cost?',6,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(94,'Sort Order','MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER','1','Sort order of display.',6,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(95,'Display Tax','MODULE_ORDER_TOTAL_TAX_STATUS','true','Do you want to display the order tax value?',6,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(96,'Sort Order','MODULE_ORDER_TOTAL_TAX_SORT_ORDER','3','Sort order of display.',6,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(97,'Display Total','MODULE_ORDER_TOTAL_TOTAL_STATUS','true','Do you want to display the total order value?',6,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(98,'Sort Order','MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER','4','Sort order of display.',6,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(99,'Country of Origin','SHIPPING_ORIGIN_COUNTRY','223','Select the country of origin to be used in shipping quotes.',7,1,NULL,'2007-12-26 21:20:13','tep_get_country_name','tep_cfg_pull_down_country_list('),(100,'Postal Code','SHIPPING_ORIGIN_ZIP','NONE','Enter the Postal Code (ZIP) of the Store to be used in shipping quotes.',7,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(101,'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,'2007-12-26 21:20:13',NULL,NULL),(102,'Package Tare weight.','SHIPPING_BOX_WEIGHT','3','What is the weight of typical packaging of small to medium packages?',7,4,NULL,'2007-12-26 21:20:13',NULL,NULL),(103,'Larger packages - percentage increase.','SHIPPING_BOX_PADDING','10','For 10% enter 10',7,5,NULL,'2007-12-26 21:20:13',NULL,NULL),(104,'Display Product Image','PRODUCT_LIST_IMAGE','1','Do you want to display the Product Image?',8,1,NULL,'2007-12-26 21:20:13',NULL,NULL),(105,'Display Product Manufaturer Name','PRODUCT_LIST_MANUFACTURER','0','Do you want to display the Product Manufacturer Name?',8,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(106,'Display Product Model','PRODUCT_LIST_MODEL','0','Do you want to display the Product Model?',8,3,NULL,'2007-12-26 21:20:13',NULL,NULL),(107,'Display Product Name','PRODUCT_LIST_NAME','2','Do you want to display the Product Name?',8,4,NULL,'2007-12-26 21:20:13',NULL,NULL),(108,'Display Product Price','PRODUCT_LIST_PRICE','3','Do you want to display the Product Price',8,5,NULL,'2007-12-26 21:20:13',NULL,NULL),(109,'Display Product Quantity','PRODUCT_LIST_QUANTITY','0','Do you want to display the Product Quantity?',8,6,NULL,'2007-12-26 21:20:13',NULL,NULL),(110,'Display Product Weight','PRODUCT_LIST_WEIGHT','0','Do you want to display the Product Weight?',8,7,NULL,'2007-12-26 21:20:13',NULL,NULL),(111,'Display Buy Now column','PRODUCT_LIST_BUY_NOW','4','Do you want to display the Buy Now column?',8,8,NULL,'2007-12-26 21:20:13',NULL,NULL),(112,'Display Category/Manufacturer Filter (0=disable; 1=enable)','PRODUCT_LIST_FILTER','1','Do you want to display the Category/Manufacturer Filter?',8,9,'2008-02-03 16:49:20','2007-12-26 21:20:13',NULL,NULL),(113,'Location of Prev/Next Navigation Bar (1-top, 2-bottom, 3-both)','PREV_NEXT_BAR_LOCATION','2','Sets the location of the Prev/Next Navigation Bar (1-top, 2-bottom, 3-both)',8,10,'2008-02-03 16:49:51','2007-12-26 21:20:13',NULL,NULL),(114,'Check stock level','STOCK_CHECK','true','Check to see if sufficent stock is available',9,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(115,'Subtract stock','STOCK_LIMITED','true','Subtract product in stock by product orders',9,2,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(116,'Allow Checkout','STOCK_ALLOW_CHECKOUT','true','Allow customer to checkout even if there is insufficient stock',9,3,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(117,'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,'2007-12-26 21:20:13',NULL,NULL),(118,'Stock Re-order level','STOCK_REORDER_LEVEL','5','Define when stock needs to be re-ordered',9,5,NULL,'2007-12-26 21:20:13',NULL,NULL),(119,'Store Page Parse Time','STORE_PAGE_PARSE_TIME','false','Store the time it takes to parse a page',10,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(120,'Log Destination','STORE_PAGE_PARSE_TIME_LOG','/var/log/www/tep/page_parse_time.log','Directory and filename of the page parse time log',10,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(121,'Log Date Format','STORE_PARSE_DATE_TIME_FORMAT','%d/%m/%Y %H:%M:%S','The date format',10,3,NULL,'2007-12-26 21:20:13',NULL,NULL),(122,'Display The Page Parse Time','DISPLAY_PAGE_PARSE_TIME','true','Display the page parse time (store page parse time must be enabled)',10,4,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(123,'Store Database Queries','STORE_DB_TRANSACTIONS','false','Store the database queries in the page parse time log (PHP4 only)',10,5,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(124,'Use Cache','USE_CACHE','false','Use caching features',11,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(125,'Cache Directory','DIR_FS_CACHE','/tmp/','The directory where the cached files are saved',11,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(126,'E-Mail Transport Method','EMAIL_TRANSPORT','sendmail','Defines if this server uses a local connection to sendmail or uses an SMTP connection via TCP/IP. Servers running on Windows and MacOS should change this setting to SMTP.',12,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'sendmail\', \'smtp\'),'),(127,'E-Mail Linefeeds','EMAIL_LINEFEED','LF','Defines the character sequence used to separate mail headers.',12,2,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'LF\', \'CRLF\'),'),(128,'Use MIME HTML When Sending Emails','EMAIL_USE_HTML','false','Send e-mails in HTML format',12,3,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'),'),(129,'Verify E-Mail Addresses Through DNS','ENTRY_EMAIL_ADDRESS_CHECK','false','Verify e-mail address through a DNS server',12,4,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(130,'Send E-Mails','SEND_EMAILS','true','Send out e-mails',12,5,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(131,'Enable download','DOWNLOAD_ENABLED','false','Enable the products download functions.',13,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(132,'Download by redirect','DOWNLOAD_BY_REDIRECT','false','Use browser redirection for download. Disable on non-Unix systems.',13,2,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(133,'Expiry delay (days)','DOWNLOAD_MAX_DAYS','7','Set number of days before the download link expires. 0 means no limit.',13,3,NULL,'2007-12-26 21:20:13',NULL,''),(134,'Maximum number of downloads','DOWNLOAD_MAX_COUNT','5','Set the maximum number of downloads. 0 means no download authorized.',13,4,NULL,'2007-12-26 21:20:13',NULL,''),(135,'Enable GZip Compression','GZIP_COMPRESSION','false','Enable HTTP GZip compression.',14,1,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'true\', \'false\'), '),(136,'Compression Level','GZIP_LEVEL','5','Use this compression level 0-9 (0 = minimum, 9 = maximum).',14,2,NULL,'2007-12-26 21:20:13',NULL,NULL),(137,'Session Directory','SESSION_WRITE_DIRECTORY','/tmp','If sessions are file based, store them in this directory.',15,1,NULL,'2007-12-26 21:20:13',NULL,NULL),(138,'Force Cookie Use','SESSION_FORCE_COOKIE_USE','False','Force the use of sessions when cookies are only enabled.',15,2,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(139,'Check SSL Session ID','SESSION_CHECK_SSL_SESSION_ID','False','Validate the SSL_SESSION_ID on every secure HTTPS page request.',15,3,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(140,'Check User Agent','SESSION_CHECK_USER_AGENT','False','Validate the clients browser user agent on every page request.',15,4,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(141,'Check IP Address','SESSION_CHECK_IP_ADDRESS','False','Validate the clients IP address on every page request.',15,5,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(142,'Prevent Spider Sessions','SESSION_BLOCK_SPIDERS','False','Prevent known spiders from starting a session.',15,6,NULL,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), '),(143,'Recreate Session','SESSION_RECREATE','False','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,'2007-12-26 21:20:13',NULL,'tep_cfg_select_option(array(\'True\', \'False\'), ');
UNLOCK TABLES;
/*!40000 ALTER TABLE `configuration` ENABLE KEYS */;

--
-- Table structure for table `configuration_group`
--

DROP TABLE IF EXISTS `configuration_group`;
CREATE TABLE `configuration_group` (
  `configuration_group_id` int(11) NOT NULL auto_increment,
  `configuration_group_title` varchar(64) NOT NULL,
  `configuration_group_description` varchar(255) NOT NULL,
  `sort_order` int(5) default NULL,
  `visible` int(1) default '1',
  PRIMARY KEY  (`configuration_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `configuration_group`
--


/*!40000 ALTER TABLE `configuration_group` DISABLE KEYS */;
LOCK TABLES `configuration_group` WRITE;
INSERT INTO `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,'Cache','Caching configuration options',11,1),(12,'E-Mail Options','General setting for E-Mail transport and HTML E-Mails',12,1),(13,'Download','Downloadable products options',13,1),(14,'GZip Compression','GZip compression options',14,1),(15,'Sessions','Session options',15,1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `configuration_group` ENABLE KEYS */;

--
-- Table structure for table `counter`
--

DROP TABLE IF EXISTS `counter`;
CREATE TABLE `counter` (
  `startdate` char(8) default NULL,
  `counter` int(12) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `counter`
--


/*!40000 ALTER TABLE `counter` DISABLE KEYS */;
LOCK TABLES `counter` WRITE;
INSERT INTO `counter` VALUES ('20071226',739);
UNLOCK TABLES;
/*!40000 ALTER TABLE `counter` ENABLE KEYS */;

--
-- Table structure for table `counter_history`
--

DROP TABLE IF EXISTS `counter_history`;
CREATE TABLE `counter_history` (
  `month` char(8) default NULL,
  `counter` int(12) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `counter_history`
--


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

--
-- Table structure for table `countries`
--

DROP TABLE IF EXISTS `countries`;
CREATE TABLE `countries` (
  `countries_id` int(11) NOT NULL auto_increment,
  `countries_name` varchar(64) NOT NULL,
  `countries_iso_code_2` char(2) NOT NULL,
  `countries_iso_code_3` char(3) NOT NULL,
  `address_format_id` int(11) NOT NULL,
  PRIMARY KEY  (`countries_id`),
  KEY `IDX_COUNTRIES_NAME` (`countries_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `countries`
--


/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
LOCK TABLES `countries` WRITE;
INSERT INTO `countries` VALUES (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',1),(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',1),(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);
UNLOCK TABLES;
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;

--
-- Table structure for table `currencies`
--

DROP TABLE IF EXISTS `currencies`;
CREATE TABLE `currencies` (
  `currencies_id` int(11) NOT NULL auto_increment,
  `title` varchar(32) NOT NULL,
  `code` char(3) NOT NULL,
  `symbol_left` varchar(12) default NULL,
  `symbol_right` varchar(12) default NULL,
  `decimal_point` char(1) default NULL,
  `thousands_point` char(1) default NULL,
  `decimal_places` char(1) default NULL,
  `value` float(13,8) default NULL,
  `last_updated` datetime default NULL,
  PRIMARY KEY  (`currencies_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `currencies`
--


/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
LOCK TABLES `currencies` WRITE;
INSERT INTO `currencies` VALUES (1,'US Dollar','USD','$','','.',',','2',1.00000000,'2007-12-26 21:20:13'),(4,'Lithuania litas','LTL','Lt','','.',',','2',2.38189936,'2008-03-10 12:12:39'),(3,'Litas','LT','','Lt','.',',','2',1.00000000,NULL);
UNLOCK TABLES;
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;

--
-- Table structure for table `customers`
--

DROP TABLE IF EXISTS `customers`;
CREATE TABLE `customers` (
  `customers_id` int(11) NOT NULL auto_increment,
  `customers_gender` char(1) NOT NULL,
  `customers_firstname` varchar(32) NOT NULL,
  `customers_lastname` varchar(32) NOT NULL,
  `customers_dob` datetime NOT NULL default '0000-00-00 00:00:00',
  `customers_email_address` varchar(96) NOT NULL,
  `customers_default_address_id` int(11) default NULL,
  `customers_telephone` varchar(32) NOT NULL,
  `customers_fax` varchar(32) default NULL,
  `customers_password` varchar(40) NOT NULL,
  `customers_newsletter` char(1) default NULL,
  PRIMARY KEY  (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `customers`
--


/*!40000 ALTER TABLE `customers` DISABLE KEYS */;
LOCK TABLES `customers` WRITE;
INSERT INTO `customers` VALUES (1,'m','John','doe','2001-01-01 00:00:00','root@localhost',1,'12345','','d95e8fa7f20a009372eb3477473fcd34:1c','0'),(2,'m','Mindaugas','Rimkus','1982-12-04 00:00:00','mindaugas.rimkus@infoside.lt',2,'869825357','','c54e94bdd3e4a32a32f4d2a9874156c2:55','');
UNLOCK TABLES;
/*!40000 ALTER TABLE `customers` ENABLE KEYS */;

--
-- Table structure for table `customers_basket`
--

DROP TABLE IF EXISTS `customers_basket`;
CREATE TABLE `customers_basket` (
  `customers_basket_id` int(11) NOT NULL auto_increment,
  `customers_id` int(11) NOT NULL,
  `products_id` tinytext NOT NULL,
  `customers_basket_quantity` int(2) NOT NULL,
  `final_price` decimal(15,4) default NULL,
  `customers_basket_date_added` char(8) default NULL,
  PRIMARY KEY  (`customers_basket_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `customers_basket`
--


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

--
-- Table structure for table `customers_basket_attributes`
--

DROP TABLE IF EXISTS `customers_basket_attributes`;
CREATE TABLE `customers_basket_attributes` (
  `customers_basket_attributes_id` int(11) NOT NULL auto_increment,
  `customers_id` int(11) NOT NULL,
  `products_id` tinytext NOT NULL,
  `products_options_id` int(11) NOT NULL,
  `products_options_value_id` int(11) NOT NULL,
  PRIMARY KEY  (`customers_basket_attributes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `customers_basket_attributes`
--


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

--
-- Table structure for table `customers_info`
--

DROP TABLE IF EXISTS `customers_info`;
CREATE TABLE `customers_info` (
  `customers_info_id` int(11) NOT NULL,
  `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;

--
-- Dumping data for table `customers_info`
--


/*!40000 ALTER TABLE `customers_info` DISABLE KEYS */;
LOCK TABLES `customers_info` WRITE;
INSERT INTO `customers_info` VALUES (1,NULL,0,'2007-12-26 21:20:13',NULL,0),(2,'2008-03-26 23:23:43',12,'2008-02-03 17:03:58',NULL,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `customers_info` ENABLE KEYS */;

--
-- Table structure for table `geo_zones`
--

DROP TABLE IF EXISTS `geo_zones`;
CREATE TABLE `geo_zones` (
  `geo_zone_id` int(11) NOT NULL auto_increment,
  `geo_zone_name` varchar(32) NOT NULL,
  `geo_zone_description` varchar(255) NOT NULL,
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY  (`geo_zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `geo_zones`
--


/*!40000 ALTER TABLE `geo_zones` DISABLE KEYS */;
LOCK TABLES `geo_zones` WRITE;
INSERT INTO `geo_zones` VALUES (1,'Florida','Florida local sales tax zone',NULL,'2007-12-26 21:20:13');
UNLOCK TABLES;
/*!40000 ALTER TABLE `geo_zones` ENABLE KEYS */;

--
-- Table structure for table `information_box`
--

DROP TABLE IF EXISTS `information_box`;
CREATE TABLE `information_box` (
  `id` int(11) NOT NULL,
  `value` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `information_box`
--


/*!40000 ALTER TABLE `information_box` DISABLE KEYS */;
LOCK TABLES `information_box` WRITE;
INSERT INTO `information_box` VALUES (1,'<p style=\"text-align: left;\">Pristatymas bandymas</p>'),(2,'<p>Privatumas</p>'),(3,'<p>Sàlygos</p>'),(4,'<p>Apie mus</p>');
UNLOCK TABLES;
/*!40000 ALTER TABLE `information_box` ENABLE KEYS */;

--
-- Table structure for table `languages`
--

DROP TABLE IF EXISTS `languages`;
CREATE TABLE `languages` (
  `languages_id` int(11) NOT NULL auto_increment,
  `name` varchar(32) NOT NULL,
  `code` char(2) NOT NULL,
  `image` varchar(64) default NULL,
  `directory` varchar(32) default NULL,
  `sort_order` int(3) default NULL,
  PRIMARY KEY  (`languages_id`),
  KEY `IDX_LANGUAGES_NAME` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `languages`
--


/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
LOCK TABLES `languages` WRITE;
INSERT INTO `languages` VALUES (4,'Lithuanian','LT','icon.gif','lithuanian',0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;

--
-- Table structure for table `manufacturers`
--

DROP TABLE IF EXISTS `manufacturers`;
CREATE TABLE `manufacturers` (
  `manufacturers_id` int(11) NOT NULL auto_increment,
  `manufacturers_name` varchar(32) NOT NULL,
  `manufacturers_image` varchar(64) default NULL,
  `date_added` datetime default NULL,
  `last_modified` datetime default NULL,
  PRIMARY KEY  (`manufacturers_id`),
  KEY `IDX_MANUFACTURERS_NAME` (`manufacturers_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `manufacturers`
--


/*!40000 ALTER TABLE `manufacturers` DISABLE KEYS */;
LOCK TABLES `manufacturers` WRITE;
INSERT INTO `manufacturers` VALUES (11,'GAP','gapLogo.gif','2008-02-03 15:19:59',NULL),(12,'Adidas','adidas.jpg','2008-02-03 16:56:37',NULL),(13,'Nike','nike.jpg','2008-02-03 17:26:20',NULL),(14,'Calvin Klein','ck.jpg','2008-02-03 17:27:35',NULL);
UNLOCK TABLES;
/*!40000 ALTER TABLE `manufacturers` ENABLE KEYS */;

--
-- Table structure for table `manufacturers_info`
--

DROP TABLE IF EXISTS `manufacturers_info`;
CREATE TABLE `manufacturers_info` (
  `manufacturers_id` int(11) NOT NULL,
  `languages_id` int(11) NOT NULL,
  `manufacturers_url` varchar(255) NOT NULL,
  `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;

--
-- Dumping data for table `manufacturers_info`
--


/*!40000 ALTER TABLE `manufacturers_info` DISABLE KEYS */;
LOCK TABLES `manufacturers_info` WRITE;
INSERT INTO `manufacturers_info` VALUES (11,4,'http://www.gap.com/',2,'2008-02-07 18:11:40'),(12,4,'http://www.adidas.lt',0,NULL),(13,4,'http://www.nike.com',1,'2008-03-11 19:31:27'),(14,4,'http://www.calvinklein.com/',0,NULL);
UNLOCK TABLES;
/*!40000 ALTER TABLE `manufacturers_info` ENABLE KEYS */;

--
-- Table structure for table `newsletters`
--

DROP TABLE IF EXISTS `newsletters`;
CREATE TABLE `newsletters` (
  `newsletters_id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL,
  `content` text NOT NULL,
  `module` varchar(255) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_sent` datetime default NULL,
  `status` int(1) default NULL,
  `locked` int(1) default '0',
  PRIMARY KEY  (`newsletters_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `newsletters`
--


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

--
-- Table structure for table `orders`
--

DROP TABLE IF EXISTS `orders`;
CREATE TABLE `orders` (
  `orders_id` int(11) NOT NULL auto_increment,
  `customers_id` int(11) NOT NULL,
  `customers_name` varchar(64) NOT NULL,
  `customers_company` varchar(32) default NULL,
  `customers_street_address` varchar(64) NOT NULL,
  `customers_suburb` varchar(32) default NULL,
  `customers_city` varchar(32) NOT NULL,
  `customers_postcode` varchar(10) NOT NULL,
  `customers_state` varchar(32) default NULL,
  `customers_country` varchar(32) NOT NULL,
  `customers_telephone` varchar(32) NOT NULL,
  `customers_email_address` varchar(96) NOT NULL,
  `customers_address_format_id` int(5) NOT NULL,
  `delivery_name` varchar(64) NOT NULL,
  `delivery_company` varchar(32) default NULL,
  `delivery_street_address` varchar(64) NOT NULL,
  `delivery_suburb` varchar(32) default NULL,
  `delivery_city` varchar(32) NOT NULL,
  `delivery_postcode` varchar(10) NOT NULL,
  `delivery_state` varchar(32) default NULL,
  `delivery_country` varchar(32) NOT NULL,
  `delivery_address_format_id` int(5) NOT NULL,
  `billing_name` varchar(64) NOT NULL,
  `billing_company` varchar(32) default NULL,
  `billing_street_address` varchar(64) NOT NULL,
  `billing_suburb` varchar(32) default NULL,
  `billing_city` varchar(32) NOT NULL,
  `billing_postcode` varchar(10) NOT NULL,
  `billing_state` varchar(32) default NULL,
  `billing_country` varchar(32) NOT NULL,
  `billing_address_format_id` int(5) NOT NULL,
  `payment_method` varchar(32) NOT NULL,
  `cc_type` varchar(20) default NULL,
  `cc_owner` varchar(64) default NULL,
  `cc_number` varchar(32) default NULL,
  `cc_expires` varchar(4) default NULL,
  `last_modified` datetime default NULL,
  `date_purchased` datetime default NULL,
  `orders_status` int(5) NOT NULL,
  `orders_date_finished` datetime default NULL,
  `currency` char(3) default NULL,
  `currency_value` decimal(14,6) default NULL,
  `SSID` varchar(40) NOT NULL,
  PRIMARY KEY  (`orders_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `orders`
--


/*!40000 ALTER TABLE `orders` DISABLE KEYS */;
LOCK TABLES `orders` WRITE;
INSERT INTO `orders` VALUES (1,2,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania','869825357','mindaugas.rimkus@infoside.lt',1,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania',1,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania',1,'Grynais atsiimant','','','','',NULL,'2008-02-03 17:04:35',1,NULL,'LT','1.000000',''),(2,2,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania','869825357','mindaugas.rimkus@infoside.lt',1,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania',1,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania',1,'Grynais atsiimant','','','','',NULL,'2008-02-03 17:09:22',1,NULL,'LT','1.000000',''),(4,2,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania','869825357','mindaugas.rimkus@infoside.lt',1,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania',1,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania',1,'Mokejimai','','','','','2008-03-25 11:27:18','2008-03-10 12:17:29',2,NULL,'LT','1.000000','c62c04ecc70b8576abadeac4d281555b'),(6,2,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania','869825357','mindaugas.rimkus@infoside.lt',1,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania',1,'Mindaugas Rimkus','','Vilties g. 2','Tytuvënai','Kelmës raj.','LT5453434','Ðiauliø','Lithuania',1,'Mokejimai','','','','',NULL,'2008-03-26 17:55:53',1,NULL,'LT','1.000000','1ed45ee9a0eb5115602df12467c14456');
UNLOCK TABLES;
/*!40000 ALTER TABLE `orders` ENABLE KEYS */;

--
-- Table structure for table `orders_products`
--

DROP TABLE IF EXISTS `orders_products`;
CREATE TABLE `orders_products` (
  `orders_products_id` int(11) NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL,
  `products_id` int(11) NOT NULL,
  `products_model` varchar(12) default NULL,
  `products_name` varchar(64) NOT NULL,
  `products_price` decimal(15,4) NOT NULL,
  `final_price` decimal(15,4) NOT NULL,
  `products_tax` decimal(7,4) NOT NULL,
  `products_quantity` int(2) NOT NULL,
  PRIMARY KEY  (`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `orders_products`
--


/*!40000 ALTER TABLE `orders_products` DISABLE KEYS */;
LOCK TABLES `orders_products` WRITE;
INSERT INTO `orders_products` VALUES (1,1,32,'BEK','Sportiniai bateliai \"BEK\"','38.0000','38.0000','0.0000',1),(2,2,29,'JELA','Sportiniai bateliai \"JELA\"','30.0000','30.0000','0.0000',1),(4,4,40,'TESTAS7','Sportiniai bateliai \"TESTAS7\"','44.0000','44.0000','0.0000',2),(9,6,37,'TESTAS4','Sportiniai bateliai \"TESTAS4\"','76.0000','76.0000','0.0000',1),(8,6,32,'BEK','Sportiniai bateliai \"BEK\"','38.0000','38.0000','0.0000',1),(10,6,41,'modelis bate','batelis','67.0000','67.0000','0.0000',1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `orders_products` ENABLE KEYS */;

--
-- Table structure for table `orders_products_attributes`
--

DROP TABLE IF EXISTS `orders_products_attributes`;
CREATE TABLE `orders_products_attributes` (
  `orders_products_attributes_id` int(11) NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL,
  `orders_products_id` int(11) NOT NULL,
  `products_options` varchar(32) NOT NULL,
  `products_options_values` varchar(32) NOT NULL,
  `options_values_price` decimal(15,4) NOT NULL,
  `price_prefix` char(1) NOT NULL,
  PRIMARY KEY  (`orders_products_attributes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `orders_products_attributes`
--


/*!40000 ALTER TABLE `orders_products_attributes` DISABLE KEYS */;
LOCK TABLES `orders_products_attributes` WRITE;
INSERT INTO `orders_products_attributes` VALUES (1,2,2,'Dydis','33','0.0000','+'),(2,2,2,'Spalva','Geltonas','0.0000','+');
UNLOCK TABLES;
/*!40000 ALTER TABLE `orders_products_attributes` ENABLE KEYS */;

--
-- Table structure for table `orders_products_download`
--

DROP TABLE IF EXISTS `orders_products_download`;
CREATE TABLE `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) NOT NULL default '',
  `download_maxdays` int(2) NOT NULL default '0',
  `download_count` int(2) NOT NULL default '0',
  PRIMARY KEY  (`orders_products_download_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `orders_products_download`
--


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

--
-- Table structure for table `orders_status`
--

DROP TABLE IF EXISTS `orders_status`;
CREATE TABLE `orders_status` (
  `orders_status_id` int(11) NOT NULL default '0',
  `language_id` int(11) NOT NULL default '1',
  `orders_status_name` varchar(32) NOT NULL,
  PRIMARY KEY  (`orders_status_id`,`language_id`),
  KEY `idx_orders_status_name` (`orders_status_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `orders_status`
--


/*!40000 ALTER TABLE `orders_status` DISABLE KEYS */;
LOCK TABLES `orders_status` WRITE;
INSERT INTO `orders_status` VALUES (20,4,'Apmokëtas'),(1,4,'Neperþiûratas'),(2,4,'Apdorojamas'),(3,4,'Pristatyta');
UNLOCK TABLES;
/*!40000 ALTER TABLE `orders_status` ENABLE KEYS */;

--
-- Table structure for table `orders_status_history`
--

DROP TABLE IF EXISTS `orders_status_history`;
CREATE TABLE `orders_status_history` (
  `orders_status_history_id` int(11) NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL,
  `orders_status_id` int(5) NOT NULL,
  `date_added` datetime NOT NULL,
  `customer_notified` int(1) default '0',
  `comments` text,
  PRIMARY KEY  (`orders_status_history_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `orders_status_history`
--


/*!40000 ALTER TABLE `orders_status_history` DISABLE KEYS */;
LOCK TABLES `orders_status_history` WRITE;
INSERT INTO `orders_status_history` VALUES (1,1,1,'2008-02-03 17:04:35',1,''),(2,2,1,'2008-02-03 17:09:22',1,''),(4,4,1,'2008-03-10 12:17:29',1,''),(5,4,2,'2008-03-25 11:27:18',1,'komentaras kam pirkai'),(7,6,1,'2008-03-26 17:55:53',1,'');
UNLOCK TABLES;
/*!40000 ALTER TABLE `orders_status_history` ENABLE KEYS */;

--
-- Table structure for table `orders_total`
--

DROP TABLE IF EXISTS `orders_total`;
CREATE TABLE `orders_total` (
  `orders_total_id` int(10) unsigned NOT NULL auto_increment,
  `orders_id` int(11) NOT NULL,
  `title` varchar(255) NOT NULL,
  `text` varchar(255) NOT NULL,
  `value` decimal(15,4) NOT NULL,
  `class` varchar(32) NOT NULL,
  `sort_order` int(11) NOT NULL,
  PRIMARY KEY  (`orders_total_id`),
  KEY `idx_orders_total_orders_id` (`orders_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `orders_total`
--


/*!40000 ALTER TABLE `orders_total` DISABLE KEYS */;
LOCK TABLES `orders_total` WRITE;
INSERT INTO `orders_total` VALUES (1,1,'Suma:','38lt','38.0000','ot_subtotal',1),(2,1,'Paketas (Lietuvos paðtas):','5lt','5.0000','ot_shipping',2),(3,1,'Viso:','<b>43lt</b>','43.0000','ot_total',4),(4,2,'Suma:','30lt','30.0000','ot_subtotal',1),(5,2,'Paketas (Lietuvos paðtas):','5lt','5.0000','ot_shipping',2),(6,2,'Viso:','<b>35lt</b>','35.0000','ot_total',4),(12,4,'Viso:','<b>93lt</b>','93.0000','ot_total',4),(11,4,'Paketas (Lietuvos paðtas):','5lt','5.0000','ot_shipping',2),(10,4,'Suma:','88lt','88.0000','ot_subtotal',1),(18,6,'Viso:','<b>186.00lt</b>','186.0000','ot_total',4),(17,6,'Paketas (Lietuvos paðtas):','5.00lt','5.0000','ot_shipping',2),(16,6,'Suma:','181.00lt','181.0000','ot_subtotal',1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `orders_total` ENABLE KEYS */;

--
-- Table structure for table `products`
--

DROP TABLE IF EXISTS `products`;
CREATE TABLE `products` (
  `products_id` int(11) NOT NULL auto_increment,
  `products_quantity` int(4) NOT NULL,
  `products_model` varchar(12) default NULL,
  `products_image` varchar(64) default NULL,
  `products_price` decimal(15,4) NOT NULL,
  `products_date_added` datetime NOT NULL,
  `products_last_modified` datetime default NULL,
  `products_date_available` datetime default NULL,
  `products_weight` decimal(5,2) NOT NULL,
  `products_status` tinyint(1) NOT NULL,
  `products_tax_class_id` int(11) NOT NULL,
  `manufacturers_id` int(11) default NULL,
  `products_ordered` int(11) NOT NULL default '0',
  PRIMARY KEY  (`products_id`),
  KEY `idx_products_date_added` (`products_date_added`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `products`
--


/*!40000 ALTER TABLE `products` DISABLE KEYS */;
LOCK TABLES `products` WRITE;
INSERT INTO `products` VALUES (29,14,'JELA','OK1d.jpg','30.0000','2008-02-03 15:23:04','2008-03-12 13:34:40',NULL,'0.10',1,0,11,1),(30,14,'SPORTAS','OK2d.jpg','50.0000','2008-02-03 16:03:45','2008-02-03 16:04:56',NULL,'0.20',1,0,11,0),(31,0,'GRAZA','OK3d.jpg','34.0000','2008-02-03 16:07:49',NULL,NULL,'0.10',1,0,0,0),(32,12,'BEK','OK4d.jpg','38.0000','2008-02-03 16:09:54','2008-02-03 16:12:57',NULL,'0.40',1,0,0,2),(33,66,'SPO','OK5d.jpg','76.0000','2008-02-03 16:58:04','2008-02-03 16:59:11',NULL,'1.00',1,0,12,0),(34,55,'TESTAS1','OK6d.jpg','98.0000','2008-02-03 17:28:55',NULL,NULL,'1.00',1,0,14,0),(35,4,'TESTAS2','OK7d.jpg','56.0000','2008-02-03 17:31:45',NULL,NULL,'1.00',1,0,13,0),(36,15,'TESTAS3','OK8d.jpg','51.0000','2008-02-03 17:34:52',NULL,NULL,'2.00',1,0,14,0),(37,76,'TESTAS4','OK9d.jpg','76.0000','2008-02-03 17:47:59',NULL,NULL,'3.00',1,0,12,1),(38,43,'TESTAS5','OK10d.jpg','65.0000','2008-02-03 17:49:02',NULL,NULL,'2.00',1,0,11,0),(39,4,'TESTAS6','OK11d.jpg','43.0000','2008-02-03 17:50:59',NULL,NULL,'2.00',1,0,12,0),(40,42,'TESTAS7','OK12d.jpg','44.0000','2008-02-03 18:07:48',NULL,NULL,'3.00',1,0,13,2),(41,2,'modelis bate','OK5dg.jpg','67.0000','2008-03-25 11:03:14',NULL,NULL,'55.00',1,0,11,1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `products` ENABLE KEYS */;

--
-- Table structure for table `products_attributes`
--

DROP TABLE IF EXISTS `products_attributes`;
CREATE TABLE `products_attributes` (
  `products_attributes_id` int(11) NOT NULL auto_increment,
  `products_id` int(11) NOT NULL,
  `options_id` int(11) NOT NULL,
  `options_values_id` int(11) NOT NULL,
  `options_values_price` decimal(15,4) NOT NULL,
  `price_prefix` char(1) NOT NULL,
  PRIMARY KEY  (`products_attributes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `products_attributes`
--


/*!40000 ALTER TABLE `products_attributes` DISABLE KEYS */;
LOCK TABLES `products_attributes` WRITE;
INSERT INTO `products_attributes` VALUES (35,29,2,13,'0.0000','+'),(34,29,2,12,'0.0000','+'),(33,29,2,11,'0.0000','+'),(32,29,1,34,'0.0000','+'),(31,29,1,31,'50.0000','+'),(30,29,1,32,'40.0000','+');
UNLOCK TABLES;
/*!40000 ALTER TABLE `products_attributes` ENABLE KEYS */;

--
-- Table structure for table `products_attributes_download`
--

DROP TABLE IF EXISTS `products_attributes_download`;
CREATE TABLE `products_attributes_download` (
  `products_attributes_id` int(11) NOT NULL,
  `products_attributes_filename` varchar(255) 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;

--
-- Dumping data for table `products_attributes_download`
--


/*!40000 ALTER TABLE `products_attributes_download` DISABLE KEYS */;
LOCK TABLES `products_attributes_download` WRITE;
INSERT INTO `products_attributes_download` VALUES (26,'unreal.zip',7,3);
UNLOCK TABLES;
/*!40000 ALTER TABLE `products_attributes_download` ENABLE KEYS */;

--
-- Table structure for table `products_description`
--

DROP TABLE IF EXISTS `products_description`;
CREATE TABLE `products_description` (
  `products_id` int(11) NOT NULL auto_increment,
  `language_id` int(11) NOT NULL default '1',
  `products_name` varchar(64) NOT NULL default '',
  `products_description` text,
  `products_url` varchar(255) default NULL,
  `products_viewed` int(5) default '0',
  PRIMARY KEY  (`products_id`,`language_id`),
  KEY `products_name` (`products_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `products_description`
--


/*!40000 ALTER TABLE `products_description` DISABLE KEYS */;
LOCK TABLES `products_description` WRITE;
INSERT INTO `products_description` VALUES (29,4,'Sportiniai bateliai \"JELA\"','Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba Bateliu aprasymas lietuviu kalba','',35),(30,4,'Sportiniai bateliai \"SPORTAS\"','apr lt','',8),(31,4,'Sportiniai bateliai \"GRAZA\"','Products Description lt','',8),(32,4,'Sportiniai bateliai \"BEK\"','lt','',32),(33,4,'Sportiniai bateliai \"SPO\"','apr lt','',5),(34,4,'Sportiniai bateliai \"TESTAS1\"','apr lt','',3),(35,4,'Sportiniai bateliai \"TESTAS2\"','apr lt','',1),(36,4,'Sportiniai bateliai \"TESTAS3\"','lt','',4),(37,4,'Sportiniai bateliai \"TESTAS4\"','lt','',5),(38,4,'Sportiniai bateliai \"TESTAS5\"','lt','',3),(39,4,'Sportiniai bateliai \"TESTAS6\"','lt','',5),(41,4,'batelis','betelio apr','',2),(40,4,'Sportiniai bateliai \"TESTAS7\"','lt','',17);
UNLOCK TABLES;
/*!40000 ALTER TABLE `products_description` ENABLE KEYS */;

--
-- Table structure for table `products_notifications`
--

DROP TABLE IF EXISTS `products_notifications`;
CREATE TABLE `products_notifications` (
  `products_id` int(11) NOT NULL,
  `customers_id` int(11) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY  (`products_id`,`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `products_notifications`
--


/*!40000 ALTER TABLE `products_notifications` DISABLE KEYS */;
LOCK TABLES `products_notifications` WRITE;
INSERT INTO `products_notifications` VALUES (0,2,'2008-02-03 17:04:46'),(40,2,'2008-03-10 12:17:37');
UNLOCK TABLES;
/*!40000 ALTER TABLE `products_notifications` ENABLE KEYS */;

--
-- Table structure for table `products_options`
--

DROP TABLE IF EXISTS `products_options`;
CREATE TABLE `products_options` (
  `products_options_id` int(11) NOT NULL default '0',
  `language_id` int(11) NOT NULL default '1',
  `products_options_name` varchar(32) NOT NULL default '',
  PRIMARY KEY  (`products_options_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `products_options`
--


/*!40000 ALTER TABLE `products_options` DISABLE KEYS */;
LOCK TABLES `products_options` WRITE;
INSERT INTO `products_options` VALUES (2,4,'Dydis'),(1,4,'Spalva');
UNLOCK TABLES;
/*!40000 ALTER TABLE `products_options` ENABLE KEYS */;

--
-- Table structure for table `products_options_values`
--

DROP TABLE IF EXISTS `products_options_values`;
CREATE TABLE `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) NOT NULL default '',
  PRIMARY KEY  (`products_options_values_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `products_options_values`
--


/*!40000 ALTER TABLE `products_options_values` DISABLE KEYS */;
LOCK TABLES `products_options_values` WRITE;
INSERT INTO `products_options_values` VALUES (16,4,'36'),(15,4,'35'),(14,4,'34'),(13,4,'33'),(12,4,'32'),(11,4,'31'),(9,4,'29'),(8,4,'28'),(19,4,'39'),(18,4,'38'),(17,4,'37'),(10,4,'30'),(7,4,'27'),(1,4,'20'),(2,4,'22'),(3,4,'23'),(4,4,'24'),(5,4,'25'),(6,4,'26'),(20,4,'40'),(21,4,'41'),(22,4,'42'),(23,4,'43'),(24,4,'44'),(25,4,'45'),(26,4,'46'),(27,4,'47'),(28,4,'48'),(29,4,'49'),(30,4,'50'),(31,4,'Juodas'),(32,4,'Rudas'),(33,4,'Raudonas'),(34,4,'Geltonas');
UNLOCK TABLES;
/*!40000 ALTER TABLE `products_options_values` ENABLE KEYS */;

--
-- Table structure for table `products_options_values_to_products_options`
--

DROP TABLE IF EXISTS `products_options_values_to_products_options`;
CREATE TABLE `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,
  `products_options_values_id` int(11) NOT NULL,
  PRIMARY KEY  (`products_options_values_to_products_options_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `products_options_values_to_products_options`
--


/*!40000 ALTER TABLE `products_options_values_to_products_options` DISABLE KEYS */;
LOCK TABLES `products_options_values_to_products_options` WRITE;
INSERT INTO `products_options_values_to_products_options` VALUES (18,2,5),(17,2,4),(16,2,3),(15,2,2),(14,2,1),(19,2,6),(20,2,7),(21,2,8),(22,2,9),(24,2,11),(23,2,10),(25,2,12),(26,1,13),(27,1,14),(28,1,15),(29,1,16),(30,1,17),(31,1,18),(32,1,19),(33,1,20),(34,1,21),(35,1,22),(36,1,23),(37,1,24),(38,1,25),(39,1,26),(40,1,27),(41,1,28),(42,1,29),(43,1,30),(44,1,31),(45,1,32),(46,1,33),(47,1,34);
UNLOCK TABLES;
/*!40000 ALTER TABLE `products_options_values_to_products_options` ENABLE KEYS */;

--
-- Table structure for table `products_to_categories`
--

DROP TABLE IF EXISTS `products_to_categories`;
CREATE TABLE `products_to_categories` (
  `products_id` int(11) NOT NULL,
  `categories_id` int(11) NOT NULL,
  PRIMARY KEY  (`products_id`,`categories_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `products_to_categories`
--


/*!40000 ALTER TABLE `products_to_categories` DISABLE KEYS */;
LOCK TABLES `products_to_categories` WRITE;
INSERT INTO `products_to_categories` VALUES (29,31),(30,31),(31,31),(32,31),(33,31),(34,32),(35,32),(36,33),(37,34),(38,34),(39,35),(40,31),(41,35);
UNLOCK TABLES;
/*!40000 ALTER TABLE `products_to_categories` ENABLE KEYS */;

--
-- Table structure for table `reviews`
--

DROP TABLE IF EXISTS `reviews`;
CREATE TABLE `reviews` (
  `reviews_id` int(11) NOT NULL auto_increment,
  `products_id` int(11) NOT NULL,
  `customers_id` int(11) default NULL,
  `customers_name` varchar(64) NOT NULL,
  `reviews_rating` int(1) default NULL,
  `date_added` datetime default NULL,
  `last_modified` datetime default NULL,
  `reviews_read` int(5) NOT NULL default '0',
  PRIMARY KEY  (`reviews_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `reviews`
--


/*!40000 ALTER TABLE `reviews` DISABLE KEYS */;
LOCK TABLES `reviews` WRITE;
INSERT INTO `reviews` VALUES (2,38,2,'Mindaugas Rimkus',5,'2008-02-03 18:10:08',NULL,4);
UNLOCK TABLES;
/*!40000 ALTER TABLE `reviews` ENABLE KEYS */;

--
-- Table structure for table `reviews_description`
--

DROP TABLE IF EXISTS `reviews_description`;
CREATE TABLE `reviews_description` (
  `reviews_id` int(11) NOT NULL,
  `languages_id` int(11) NOT NULL,
  `reviews_text` text NOT NULL,
  PRIMARY KEY  (`reviews_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `reviews_description`
--


/*!40000 ALTER TABLE `reviews_description` DISABLE KEYS */;
LOCK TABLES `reviews_description` WRITE;
INSERT INTO `reviews_description` VALUES (2,4,'geras batelis :) kuris gali buti avimas visus metu laikus');
UNLOCK TABLES;
/*!40000 ALTER TABLE `reviews_description` ENABLE KEYS */;

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
CREATE TABLE `sessions` (
  `sesskey` varchar(32) NOT NULL,
  `expiry` int(11) unsigned NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY  (`sesskey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `sessions`
--


/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
LOCK TABLES `sessions` WRITE;
INSERT INTO `sessions` VALUES ('30d4eef3b93c88f839b8c1456d59d08c',1206633037,'cart|O:12:\"shoppingCart\":5:{s:8:\"contents\";a:0:{}s:5:\"total\";i:0;s:6:\"weight\";i:0;s:6:\"cartID\";N;s:12:\"content_type\";b:0;}language|s:10:\"lithuanian\";languages_id|i:4;currency|s:2:\"LT\";navigation|O:17:\"navigationHistory\":2:{s:4:\"path\";a:8:{i:0;a:4:{s:4:\"page\";s:9:\"index.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:0:{}s:4:\"post\";a:0:{}}i:1;a:4:{s:4:\"page\";s:16:\"products_new.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:0:{}s:4:\"post\";a:0:{}}i:2;a:4:{s:4:\"page\";s:9:\"index.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:1:{s:5:\"cPath\";s:2:\"28\";}s:4:\"post\";a:0:{}}i:3;a:4:{s:4:\"page\";s:12:\"about_us.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:0:{}s:4:\"post\";a:0:{}}i:4;a:4:{s:4:\"page\";s:12:\"shipping.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:0:{}s:4:\"post\";a:0:{}}i:5;a:4:{s:4:\"page\";s:11:\"privacy.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:0:{}s:4:\"post\";a:0:{}}i:6;a:4:{s:4:\"page\";s:14:\"conditions.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:0:{}s:4:\"post\";a:0:{}}i:7;a:4:{s:4:\"page\";s:14:\"contact_us.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:0:{}s:4:\"post\";a:0:{}}}s:8:\"snapshot\";a:0:{}}'),('09aba60f20b739b1ffd330896450f023',1206617741,'language|s:10:\"lithuanian\";languages_id|i:4;redirect_origin|a:2:{s:4:\"page\";s:9:\"index.php\";s:3:\"get\";a:0:{}}selected_box|s:13:\"configuration\";'),('23b84a34bea0909f5162e8985f994d20',1206616874,'language|s:10:\"lithuanian\";languages_id|i:4;selected_box|s:7:\"catalog\";admin|a:2:{s:2:\"id\";s:1:\"1\";s:8:\"username\";s:5:\"admin\";}'),('e986b997da493c4debbc66c6e3b7d0ca',1206631968,'cart|O:12:\"shoppingCart\":5:{s:8:\"contents\";a:0:{}s:5:\"total\";i:0;s:6:\"weight\";i:0;s:6:\"cartID\";N;s:12:\"content_type\";b:0;}language|s:10:\"lithuanian\";languages_id|i:4;currency|s:2:\"LT\";navigation|O:17:\"navigationHistory\":2:{s:4:\"path\";a:5:{i:0;a:4:{s:4:\"page\";s:9:\"index.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:0:{}s:4:\"post\";a:0:{}}i:1;a:4:{s:4:\"page\";s:9:\"index.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:1:{s:5:\"cPath\";s:2:\"25\";}s:4:\"post\";a:0:{}}i:2;a:4:{s:4:\"page\";s:9:\"index.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:1:{s:5:\"cPath\";s:5:\"25_30\";}s:4:\"post\";a:0:{}}i:3;a:4:{s:4:\"page\";s:9:\"index.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:1:{s:5:\"cPath\";s:8:\"25_30_31\";}s:4:\"post\";a:0:{}}i:4;a:4:{s:4:\"page\";s:16:\"product_info.php\";s:4:\"mode\";s:6:\"NONSSL\";s:3:\"get\";a:2:{s:5:\"cPath\";s:8:\"25_30_31\";s:11:\"products_id\";s:2:\"32\";}s:4:\"post\";a:0:{}}}s:8:\"snapshot\";a:0:{}}'),('9d9f913e5f19527b5cf8d49196dda620',1206616545,'language|s:10:\"lithuanian\";languages_id|i:4;selected_box|s:7:\"catalog\";admin|a:2:{s:2:\"id\";s:1:\"1\";s:8:\"username\";s:5:\"admin\";}'),('89fdbd5deade2dc1b07f0be329febc5a',1206611505,'language|s:10:\"lithuanian\";languages_id|i:4;selected_box|s:7:\"modules\";admin|a:2:{s:2:\"id\";s:1:\"1\";s:8:\"username\";s:5:\"admin\";}'),('039a1939aa9db7dfb27be7054b217e14',1208800651,'cart|O:12:\"shoppingCart\":4:{s:8:\"contents\";a:0:{}s:5:\"total\";i:0;s:6:\"weight\";i:0;s:12:\"content_type\";b:0;}language|N;languages_id|N;'),('f9049f6bc2cff654ce221924da31eba3',1208800654,'language|N;languages_id|N;redirect_origin|a:2:{s:4:\"page\";s:9:\"index.php\";s:3:\"get\";a:0:{}}'),('5fba10086c0cd28ea08a58d23b7f0316',1208800684,'language|N;languages_id|N;');
UNLOCK TABLES;
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;

--
-- Table structure for table `specials`
--

DROP TABLE IF EXISTS `specials`;
CREATE TABLE `specials` (
  `specials_id` int(11) NOT NULL auto_increment,
  `products_id` int(11) NOT NULL,
  `specials_new_products_price` decimal(15,4) NOT NULL,
  `specials_date_added` datetime default NULL,
  `specials_last_modified` datetime default NULL,
  `expires_date` datetime default NULL,
  `date_status_change` datetime default NULL,
  `status` int(1) NOT NULL default '1',
  PRIMARY KEY  (`specials_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `specials`
--


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

--
-- Table structure for table `tax_class`
--

DROP TABLE IF EXISTS `tax_class`;
CREATE TABLE `tax_class` (
  `tax_class_id` int(11) NOT NULL auto_increment,
  `tax_class_title` varchar(32) NOT NULL,
  `tax_class_description` varchar(255) NOT NULL,
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY  (`tax_class_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `tax_class`
--


/*!40000 ALTER TABLE `tax_class` DISABLE KEYS */;
LOCK TABLES `tax_class` WRITE;
INSERT INTO `tax_class` VALUES (1,'Taxable Goods','The following types of products are included non-food, services, etc','2007-12-26 21:20:13','2007-12-26 21:20:13');
UNLOCK TABLES;
/*!40000 ALTER TABLE `tax_class` ENABLE KEYS */;

--
-- Table structure for table `tax_rates`
--

DROP TABLE IF EXISTS `tax_rates`;
CREATE TABLE `tax_rates` (
  `tax_rates_id` int(11) NOT NULL auto_increment,
  `tax_zone_id` int(11) NOT NULL,
  `tax_class_id` int(11) NOT NULL,
  `tax_priority` int(5) default '1',
  `tax_rate` decimal(7,4) NOT NULL,
  `tax_description` varchar(255) NOT NULL,
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY  (`tax_rates_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `tax_rates`
--


/*!40000 ALTER TABLE `tax_rates` DISABLE KEYS */;
LOCK TABLES `tax_rates` WRITE;
INSERT INTO `tax_rates` VALUES (1,1,1,1,'7.0000','FL TAX 7.0%','2007-12-26 21:20:13','2007-12-26 21:20:13');
UNLOCK TABLES;
/*!40000 ALTER TABLE `tax_rates` ENABLE KEYS */;

--
-- Table structure for table `whos_online`
--

DROP TABLE IF EXISTS `whos_online`;
CREATE TABLE `whos_online` (
  `customer_id` int(11) default NULL,
  `full_name` varchar(64) NOT NULL,
  `session_id` varchar(128) NOT NULL,
  `ip_address` varchar(15) NOT NULL,
  `time_entry` varchar(14) NOT NULL,
  `time_last_click` varchar(14) NOT NULL,
  `last_page_url` varchar(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `whos_online`
--


/*!40000 ALTER TABLE `whos_online` DISABLE KEYS */;
LOCK TABLES `whos_online` WRITE;
INSERT INTO `whos_online` VALUES (0,'Guest','30d4eef3b93c88f839b8c1456d59d08c','78.62.75.146','1206631415','1206631597','/~mindaugas/shop/oscommerce-2.2rc1/catalog/contact_us.php');
UNLOCK TABLES;
/*!40000 ALTER TABLE `whos_online` ENABLE KEYS */;

--
-- Table structure for table `zones`
--

DROP TABLE IF EXISTS `zones`;
CREATE TABLE `zones` (
  `zone_id` int(11) NOT NULL auto_increment,
  `zone_country_id` int(11) NOT NULL,
  `zone_code` varchar(32) NOT NULL,
  `zone_name` varchar(32) NOT NULL,
  PRIMARY KEY  (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `zones`
--


/*!40000 ALTER TABLE `zones` DISABLE KEYS */;
LOCK TABLES `zones` WRITE;
INSERT INTO `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,223,'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,'NF','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ürttemberg'),(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','Thüringen'),(95,14,'WI','Wien'),(96,14,'NO','Niederösterreich'),(97,14,'OO','Oberösterreich'),(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','Graubünden'),(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','Zürich'),(130,195,'A Coruña','A Coruña'),(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');
UNLOCK TABLES;
/*!40000 ALTER TABLE `zones` ENABLE KEYS */;

--
-- Table structure for table `zones_to_geo_zones`
--

DROP TABLE IF EXISTS `zones_to_geo_zones`;
CREATE TABLE `zones_to_geo_zones` (
  `association_id` int(11) NOT NULL auto_increment,
  `zone_country_id` int(11) NOT NULL,
  `zone_id` int(11) default NULL,
  `geo_zone_id` int(11) default NULL,
  `last_modified` datetime default NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY  (`association_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `zones_to_geo_zones`
--


/*!40000 ALTER TABLE `zones_to_geo_zones` DISABLE KEYS */;
LOCK TABLES `zones_to_geo_zones` WRITE;
INSERT INTO `zones_to_geo_zones` VALUES (1,223,18,1,NULL,'2007-12-26 21:20:13');
UNLOCK TABLES;
/*!40000 ALTER TABLE `zones_to_geo_zones` ENABLE KEYS */;
/*!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 */;

