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

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `galaxia_activities`
--

DROP TABLE IF EXISTS `galaxia_activities`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_activities` (
  `activityId` int(14) NOT NULL AUTO_INCREMENT,
  `name` varchar(80) DEFAULT NULL,
  `normalized_name` varchar(80) DEFAULT NULL,
  `pId` int(14) NOT NULL DEFAULT '0',
  `type` enum('start','end','split','switch','join','activity','standalone') DEFAULT NULL,
  `isAutoRouted` char(1) DEFAULT NULL,
  `flowNum` int(10) DEFAULT NULL,
  `isInteractive` char(1) DEFAULT NULL,
  `lastModif` int(14) DEFAULT NULL,
  `description` text,
  `expirationTime` int(6) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`activityId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_activities`
--

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

--
-- Table structure for table `galaxia_activity_roles`
--

DROP TABLE IF EXISTS `galaxia_activity_roles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_activity_roles` (
  `activityId` int(14) NOT NULL DEFAULT '0',
  `roleId` int(14) NOT NULL DEFAULT '0',
  PRIMARY KEY (`activityId`,`roleId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_activity_roles`
--

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

--
-- Table structure for table `galaxia_instance_activities`
--

DROP TABLE IF EXISTS `galaxia_instance_activities`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_instance_activities` (
  `instanceId` int(14) NOT NULL DEFAULT '0',
  `activityId` int(14) NOT NULL DEFAULT '0',
  `started` int(14) NOT NULL DEFAULT '0',
  `ended` int(14) NOT NULL DEFAULT '0',
  `user` varchar(40) DEFAULT NULL,
  `status` enum('running','completed') DEFAULT NULL,
  PRIMARY KEY (`instanceId`,`activityId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_instance_activities`
--

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

--
-- Table structure for table `galaxia_instance_comments`
--

DROP TABLE IF EXISTS `galaxia_instance_comments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_instance_comments` (
  `cId` int(14) NOT NULL AUTO_INCREMENT,
  `instanceId` int(14) NOT NULL DEFAULT '0',
  `user` varchar(40) DEFAULT NULL,
  `activityId` int(14) DEFAULT NULL,
  `hash` varchar(32) DEFAULT NULL,
  `title` varchar(250) DEFAULT NULL,
  `comment` text,
  `activity` varchar(80) DEFAULT NULL,
  `timestamp` int(14) DEFAULT NULL,
  PRIMARY KEY (`cId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_instance_comments`
--

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

--
-- Table structure for table `galaxia_instances`
--

DROP TABLE IF EXISTS `galaxia_instances`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_instances` (
  `instanceId` int(14) NOT NULL AUTO_INCREMENT,
  `pId` int(14) NOT NULL DEFAULT '0',
  `started` int(14) DEFAULT NULL,
  `name` varchar(200) NOT NULL DEFAULT 'No Name',
  `owner` varchar(200) DEFAULT NULL,
  `nextActivity` int(14) DEFAULT NULL,
  `nextUser` varchar(200) DEFAULT NULL,
  `ended` int(14) DEFAULT NULL,
  `status` enum('active','exception','aborted','completed') DEFAULT NULL,
  `properties` longblob,
  PRIMARY KEY (`instanceId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_instances`
--

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

--
-- Table structure for table `galaxia_processes`
--

DROP TABLE IF EXISTS `galaxia_processes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_processes` (
  `pId` int(14) NOT NULL AUTO_INCREMENT,
  `name` varchar(80) DEFAULT NULL,
  `isValid` char(1) DEFAULT NULL,
  `isActive` char(1) DEFAULT NULL,
  `version` varchar(12) DEFAULT NULL,
  `description` text,
  `lastModif` int(14) DEFAULT NULL,
  `normalized_name` varchar(80) DEFAULT NULL,
  PRIMARY KEY (`pId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_processes`
--

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

--
-- Table structure for table `galaxia_roles`
--

DROP TABLE IF EXISTS `galaxia_roles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_roles` (
  `roleId` int(14) NOT NULL AUTO_INCREMENT,
  `pId` int(14) NOT NULL DEFAULT '0',
  `lastModif` int(14) DEFAULT NULL,
  `name` varchar(80) DEFAULT NULL,
  `description` text,
  PRIMARY KEY (`roleId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_roles`
--

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

--
-- Table structure for table `galaxia_transitions`
--

DROP TABLE IF EXISTS `galaxia_transitions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_transitions` (
  `pId` int(14) NOT NULL DEFAULT '0',
  `actFromId` int(14) NOT NULL DEFAULT '0',
  `actToId` int(14) NOT NULL DEFAULT '0',
  PRIMARY KEY (`actFromId`,`actToId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_transitions`
--

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

--
-- Table structure for table `galaxia_user_roles`
--

DROP TABLE IF EXISTS `galaxia_user_roles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_user_roles` (
  `pId` int(14) NOT NULL DEFAULT '0',
  `roleId` int(14) NOT NULL AUTO_INCREMENT,
  `user` varchar(40) NOT NULL DEFAULT '',
  PRIMARY KEY (`roleId`,`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_user_roles`
--

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

--
-- Table structure for table `galaxia_workitems`
--

DROP TABLE IF EXISTS `galaxia_workitems`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `galaxia_workitems` (
  `itemId` int(14) NOT NULL AUTO_INCREMENT,
  `instanceId` int(14) NOT NULL DEFAULT '0',
  `orderId` int(14) NOT NULL DEFAULT '0',
  `activityId` int(14) NOT NULL DEFAULT '0',
  `properties` longblob,
  `started` int(14) DEFAULT NULL,
  `ended` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`itemId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `galaxia_workitems`
--

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

--
-- Table structure for table `messu_archive`
--

DROP TABLE IF EXISTS `messu_archive`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `messu_archive` (
  `msgId` int(14) NOT NULL AUTO_INCREMENT,
  `user` varchar(40) NOT NULL DEFAULT '',
  `user_from` varchar(40) NOT NULL DEFAULT '',
  `user_to` text,
  `user_cc` text,
  `user_bcc` text,
  `subject` varchar(255) DEFAULT NULL,
  `body` text,
  `hash` varchar(32) DEFAULT NULL,
  `replyto_hash` varchar(32) DEFAULT NULL,
  `date` int(14) DEFAULT NULL,
  `isRead` char(1) DEFAULT NULL,
  `isReplied` char(1) DEFAULT NULL,
  `isFlagged` char(1) DEFAULT NULL,
  `priority` int(2) DEFAULT NULL,
  PRIMARY KEY (`msgId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `messu_archive`
--

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

--
-- Table structure for table `messu_messages`
--

DROP TABLE IF EXISTS `messu_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `messu_messages` (
  `msgId` int(14) NOT NULL AUTO_INCREMENT,
  `user` varchar(40) NOT NULL DEFAULT '',
  `user_from` varchar(200) NOT NULL DEFAULT '',
  `user_to` text,
  `user_cc` text,
  `user_bcc` text,
  `subject` varchar(255) DEFAULT NULL,
  `body` text,
  `hash` varchar(32) DEFAULT NULL,
  `replyto_hash` varchar(32) DEFAULT NULL,
  `date` int(14) DEFAULT NULL,
  `isRead` char(1) DEFAULT NULL,
  `isReplied` char(1) DEFAULT NULL,
  `isFlagged` char(1) DEFAULT NULL,
  `priority` int(2) DEFAULT NULL,
  PRIMARY KEY (`msgId`),
  KEY `userIsRead` (`user`,`isRead`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `messu_messages`
--

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

--
-- Table structure for table `messu_sent`
--

DROP TABLE IF EXISTS `messu_sent`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `messu_sent` (
  `msgId` int(14) NOT NULL AUTO_INCREMENT,
  `user` varchar(40) NOT NULL DEFAULT '',
  `user_from` varchar(40) NOT NULL DEFAULT '',
  `user_to` text,
  `user_cc` text,
  `user_bcc` text,
  `subject` varchar(255) DEFAULT NULL,
  `body` text,
  `hash` varchar(32) DEFAULT NULL,
  `replyto_hash` varchar(32) DEFAULT NULL,
  `date` int(14) DEFAULT NULL,
  `isRead` char(1) DEFAULT NULL,
  `isReplied` char(1) DEFAULT NULL,
  `isFlagged` char(1) DEFAULT NULL,
  `priority` int(2) DEFAULT NULL,
  PRIMARY KEY (`msgId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `messu_sent`
--

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

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

DROP TABLE IF EXISTS `sessions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `sessions` (
  `sesskey` varchar(32) NOT NULL DEFAULT '',
  `expiry` int(11) unsigned NOT NULL DEFAULT '0',
  `expireref` varchar(64) DEFAULT NULL,
  `data` text NOT NULL,
  PRIMARY KEY (`sesskey`),
  KEY `expiry` (`expiry`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

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

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

--
-- Table structure for table `tiki_actionlog`
--

DROP TABLE IF EXISTS `tiki_actionlog`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_actionlog` (
  `action` varchar(255) NOT NULL DEFAULT '',
  `lastModif` int(14) DEFAULT NULL,
  `pageName` varchar(200) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `ip` varchar(15) DEFAULT NULL,
  `comment` varchar(200) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_actionlog`
--

LOCK TABLES `tiki_actionlog` WRITE;
/*!40000 ALTER TABLE `tiki_actionlog` DISABLE KEYS */;
INSERT INTO `tiki_actionlog` VALUES ('Updated',1207250702,'HomePage','admin','82.3.232.237',''),('Created',1207250727,'liver disease','admin','82.3.232.237',''),('Updated',1207334080,'liver disease','admin','82.2.125.102',''),('Updated',1207338951,'HomePage','admin','82.2.125.102',''),('Created',1207338980,'DogTraining','admin','82.2.125.102',''),('Created',1207339091,'ToiletTraining','admin','82.2.125.102',''),('Updated',1207339119,'ToiletTraining','admin','82.2.125.102',''),('Updated',1207339143,'liver disease','admin','82.2.125.102',''),('Updated',1207339156,'liver disease','admin','82.2.125.102',''),('Updated',1207341239,'DogTraining','admin','82.2.125.102','');
/*!40000 ALTER TABLE `tiki_actionlog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_article_types`
--

DROP TABLE IF EXISTS `tiki_article_types`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_article_types` (
  `type` varchar(50) NOT NULL DEFAULT '',
  `use_ratings` char(1) DEFAULT NULL,
  `show_pre_publ` char(1) DEFAULT NULL,
  `show_post_expire` char(1) DEFAULT 'y',
  `heading_only` char(1) DEFAULT NULL,
  `allow_comments` char(1) DEFAULT 'y',
  `show_image` char(1) DEFAULT 'y',
  `show_avatar` char(1) DEFAULT NULL,
  `show_author` char(1) DEFAULT 'y',
  `show_pubdate` char(1) DEFAULT 'y',
  `show_expdate` char(1) DEFAULT NULL,
  `show_reads` char(1) DEFAULT 'y',
  `show_size` char(1) DEFAULT 'n',
  `show_topline` char(1) DEFAULT 'n',
  `show_subtitle` char(1) DEFAULT 'n',
  `show_linkto` char(1) DEFAULT 'n',
  `show_image_caption` char(1) DEFAULT 'n',
  `show_lang` char(1) DEFAULT 'n',
  `creator_edit` char(1) DEFAULT NULL,
  `comment_can_rate_article` char(1) DEFAULT NULL,
  PRIMARY KEY (`type`),
  KEY `show_pre_publ` (`show_pre_publ`),
  KEY `show_post_expire` (`show_post_expire`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_article_types`
--

LOCK TABLES `tiki_article_types` WRITE;
/*!40000 ALTER TABLE `tiki_article_types` DISABLE KEYS */;
INSERT INTO `tiki_article_types` VALUES ('Article','n','n','y','n','y','y','n','y','y','n','y','n','n','n','n','n','n','n','n'),('Review','y','n','y','n','y','y','n','y','y','n','y','n','n','n','n','n','n','n','n'),('Event','n','n','n','n','y','y','n','y','y','n','y','n','n','n','n','n','n','n','n'),('Classified','n','n','n','y','n','y','n','y','y','n','y','n','n','n','n','n','n','n','n');
/*!40000 ALTER TABLE `tiki_article_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_articles`
--

DROP TABLE IF EXISTS `tiki_articles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_articles` (
  `articleId` int(8) NOT NULL AUTO_INCREMENT,
  `topline` varchar(255) DEFAULT NULL,
  `title` varchar(80) DEFAULT NULL,
  `subtitle` varchar(255) DEFAULT NULL,
  `linkto` varchar(255) DEFAULT NULL,
  `lang` varchar(16) DEFAULT NULL,
  `state` char(1) DEFAULT 's',
  `authorName` varchar(60) DEFAULT NULL,
  `topicId` int(14) DEFAULT NULL,
  `topicName` varchar(40) DEFAULT NULL,
  `size` int(12) DEFAULT NULL,
  `useImage` char(1) DEFAULT NULL,
  `image_name` varchar(80) DEFAULT NULL,
  `image_caption` text,
  `image_type` varchar(80) DEFAULT NULL,
  `image_size` int(14) DEFAULT NULL,
  `image_x` int(4) DEFAULT NULL,
  `image_y` int(4) DEFAULT NULL,
  `image_data` longblob,
  `publishDate` int(14) DEFAULT NULL,
  `expireDate` int(14) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `heading` text,
  `body` text,
  `hash` varchar(32) DEFAULT NULL,
  `author` varchar(200) DEFAULT NULL,
  `nbreads` int(14) DEFAULT NULL,
  `votes` int(8) DEFAULT NULL,
  `points` int(14) DEFAULT NULL,
  `type` varchar(50) DEFAULT NULL,
  `rating` decimal(3,2) DEFAULT NULL,
  `isfloat` char(1) DEFAULT NULL,
  PRIMARY KEY (`articleId`),
  KEY `title` (`title`),
  KEY `heading` (`heading`(255)),
  KEY `body` (`body`(255)),
  KEY `nbreads` (`nbreads`),
  KEY `author` (`author`(32)),
  KEY `topicId` (`topicId`),
  KEY `publishDate` (`publishDate`),
  KEY `expireDate` (`expireDate`),
  KEY `type` (`type`),
  FULLTEXT KEY `ft` (`title`,`heading`,`body`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_articles`
--

LOCK TABLES `tiki_articles` WRITE;
/*!40000 ALTER TABLE `tiki_articles` DISABLE KEYS */;
INSERT INTO `tiki_articles` VALUES (1,'','Dog Potty Training','','','','s','System Administrator',0,NULL,4245,'n','','','',0,0,0,'',1207340160,1238876160,1207340394,'','<table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n      <tr>\r\n        <td id=\"banner\" background=\"images/fit_18_2.jpg\" width=\"760\" height=\"113\" valign=\"top\">\r\n          <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n            <tr>\r\n              <td>\r\n                <div>\r\n                  <div id=\"header\">\r\n                    <div style=\"text-align: left; font-weight: bold; font-family: Comic Sans MS;\">\r\n                      <span><font size=\"6\">House Breaking For Dogs And Puppies</font></span>\r\n                    </div>\r\n                  </div>\r\n                </div>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n      <tr>\r\n        \r\n      </tr>\r\n    </table>\r\n    <table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n      <tr bgcolor=\"white\">\r\n         <td valign=\"top\">\r\n          <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"10\">\r\n            <tr>\r\n              <td style=\"width:100%;\">\r\n                <div id=\"content\"></div>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n      <tr bgcolor=\"white\">\r\n        <td colspan=\"2\">\r\n          <table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"bottom\" bgcolor=\"white\">\r\n            <tr>\r\n              <td align=\"center\">\r\n                <div>\r\n                  <div id=\"footer\">\r\n                    <span><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"red\"><strong>Housebreak Your Dog Or Puppy Without Stress Or Worry.<br> Step-by-Step Guide Teaches You How To Potty Train / Housetrain Your Dog</strong></font>\r\n                    <br></span>\r\n                  </div>\r\n                </div>\r\n              </td>\r\n            </tr> \r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n	<table width=\"760\" border=\"0\" border:thin black border-style : dashed align=\"center\" cellpadding=\"5\" bordercolor=\"#000000\" bgcolor=\"white\">\r\n        <tr> \r\n          <td height=\"376\"><p align=\"center\"><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"blue\"><strong>Got a housebreaking problem with an adult dog or a new puppy? Not sure how to start teaching your pet the essentials of potty training / housetraining?</strong></font><br><br><font size=\"6\" face=\"Times New Roman, Times, serif\" color=\"red\"><strong>Don\'t panic!!</strong></font><br><br><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"blue\"><strong>House Breaking your adult dog or puppy is easy when you know how.<br><br>Start NOW by reading our <a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\">FREE REPORT</a></strong></font></p>\r\n            <table align=\"center\" bgcolor=\"#000000\" bordercolor=\"#000000\" cellpadding=\"5\" width=\"199\">\r\n<tbody><tr>\r\n<td bgcolor=\"#ffffff\"> <table width=\"100%\">\r\n<tbody><tr>\r\n<td><div align=\"left\"><strong><font color=\"#ff0000\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\"><img src=\"doghousebreaking/free-doghousebreaking-report.jpg\" height=\"258\" width=\"200\"></a></strong></div></td>\r\n</tr>\r\n</tbody></table>\r\n<p align=\"center\"><strong><font color=\"#FF0000\" size=\"3\">DOWNLOAD FREE\r\n!!</font></strong></p>\r\n<p align=\"justify\">Download the 13-page Free Report on How\r\nto Quickly and Easily Housebreak your puppy, adult\r\nor older dog. Learn about crate, paper, litter box\r\nand outdoor training and lots more...</p>\r\n<p align=\"center\"><a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\">Download\r\nthe Free Report And Start Potty Training Your Dog, TODAY!</a></p></td>\r\n</tr>\r\n</tbody></table></td>\r\n        </tr>\r\n		<tr><td><div align=\"center\"><strong><font color=\"#ff0000\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><a href=\"http://ifeelgood.pettrng.hop.clickbank.net/?tid=dhb\">CLICK HERE TO LEARN MORE</a></strong></div></td></tr>\r\n      </table>\r\n	 <table width=\"760\" align=\"center\" cellpadding=\"5\">\r\n      <tr>\r\n        <td align=\"center\" valign=\"middle\">\r\n          <div id=\"sr_affiliate\">\r\n            <a href=\"http://www.siterubix.com/?a_aid=f3Q5Xt4D\" target=\"_blank\">Site Generated By SiteRubix</a>\r\n          </div>\r\n        </td>\r\n      </tr>\r\n    </table>	 ','b6ac893b32177e31aed3c9f086a0956e','admin',78,0,0,'Review','7.00','n'),(2,'','Dog Potty Training','','','','s','System Administrator',1,'Dog House Training',4245,'n','','','',0,0,0,'',1207341360,1238877360,1207467734,'','<table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n      <tr>\r\n        <td id=\"banner\" background=\"images/fit_18_2.jpg\" width=\"760\" height=\"113\" valign=\"top\">\r\n          <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n            <tr>\r\n              <td>\r\n                <div>\r\n                  <div id=\"header\">\r\n                    <div style=\"text-align: left; font-weight: bold; font-family: Comic Sans MS;\">\r\n                      <span><font size=\"6\">House Breaking For Dogs And Puppies</font></span>\r\n                    </div>\r\n                  </div>\r\n                </div>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n      <tr>\r\n        \r\n      </tr>\r\n    </table>\r\n    <table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n      <tr bgcolor=\"white\">\r\n         <td valign=\"top\">\r\n          <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"10\">\r\n            <tr>\r\n              <td style=\"width:100%;\">\r\n                <div id=\"content\"></div>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n      <tr bgcolor=\"white\">\r\n        <td colspan=\"2\">\r\n          <table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"bottom\" bgcolor=\"white\">\r\n            <tr>\r\n              <td align=\"center\">\r\n                <div>\r\n                  <div id=\"footer\">\r\n                    <span><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"red\"><strong>Housebreak Your Dog Or Puppy Without Stress Or Worry.<br> Step-by-Step Guide Teaches You How To Potty Train / Housetrain Your Dog</strong></font>\r\n                    <br></span>\r\n                  </div>\r\n                </div>\r\n              </td>\r\n            </tr> \r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n	<table width=\"760\" border=\"0\" border:thin black border-style : dashed align=\"center\" cellpadding=\"5\" bordercolor=\"#000000\" bgcolor=\"white\">\r\n        <tr> \r\n          <td height=\"376\"><p align=\"center\"><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"blue\"><strong>Got a housebreaking problem with an adult dog or a new puppy? Not sure how to start teaching your pet the essentials of potty training / housetraining?</strong></font><br><br><font size=\"6\" face=\"Times New Roman, Times, serif\" color=\"red\"><strong>Don\'t panic!!</strong></font><br><br><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"blue\"><strong>House Breaking your adult dog or puppy is easy when you know how.<br><br>Start NOW by reading our <a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\">FREE REPORT</a></strong></font></p>\r\n            <table align=\"center\" bgcolor=\"#000000\" bordercolor=\"#000000\" cellpadding=\"5\" width=\"199\">\r\n<tbody><tr>\r\n<td bgcolor=\"#ffffff\"> <table width=\"100%\">\r\n<tbody><tr>\r\n<td><div align=\"left\"><strong><font color=\"#ff0000\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\"><img src=\"doghousebreaking/free-doghousebreaking-report.jpg\" height=\"258\" width=\"200\"></a></strong></div></td>\r\n</tr>\r\n</tbody></table>\r\n<p align=\"center\"><strong><font color=\"#FF0000\" size=\"3\">DOWNLOAD FREE\r\n!!</font></strong></p>\r\n<p align=\"justify\">Download the 13-page Free Report on How\r\nto Quickly and Easily Housebreak your puppy, adult\r\nor older dog. Learn about crate, paper, litter box\r\nand outdoor training and lots more...</p>\r\n<p align=\"center\"><a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\">Download\r\nthe Free Report And Start Potty Training Your Dog, TODAY!</a></p></td>\r\n</tr>\r\n</tbody></table></td>\r\n        </tr>\r\n		<tr><td><div align=\"center\"><strong><font color=\"#ff0000\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><a href=\"http://ifeelgood.pettrng.hop.clickbank.net/?tid=dhb\">CLICK HERE TO LEARN MORE</a></strong></div></td></tr>\r\n      </table>\r\n	 <table width=\"760\" align=\"center\" cellpadding=\"5\">\r\n      <tr>\r\n        <td align=\"center\" valign=\"middle\">\r\n          <div id=\"sr_affiliate\">\r\n            <a href=\"http://www.siterubix.com/?a_aid=f3Q5Xt4D\" target=\"_blank\">Site Generated By SiteRubix</a>\r\n          </div>\r\n        </td>\r\n      </tr>\r\n    </table>	 ','b6ac893b32177e31aed3c9f086a0956e','admin',115,0,0,'Article','7.00','n');
/*!40000 ALTER TABLE `tiki_articles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_banners`
--

DROP TABLE IF EXISTS `tiki_banners`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_banners` (
  `bannerId` int(12) NOT NULL AUTO_INCREMENT,
  `client` varchar(200) NOT NULL DEFAULT '',
  `url` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `alt` varchar(250) DEFAULT NULL,
  `which` varchar(50) DEFAULT NULL,
  `imageData` longblob,
  `imageType` varchar(200) DEFAULT NULL,
  `imageName` varchar(100) DEFAULT NULL,
  `HTMLData` text,
  `fixedURLData` varchar(255) DEFAULT NULL,
  `textData` text,
  `fromDate` int(14) DEFAULT NULL,
  `toDate` int(14) DEFAULT NULL,
  `useDates` char(1) DEFAULT NULL,
  `mon` char(1) DEFAULT NULL,
  `tue` char(1) DEFAULT NULL,
  `wed` char(1) DEFAULT NULL,
  `thu` char(1) DEFAULT NULL,
  `fri` char(1) DEFAULT NULL,
  `sat` char(1) DEFAULT NULL,
  `sun` char(1) DEFAULT NULL,
  `hourFrom` varchar(4) DEFAULT NULL,
  `hourTo` varchar(4) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `maxImpressions` int(8) DEFAULT NULL,
  `impressions` int(8) DEFAULT NULL,
  `clicks` int(8) DEFAULT NULL,
  `zone` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`bannerId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_banners`
--

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

--
-- Table structure for table `tiki_banning`
--

DROP TABLE IF EXISTS `tiki_banning`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_banning` (
  `banId` int(12) NOT NULL AUTO_INCREMENT,
  `mode` enum('user','ip') DEFAULT NULL,
  `title` varchar(200) DEFAULT NULL,
  `ip1` char(3) DEFAULT NULL,
  `ip2` char(3) DEFAULT NULL,
  `ip3` char(3) DEFAULT NULL,
  `ip4` char(3) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `date_from` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `date_to` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `use_dates` char(1) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `message` text,
  PRIMARY KEY (`banId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_banning`
--

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

--
-- Table structure for table `tiki_banning_sections`
--

DROP TABLE IF EXISTS `tiki_banning_sections`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_banning_sections` (
  `banId` int(12) NOT NULL DEFAULT '0',
  `section` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`banId`,`section`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_banning_sections`
--

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

--
-- Table structure for table `tiki_blog_activity`
--

DROP TABLE IF EXISTS `tiki_blog_activity`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_blog_activity` (
  `blogId` int(8) NOT NULL DEFAULT '0',
  `day` int(14) NOT NULL DEFAULT '0',
  `posts` int(8) DEFAULT NULL,
  PRIMARY KEY (`blogId`,`day`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_blog_activity`
--

LOCK TABLES `tiki_blog_activity` WRITE;
/*!40000 ALTER TABLE `tiki_blog_activity` DISABLE KEYS */;
INSERT INTO `tiki_blog_activity` VALUES (1,1207371600,1);
/*!40000 ALTER TABLE `tiki_blog_activity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_blog_posts`
--

DROP TABLE IF EXISTS `tiki_blog_posts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_blog_posts` (
  `postId` int(8) NOT NULL AUTO_INCREMENT,
  `blogId` int(8) NOT NULL DEFAULT '0',
  `data` text,
  `data_size` int(11) unsigned NOT NULL DEFAULT '0',
  `created` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `trackbacks_to` text,
  `trackbacks_from` text,
  `title` varchar(80) DEFAULT NULL,
  `priv` char(1) DEFAULT NULL,
  PRIMARY KEY (`postId`),
  KEY `data` (`data`(255)),
  KEY `blogId` (`blogId`),
  KEY `created` (`created`),
  FULLTEXT KEY `ft` (`data`,`title`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_blog_posts`
--

LOCK TABLES `tiki_blog_posts` WRITE;
/*!40000 ALTER TABLE `tiki_blog_posts` DISABLE KEYS */;
INSERT INTO `tiki_blog_posts` VALUES (1,1,'Just cooking up some lamb mince to make a nice meal to sustain me through the practice session',0,1207388397,'admin','a:0:{}','a:0:{}','Abu Dhabi Grand Prix',NULL);
/*!40000 ALTER TABLE `tiki_blog_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_blog_posts_images`
--

DROP TABLE IF EXISTS `tiki_blog_posts_images`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_blog_posts_images` (
  `imgId` int(14) NOT NULL AUTO_INCREMENT,
  `postId` int(14) NOT NULL DEFAULT '0',
  `filename` varchar(80) DEFAULT NULL,
  `filetype` varchar(80) DEFAULT NULL,
  `filesize` int(14) DEFAULT NULL,
  `data` longblob,
  PRIMARY KEY (`imgId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_blog_posts_images`
--

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

--
-- Table structure for table `tiki_blogs`
--

DROP TABLE IF EXISTS `tiki_blogs`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_blogs` (
  `blogId` int(8) NOT NULL AUTO_INCREMENT,
  `created` int(14) DEFAULT NULL,
  `lastModif` int(14) DEFAULT NULL,
  `title` varchar(200) DEFAULT NULL,
  `description` text,
  `user` varchar(40) DEFAULT NULL,
  `public` char(1) DEFAULT NULL,
  `posts` int(8) DEFAULT NULL,
  `maxPosts` int(8) DEFAULT NULL,
  `hits` int(8) DEFAULT NULL,
  `activity` decimal(4,2) DEFAULT NULL,
  `heading` text,
  `use_find` char(1) DEFAULT NULL,
  `use_title` char(1) DEFAULT NULL,
  `add_date` char(1) DEFAULT NULL,
  `add_poster` char(1) DEFAULT NULL,
  `allow_comments` char(1) DEFAULT NULL,
  `show_avatar` char(1) DEFAULT NULL,
  PRIMARY KEY (`blogId`),
  KEY `title` (`title`),
  KEY `description` (`description`(255)),
  KEY `hits` (`hits`),
  FULLTEXT KEY `ft` (`title`,`description`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_blogs`
--

LOCK TABLES `tiki_blogs` WRITE;
/*!40000 ALTER TABLE `tiki_blogs` DISABLE KEYS */;
INSERT INTO `tiki_blogs` VALUES (1,1207388330,1207388397,'Testing Blogs','It\'s a Saturday thing','admin','n',1,10,2,'2.00','<div class=\"blogtitle\">{tr}Blog{/tr}: {$title}</div>\r\n<div class=\"blogdesc\">{tr}Description:{/tr} {$description}</div>\r\n<div class=\"bloginfo\">\r\n{tr}Created by{/tr} {$creator|userlink}{tr} on {/tr}{$created|tiki_short_datetime}<br />\r\n{tr}Last modified{/tr} {$lastModif|tiki_short_datetime}<br />\r\n<span style=\"float:right;\">\r\n		{if $tiki_p_blog_post eq \"y\"}\r\n		{if ($user and $creator eq $user) or $tiki_p_blog_admin eq \"y\" or $public eq \"y\"}\r\n		<a class=\"bloglink\" href=\"tiki-blog_post.php?blogId={$blogId}\"><img src=\'img/icons/edit.gif\' border=\'0\' alt=\'{tr}Post{/tr}\' title=\'{tr}post{/tr}\' /></a>\r\n		{/if}\r\n		{/if}\r\n		{if $rss_blog eq \"y\"}\r\n		<a class=\"bloglink\" href=\"tiki-blog_rss.php?blogId={$blogId}\"><img src=\'img/rss.png\' border=\'0\' alt=\'{tr}RSS feed{/tr}\' title=\'{tr}RSS feed{/tr}\' /></a>\r\n		{/if}\r\n		{if ($user and $creator eq $user) or $tiki_p_blog_admin eq \"y\"}\r\n		<a class=\"bloglink\" href=\"tiki-edit_blog.php?blogId={$blogId}\"><img src=\'img/icons/config.gif\' border=\'0\' alt=\'{tr}Edit blog{/tr}\' title=\'{tr}Edit blog{/tr}\' /></a>\r\n		{/if}\r\n		\r\n		{if $user and $feature_user_watches eq \'y\'}\r\n		{if $user_watching_blog eq \'n\'}\r\n		<a href=\"tiki-view_blog.php?blogId={$blogId}&amp;watch_event=blog_post&amp;watch_object={$blogId}&amp;watch_action=add\"><img border=\'0\' alt=\'{tr}monitor this blog{/tr}\' title=\'{tr}monitor this blog{/tr}\' src=\'img/icons/icon_watch.png\' /></a>\r\n		{else}\r\n		<a href=\"tiki-view_blog.php?blogId={$blogId}&amp;watch_event=blog_post&amp;watch_object={$blogId}&amp;watch_action=remove\"><img border=\'0\' alt=\'{tr}stop monitoring this blog{/tr}\' title=\'{tr}stop monitoring this blog{/tr}\' src=\'img/icons/icon_unwatch.png\' /></a>\r\n		{/if}\r\n		{/if}\r\n</span>\r\n({$posts} {tr}posts{/tr} | {$hits} {tr}visits{/tr} | {tr}Activity={/tr}{$activity|string_format:\"%.2f\"})\r\n</div>\r\n','y','y',NULL,NULL,'y','n');
/*!40000 ALTER TABLE `tiki_blogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_calendar_categories`
--

DROP TABLE IF EXISTS `tiki_calendar_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_calendar_categories` (
  `calcatId` int(11) NOT NULL AUTO_INCREMENT,
  `calendarId` int(14) NOT NULL DEFAULT '0',
  `name` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`calcatId`),
  UNIQUE KEY `catname` (`calendarId`,`name`(16))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_calendar_categories`
--

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

--
-- Table structure for table `tiki_calendar_items`
--

DROP TABLE IF EXISTS `tiki_calendar_items`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_calendar_items` (
  `calitemId` int(14) NOT NULL AUTO_INCREMENT,
  `calendarId` int(14) NOT NULL DEFAULT '0',
  `start` int(14) NOT NULL DEFAULT '0',
  `end` int(14) NOT NULL DEFAULT '0',
  `locationId` int(14) DEFAULT NULL,
  `categoryId` int(14) DEFAULT NULL,
  `nlId` int(12) NOT NULL DEFAULT '0',
  `priority` enum('1','2','3','4','5','6','7','8','9') NOT NULL DEFAULT '1',
  `status` enum('0','1','2') NOT NULL DEFAULT '0',
  `url` varchar(255) DEFAULT NULL,
  `lang` char(16) NOT NULL DEFAULT 'en',
  `name` varchar(255) NOT NULL DEFAULT '',
  `description` blob,
  `user` varchar(40) DEFAULT NULL,
  `created` int(14) NOT NULL DEFAULT '0',
  `lastmodif` int(14) NOT NULL DEFAULT '0',
  PRIMARY KEY (`calitemId`),
  KEY `calendarId` (`calendarId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_calendar_items`
--

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

--
-- Table structure for table `tiki_calendar_locations`
--

DROP TABLE IF EXISTS `tiki_calendar_locations`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_calendar_locations` (
  `callocId` int(14) NOT NULL AUTO_INCREMENT,
  `calendarId` int(14) NOT NULL DEFAULT '0',
  `name` varchar(255) NOT NULL DEFAULT '',
  `description` blob,
  PRIMARY KEY (`callocId`),
  UNIQUE KEY `locname` (`calendarId`,`name`(16))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_calendar_locations`
--

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

--
-- Table structure for table `tiki_calendar_roles`
--

DROP TABLE IF EXISTS `tiki_calendar_roles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_calendar_roles` (
  `calitemId` int(14) NOT NULL DEFAULT '0',
  `username` varchar(40) NOT NULL DEFAULT '',
  `role` enum('0','1','2','3','6') NOT NULL DEFAULT '0',
  PRIMARY KEY (`calitemId`,`username`(16),`role`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_calendar_roles`
--

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

--
-- Table structure for table `tiki_calendars`
--

DROP TABLE IF EXISTS `tiki_calendars`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_calendars` (
  `calendarId` int(14) NOT NULL AUTO_INCREMENT,
  `name` varchar(80) NOT NULL DEFAULT '',
  `description` varchar(255) DEFAULT NULL,
  `user` varchar(40) NOT NULL DEFAULT '',
  `customlocations` enum('n','y') NOT NULL DEFAULT 'n',
  `customcategories` enum('n','y') NOT NULL DEFAULT 'n',
  `customlanguages` enum('n','y') NOT NULL DEFAULT 'n',
  `custompriorities` enum('n','y') NOT NULL DEFAULT 'n',
  `customparticipants` enum('n','y') NOT NULL DEFAULT 'n',
  `customsubscription` enum('n','y') NOT NULL DEFAULT 'n',
  `created` int(14) NOT NULL DEFAULT '0',
  `lastmodif` int(14) NOT NULL DEFAULT '0',
  `personal` enum('n','y') NOT NULL DEFAULT 'n',
  PRIMARY KEY (`calendarId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_calendars`
--

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

--
-- Table structure for table `tiki_categories`
--

DROP TABLE IF EXISTS `tiki_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_categories` (
  `categId` int(12) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) DEFAULT NULL,
  `description` varchar(250) DEFAULT NULL,
  `parentId` int(12) DEFAULT NULL,
  `hits` int(8) DEFAULT NULL,
  PRIMARY KEY (`categId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_categories`
--

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

--
-- Table structure for table `tiki_categorized_objects`
--

DROP TABLE IF EXISTS `tiki_categorized_objects`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_categorized_objects` (
  `catObjectId` int(12) NOT NULL AUTO_INCREMENT,
  `type` varchar(50) DEFAULT NULL,
  `objId` varchar(255) DEFAULT NULL,
  `description` text,
  `created` int(14) DEFAULT NULL,
  `name` varchar(200) DEFAULT NULL,
  `href` varchar(200) DEFAULT NULL,
  `hits` int(8) DEFAULT NULL,
  PRIMARY KEY (`catObjectId`),
  KEY `type` (`type`,`objId`),
  KEY `type_2` (`type`,`objId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_categorized_objects`
--

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

--
-- Table structure for table `tiki_category_objects`
--

DROP TABLE IF EXISTS `tiki_category_objects`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_category_objects` (
  `catObjectId` int(12) NOT NULL DEFAULT '0',
  `categId` int(12) NOT NULL DEFAULT '0',
  PRIMARY KEY (`catObjectId`,`categId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_category_objects`
--

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

--
-- Table structure for table `tiki_category_sites`
--

DROP TABLE IF EXISTS `tiki_category_sites`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_category_sites` (
  `categId` int(10) NOT NULL DEFAULT '0',
  `siteId` int(14) NOT NULL DEFAULT '0',
  PRIMARY KEY (`categId`,`siteId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_category_sites`
--

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

--
-- Table structure for table `tiki_chart_items`
--

DROP TABLE IF EXISTS `tiki_chart_items`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_chart_items` (
  `itemId` int(14) NOT NULL AUTO_INCREMENT,
  `title` varchar(250) DEFAULT NULL,
  `description` text,
  `chartId` int(14) NOT NULL DEFAULT '0',
  `created` int(14) DEFAULT NULL,
  `URL` varchar(250) DEFAULT NULL,
  `votes` int(14) DEFAULT NULL,
  `points` int(14) DEFAULT NULL,
  `average` decimal(4,2) DEFAULT NULL,
  PRIMARY KEY (`itemId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_chart_items`
--

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

--
-- Table structure for table `tiki_charts`
--

DROP TABLE IF EXISTS `tiki_charts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_charts` (
  `chartId` int(14) NOT NULL AUTO_INCREMENT,
  `title` varchar(250) DEFAULT NULL,
  `description` text,
  `hits` int(14) DEFAULT NULL,
  `singleItemVotes` char(1) DEFAULT NULL,
  `singleChartVotes` char(1) DEFAULT NULL,
  `suggestions` char(1) DEFAULT NULL,
  `autoValidate` char(1) DEFAULT NULL,
  `topN` int(6) DEFAULT NULL,
  `maxVoteValue` int(4) DEFAULT NULL,
  `frequency` int(14) DEFAULT NULL,
  `showAverage` char(1) DEFAULT NULL,
  `isActive` char(1) DEFAULT NULL,
  `showVotes` char(1) DEFAULT NULL,
  `useCookies` char(1) DEFAULT NULL,
  `lastChart` int(14) DEFAULT NULL,
  `voteAgainAfter` int(14) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  PRIMARY KEY (`chartId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_charts`
--

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

--
-- Table structure for table `tiki_charts_rankings`
--

DROP TABLE IF EXISTS `tiki_charts_rankings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_charts_rankings` (
  `chartId` int(14) NOT NULL DEFAULT '0',
  `itemId` int(14) NOT NULL DEFAULT '0',
  `position` int(14) NOT NULL DEFAULT '0',
  `timestamp` int(14) NOT NULL DEFAULT '0',
  `lastPosition` int(14) NOT NULL DEFAULT '0',
  `period` int(14) NOT NULL DEFAULT '0',
  `rvotes` int(14) NOT NULL DEFAULT '0',
  `raverage` decimal(4,2) NOT NULL DEFAULT '0.00',
  PRIMARY KEY (`chartId`,`itemId`,`period`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_charts_rankings`
--

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

--
-- Table structure for table `tiki_charts_votes`
--

DROP TABLE IF EXISTS `tiki_charts_votes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_charts_votes` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `itemId` int(14) NOT NULL DEFAULT '0',
  `timestamp` int(14) DEFAULT NULL,
  `chartId` int(14) DEFAULT NULL,
  PRIMARY KEY (`user`,`itemId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_charts_votes`
--

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

--
-- Table structure for table `tiki_chat_channels`
--

DROP TABLE IF EXISTS `tiki_chat_channels`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_chat_channels` (
  `channelId` int(8) NOT NULL AUTO_INCREMENT,
  `name` varchar(30) DEFAULT NULL,
  `description` varchar(250) DEFAULT NULL,
  `max_users` int(8) DEFAULT NULL,
  `mode` char(1) DEFAULT NULL,
  `moderator` varchar(200) DEFAULT NULL,
  `active` char(1) DEFAULT NULL,
  `refresh` int(6) DEFAULT NULL,
  PRIMARY KEY (`channelId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_chat_channels`
--

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

--
-- Table structure for table `tiki_chat_messages`
--

DROP TABLE IF EXISTS `tiki_chat_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_chat_messages` (
  `messageId` int(8) NOT NULL AUTO_INCREMENT,
  `channelId` int(8) NOT NULL DEFAULT '0',
  `data` varchar(255) DEFAULT NULL,
  `poster` varchar(200) NOT NULL DEFAULT 'anonymous',
  `timestamp` int(14) DEFAULT NULL,
  PRIMARY KEY (`messageId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_chat_messages`
--

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

--
-- Table structure for table `tiki_chat_users`
--

DROP TABLE IF EXISTS `tiki_chat_users`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_chat_users` (
  `nickname` varchar(200) NOT NULL DEFAULT '',
  `channelId` int(8) NOT NULL DEFAULT '0',
  `timestamp` int(14) DEFAULT NULL,
  PRIMARY KEY (`nickname`,`channelId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_chat_users`
--

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

--
-- Table structure for table `tiki_comments`
--

DROP TABLE IF EXISTS `tiki_comments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_comments` (
  `threadId` int(14) NOT NULL AUTO_INCREMENT,
  `object` varchar(255) NOT NULL DEFAULT '',
  `objectType` varchar(32) NOT NULL DEFAULT '',
  `parentId` int(14) DEFAULT NULL,
  `userName` varchar(40) DEFAULT NULL,
  `commentDate` int(14) DEFAULT NULL,
  `hits` int(8) DEFAULT NULL,
  `type` char(1) DEFAULT NULL,
  `points` decimal(8,2) DEFAULT NULL,
  `votes` int(8) DEFAULT NULL,
  `average` decimal(8,4) DEFAULT NULL,
  `title` varchar(100) DEFAULT NULL,
  `data` text,
  `hash` varchar(32) DEFAULT NULL,
  `user_ip` varchar(15) DEFAULT NULL,
  `summary` varchar(240) DEFAULT NULL,
  `smiley` varchar(80) DEFAULT NULL,
  `message_id` varchar(250) DEFAULT NULL,
  `in_reply_to` varchar(250) DEFAULT NULL,
  `comment_rating` tinyint(2) DEFAULT NULL,
  PRIMARY KEY (`threadId`),
  KEY `title` (`title`),
  KEY `data` (`data`(255)),
  KEY `hits` (`hits`),
  KEY `tc_pi` (`parentId`),
  KEY `objectType` (`object`,`objectType`),
  KEY `commentDate` (`commentDate`),
  FULLTEXT KEY `ft` (`title`,`data`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_comments`
--

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

--
-- Table structure for table `tiki_content`
--

DROP TABLE IF EXISTS `tiki_content`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_content` (
  `contentId` int(8) NOT NULL AUTO_INCREMENT,
  `description` text,
  PRIMARY KEY (`contentId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_content`
--

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

--
-- Table structure for table `tiki_content_templates`
--

DROP TABLE IF EXISTS `tiki_content_templates`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_content_templates` (
  `templateId` int(10) NOT NULL AUTO_INCREMENT,
  `content` longblob,
  `name` varchar(200) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  PRIMARY KEY (`templateId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_content_templates`
--

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

--
-- Table structure for table `tiki_content_templates_sections`
--

DROP TABLE IF EXISTS `tiki_content_templates_sections`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_content_templates_sections` (
  `templateId` int(10) NOT NULL DEFAULT '0',
  `section` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`templateId`,`section`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_content_templates_sections`
--

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

--
-- Table structure for table `tiki_cookies`
--

DROP TABLE IF EXISTS `tiki_cookies`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_cookies` (
  `cookieId` int(10) NOT NULL AUTO_INCREMENT,
  `cookie` text,
  PRIMARY KEY (`cookieId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_cookies`
--

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

--
-- Table structure for table `tiki_copyrights`
--

DROP TABLE IF EXISTS `tiki_copyrights`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_copyrights` (
  `copyrightId` int(12) NOT NULL AUTO_INCREMENT,
  `page` varchar(200) DEFAULT NULL,
  `title` varchar(200) DEFAULT NULL,
  `year` int(11) DEFAULT NULL,
  `authors` varchar(200) DEFAULT NULL,
  `copyright_order` int(11) DEFAULT NULL,
  `userName` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`copyrightId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_copyrights`
--

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

--
-- Table structure for table `tiki_directory_categories`
--

DROP TABLE IF EXISTS `tiki_directory_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_directory_categories` (
  `categId` int(10) NOT NULL AUTO_INCREMENT,
  `parent` int(10) DEFAULT NULL,
  `name` varchar(240) DEFAULT NULL,
  `description` text,
  `childrenType` char(1) DEFAULT NULL,
  `sites` int(10) DEFAULT NULL,
  `viewableChildren` int(4) DEFAULT NULL,
  `allowSites` char(1) DEFAULT NULL,
  `showCount` char(1) DEFAULT NULL,
  `editorGroup` varchar(200) DEFAULT NULL,
  `hits` int(12) DEFAULT NULL,
  PRIMARY KEY (`categId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_directory_categories`
--

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

--
-- Table structure for table `tiki_directory_search`
--

DROP TABLE IF EXISTS `tiki_directory_search`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_directory_search` (
  `term` varchar(250) NOT NULL DEFAULT '',
  `hits` int(14) DEFAULT NULL,
  PRIMARY KEY (`term`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_directory_search`
--

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

--
-- Table structure for table `tiki_directory_sites`
--

DROP TABLE IF EXISTS `tiki_directory_sites`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_directory_sites` (
  `siteId` int(14) NOT NULL AUTO_INCREMENT,
  `name` varchar(240) DEFAULT NULL,
  `description` text,
  `url` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `hits` int(12) DEFAULT NULL,
  `isValid` char(1) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `lastModif` int(14) DEFAULT NULL,
  `cache` longblob,
  `cache_timestamp` int(14) DEFAULT NULL,
  PRIMARY KEY (`siteId`),
  FULLTEXT KEY `ft` (`name`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_directory_sites`
--

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

--
-- Table structure for table `tiki_download`
--

DROP TABLE IF EXISTS `tiki_download`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_download` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `object` varchar(255) NOT NULL DEFAULT '',
  `userId` int(8) NOT NULL DEFAULT '0',
  `type` varchar(20) NOT NULL DEFAULT '',
  `date` int(14) NOT NULL DEFAULT '0',
  `IP` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `object` (`object`,`userId`,`type`),
  KEY `userId` (`userId`),
  KEY `type` (`type`),
  KEY `date` (`date`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_download`
--

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

--
-- Table structure for table `tiki_drawings`
--

DROP TABLE IF EXISTS `tiki_drawings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_drawings` (
  `drawId` int(12) NOT NULL AUTO_INCREMENT,
  `version` int(8) DEFAULT NULL,
  `name` varchar(250) DEFAULT NULL,
  `filename_draw` varchar(250) DEFAULT NULL,
  `filename_pad` varchar(250) DEFAULT NULL,
  `timestamp` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`drawId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_drawings`
--

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

--
-- Table structure for table `tiki_dsn`
--

DROP TABLE IF EXISTS `tiki_dsn`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_dsn` (
  `dsnId` int(12) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `dsn` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`dsnId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_dsn`
--

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

--
-- Table structure for table `tiki_dynamic_variables`
--

DROP TABLE IF EXISTS `tiki_dynamic_variables`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_dynamic_variables` (
  `name` varchar(40) NOT NULL DEFAULT '',
  `data` text,
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_dynamic_variables`
--

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

--
-- Table structure for table `tiki_eph`
--

DROP TABLE IF EXISTS `tiki_eph`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_eph` (
  `ephId` int(12) NOT NULL AUTO_INCREMENT,
  `title` varchar(250) DEFAULT NULL,
  `isFile` char(1) DEFAULT NULL,
  `filename` varchar(250) DEFAULT NULL,
  `filetype` varchar(250) DEFAULT NULL,
  `filesize` varchar(250) DEFAULT NULL,
  `data` longblob,
  `textdata` longblob,
  `publish` int(14) DEFAULT NULL,
  `hits` int(10) DEFAULT NULL,
  PRIMARY KEY (`ephId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_eph`
--

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

--
-- Table structure for table `tiki_extwiki`
--

DROP TABLE IF EXISTS `tiki_extwiki`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_extwiki` (
  `extwikiId` int(12) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `extwiki` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`extwikiId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_extwiki`
--

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

--
-- Table structure for table `tiki_faq_questions`
--

DROP TABLE IF EXISTS `tiki_faq_questions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_faq_questions` (
  `questionId` int(10) NOT NULL AUTO_INCREMENT,
  `faqId` int(10) DEFAULT NULL,
  `position` int(4) DEFAULT NULL,
  `question` text,
  `answer` text,
  PRIMARY KEY (`questionId`),
  KEY `faqId` (`faqId`),
  KEY `question` (`question`(255)),
  KEY `answer` (`answer`(255)),
  FULLTEXT KEY `ft` (`question`,`answer`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_faq_questions`
--

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

--
-- Table structure for table `tiki_faqs`
--

DROP TABLE IF EXISTS `tiki_faqs`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_faqs` (
  `faqId` int(10) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) DEFAULT NULL,
  `description` text,
  `created` int(14) DEFAULT NULL,
  `questions` int(5) DEFAULT NULL,
  `hits` int(8) DEFAULT NULL,
  `canSuggest` char(1) DEFAULT NULL,
  PRIMARY KEY (`faqId`),
  KEY `title` (`title`),
  KEY `description` (`description`(255)),
  KEY `hits` (`hits`),
  FULLTEXT KEY `ft` (`title`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_faqs`
--

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

--
-- Table structure for table `tiki_featured_links`
--

DROP TABLE IF EXISTS `tiki_featured_links`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_featured_links` (
  `url` varchar(200) NOT NULL DEFAULT '',
  `title` varchar(200) DEFAULT NULL,
  `description` text,
  `hits` int(8) DEFAULT NULL,
  `position` int(6) DEFAULT NULL,
  `type` char(1) DEFAULT NULL,
  PRIMARY KEY (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_featured_links`
--

LOCK TABLES `tiki_featured_links` WRITE;
/*!40000 ALTER TABLE `tiki_featured_links` DISABLE KEYS */;
INSERT INTO `tiki_featured_links` VALUES ('http://www.caring4dogs.com','Caring For Dogs','',0,1,'n');
/*!40000 ALTER TABLE `tiki_featured_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_file_galleries`
--

DROP TABLE IF EXISTS `tiki_file_galleries`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_file_galleries` (
  `galleryId` int(14) NOT NULL AUTO_INCREMENT,
  `name` varchar(80) NOT NULL DEFAULT '',
  `description` text,
  `created` int(14) DEFAULT NULL,
  `visible` char(1) DEFAULT NULL,
  `lastModif` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `hits` int(14) DEFAULT NULL,
  `votes` int(8) DEFAULT NULL,
  `points` decimal(8,2) DEFAULT NULL,
  `maxRows` int(10) DEFAULT NULL,
  `public` char(1) DEFAULT NULL,
  `show_id` char(1) DEFAULT NULL,
  `show_icon` char(1) DEFAULT NULL,
  `show_name` char(1) DEFAULT NULL,
  `show_size` char(1) DEFAULT NULL,
  `show_description` char(1) DEFAULT NULL,
  `max_desc` int(8) DEFAULT NULL,
  `show_created` char(1) DEFAULT NULL,
  `show_dl` char(1) DEFAULT NULL,
  PRIMARY KEY (`galleryId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_file_galleries`
--

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

--
-- Table structure for table `tiki_file_handlers`
--

DROP TABLE IF EXISTS `tiki_file_handlers`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_file_handlers` (
  `mime_type` varchar(64) DEFAULT NULL,
  `cmd` varchar(238) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_file_handlers`
--

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

--
-- Table structure for table `tiki_files`
--

DROP TABLE IF EXISTS `tiki_files`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_files` (
  `fileId` int(14) NOT NULL AUTO_INCREMENT,
  `galleryId` int(14) NOT NULL DEFAULT '0',
  `name` varchar(200) NOT NULL DEFAULT '',
  `description` text,
  `created` int(14) DEFAULT NULL,
  `filename` varchar(80) DEFAULT NULL,
  `filesize` int(14) DEFAULT NULL,
  `filetype` varchar(250) DEFAULT NULL,
  `data` longblob,
  `user` varchar(40) DEFAULT NULL,
  `downloads` int(14) DEFAULT NULL,
  `votes` int(8) DEFAULT NULL,
  `points` decimal(8,2) DEFAULT NULL,
  `path` varchar(255) DEFAULT NULL,
  `reference_url` varchar(250) DEFAULT NULL,
  `is_reference` char(1) DEFAULT NULL,
  `hash` varchar(32) DEFAULT NULL,
  `search_data` longtext,
  `lastModif` int(14) DEFAULT NULL,
  `lastModifUser` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`fileId`),
  KEY `name` (`name`),
  KEY `description` (`description`(255)),
  KEY `downloads` (`downloads`),
  FULLTEXT KEY `ft` (`name`,`description`,`search_data`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_files`
--

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

--
-- Table structure for table `tiki_forum_attachments`
--

DROP TABLE IF EXISTS `tiki_forum_attachments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_forum_attachments` (
  `attId` int(14) NOT NULL AUTO_INCREMENT,
  `threadId` int(14) NOT NULL DEFAULT '0',
  `qId` int(14) NOT NULL DEFAULT '0',
  `forumId` int(14) DEFAULT NULL,
  `filename` varchar(250) DEFAULT NULL,
  `filetype` varchar(250) DEFAULT NULL,
  `filesize` int(12) DEFAULT NULL,
  `data` longblob,
  `dir` varchar(200) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `path` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`attId`),
  KEY `threadId` (`threadId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_forum_attachments`
--

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

--
-- Table structure for table `tiki_forum_reads`
--

DROP TABLE IF EXISTS `tiki_forum_reads`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_forum_reads` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `threadId` int(14) NOT NULL DEFAULT '0',
  `forumId` int(14) DEFAULT NULL,
  `timestamp` int(14) DEFAULT NULL,
  PRIMARY KEY (`user`,`threadId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_forum_reads`
--

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

--
-- Table structure for table `tiki_forums`
--

DROP TABLE IF EXISTS `tiki_forums`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_forums` (
  `forumId` int(8) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) DEFAULT NULL,
  `description` text,
  `created` int(14) DEFAULT NULL,
  `lastPost` int(14) DEFAULT NULL,
  `threads` int(8) DEFAULT NULL,
  `comments` int(8) DEFAULT NULL,
  `controlFlood` char(1) DEFAULT NULL,
  `floodInterval` int(8) DEFAULT NULL,
  `moderator` varchar(200) DEFAULT NULL,
  `hits` int(8) DEFAULT NULL,
  `mail` varchar(200) DEFAULT NULL,
  `useMail` char(1) DEFAULT NULL,
  `section` varchar(200) DEFAULT NULL,
  `usePruneUnreplied` char(1) DEFAULT NULL,
  `pruneUnrepliedAge` int(8) DEFAULT NULL,
  `usePruneOld` char(1) DEFAULT NULL,
  `pruneMaxAge` int(8) DEFAULT NULL,
  `topicsPerPage` int(6) DEFAULT NULL,
  `topicOrdering` varchar(100) DEFAULT NULL,
  `threadOrdering` varchar(100) DEFAULT NULL,
  `att` varchar(80) DEFAULT NULL,
  `att_store` varchar(4) DEFAULT NULL,
  `att_store_dir` varchar(250) DEFAULT NULL,
  `att_max_size` int(12) DEFAULT NULL,
  `ui_level` char(1) DEFAULT NULL,
  `forum_password` varchar(32) DEFAULT NULL,
  `forum_use_password` char(1) DEFAULT NULL,
  `moderator_group` varchar(200) DEFAULT NULL,
  `approval_type` varchar(20) DEFAULT NULL,
  `outbound_address` varchar(250) DEFAULT NULL,
  `outbound_mails_for_inbound_mails` char(1) DEFAULT NULL,
  `outbound_mails_reply_link` char(1) DEFAULT NULL,
  `outbound_from` varchar(250) DEFAULT NULL,
  `inbound_pop_server` varchar(250) DEFAULT NULL,
  `inbound_pop_port` int(4) DEFAULT NULL,
  `inbound_pop_user` varchar(200) DEFAULT NULL,
  `inbound_pop_password` varchar(80) DEFAULT NULL,
  `topic_smileys` char(1) DEFAULT NULL,
  `ui_avatar` char(1) DEFAULT NULL,
  `ui_flag` char(1) DEFAULT NULL,
  `ui_posts` char(1) DEFAULT NULL,
  `ui_email` char(1) DEFAULT NULL,
  `ui_online` char(1) DEFAULT NULL,
  `topic_summary` char(1) DEFAULT NULL,
  `show_description` char(1) DEFAULT NULL,
  `topics_list_replies` char(1) DEFAULT NULL,
  `topics_list_reads` char(1) DEFAULT NULL,
  `topics_list_pts` char(1) DEFAULT NULL,
  `topics_list_lastpost` char(1) DEFAULT NULL,
  `topics_list_author` char(1) DEFAULT NULL,
  `vote_threads` char(1) DEFAULT NULL,
  `forum_last_n` int(2) DEFAULT '0',
  PRIMARY KEY (`forumId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_forums`
--

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

--
-- Table structure for table `tiki_forums_queue`
--

DROP TABLE IF EXISTS `tiki_forums_queue`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_forums_queue` (
  `qId` int(14) NOT NULL AUTO_INCREMENT,
  `object` varchar(32) DEFAULT NULL,
  `parentId` int(14) DEFAULT NULL,
  `forumId` int(14) DEFAULT NULL,
  `timestamp` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `title` varchar(240) DEFAULT NULL,
  `data` text,
  `type` varchar(60) DEFAULT NULL,
  `hash` varchar(32) DEFAULT NULL,
  `topic_smiley` varchar(80) DEFAULT NULL,
  `topic_title` varchar(240) DEFAULT NULL,
  `summary` varchar(240) DEFAULT NULL,
  PRIMARY KEY (`qId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_forums_queue`
--

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

--
-- Table structure for table `tiki_forums_reported`
--

DROP TABLE IF EXISTS `tiki_forums_reported`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_forums_reported` (
  `threadId` int(12) NOT NULL DEFAULT '0',
  `forumId` int(12) NOT NULL DEFAULT '0',
  `parentId` int(12) NOT NULL DEFAULT '0',
  `user` varchar(40) DEFAULT NULL,
  `timestamp` int(14) DEFAULT NULL,
  `reason` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`threadId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_forums_reported`
--

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

--
-- Table structure for table `tiki_friends`
--

DROP TABLE IF EXISTS `tiki_friends`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_friends` (
  `user` char(40) NOT NULL DEFAULT '',
  `friend` char(40) NOT NULL DEFAULT '',
  PRIMARY KEY (`user`,`friend`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_friends`
--

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

--
-- Table structure for table `tiki_friendship_requests`
--

DROP TABLE IF EXISTS `tiki_friendship_requests`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_friendship_requests` (
  `userFrom` char(40) NOT NULL DEFAULT '',
  `userTo` char(40) NOT NULL DEFAULT '',
  `tstamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`userFrom`,`userTo`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_friendship_requests`
--

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

--
-- Table structure for table `tiki_galleries`
--

DROP TABLE IF EXISTS `tiki_galleries`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_galleries` (
  `galleryId` int(14) NOT NULL AUTO_INCREMENT,
  `name` varchar(80) NOT NULL DEFAULT '',
  `description` text,
  `created` int(14) DEFAULT NULL,
  `lastModif` int(14) DEFAULT NULL,
  `visible` char(1) DEFAULT NULL,
  `geographic` char(1) DEFAULT NULL,
  `theme` varchar(60) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `hits` int(14) DEFAULT NULL,
  `maxRows` int(10) DEFAULT NULL,
  `rowImages` int(10) DEFAULT NULL,
  `thumbSizeX` int(10) DEFAULT NULL,
  `thumbSizeY` int(10) DEFAULT NULL,
  `public` char(1) DEFAULT NULL,
  `sortorder` varchar(20) NOT NULL DEFAULT 'created',
  `sortdirection` varchar(4) NOT NULL DEFAULT 'desc',
  `galleryimage` varchar(20) NOT NULL DEFAULT 'first',
  `parentgallery` int(14) NOT NULL DEFAULT '-1',
  `showname` char(1) NOT NULL DEFAULT 'y',
  `showimageid` char(1) NOT NULL DEFAULT 'n',
  `showdescription` char(1) NOT NULL DEFAULT 'n',
  `showcreated` char(1) NOT NULL DEFAULT 'n',
  `showuser` char(1) NOT NULL DEFAULT 'n',
  `showhits` char(1) NOT NULL DEFAULT 'y',
  `showxysize` char(1) NOT NULL DEFAULT 'y',
  `showfilesize` char(1) NOT NULL DEFAULT 'n',
  `showfilename` char(1) NOT NULL DEFAULT 'n',
  `defaultscale` varchar(10) NOT NULL DEFAULT 'o',
  PRIMARY KEY (`galleryId`),
  KEY `name` (`name`),
  KEY `description` (`description`(255)),
  KEY `hits` (`hits`),
  KEY `parentgallery` (`parentgallery`),
  KEY `visibleUser` (`visible`,`user`),
  FULLTEXT KEY `ft` (`name`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_galleries`
--

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

--
-- Table structure for table `tiki_galleries_scales`
--

DROP TABLE IF EXISTS `tiki_galleries_scales`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_galleries_scales` (
  `galleryId` int(14) NOT NULL DEFAULT '0',
  `scale` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`galleryId`,`scale`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_galleries_scales`
--

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

--
-- Table structure for table `tiki_games`
--

DROP TABLE IF EXISTS `tiki_games`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_games` (
  `gameName` varchar(200) NOT NULL DEFAULT '',
  `hits` int(8) DEFAULT NULL,
  `votes` int(8) DEFAULT NULL,
  `points` int(8) DEFAULT NULL,
  PRIMARY KEY (`gameName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_games`
--

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

--
-- Table structure for table `tiki_group_inclusion`
--

DROP TABLE IF EXISTS `tiki_group_inclusion`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_group_inclusion` (
  `groupName` varchar(255) NOT NULL DEFAULT '',
  `includeGroup` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`groupName`(30),`includeGroup`(30))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_group_inclusion`
--

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

--
-- Table structure for table `tiki_history`
--

DROP TABLE IF EXISTS `tiki_history`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_history` (
  `pageName` varchar(160) NOT NULL DEFAULT '',
  `version` int(8) NOT NULL DEFAULT '0',
  `version_minor` int(8) NOT NULL DEFAULT '0',
  `lastModif` int(14) DEFAULT NULL,
  `description` varchar(200) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `ip` varchar(15) DEFAULT NULL,
  `comment` varchar(200) DEFAULT NULL,
  `data` longblob,
  PRIMARY KEY (`pageName`,`version`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_history`
--

LOCK TABLES `tiki_history` WRITE;
/*!40000 ALTER TABLE `tiki_history` DISABLE KEYS */;
INSERT INTO `tiki_history` VALUES ('HomePage',1,0,1207250332,'','admin','0.0.0.0','Tiki initialization',''),('liver disease',1,0,1207250727,'','admin','82.3.232.237','','This page will be about liver disease'),('HomePage',2,0,1207250702,'','admin','82.3.232.237','','Just playing around with things for now.\r\n\r\n((liver disease))'),('ToiletTraining',1,0,1207339091,'','admin','82.2.125.102','','Homepage'),('liver disease',2,0,1207334080,'','admin','82.2.125.102','','This page will be about liver disease\r\n\r\nblah  blah bla\r\n\r\nooh ooh ohh\r\n\r\ngurgle gurgle\r\n'),('liver disease',3,0,1207339143,'','admin','82.2.125.102','','This page will be about liver disease\r\n\r\nblah  blah bla\r\n\r\nooh ooh ohh\r\n\r\ngurgle gurgle\r\n\r\nHomepage'),('DogTraining',1,0,1207338980,'','admin','82.2.125.102','','A page about dog training\r\n\r\nwe\'ll discuss ToiletTraining\r\n');
/*!40000 ALTER TABLE `tiki_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_hotwords`
--

DROP TABLE IF EXISTS `tiki_hotwords`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_hotwords` (
  `word` varchar(40) NOT NULL DEFAULT '',
  `url` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`word`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_hotwords`
--

LOCK TABLES `tiki_hotwords` WRITE;
/*!40000 ALTER TABLE `tiki_hotwords` DISABLE KEYS */;
INSERT INTO `tiki_hotwords` VALUES ('Dog Potty Training','http://ifeelgood.pettrng.hop.clickbank.net/?tid=dpt');
/*!40000 ALTER TABLE `tiki_hotwords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_html_pages`
--

DROP TABLE IF EXISTS `tiki_html_pages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_html_pages` (
  `pageName` varchar(200) NOT NULL DEFAULT '',
  `content` longblob,
  `refresh` int(10) DEFAULT NULL,
  `type` char(1) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  PRIMARY KEY (`pageName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_html_pages`
--

LOCK TABLES `tiki_html_pages` WRITE;
/*!40000 ALTER TABLE `tiki_html_pages` DISABLE KEYS */;
INSERT INTO `tiki_html_pages` VALUES ('Dog Potty Training','<table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n      <tr>\r\n        <td id=\"banner\" background=\"images/fit_18_2.jpg\" width=\"760\" height=\"113\" valign=\"top\">\r\n          <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n            <tr>\r\n              <td>\r\n                <div>\r\n                  <div id=\"header\">\r\n                    <div style=\"text-align: left; font-weight: bold; font-family: Comic Sans MS;\">\r\n                      <span><font size=\"6\">House Breaking For Dogs And Puppies</font></span>\r\n                    </div>\r\n                  </div>\r\n                </div>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n      <tr>\r\n        \r\n      </tr>\r\n    </table>\r\n    <table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n      <tr bgcolor=\"white\">\r\n         <td valign=\"top\">\r\n          <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"10\">\r\n            <tr>\r\n              <td style=\"width:100%;\">\r\n                <div id=\"content\"></div>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n      <tr bgcolor=\"white\">\r\n        <td colspan=\"2\">\r\n          <table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"bottom\" bgcolor=\"white\">\r\n            <tr>\r\n              <td align=\"center\">\r\n                <div>\r\n                  <div id=\"footer\">\r\n                    <span><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"red\"><strong>Housebreak Your Dog Or Puppy Without Stress Or Worry.<br> Step-by-Step Guide Teaches You How To Potty Train / Housetrain Your Dog</strong></font>\r\n                    <br></span>\r\n                  </div>\r\n                </div>\r\n              </td>\r\n            </tr> \r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n	<table width=\"760\" border=\"0\" border:thin black border-style : dashed align=\"center\" cellpadding=\"5\" bordercolor=\"#000000\" bgcolor=\"white\">\r\n        <tr> \r\n          <td height=\"376\"><p align=\"center\"><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"blue\"><strong>Got a housebreaking problem with an adult dog or a new puppy? Not sure how to start teaching your pet the essentials of potty training / housetraining?</strong></font><br><br><font size=\"6\" face=\"Times New Roman, Times, serif\" color=\"red\"><strong>Don\'t panic!!</strong></font><br><br><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"blue\"><strong>House Breaking your adult dog or puppy is easy when you know how.<br><br>Start NOW by reading our <a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\">FREE REPORT</a></strong></font></p>\r\n            <table align=\"center\" bgcolor=\"#000000\" bordercolor=\"#000000\" cellpadding=\"5\" width=\"199\">\r\n<tbody><tr>\r\n<td bgcolor=\"#ffffff\"> <table width=\"100%\">\r\n<tbody><tr>\r\n<td><div align=\"left\"><strong><font color=\"#ff0000\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\"><img src=\"doghousebreaking/free-doghousebreaking-report.jpg\" height=\"258\" width=\"200\"></a></strong></div></td>\r\n</tr>\r\n</tbody></table>\r\n<p align=\"center\"><strong><font color=\"#FF0000\" size=\"3\">DOWNLOAD FREE\r\n!!</font></strong></p>\r\n<p align=\"justify\">Download the 13-page Free Report on How\r\nto Quickly and Easily Housebreak your puppy, adult\r\nor older dog. Learn about crate, paper, litter box\r\nand outdoor training and lots more...</p>\r\n<p align=\"center\"><a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\">Download\r\nthe Free Report And Start Potty Training Your Dog, TODAY!</a></p></td>\r\n</tr>\r\n</tbody></table></td>\r\n        </tr>\r\n		<tr><td><div align=\"center\"><strong><font color=\"#ff0000\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><a href=\"http://ifeelgood.pettrng.hop.clickbank.net/?tid=dhb\">CLICK HERE TO LEARN MORE</a></strong></div></td></tr>\r\n      </table>\r\n	 <table width=\"760\" align=\"center\" cellpadding=\"5\">\r\n      <tr>\r\n        <td align=\"center\" valign=\"middle\">\r\n          <div id=\"sr_affiliate\">\r\n            <a href=\"http://www.siterubix.com/?a_aid=f3Q5Xt4D\" target=\"_blank\">Site Generated By SiteRubix</a>\r\n          </div>\r\n        </td>\r\n      </tr>\r\n    </table>	 ',0,'s',1207340702),('Dog-Potty-Training','<table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n      <tr>\r\n        <td id=\"banner\" background=\"images/fit_18_2.jpg\" width=\"760\" height=\"113\" valign=\"top\">\r\n          <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n            <tr>\r\n              <td>\r\n                <div>\r\n                  <div id=\"header\">\r\n                    <div style=\"text-align: left; font-weight: bold; font-family: Comic Sans MS;\">\r\n                      <span><font size=\"6\">House Breaking For Dogs And Puppies</font></span>\r\n                    </div>\r\n                  </div>\r\n                </div>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n      <tr>\r\n        \r\n      </tr>\r\n    </table>\r\n    <table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n      <tr bgcolor=\"white\">\r\n         <td valign=\"top\">\r\n          <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"10\">\r\n            <tr>\r\n              <td style=\"width:100%;\">\r\n                <div id=\"content\"></div>\r\n              </td>\r\n            </tr>\r\n          </table>\r\n        </td>\r\n      </tr>\r\n      <tr bgcolor=\"white\">\r\n        <td colspan=\"2\">\r\n          <table width=\"760\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"bottom\" bgcolor=\"white\">\r\n            <tr>\r\n              <td align=\"center\">\r\n                <div>\r\n                  <div id=\"footer\">\r\n                    <span><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"red\"><strong>Housebreak Your Dog Or Puppy Without Stress Or Worry.<br> Step-by-Step Guide Teaches You How To Potty Train / Housetrain Your Dog</strong></font>\r\n                    <br></span>\r\n                  </div>\r\n                </div>\r\n              </td>\r\n            </tr> \r\n          </table>\r\n        </td>\r\n      </tr>\r\n    </table>\r\n	<table width=\"760\" border=\"0\" border:thin black border-style : dashed align=\"center\" cellpadding=\"5\" bordercolor=\"#000000\" bgcolor=\"white\">\r\n        <tr> \r\n          <td height=\"376\"><p align=\"center\"><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"blue\"><strong>Got a housebreaking problem with an adult dog or a new puppy? Not sure how to start teaching your pet the essentials of potty training / housetraining?</strong></font><br><br><font size=\"6\" face=\"Times New Roman, Times, serif\" color=\"red\"><strong>Don\'t panic!!</strong></font><br><br><font size=\"5\" face=\"Times New Roman, Times, serif\" color=\"blue\"><strong>House Breaking your adult dog or puppy is easy when you know how.<br><br>Start NOW by reading our <a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\">FREE REPORT</a></strong></font></p>\r\n            <table align=\"center\" bgcolor=\"#000000\" bordercolor=\"#000000\" cellpadding=\"5\" width=\"199\">\r\n<tbody><tr>\r\n<td bgcolor=\"#ffffff\"> <table width=\"100%\">\r\n<tbody><tr>\r\n<td><div align=\"left\"><strong><font color=\"#ff0000\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\"><img src=\"doghousebreaking/free-doghousebreaking-report.jpg\" height=\"258\" width=\"200\"></a></strong></div></td>\r\n</tr>\r\n</tbody></table>\r\n<p align=\"center\"><strong><font color=\"#FF0000\" size=\"3\">DOWNLOAD FREE\r\n!!</font></strong></p>\r\n<p align=\"justify\">Download the 13-page Free Report on How\r\nto Quickly and Easily Housebreak your puppy, adult\r\nor older dog. Learn about crate, paper, litter box\r\nand outdoor training and lots more...</p>\r\n<p align=\"center\"><a href=\"doghousebreaking/housebreakingyourdog-freereport.pdf\">Download\r\nthe Free Report And Start Potty Training Your Dog, TODAY!</a></p></td>\r\n</tr>\r\n</tbody></table></td>\r\n        </tr>\r\n		<tr><td><div align=\"center\"><strong><font color=\"#ff0000\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><a href=\"http://ifeelgood.pettrng.hop.clickbank.net/?tid=dhb\">CLICK HERE TO LEARN MORE</a></strong></div></td></tr>\r\n      </table>\r\n	 <table width=\"760\" align=\"center\" cellpadding=\"5\">\r\n      <tr>\r\n        <td align=\"center\" valign=\"middle\">\r\n          <div id=\"sr_affiliate\">\r\n            <a href=\"http://www.siterubix.com/?a_aid=f3Q5Xt4D\" target=\"_blank\">Site Generated By SiteRubix</a>\r\n          </div>\r\n        </td>\r\n      </tr>\r\n    </table>	 ',0,'s',1207340774);
/*!40000 ALTER TABLE `tiki_html_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_html_pages_dynamic_zones`
--

DROP TABLE IF EXISTS `tiki_html_pages_dynamic_zones`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_html_pages_dynamic_zones` (
  `pageName` varchar(40) NOT NULL DEFAULT '',
  `zone` varchar(80) NOT NULL DEFAULT '',
  `type` char(2) DEFAULT NULL,
  `content` text,
  PRIMARY KEY (`pageName`,`zone`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_html_pages_dynamic_zones`
--

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

--
-- Table structure for table `tiki_images`
--

DROP TABLE IF EXISTS `tiki_images`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_images` (
  `imageId` int(14) NOT NULL AUTO_INCREMENT,
  `galleryId` int(14) NOT NULL DEFAULT '0',
  `name` varchar(200) NOT NULL DEFAULT '',
  `description` text,
  `lon` float DEFAULT NULL,
  `lat` float DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `hits` int(14) DEFAULT NULL,
  `path` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`imageId`),
  KEY `name` (`name`),
  KEY `description` (`description`(255)),
  KEY `hits` (`hits`),
  KEY `ti_gId` (`galleryId`),
  KEY `ti_cr` (`created`),
  KEY `ti_us` (`user`),
  FULLTEXT KEY `ft` (`name`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_images`
--

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

--
-- Table structure for table `tiki_images_data`
--

DROP TABLE IF EXISTS `tiki_images_data`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_images_data` (
  `imageId` int(14) NOT NULL DEFAULT '0',
  `xsize` int(8) NOT NULL DEFAULT '0',
  `ysize` int(8) NOT NULL DEFAULT '0',
  `type` char(1) NOT NULL DEFAULT '',
  `filesize` int(14) DEFAULT NULL,
  `filetype` varchar(80) DEFAULT NULL,
  `filename` varchar(80) DEFAULT NULL,
  `data` longblob,
  `etag` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`imageId`,`xsize`,`ysize`,`type`),
  KEY `t_i_d_it` (`imageId`,`type`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_images_data`
--

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

--
-- Table structure for table `tiki_integrator_reps`
--

DROP TABLE IF EXISTS `tiki_integrator_reps`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_integrator_reps` (
  `repID` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `path` varchar(255) NOT NULL DEFAULT '',
  `start_page` varchar(255) NOT NULL DEFAULT '',
  `css_file` varchar(255) NOT NULL DEFAULT '',
  `visibility` char(1) NOT NULL DEFAULT 'y',
  `cacheable` char(1) NOT NULL DEFAULT 'y',
  `expiration` int(11) NOT NULL DEFAULT '0',
  `description` text NOT NULL,
  PRIMARY KEY (`repID`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_integrator_reps`
--

LOCK TABLES `tiki_integrator_reps` WRITE;
/*!40000 ALTER TABLE `tiki_integrator_reps` DISABLE KEYS */;
INSERT INTO `tiki_integrator_reps` VALUES (1,'Doxygened (1.3.4) Documentation','','index.html','doxygen.css','n','y',0,'Use this repository as rule source for all your repositories based on doxygened docs. To setup yours just add new repository and copy rules from this repository :)');
/*!40000 ALTER TABLE `tiki_integrator_reps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_integrator_rules`
--

DROP TABLE IF EXISTS `tiki_integrator_rules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_integrator_rules` (
  `ruleID` int(11) NOT NULL AUTO_INCREMENT,
  `repID` int(11) NOT NULL DEFAULT '0',
  `ord` int(2) unsigned NOT NULL DEFAULT '0',
  `srch` blob NOT NULL,
  `repl` blob NOT NULL,
  `type` char(1) NOT NULL DEFAULT 'n',
  `casesense` char(1) NOT NULL DEFAULT 'y',
  `rxmod` varchar(20) NOT NULL DEFAULT '',
  `enabled` char(1) NOT NULL DEFAULT 'n',
  `description` text NOT NULL,
  PRIMARY KEY (`ruleID`),
  KEY `repID` (`repID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_integrator_rules`
--

LOCK TABLES `tiki_integrator_rules` WRITE;
/*!40000 ALTER TABLE `tiki_integrator_rules` DISABLE KEYS */;
INSERT INTO `tiki_integrator_rules` VALUES (1,1,1,'.*<body[^>]*?>(.*?)</body.*','1','y','n','i','y','Extract code between <BODY> tags'),(2,1,2,'img src=(\"|\')(?!http://)','img src=1{path}/','y','n','i','y','Fix images path'),(3,1,3,'href=(\"|\')(?!(#|(http|ftp)://))','href=1tiki-integrator.php?repID={repID}&file=','y','n','i','y','Relace internal links to integrator. Dont touch an external links.');
/*!40000 ALTER TABLE `tiki_integrator_rules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_language`
--

DROP TABLE IF EXISTS `tiki_language`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_language` (
  `source` tinyblob NOT NULL,
  `lang` char(16) NOT NULL DEFAULT '',
  `tran` tinyblob,
  PRIMARY KEY (`source`(255),`lang`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_language`
--

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

--
-- Table structure for table `tiki_languages`
--

DROP TABLE IF EXISTS `tiki_languages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_languages` (
  `lang` char(16) NOT NULL DEFAULT '',
  `language` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`lang`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_languages`
--

LOCK TABLES `tiki_languages` WRITE;
/*!40000 ALTER TABLE `tiki_languages` DISABLE KEYS */;
INSERT INTO `tiki_languages` VALUES ('en','English');
/*!40000 ALTER TABLE `tiki_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_link_cache`
--

DROP TABLE IF EXISTS `tiki_link_cache`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_link_cache` (
  `cacheId` int(14) NOT NULL AUTO_INCREMENT,
  `url` varchar(250) DEFAULT NULL,
  `data` longblob,
  `refresh` int(14) DEFAULT NULL,
  PRIMARY KEY (`cacheId`),
  KEY `urlindex` (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_link_cache`
--

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

--
-- Table structure for table `tiki_links`
--

DROP TABLE IF EXISTS `tiki_links`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_links` (
  `fromPage` varchar(160) NOT NULL DEFAULT '',
  `toPage` varchar(160) NOT NULL DEFAULT '',
  PRIMARY KEY (`fromPage`,`toPage`),
  KEY `toPage` (`toPage`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_links`
--

LOCK TABLES `tiki_links` WRITE;
/*!40000 ALTER TABLE `tiki_links` DISABLE KEYS */;
INSERT INTO `tiki_links` VALUES ('DogTraining','ToiletTraining'),('HomePage','DogTraining'),('HomePage','liver disease'),('liver disease','HomePage'),('ToiletTraining','HomePage');
/*!40000 ALTER TABLE `tiki_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_live_support_events`
--

DROP TABLE IF EXISTS `tiki_live_support_events`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_events` (
  `eventId` int(14) NOT NULL AUTO_INCREMENT,
  `reqId` varchar(32) NOT NULL DEFAULT '',
  `type` varchar(40) DEFAULT NULL,
  `seqId` int(14) DEFAULT NULL,
  `senderId` varchar(32) DEFAULT NULL,
  `data` text,
  `timestamp` int(14) DEFAULT NULL,
  PRIMARY KEY (`eventId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_events`
--

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

--
-- Table structure for table `tiki_live_support_message_comments`
--

DROP TABLE IF EXISTS `tiki_live_support_message_comments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_message_comments` (
  `cId` int(12) NOT NULL AUTO_INCREMENT,
  `msgId` int(12) DEFAULT NULL,
  `data` text,
  `timestamp` int(14) DEFAULT NULL,
  PRIMARY KEY (`cId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_message_comments`
--

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

--
-- Table structure for table `tiki_live_support_messages`
--

DROP TABLE IF EXISTS `tiki_live_support_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_messages` (
  `msgId` int(12) NOT NULL AUTO_INCREMENT,
  `data` text,
  `timestamp` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `username` varchar(200) DEFAULT NULL,
  `priority` int(2) DEFAULT NULL,
  `status` char(1) DEFAULT NULL,
  `assigned_to` varchar(200) DEFAULT NULL,
  `resolution` varchar(100) DEFAULT NULL,
  `title` varchar(200) DEFAULT NULL,
  `module` int(4) DEFAULT NULL,
  `email` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`msgId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_messages`
--

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

--
-- Table structure for table `tiki_live_support_modules`
--

DROP TABLE IF EXISTS `tiki_live_support_modules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_modules` (
  `modId` int(4) NOT NULL AUTO_INCREMENT,
  `name` varchar(90) DEFAULT NULL,
  PRIMARY KEY (`modId`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_modules`
--

LOCK TABLES `tiki_live_support_modules` WRITE;
/*!40000 ALTER TABLE `tiki_live_support_modules` DISABLE KEYS */;
INSERT INTO `tiki_live_support_modules` VALUES (1,'wiki'),(2,'forums'),(3,'image galleries'),(4,'file galleries'),(5,'directory'),(6,'workflow'),(7,'charts');
/*!40000 ALTER TABLE `tiki_live_support_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_live_support_operators`
--

DROP TABLE IF EXISTS `tiki_live_support_operators`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_operators` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `accepted_requests` int(10) DEFAULT NULL,
  `status` varchar(20) DEFAULT NULL,
  `longest_chat` int(10) DEFAULT NULL,
  `shortest_chat` int(10) DEFAULT NULL,
  `average_chat` int(10) DEFAULT NULL,
  `last_chat` int(14) DEFAULT NULL,
  `time_online` int(10) DEFAULT NULL,
  `votes` int(10) DEFAULT NULL,
  `points` int(10) DEFAULT NULL,
  `status_since` int(14) DEFAULT NULL,
  PRIMARY KEY (`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_operators`
--

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

--
-- Table structure for table `tiki_live_support_requests`
--

DROP TABLE IF EXISTS `tiki_live_support_requests`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_live_support_requests` (
  `reqId` varchar(32) NOT NULL DEFAULT '',
  `user` varchar(40) DEFAULT NULL,
  `tiki_user` varchar(200) DEFAULT NULL,
  `email` varchar(200) DEFAULT NULL,
  `operator` varchar(200) DEFAULT NULL,
  `operator_id` varchar(32) DEFAULT NULL,
  `user_id` varchar(32) DEFAULT NULL,
  `reason` text,
  `req_timestamp` int(14) DEFAULT NULL,
  `timestamp` int(14) DEFAULT NULL,
  `status` varchar(40) DEFAULT NULL,
  `resolution` varchar(40) DEFAULT NULL,
  `chat_started` int(14) DEFAULT NULL,
  `chat_ended` int(14) DEFAULT NULL,
  PRIMARY KEY (`reqId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_live_support_requests`
--

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

--
-- Table structure for table `tiki_logs`
--

DROP TABLE IF EXISTS `tiki_logs`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_logs` (
  `logId` int(8) NOT NULL AUTO_INCREMENT,
  `logtype` varchar(20) NOT NULL DEFAULT '',
  `logmessage` text NOT NULL,
  `loguser` varchar(40) NOT NULL,
  `logip` varchar(200) NOT NULL DEFAULT '',
  `logclient` text NOT NULL,
  `logtime` int(14) NOT NULL DEFAULT '0',
  PRIMARY KEY (`logId`),
  KEY `logtype` (`logtype`)
) ENGINE=MyISAM AUTO_INCREMENT=204 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_logs`
--

LOCK TABLES `tiki_logs` WRITE;
/*!40000 ALTER TABLE `tiki_logs` DISABLE KEYS */;
INSERT INTO `tiki_logs` VALUES (1,'adminmodules','assigned module featured_links','admin','82.3.232.237','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207251197),(2,'adminmodules','assigned module featured_links','admin','82.3.232.237','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207252547),(3,'login','logged from /tiki-orphan_pages.php','admin','82.2.125.102','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207333128),(4,'login','logged from /tiki-index.php','admin','82.2.125.102','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207338101),(5,'login','logged out','admin','82.2.125.102','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207341774),(6,'login','logged from /tiki-index.php?page=liver%20disease','admin','82.2.125.102','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207341898),(7,'login','logged from /tiki-listpages.php','admin','81.107.77.160','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207386288),(8,'adminmodules','assigned module articles','admin','81.107.77.160','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207386361),(9,'login','logged out','admin','81.107.77.160','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207386367),(10,'login','logged from /tiki-listpages.php','admin','81.107.77.160','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207386386),(11,'login','logged from /tiki-admin_menus.php','admin','81.107.77.160','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207388161),(12,'login','logged out','admin','81.107.77.160','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207388404),(13,'login','logged from /tiki-lastchanges.php','admin','81.107.77.160','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207388436),(14,'login','logged from /tiki-listpages.php','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207467637),(15,'login','logged out','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207467742),(16,'login','logged from /tiki-listpages.php','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468100),(17,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(18,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(19,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(20,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(21,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(22,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(23,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(24,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(25,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(26,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(27,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(28,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(29,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(30,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(31,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(32,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(33,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(34,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(35,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(36,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(37,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(38,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(39,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(40,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(41,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(42,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(43,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(44,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(45,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(46,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(47,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(48,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(49,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(50,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(51,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(52,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(53,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(54,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(55,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(56,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(57,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(58,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(59,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(60,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(61,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(62,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(63,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(64,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(65,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(66,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(67,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(68,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(69,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(70,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(71,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(72,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(73,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(74,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(75,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(76,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(77,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(78,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(79,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(80,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(81,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(82,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(83,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(84,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(85,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(86,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(87,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(88,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468332),(89,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(90,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(91,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(92,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(93,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(94,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(95,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(96,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(97,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(98,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(99,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(100,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(101,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(102,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(103,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(104,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(105,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(106,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(107,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(108,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(109,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(110,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(111,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(112,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(113,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(114,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(115,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(116,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(117,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(118,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(119,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(120,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(121,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(122,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(123,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(124,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(125,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(126,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(127,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(128,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(129,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(130,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(131,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(132,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(133,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(134,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(135,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(136,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(137,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(138,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(139,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(140,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(141,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(142,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(143,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(144,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(145,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(146,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(147,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(148,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(149,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(150,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(151,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(152,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(153,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(154,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(155,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(156,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(157,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(158,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(159,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(160,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(161,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(162,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(163,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(164,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(165,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(166,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(167,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(168,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(169,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(170,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(171,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(172,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(173,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(174,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(175,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(176,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(177,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(178,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(179,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(180,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(181,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(182,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(183,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(184,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(185,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(186,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(187,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(188,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(189,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(190,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(191,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(192,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(193,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(194,'perms','changed perms for group Anonymous','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468333),(195,'login','logged out','admin','81.107.192.34','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13',1207468337),(196,'login','logged from /tiki-lastchanges.php?days=0','admin','86.31.151.37','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14',1209650596),(197,'login','logged out','admin','86.31.151.37','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14',1209650908),(198,'login','logged from /tiki-list_articles.php','admin','86.31.151.37','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14',1209650935),(199,'login','logged out','admin','86.31.151.37','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14',1209651011),(200,'login','logged from /tiki-list_articles.php','admin','86.31.151.37','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14',1209651019),(201,'login','logged out','admin','86.31.151.37','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14',1209651037),(202,'login','logged from /tiki-index.php?page=ToiletTraining','admin','81.107.199.197','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14',1214316696),(203,'login','logged out','admin','81.107.199.197','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14',1214316785);
/*!40000 ALTER TABLE `tiki_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_mail_events`
--

DROP TABLE IF EXISTS `tiki_mail_events`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_mail_events` (
  `event` varchar(200) DEFAULT NULL,
  `object` varchar(200) DEFAULT NULL,
  `email` varchar(200) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_mail_events`
--

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

--
-- Table structure for table `tiki_mailin_accounts`
--

DROP TABLE IF EXISTS `tiki_mailin_accounts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_mailin_accounts` (
  `accountId` int(12) NOT NULL AUTO_INCREMENT,
  `user` varchar(40) NOT NULL DEFAULT '',
  `account` varchar(50) NOT NULL DEFAULT '',
  `pop` varchar(255) DEFAULT NULL,
  `port` int(4) DEFAULT NULL,
  `username` varchar(100) DEFAULT NULL,
  `pass` varchar(100) DEFAULT NULL,
  `active` char(1) DEFAULT NULL,
  `type` varchar(40) DEFAULT NULL,
  `smtp` varchar(255) DEFAULT NULL,
  `useAuth` char(1) DEFAULT NULL,
  `smtpPort` int(4) DEFAULT NULL,
  `anonymous` char(1) NOT NULL DEFAULT 'y',
  `attachments` char(1) NOT NULL DEFAULT 'n',
  `article_topicId` int(4) DEFAULT NULL,
  `article_type` varchar(50) DEFAULT NULL,
  `discard_after` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`accountId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_mailin_accounts`
--

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

--
-- Table structure for table `tiki_menu_languages`
--

DROP TABLE IF EXISTS `tiki_menu_languages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_menu_languages` (
  `menuId` int(8) NOT NULL AUTO_INCREMENT,
  `language` char(16) NOT NULL DEFAULT '',
  PRIMARY KEY (`menuId`,`language`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_menu_languages`
--

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

--
-- Table structure for table `tiki_menu_options`
--

DROP TABLE IF EXISTS `tiki_menu_options`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_menu_options` (
  `optionId` int(8) NOT NULL AUTO_INCREMENT,
  `menuId` int(8) DEFAULT NULL,
  `type` char(1) DEFAULT NULL,
  `name` varchar(200) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `position` int(4) DEFAULT NULL,
  `section` varchar(255) DEFAULT NULL,
  `perm` varchar(255) DEFAULT NULL,
  `groupname` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`optionId`)
) ENGINE=MyISAM AUTO_INCREMENT=188 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_menu_options`
--

LOCK TABLES `tiki_menu_options` WRITE;
/*!40000 ALTER TABLE `tiki_menu_options` DISABLE KEYS */;
INSERT INTO `tiki_menu_options` VALUES (1,42,'o','Home','tiki-index.php',10,'','',''),(2,42,'o','Chat','tiki-chat.php',15,'feature_chat','tiki_p_chat',''),(3,42,'o','Contact us','tiki-contact.php',20,'feature_contact','',''),(4,42,'o','Stats','tiki-stats.php',23,'feature_stats','tiki_p_view_stats',''),(5,42,'o','Categories','tiki-browse_categories.php',25,'feature_categories','tiki_p_view_categories',''),(6,42,'o','Games','tiki-list_games.php',30,'feature_games','tiki_p_play_games',''),(7,42,'o','Calendar','tiki-calendar.php',35,'feature_calendar','tiki_p_view_calendar',''),(8,42,'o','Users map','tiki-gmap_usermap.php',36,'feature_gmap','',''),(9,42,'o','Mobile','tiki-mobile.php',37,'feature_mobile','',''),(10,42,'o','(debug)','javascript:toggle(\"debugconsole\")',40,'feature_debug_console','tiki_p_admin',''),(11,42,'s','MyTiki','tiki-my_tiki.php',50,'','','Registered'),(175,42,'o','MyTiki home','tiki-my_tiki.php',51,'','','Registered'),(13,42,'o','Preferences','tiki-user_preferences.php',55,'feature_userPreferences','','Registered'),(14,42,'o','Messages','messu-mailbox.php',60,'feature_messages','tiki_p_messages','Registered'),(15,42,'o','Tasks','tiki-user_tasks.php',65,'feature_tasks','tiki_p_tasks','Registered'),(16,42,'o','Bookmarks','tiki-user_bookmarks.php',70,'feature_user_bookmarks','tiki_p_create_bookmarks','Registered'),(17,42,'o','Modules','tiki-user_assigned_modules.php',75,'user_assigned_modules','tiki_p_configure_modules','Registered'),(18,42,'o','Newsreader','tiki-newsreader_servers.php',80,'feature_newsreader','tiki_p_newsreader','Registered'),(19,42,'o','Webmail','tiki-webmail.php',85,'feature_webmail','tiki_p_use_webmail','Registered'),(20,42,'o','Notepad','tiki-notepad_list.php',90,'feature_notepad','tiki_p_notepad','Registered'),(21,42,'o','My files','tiki-userfiles.php',95,'feature_userfiles','tiki_p_userfiles','Registered'),(22,42,'o','User menu','tiki-usermenu.php',100,'feature_usermenu','tiki_p_usermenu','Registered'),(23,42,'o','Mini calendar','tiki-minical.php',105,'feature_minical','tiki_p_minical','Registered'),(24,42,'o','My watches','tiki-user_watches.php',110,'feature_user_watches','','Registered'),(25,42,'s','Workflow','tiki-g-user_processes.php',150,'feature_workflow','tiki_p_use_workflow',''),(26,42,'o','Admin processes','tiki-g-admin_processes.php',155,'feature_workflow','tiki_p_admin_workflow',''),(27,42,'o','Monitor processes','tiki-g-monitor_processes.php',160,'feature_workflow','tiki_p_admin_workflow',''),(28,42,'o','Monitor activities','tiki-g-monitor_activities.php',165,'feature_workflow','tiki_p_admin_workflow',''),(29,42,'o','Monitor instances','tiki-g-monitor_instances.php',170,'feature_workflow','tiki_p_admin_workflow',''),(30,42,'o','User processes','tiki-g-user_processes.php',175,'feature_workflow','tiki_p_use_workflow',''),(31,42,'o','User activities','tiki-g-user_activities.php',180,'feature_workflow','tiki_p_use_workflow',''),(32,42,'o','User instances','tiki-g-user_instances.php',185,'feature_workflow','tiki_p_use_workflow',''),(172,42,'s','User list','tiki-list_users.php',187,'feature_friends','tiki_p_list_users',''),(34,42,'o','User list','tiki-list_users.php',188,'feature_friends','tiki_p_list_users',''),(35,42,'o','Friendship Network','tiki-friends.php',189,'feature_friends','','Registered'),(36,42,'s','Wiki','tiki-index.php',200,'feature_wiki','tiki_p_view',''),(37,42,'o','Wiki Home','tiki-index.php',202,'feature_wiki','tiki_p_view',''),(38,42,'o','Last Changes','tiki-lastchanges.php',205,'feature_wiki,feature_lastChanges','tiki_p_view',''),(39,42,'o','Dump','dump/new.tar',210,'feature_wiki,feature_dump','tiki_p_view',''),(40,42,'o','Rankings','tiki-wiki_rankings.php',215,'feature_wiki,feature_wiki_rankings','tiki_p_view',''),(41,42,'o','List pages','tiki-listpages.php',220,'feature_wiki,feature_listPages','tiki_p_view',''),(42,42,'o','Orphan pages','tiki-orphan_pages.php',225,'feature_wiki,feature_listPages','tiki_p_view',''),(43,42,'o','Sandbox','tiki-editpage.php?page=sandbox',230,'feature_wiki,feature_sandbox','tiki_p_view',''),(44,42,'o','Print','tiki-print_pages.php',235,'feature_wiki,feature_wiki_multiprint','tiki_p_view',''),(45,42,'o','Send pages','tiki-send_objects.php',240,'feature_wiki,feature_comm','tiki_p_view,tiki_p_send_pages',''),(46,42,'o','Received pages','tiki-received_pages.php',245,'feature_wiki,feature_comm','tiki_p_view,tiki_p_admin_received_pages',''),(47,42,'o','Structures','tiki-admin_structures.php',250,'feature_wiki','tiki_p_edit_structures',''),(48,42,'s','Image Galleries','tiki-galleries.php',300,'feature_galleries','tiki_p_view_image_gallery',''),(49,42,'o','Galleries','tiki-galleries.php',305,'feature_galleries','tiki_p_view_image_gallery',''),(50,42,'o','Rankings','tiki-galleries_rankings.php',310,'feature_galleries,feature_gal_rankings','tiki_p_view_image_gallery',''),(51,42,'o','Upload image','tiki-upload_image.php',315,'feature_galleries','tiki_p_upload_images',''),(52,42,'o','Directory batch','tiki-batch_upload.php',318,'feature_galleries,feature_gal_batch','tiki_p_batch_upload',''),(53,42,'o','System gallery','tiki-list_gallery.php?galleryId=0',320,'feature_galleries','tiki_p_admin_galleries',''),(54,42,'s','Articles','tiki-view_articles.php',350,'feature_articles','tiki_p_read_article',''),(55,42,'o','Articles home','tiki-view_articles.php',355,'feature_articles','tiki_p_read_article',''),(56,42,'o','List articles','tiki-list_articles.php',360,'feature_articles','tiki_p_read_article',''),(57,42,'o','Rankings','tiki-cms_rankings.php',365,'feature_articles,feature_cms_rankings','tiki_p_read_article',''),(58,42,'o','Submit article','tiki-edit_submission.php',370,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_submit_article',''),(59,42,'o','View submissions','tiki-list_submissions.php',375,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_submit_article',''),(60,42,'o','View submissions','tiki-list_submissions.php',375,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_approve_submission',''),(61,42,'o','View submissions','tiki-list_submissions.php',375,'feature_articles,feature_submissions','tiki_p_read_article,tiki_p_remove_submission',''),(62,42,'o','Edit article','tiki-edit_article.php',380,'feature_articles','tiki_p_read_article,tiki_p_edit_article',''),(63,42,'o','Send articles','tiki-send_objects.php',385,'feature_articles,feature_comm','tiki_p_read_article,tiki_p_send_articles',''),(64,42,'o','Received articles','tiki-received_articles.php',385,'feature_articles,feature_comm','tiki_p_read_article,tiki_p_admin_received_articles',''),(65,42,'o','Admin topics','tiki-admin_topics.php',390,'feature_articles','tiki_p_read_article,tiki_p_admin_cms',''),(66,42,'o','Admin types','tiki-article_types.php',395,'feature_articles','tiki_p_read_article,tiki_p_admin_cms',''),(67,42,'s','Blogs','tiki-list_blogs.php',450,'feature_blogs','tiki_p_read_blog',''),(68,42,'o','List blogs','tiki-list_blogs.php',455,'feature_blogs','tiki_p_read_blog',''),(69,42,'o','Rankings','tiki-blog_rankings.php',460,'feature_blogs,feature_blog_rankings','tiki_p_read_blog',''),(70,42,'o','Create/Edit blog','tiki-edit_blog.php',465,'feature_blogs','tiki_p_read_blog,tiki_p_create_blogs',''),(71,42,'o','Post','tiki-blog_post.php',470,'feature_blogs','tiki_p_read_blog,tiki_p_blog_post',''),(72,42,'o','Admin posts','tiki-list_posts.php',475,'feature_blogs','tiki_p_read_blog,tiki_p_blog_admin',''),(73,42,'s','Forums','tiki-forums.php',500,'feature_forums','tiki_p_forum_read',''),(74,42,'o','List forums','tiki-forums.php',505,'feature_forums','tiki_p_forum_read',''),(75,42,'o','Rankings','tiki-forum_rankings.php',510,'feature_forums,feature_forum_rankings','tiki_p_forum_read',''),(76,42,'o','Admin forums','tiki-admin_forums.php',515,'feature_forums','tiki_p_forum_read,tiki_p_admin_forum',''),(77,42,'s','Directory','tiki-directory_browse.php',550,'feature_directory','tiki_p_view_directory',''),(78,42,'o','Submit a new link','tiki-directory_add_site.php',555,'feature_directory','tiki_p_submit_link',''),(79,42,'o','Browse directory','tiki-directory_browse.php',560,'feature_directory','tiki_p_view_directory',''),(80,42,'o','Admin directory','tiki-directory_admin.php',565,'feature_directory','tiki_p_view_directory,tiki_p_admin_directory_cats',''),(81,42,'o','Admin directory','tiki-directory_admin.php',565,'feature_directory','tiki_p_view_directory,tiki_p_admin_directory_sites',''),(82,42,'o','Admin directory','tiki-directory_admin.php',565,'feature_directory','tiki_p_view_directory,tiki_p_validate_links',''),(83,42,'s','File Galleries','tiki-file_galleries.php',600,'feature_file_galleries','tiki_p_view_file_gallery',''),(84,42,'o','List galleries','tiki-file_galleries.php',605,'feature_file_galleries','tiki_p_view_file_gallery',''),(85,42,'o','Rankings','tiki-file_galleries_rankings.php',610,'feature_file_galleries,feature_file_galleries_rankings','tiki_p_view_file_gallery',''),(86,42,'o','Upload file','tiki-upload_file.php',615,'feature_file_galleries','tiki_p_view_file_gallery,tiki_p_upload_files',''),(87,42,'s','FAQs','tiki-list_faqs.php',650,'feature_faqs','tiki_p_view_faqs',''),(88,42,'o','List FAQs','tiki-list_faqs.php',665,'feature_faqs','tiki_p_view_faqs',''),(89,42,'o','Admin FAQs','tiki-list_faqs.php',660,'feature_faqs','tiki_p_admin_faqs',''),(90,42,'s','Maps','tiki-map.phtml',700,'feature_maps','tiki_p_map_view',''),(91,42,'o','Mapfiles','tiki-map_edit.php',705,'feature_maps','tiki_p_map_view',''),(92,42,'o','Layer management','tiki-map_upload.php',710,'feature_maps','tiki_p_map_edit',''),(93,42,'s','Quizzes','tiki-list_quizzes.php',750,'feature_quizzes','tiki_p_take_quiz',''),(94,42,'o','List quizzes','tiki-list_quizzes.php',755,'feature_quizzes','tiki_p_take_quiz',''),(95,42,'o','Quiz stats','tiki-quiz_stats.php',760,'feature_quizzes','tiki_p_view_quiz_stats',''),(96,42,'o','Admin quiz','tiki-edit_quiz.php',765,'feature_quizzes','tiki_p_admin_quizzes',''),(97,42,'s','TikiSheet','tiki-sheets.php',780,'feature_sheet','tiki_p_view_sheet',''),(98,42,'s','Trackers','tiki-list_trackers.php',800,'feature_trackers','tiki_p_view_trackers',''),(99,42,'o','List trackers','tiki-list_trackers.php',805,'feature_trackers','tiki_p_view_trackers',''),(100,42,'o','Admin trackers','tiki-admin_trackers.php',810,'feature_trackers','tiki_p_admin_trackers',''),(101,42,'s','Surveys','tiki-list_surveys.php',850,'feature_surveys','tiki_p_take_survey',''),(102,42,'o','List surveys','tiki-list_surveys.php',855,'feature_surveys','tiki_p_take_survey',''),(103,42,'o','Stats','tiki-survey_stats.php',860,'feature_surveys','tiki_p_view_survey_stats',''),(104,42,'o','Admin surveys','tiki-admin_surveys.php',865,'feature_surveys','tiki_p_admin_surveys',''),(105,42,'s','Newsletters','tiki-newsletters.php',900,'feature_newsletters','tiki_p_subscribe_newsletters',''),(106,42,'s','Newsletters','tiki-newsletters.php',900,'feature_newsletters','tiki_p_subscribe_newsletters',''),(107,42,'s','Newsletters','tiki-newsletters.php',900,'feature_newsletters','tiki_p_subscribe_newsletters',''),(108,42,'o','Send newsletters','tiki-send_newsletters.php',905,'feature_newsletters','tiki_p_send_newsletters',''),(109,42,'o','Admin newsletters','tiki-admin_newsletters.php',910,'feature_newsletters','tiki_p_admin_newsletters',''),(110,42,'s','Ephemerides','tiki-eph.php',950,'feature_eph','tiki_p_view_eph',''),(111,42,'o','Admin ephemerides','tiki-eph_admin.php',955,'feature_eph','tiki_p_eph_admin',''),(112,42,'s','Charts','tiki-charts.php',1000,'feature_charts','tiki_p_view_chart',''),(113,42,'o','Admin charts','tiki-admin_charts.php',1005,'feature_charts','tiki_p_admin_charts',''),(114,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin',''),(115,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_chat',''),(116,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_categories',''),(117,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_banners',''),(118,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_edit_templates',''),(119,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_edit_cookies',''),(120,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_dynamic',''),(121,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_mailin',''),(122,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_edit_content_templates',''),(123,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_edit_html_pages',''),(124,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_view_referer_stats',''),(125,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_drawings',''),(126,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_admin_shoutbox',''),(127,42,'r','Admin','tiki-admin.php',1050,'','tiki_p_live_support_admin',''),(128,42,'r','Admin','tiki-admin.php',1050,'','user_is_operator',''),(129,42,'r','Admin','tiki-admin.php',1050,'feature_integrator','tiki_p_admin_integrator',''),(176,42,'o','Admin home','tiki-admin.php',1051,'','tiki_p_admin',''),(131,42,'o','Live support','tiki-live_support_admin.php',1055,'feature_live_support','tiki_p_live_support_admin',''),(132,42,'o','Live support','tiki-live_support_admin.php',1055,'feature_live_support','user_is_operator',''),(133,42,'o','Banning','tiki-admin_banning.php',1060,'feature_banning','tiki_p_admin_banning',''),(134,42,'o','Calendar','tiki-admin_calendars.php',1065,'feature_calendar','tiki_p_admin_calendar',''),(135,42,'o','Users','tiki-adminusers.php',1070,'','tiki_p_admin_users',''),(136,42,'o','Groups','tiki-admingroups.php',1075,'','tiki_p_admin',''),(137,42,'o','Cache','tiki-list_cache.php',1080,'cachepages','tiki_p_admin',''),(138,42,'o','Modules','tiki-admin_modules.php',1085,'','tiki_p_admin',''),(139,42,'o','Links','tiki-admin_links.php',1090,'feature_featuredLinks','tiki_p_admin',''),(140,42,'o','Hotwords','tiki-admin_hotwords.php',1095,'feature_hotwords','tiki_p_admin',''),(141,42,'o','RSS modules','tiki-admin_rssmodules.php',1100,'','tiki_p_admin_rssmodules',''),(142,42,'o','Menus','tiki-admin_menus.php',1105,'','tiki_p_admin',''),(143,42,'o','Polls','tiki-admin_polls.php',1110,'feature_polls','tiki_p_admin_polls',''),(144,42,'o','Mail notifications','tiki-admin_notifications.php',1120,'','tiki_p_admin',''),(145,42,'o','Search stats','tiki-search_stats.php',1125,'feature_search','tiki_p_admin',''),(146,42,'o','Theme control','tiki-theme_control.php',1130,'feature_theme_control','tiki_p_admin',''),(147,42,'o','QuickTags','tiki-admin_quicktags.php',1135,'','tiki_p_admin',''),(148,42,'o','Chat','tiki-admin_chat.php',1140,'feature_chat','tiki_p_admin_chat',''),(149,42,'o','Categories','tiki-admin_categories.php',1145,'feature_categories','tiki_p_admin_categories',''),(150,42,'o','Banners','tiki-list_banners.php',1150,'feature_banners','tiki_p_admin_banners',''),(151,42,'o','Edit templates','tiki-edit_templates.php',1155,'feature_edit_templates','tiki_p_edit_templates',''),(152,42,'o','Drawings','tiki-admin_drawings.php',1160,'feature_drawings','tiki_p_admin_drawings',''),(153,42,'o','Dynamic content','tiki-list_contents.php',1165,'feature_dynamic_content','tiki_p_admin_dynamic',''),(154,42,'o','Cookies','tiki-admin_cookies.php',1170,'','tiki_p_edit_cookies',''),(155,42,'o','Mail-in','tiki-admin_mailin.php',1175,'feature_mailin','tiki_p_admin_mailin',''),(156,42,'o','Content templates','tiki-admin_content_templates.php',1180,'','tiki_p_edit_content_templates',''),(157,42,'o','HTML pages','tiki-admin_html_pages.php',1185,'feature_html_pages','tiki_p_edit_html_pages',''),(158,42,'o','Shoutbox','tiki-shoutbox.php',1190,'feature_shoutbox','tiki_p_admin_shoutbox',''),(159,42,'o','Shoutbox Words','tiki-admin_shoutbox_words.php',1191,'feature_shoutbox','tiki_p_admin_shoutbox',''),(160,42,'o','Referer stats','tiki-referer_stats.php',1195,'feature_referer_stats','tiki_p_view_referer_stats',''),(161,42,'o','Edit languages','tiki-edit_languages.php',1200,'lang_use_db','tiki_p_edit_languages',''),(162,42,'o','Integrator','tiki-admin_integrator.php',1205,'feature_integrator','tiki_p_admin_integrator',''),(163,42,'o','phpinfo','tiki-phpinfo.php',1215,'','tiki_p_admin',''),(164,42,'o','DSN','tiki-admin_dsn.php',1220,'','tiki_p_admin',''),(165,42,'o','External wikis','tiki-admin_external_wikis.php',1225,'','tiki_p_admin',''),(177,42,'o','System Admin','tiki-admin_system.php',1230,'','tiki_p_admin',''),(167,42,'o','Score','tiki-admin_score.php',1235,'feature_score','tiki_p_admin',''),(180,42,'o','Admin mods','tiki-mods.php',1240,'','tiki_p_admin',''),(181,42,'o','Tiki Logs','tiki-syslog.php',1245,'','tiki_p_admin',''),(184,42,'o','Security Admin','tiki-admin_security.php',1250,'','tiki_p_admin',''),(171,42,'o','Shoutbox Words','tiki-admin_shoutbox_words.php',1191,'feature_shoutbox','tiki_p_admin_shoutbox',''),(173,42,'o','User list','tiki-list_users.php',188,'feature_friends','tiki_p_list_users',''),(174,42,'o','Friendship Network','tiki-friends.php',189,'feature_friends','tiki_p_list_users',''),(178,42,'o','Score','tiki-admin_score.php',1235,'feature_score','tiki_p_admin',''),(179,42,'s','TikiSheet','tiki-sheets.php',780,'feature_sheet','',''),(182,42,'s','Newsletters','tiki-newsletters.php',900,'feature_newsletters','tiki_p_send_newsletters',''),(183,42,'s','Newsletters','tiki-newsletters.php',900,'feature_newsletters','tiki_p_admin_newsletters',''),(185,42,'o','Directory batch','tiki-batch_upload.php',318,'feature_galleries,feature_gal_batch','tiki_p_batch_upload_image_dir',''),(186,42,'o','Mobile','tiki-mobile.php',37,'feature_mobile','',''),(187,42,'o','Users map','tiki-gmap_usermap.php',36,'feature_gmap','','');
/*!40000 ALTER TABLE `tiki_menu_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_menus`
--

DROP TABLE IF EXISTS `tiki_menus`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_menus` (
  `menuId` int(8) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `description` text,
  `type` char(1) DEFAULT NULL,
  PRIMARY KEY (`menuId`)
) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_menus`
--

LOCK TABLES `tiki_menus` WRITE;
/*!40000 ALTER TABLE `tiki_menus` DISABLE KEYS */;
INSERT INTO `tiki_menus` VALUES (42,'Application menu','Main extensive navigation menu','d');
/*!40000 ALTER TABLE `tiki_menus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_minical_events`
--

DROP TABLE IF EXISTS `tiki_minical_events`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_minical_events` (
  `user` varchar(40) DEFAULT NULL,
  `eventId` int(12) NOT NULL AUTO_INCREMENT,
  `title` varchar(250) DEFAULT NULL,
  `description` text,
  `start` int(14) DEFAULT NULL,
  `end` int(14) DEFAULT NULL,
  `security` char(1) DEFAULT NULL,
  `duration` int(3) DEFAULT NULL,
  `topicId` int(12) DEFAULT NULL,
  `reminded` char(1) DEFAULT NULL,
  PRIMARY KEY (`eventId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_minical_events`
--

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

--
-- Table structure for table `tiki_minical_topics`
--

DROP TABLE IF EXISTS `tiki_minical_topics`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_minical_topics` (
  `user` varchar(40) DEFAULT NULL,
  `topicId` int(12) NOT NULL AUTO_INCREMENT,
  `name` varchar(250) DEFAULT NULL,
  `filename` varchar(200) DEFAULT NULL,
  `filetype` varchar(200) DEFAULT NULL,
  `filesize` varchar(200) DEFAULT NULL,
  `data` longblob,
  `path` varchar(250) DEFAULT NULL,
  `isIcon` char(1) DEFAULT NULL,
  PRIMARY KEY (`topicId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_minical_topics`
--

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

--
-- Table structure for table `tiki_modules`
--

DROP TABLE IF EXISTS `tiki_modules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_modules` (
  `name` varchar(200) NOT NULL DEFAULT '',
  `position` char(1) DEFAULT NULL,
  `ord` int(4) DEFAULT NULL,
  `type` char(1) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `cache_time` int(14) DEFAULT NULL,
  `rows` int(4) DEFAULT NULL,
  `params` varchar(255) DEFAULT NULL,
  `groups` text,
  PRIMARY KEY (`name`),
  KEY `positionType` (`position`,`type`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_modules`
--

LOCK TABLES `tiki_modules` WRITE;
/*!40000 ALTER TABLE `tiki_modules` DISABLE KEYS */;
INSERT INTO `tiki_modules` VALUES ('login_box','r',1,NULL,NULL,0,NULL,NULL,'a:2:{i:0;s:10:\"Registered\";i:1;s:9:\"Anonymous\";}'),('mnu_application_menu','l',1,NULL,NULL,0,NULL,'flip=y','a:2:{i:0;s:10:\"Registered\";i:1;s:9:\"Anonymous\";}'),('quick_edit','l',2,NULL,NULL,0,NULL,NULL,'a:1:{i:0;s:10:\"Registered\";}'),('assistant','l',10,NULL,NULL,0,NULL,NULL,'a:1:{i:0;s:6:\"Admins\";}'),('since_last_visit_new','r',40,NULL,NULL,0,NULL,NULL,'a:1:{i:0;s:6:\"Admins\";}'),('featured_links','l',1,NULL,'',0,10,'','a:1:{i:0;s:6:\"Admins\";}'),('articles','l',1,NULL,'',0,10,'','a:1:{i:0;s:6:\"Admins\";}');
/*!40000 ALTER TABLE `tiki_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_newsletter_groups`
--

DROP TABLE IF EXISTS `tiki_newsletter_groups`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_newsletter_groups` (
  `nlId` int(12) NOT NULL DEFAULT '0',
  `groupName` varchar(255) NOT NULL DEFAULT '',
  `code` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`nlId`,`groupName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_newsletter_groups`
--

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

--
-- Table structure for table `tiki_newsletter_subscriptions`
--

DROP TABLE IF EXISTS `tiki_newsletter_subscriptions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_newsletter_subscriptions` (
  `nlId` int(12) NOT NULL DEFAULT '0',
  `email` varchar(255) NOT NULL DEFAULT '',
  `code` varchar(32) DEFAULT NULL,
  `valid` char(1) DEFAULT NULL,
  `subscribed` int(14) DEFAULT NULL,
  `isUser` char(1) NOT NULL DEFAULT 'n',
  PRIMARY KEY (`nlId`,`email`,`isUser`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_newsletter_subscriptions`
--

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

--
-- Table structure for table `tiki_newsletters`
--

DROP TABLE IF EXISTS `tiki_newsletters`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_newsletters` (
  `nlId` int(12) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) DEFAULT NULL,
  `description` text,
  `created` int(14) DEFAULT NULL,
  `lastSent` int(14) DEFAULT NULL,
  `editions` int(10) DEFAULT NULL,
  `users` int(10) DEFAULT NULL,
  `allowUserSub` char(1) DEFAULT 'y',
  `allowAnySub` char(1) DEFAULT NULL,
  `unsubMsg` char(1) DEFAULT 'y',
  `validateAddr` char(1) DEFAULT 'y',
  `frequency` int(14) DEFAULT NULL,
  PRIMARY KEY (`nlId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_newsletters`
--

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

--
-- Table structure for table `tiki_newsreader_marks`
--

DROP TABLE IF EXISTS `tiki_newsreader_marks`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_newsreader_marks` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `serverId` int(12) NOT NULL DEFAULT '0',
  `groupName` varchar(255) NOT NULL DEFAULT '',
  `timestamp` int(14) NOT NULL DEFAULT '0',
  PRIMARY KEY (`user`,`serverId`,`groupName`(100))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_newsreader_marks`
--

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

--
-- Table structure for table `tiki_newsreader_servers`
--

DROP TABLE IF EXISTS `tiki_newsreader_servers`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_newsreader_servers` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `serverId` int(12) NOT NULL AUTO_INCREMENT,
  `server` varchar(250) DEFAULT NULL,
  `port` int(4) DEFAULT NULL,
  `username` varchar(200) DEFAULT NULL,
  `password` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`serverId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_newsreader_servers`
--

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

--
-- Table structure for table `tiki_object_ratings`
--

DROP TABLE IF EXISTS `tiki_object_ratings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_object_ratings` (
  `catObjectId` int(12) NOT NULL DEFAULT '0',
  `pollId` int(12) NOT NULL DEFAULT '0',
  PRIMARY KEY (`catObjectId`,`pollId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_object_ratings`
--

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

--
-- Table structure for table `tiki_page_footnotes`
--

DROP TABLE IF EXISTS `tiki_page_footnotes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_page_footnotes` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `pageName` varchar(250) NOT NULL DEFAULT '',
  `data` text,
  PRIMARY KEY (`user`,`pageName`(100))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_page_footnotes`
--

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

--
-- Table structure for table `tiki_pages`
--

DROP TABLE IF EXISTS `tiki_pages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_pages` (
  `page_id` int(14) NOT NULL AUTO_INCREMENT,
  `pageName` varchar(160) NOT NULL DEFAULT '',
  `hits` int(8) DEFAULT NULL,
  `data` text,
  `description` varchar(200) DEFAULT NULL,
  `lastModif` int(14) DEFAULT NULL,
  `comment` varchar(200) DEFAULT NULL,
  `version` int(8) NOT NULL DEFAULT '0',
  `user` varchar(40) DEFAULT NULL,
  `ip` varchar(15) DEFAULT NULL,
  `flag` char(1) DEFAULT NULL,
  `points` int(8) DEFAULT NULL,
  `votes` int(8) DEFAULT NULL,
  `cache` longtext,
  `wiki_cache` int(10) DEFAULT NULL,
  `cache_timestamp` int(14) DEFAULT NULL,
  `pageRank` decimal(4,3) DEFAULT NULL,
  `creator` varchar(200) DEFAULT NULL,
  `page_size` int(10) unsigned DEFAULT '0',
  `lang` varchar(16) DEFAULT NULL,
  `lockedby` varchar(200) DEFAULT NULL,
  `is_html` tinyint(1) DEFAULT '0',
  `created` int(14) DEFAULT NULL,
  PRIMARY KEY (`page_id`),
  UNIQUE KEY `pageName` (`pageName`),
  KEY `data` (`data`(255)),
  KEY `pageRank` (`pageRank`),
  FULLTEXT KEY `ft` (`pageName`,`description`,`data`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_pages`
--

LOCK TABLES `tiki_pages` WRITE;
/*!40000 ALTER TABLE `tiki_pages` DISABLE KEYS */;
INSERT INTO `tiki_pages` VALUES (1,'HomePage',791,'Just playing around with things for now.\r\n\r\n((liver disease))\r\n\r\nDogTraining','',1207338951,'',3,'admin','82.2.125.102',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',76,NULL,NULL,0,1207250332),(2,'liver disease',196,'This page will be about liver disease\r\n\r\nblah  blah bla\r\n\r\nooh ooh ohh\r\n\r\ngurgle gurgle\r\n\r\nHomePage','',1207339156,'',4,'admin','82.2.125.102',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',99,NULL,NULL,0,1207250727),(3,'DogTraining',109,'A page about dog training\r\n\r\nwe\'ll discuss ToiletTraining\r\n\r\nand dog potty training\r\n\r\n','',1207341239,'',2,'admin','82.2.125.102',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',87,NULL,NULL,0,1207338980),(4,'ToiletTraining',100,'HomePage','',1207339119,'',2,'admin','82.2.125.102',NULL,NULL,NULL,NULL,NULL,0,NULL,'admin',8,NULL,NULL,0,1207339091);
/*!40000 ALTER TABLE `tiki_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_pageviews`
--

DROP TABLE IF EXISTS `tiki_pageviews`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_pageviews` (
  `day` int(14) NOT NULL DEFAULT '0',
  `pageviews` int(14) DEFAULT NULL,
  PRIMARY KEY (`day`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_pageviews`
--

LOCK TABLES `tiki_pageviews` WRITE;
/*!40000 ALTER TABLE `tiki_pageviews` DISABLE KEYS */;
INSERT INTO `tiki_pageviews` VALUES (1207285200,93),(1207371600,51),(1207458000,65),(1207544400,13),(1207630800,4),(1207803600,7),(1207890000,15),(1208062800,2),(1208149200,3),(1208235600,19),(1208322000,3),(1208408400,15),(1208494800,2),(1208754000,38),(1209013200,2),(1209099600,4),(1209272400,5),(1209358800,2),(1209531600,2),(1209618000,52),(1209704400,11),(1209790800,13),(1209877200,4),(1209963600,5),(1210050000,1),(1210136400,3),(1210222800,7),(1210395600,49),(1210482000,3),(1210568400,3),(1210654800,6),(1210741200,58),(1210827600,3),(1210914000,8),(1211000400,6),(1211086800,7),(1211173200,7),(1211259600,5),(1211346000,11),(1211432400,3),(1211605200,4),(1211691600,4),(1211778000,6),(1211864400,5),(1211950800,3),(1212037200,2),(1212210000,2),(1212296400,5),(1212382800,22),(1212469200,1),(1212642000,8),(1212728400,19),(1212814800,3),(1212901200,2),(1212987600,66),(1213074000,5),(1213160400,2),(1213246800,2),(1213333200,3),(1213419600,18),(1213506000,1),(1213592400,20),(1213678800,7),(1213765200,2),(1213851600,2),(1213938000,4),(1214024400,15),(1214110800,1),(1214197200,4),(1214283600,26),(1214370000,1),(1214456400,5),(1214542800,7),(1214629200,3),(1214715600,10),(1214802000,17),(1214888400,2),(1214974800,12),(1215061200,4),(1215147600,7),(1215234000,5),(1215320400,5),(1215406800,26),(1215493200,4),(1215579600,1),(1215666000,4),(1215752400,2),(1215838800,2),(1215925200,15),(1216011600,5),(1216098000,4),(1216184400,11),(1216270800,5),(1216357200,4),(1216443600,1),(1216530000,7),(1216616400,2),(1216702800,5),(1216789200,8),(1216962000,7),(1217048400,10),(1217134800,6),(1217221200,8),(1217307600,9),(1217394000,6),(1217480400,7),(1217566800,1),(1217653200,1),(1217739600,4),(1217826000,15),(1217912400,1),(1217998800,3),(1218085200,3),(1218171600,13),(1218258000,7),(1218344400,8),(1218430800,21),(1218517200,6),(1218603600,1),(1218690000,2),(1218776400,3),(1218862800,1),(1218949200,9),(1219035600,5),(1219122000,10),(1219208400,2),(1219294800,1),(1219381200,16),(1219467600,4),(1219554000,7),(1219640400,7),(1219726800,6),(1219813200,6),(1219899600,20),(1219986000,4),(1220072400,11),(1220158800,10),(1220245200,11),(1220331600,4),(1220418000,19),(1220504400,8),(1220590800,5),(1220677200,18),(1220763600,2),(1220850000,4),(1220936400,14),(1221022800,15),(1221109200,1),(1221282000,4),(1221368400,4),(1221454800,3),(1221541200,15),(1221627600,4),(1221714000,4),(1221800400,3),(1221886800,1),(1221973200,3),(1222059600,14),(1222146000,8),(1222232400,9),(1222318800,5),(1222405200,5),(1222491600,5),(1222578000,11),(1222664400,19),(1222750800,8),(1222837200,2),(1222923600,14),(1223010000,9),(1223096400,34),(1223182800,8),(1223269200,40),(1223355600,34),(1223442000,21),(1223528400,12),(1223614800,3),(1223701200,3),(1223787600,10),(1223874000,11),(1223960400,3),(1224046800,4),(1224133200,13),(1224219600,3),(1224306000,37),(1224392400,4),(1224478800,3),(1224565200,5),(1224651600,16),(1224738000,10),(1224824400,7),(1224910800,33),(1224997200,4),(1225083600,22),(1225170000,2),(1225256400,6),(1225342800,9),(1225429200,4),(1225515600,3),(1225602000,11),(1225692000,9),(1225778400,23),(1225864800,4),(1225951200,9),(1226037600,3),(1226124000,1),(1226210400,5),(1226296800,5),(1226383200,21),(1226469600,6),(1226556000,5),(1226642400,6),(1226728800,23),(1226815200,2),(1226901600,2),(1226988000,9),(1227074400,3),(1227160800,8),(1227247200,15),(1227333600,5),(1227420000,23),(1227506400,15),(1227592800,1),(1227679200,11),(1227765600,6),(1227852000,1),(1227938400,9),(1228024800,4),(1228111200,7),(1228197600,15),(1228284000,5),(1228370400,8),(1228456800,10),(1228543200,7),(1228629600,4),(1228716000,5),(1228802400,1),(1228888800,7),(1228975200,9),(1229061600,3),(1229148000,39),(1229234400,20),(1229320800,26),(1229407200,4),(1229493600,12),(1229580000,5),(1229666400,4),(1229752800,9),(1229839200,9),(1229925600,2),(1230012000,7),(1230098400,20),(1230184800,13),(1230271200,2),(1230357600,15),(1230444000,50),(1230530400,11),(1230616800,13),(1230703200,7),(1230789600,5),(1230876000,10),(1230962400,7),(1231048800,5),(1231135200,6),(1231221600,16),(1231308000,7),(1231394400,9),(1231480800,10),(1231567200,8),(1231653600,2),(1231740000,6),(1231826400,10),(1231912800,8),(1231999200,31),(1232085600,4),(1232172000,6),(1232258400,8),(1232344800,9),(1232431200,15),(1232517600,3),(1232604000,2),(1232690400,10),(1232776800,12),(1232863200,18),(1232949600,42),(1233036000,6),(1233122400,5),(1233208800,9),(1233295200,15),(1233381600,6),(1233468000,5),(1233554400,7),(1233640800,33),(1233727200,9),(1233813600,2),(1233900000,5),(1233986400,2),(1234072800,10),(1234159200,2),(1234245600,11),(1234332000,8),(1234418400,8),(1234504800,6),(1234591200,7),(1234677600,23),(1234850400,6),(1234936800,12),(1235023200,8),(1235109600,5),(1235196000,1),(1235282400,6),(1235368800,2),(1235455200,4),(1235541600,11),(1235628000,33),(1235714400,12),(1235800800,2),(1235887200,7),(1235973600,7),(1236060000,19),(1236146400,4),(1236232800,3),(1236319200,2),(1236405600,4),(1236492000,7),(1236574800,5),(1236661200,7),(1236747600,10),(1236834000,5),(1236920400,25),(1237006800,29),(1237093200,7),(1237179600,4),(1237266000,12),(1237352400,8),(1237438800,4),(1237525200,4),(1237611600,10),(1237698000,2),(1237784400,8),(1237870800,5),(1237957200,8),(1238043600,4),(1238130000,1),(1238216400,6),(1238302800,2),(1238389200,14),(1238475600,21),(1238562000,8),(1238648400,20),(1238734800,23),(1238821200,9),(1238907600,6),(1238994000,3),(1239080400,4),(1239166800,10),(1239253200,9),(1239339600,3),(1239426000,5),(1239512400,5),(1239598800,20),(1239685200,8),(1239771600,4),(1239858000,5),(1239944400,11),(1240030800,8),(1240117200,10),(1240203600,3),(1240290000,2),(1240376400,19),(1240462800,1);
/*!40000 ALTER TABLE `tiki_pageviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_poll_objects`
--

DROP TABLE IF EXISTS `tiki_poll_objects`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_poll_objects` (
  `catObjectId` int(11) NOT NULL DEFAULT '0',
  `pollId` int(11) NOT NULL DEFAULT '0',
  `title` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`catObjectId`,`pollId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_poll_objects`
--

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

--
-- Table structure for table `tiki_poll_options`
--

DROP TABLE IF EXISTS `tiki_poll_options`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_poll_options` (
  `pollId` int(8) NOT NULL DEFAULT '0',
  `optionId` int(8) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) DEFAULT NULL,
  `position` int(4) NOT NULL DEFAULT '0',
  `votes` int(8) DEFAULT NULL,
  PRIMARY KEY (`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_poll_options`
--

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

--
-- Table structure for table `tiki_polls`
--

DROP TABLE IF EXISTS `tiki_polls`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_polls` (
  `pollId` int(8) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) DEFAULT NULL,
  `votes` int(8) DEFAULT NULL,
  `active` char(1) DEFAULT NULL,
  `publishDate` int(14) DEFAULT NULL,
  PRIMARY KEY (`pollId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_polls`
--

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

--
-- Table structure for table `tiki_preferences`
--

DROP TABLE IF EXISTS `tiki_preferences`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_preferences` (
  `name` varchar(40) NOT NULL DEFAULT '',
  `value` text,
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_preferences`
--

LOCK TABLES `tiki_preferences` WRITE;
/*!40000 ALTER TABLE `tiki_preferences` DISABLE KEYS */;
INSERT INTO `tiki_preferences` VALUES ('allowRegister','n'),('anonCanEdit','n'),('art_list_author','y'),('art_list_date','y'),('art_list_expire','n'),('art_list_img','n'),('art_list_reads','y'),('art_list_size','n'),('art_list_title','y'),('art_list_topic','y'),('art_list_type','y'),('art_list_visible','n'),('article_comments_default_ordering','points_desc'),('article_comments_per_page','10'),('auth_create_user_auth','n'),('auth_create_user_tiki','n'),('auth_imap_pop3_basedsn',''),('auth_ldap_adminpass',''),('auth_ldap_adminuser',''),('auth_ldap_basedn',''),('auth_ldap_groupattr','cn'),('auth_ldap_groupdn',''),('auth_ldap_groupoc','groupOfUniqueNames'),('auth_ldap_memberattr','uniqueMember'),('auth_ldap_memberisdn','n'),('auth_ldap_scope','sub'),('auth_ldap_url',''),('auth_ldap_userattr','uid'),('auth_ldap_userdn',''),('auth_ldap_useroc','inetOrgPerson'),('auth_method','tiki'),('auth_pear_host','localhost'),('auth_pear_port','389'),('auth_skip_admin','y'),('auth_type','LDAP'),('available_languages','a:0:{}'),('available_styles','a:0:{}'),('blog_comments_default_ordering','points_desc'),('blog_comments_per_page','10'),('blog_list_activity','y'),('blog_list_created','y'),('blog_list_description','y'),('blog_list_lastmodif','y'),('blog_list_order','created_desc'),('blog_list_posts','y'),('blog_list_title','y'),('blog_list_user','n'),('blog_list_visits','y'),('blog_spellcheck','n'),('cacheimages','n'),('cachepages','n'),('calendar_sticky_popup','n'),('calendar_view_tab','n'),('change_language','y'),('change_password','y'),('change_theme','y'),('cms_bot_bar','y'),('cms_left_column','y'),('cms_right_column','y'),('cms_spellcheck','n'),('cms_top_bar','n'),('contact_anon','n'),('contact_user','admin'),('count_admin_pvs','y'),('default_map','pacific.map'),('default_wiki_diff_style','minsidediff'),('direct_pagination','n'),('directory_columns','3'),('directory_cool_sites','y'),('directory_links_per_page','20'),('directory_open_links','n'),('directory_validate_urls','n'),('display_timezone','EST'),('eponymousGroups','n'),('faq_comments_default_ordering','points_desc'),('faq_comments_per_page','10'),('feature_article_comments','n'),('feature_articles','y'),('feature_autolinks','y'),('feature_babelfish','n'),('feature_babelfish_logo','n'),('feature_backlinks','y'),('feature_banners','y'),('feature_banning','n'),('feature_blog_comments','n'),('feature_blog_rankings','y'),('feature_blogposts_comments','n'),('feature_blogposts_pings','n'),('feature_blogs','y'),('feature_bot_bar','y'),('feature_bot_bar_debug','n'),('feature_bot_bar_icons','y'),('feature_calendar','n'),('feature_categories','n'),('feature_categoryobjects','n'),('feature_categorypath','n'),('feature_challenge','n'),('feature_charts','n'),('feature_chat','n'),('feature_clear_passwords','n'),('feature_cms_print','y'),('feature_cms_rankings','y'),('feature_cms_templates','n'),('feature_comm','n'),('feature_contact','n'),('feature_custom_home','n'),('feature_debug_console','n'),('feature_debugger_console','n'),('feature_detect_language','n'),('feature_directory','n'),('feature_drawings','n'),('feature_dump','n'),('feature_dynamic_content','n'),('feature_edit_templates','n'),('feature_editcss','n'),('feature_eph','n'),('feature_faq_comments','y'),('feature_faqs','n'),('feature_featuredLinks','y'),('feature_file_galleries','y'),('feature_file_galleries_comments','n'),('feature_file_galleries_rankings','n'),('feature_forum_parse','y'),('feature_forum_quickjump','n'),('feature_forum_rankings','y'),('feature_forum_topicd','n'),('feature_forums','y'),('feature_friends','n'),('feature_gal_batch','n'),('feature_gal_imgcache','n'),('feature_gal_rankings','y'),('feature_gal_slideshow','y'),('feature_galleries','n'),('feature_games','n'),('feature_help','y'),('feature_history','y'),('feature_hotwords','y'),('feature_hotwords_nw','y'),('feature_html_pages','y'),('feature_image_galleries_comments','n'),('feature_integrator','n'),('feature_jscalendar','n'),('feature_lastChanges','y'),('feature_left_column','y'),('feature_likePages','n'),('feature_listPages','y'),('feature_live_support','n'),('feature_maps','n'),('feature_menusfolderstyle','y'),('feature_messages','n'),('feature_minical','n'),('feature_mobile','n'),('feature_modulecontrols','n'),('feature_multilingual','n'),('feature_newsletters','y'),('feature_newsreader','n'),('feature_notepad','n'),('feature_obzip','n'),('feature_page_title','y'),('feature_phplayers','n'),('feature_poll_anonymous','n'),('feature_poll_comments','n'),('feature_polls','n'),('feature_quizzes','n'),('feature_ranking','n'),('feature_referer_stats','y'),('feature_right_column','y'),('feature_sandbox','n'),('feature_score','n'),('feature_search','y'),('feature_search_fulltext','y'),('feature_search_stats','n'),('feature_sheet','n'),('feature_shoutbox','n'),('feature_smileys','y'),('feature_stats','y'),('feature_submissions','n'),('feature_surveys','n'),('feature_tabs','n'),('feature_tasks','n'),('feature_theme_control','n'),('feature_ticketlib','n'),('feature_ticketlib2','y'),('feature_top_bar','y'),('feature_trackbackpings','n'),('feature_trackers','n'),('feature_userPreferences','n'),('feature_userVersions','n'),('feature_user_bookmarks','n'),('feature_user_watches','n'),('feature_user_watches_translations','n'),('feature_userfiles','n'),('feature_usermenu','n'),('feature_view_tpl','n'),('feature_warn_on_edit','n'),('feature_webmail','n'),('feature_wiki','y'),('feature_wiki_allowhtml','n'),('feature_wiki_attachments','n'),('feature_wiki_comments','n'),('feature_wiki_description','n'),('feature_wiki_discuss','n'),('feature_wiki_export','n'),('feature_wiki_footnotes','n'),('feature_wiki_import_html','n'),('feature_wiki_import_page','n'),('feature_wiki_monosp','n'),('feature_wiki_multiprint','n'),('feature_wiki_notepad','n'),('feature_wiki_open_as_structure','n'),('feature_wiki_pdf','n'),('feature_wiki_pictures','n'),('feature_wiki_rankings','y'),('feature_wiki_ratings','n'),('feature_wiki_tables','new'),('feature_wiki_templates','n'),('feature_wiki_undo','n'),('feature_wiki_userpage','y'),('feature_wiki_userpage_prefix','UserPage'),('feature_wiki_usrlock','n'),('feature_wikiwords','y'),('feature_workflow','n'),('feature_wysiwyg','no'),('feature_xmlrpc','n'),('fgal_allow_duplicates','y'),('fgal_list_created','y'),('fgal_list_description','n'),('fgal_list_files','y'),('fgal_list_hits','y'),('fgal_list_lastmodif','y'),('fgal_list_name','y'),('fgal_list_user','y'),('fgal_match_regex',''),('fgal_nmatch_regex',''),('fgal_use_db','y'),('fgal_use_dir',''),('file_galleries_comments_default_ordering','points_desc'),('file_galleries_comments_per_page','10'),('forgotPass','n'),('forum_list_desc','y'),('forum_list_lastpost','y'),('forum_list_posts','y'),('forum_list_ppd','n'),('forum_list_topics','n'),('forum_list_visits','y'),('forums_ordering','created_desc'),('gal_batch_dir',''),('gal_imgcache_dir','temp/cache'),('gal_list_created','y'),('gal_list_description','y'),('gal_list_imgs','y'),('gal_list_lastmodif','y'),('gal_list_name','y'),('gal_list_user','y'),('gal_list_visits','y'),('gal_match_regex',''),('gal_nmatch_regex',''),('gal_use_db','y'),('gal_use_dir',''),('gal_use_lib','gd'),('groupTracker','n'),('home_file_gallery',''),('http_domain',''),('http_port','80'),('http_prefix','/'),('https','auto'),('https_domain',''),('https_login','n'),('https_login_required','n'),('https_port','443'),('https_prefix','/'),('image_galleries_comments_default_order','points_desc'),('image_galleries_comments_per_page','10'),('keep_versions','1'),('lang_use_db','n'),('language','en'),('layout_section','n'),('limitedGoGroupHome','y'),('long_date_format','%A %d of %B, %Y'),('long_time_format','%H:%M:%S %Z'),('mail_crlf','LF'),('map_path','/var/www/html/map/'),('maxArticles','10'),('maxRecords','25'),('maxVersions','0'),('max_rss_articles','10'),('max_rss_blog','10'),('max_rss_blogs','10'),('max_rss_directories','10'),('max_rss_file_galleries','10'),('max_rss_file_gallery','10'),('max_rss_forum','10'),('max_rss_forums','10'),('max_rss_image_galleries','10'),('max_rss_image_gallery','10'),('max_rss_mapfiles','10'),('max_rss_tracker','10'),('max_rss_wiki','10'),('min_pass_length','1'),('modallgroups','n'),('pass_chr_num','n'),('pass_due','1999'),('poll_comments_default_ordering','points_desc'),('poll_comments_per_page','10'),('popupLinks','n'),('proxy_host',''),('proxy_port',''),('record_untranslated','n'),('registerPasscode',''),('rememberme','disabled'),('remembertime','7200'),('rnd_num_reg','n'),('rss_articles','n'),('rss_blog','n'),('rss_blogs','n'),('rss_directories','n'),('rss_file_galleries','n'),('rss_file_gallery','n'),('rss_forum','n'),('rss_forums','n'),('rss_image_galleries','n'),('rss_image_gallery','n'),('rss_mapfiles','n'),('rss_tracker','n'),('rss_wiki','n'),('rssfeed_creator',''),('rssfeed_css','y'),('rssfeed_default_version','2'),('rssfeed_editor',''),('rssfeed_language','en-us'),('rssfeed_publisher',''),('rssfeed_webmaster',''),('search_lru_length','100'),('search_lru_purge_rate','5'),('search_max_syllwords','100'),('search_min_wordlength','3'),('search_refresh_rate','5'),('search_syll_age','48'),('sender_email',''),('short_date_format','%a %d of %b, %Y'),('short_time_format','%H:%M %Z'),('shoutbox_autolink','n'),('siteTitle',''),('slide_style','slidestyle.css'),('system_os','unix'),('t_use_db','y'),('t_use_dir',''),('tikiIndex','tiki-index.php'),('tmpDir','temp'),('trk_with_mirror_tables','n'),('uf_use_db','y'),('uf_use_dir',''),('urlIndex',''),('useRegisterPasscode','n'),('useUrlIndex','n'),('use_proxy','n'),('userTracker','n'),('user_assigned_modules','n'),('user_list_order','score_desc'),('userfiles_quota','30'),('validateEmail','n'),('validateRegistration','n'),('validateUsers','n'),('w_use_db','y'),('w_use_dir',''),('warn_on_edit_time','2'),('webmail_max_attachment','1500000'),('webmail_view_html','y'),('webserverauth','n'),('wikiHomePage','HomePage'),('wikiLicensePage',''),('wikiSubmitNotice',''),('wiki_bot_bar','n'),('wiki_cache','0'),('wiki_comments_default_ordering','points_desc'),('wiki_comments_per_page','10'),('wiki_creator_admin','n'),('wiki_feature_copyrights','n'),('wiki_forum',''),('wiki_forum_id',''),('wiki_left_column','y'),('wiki_list_backlinks','y'),('wiki_list_comment','y'),('wiki_list_creator','n'),('wiki_list_hits','y'),('wiki_list_lastmodif','y'),('wiki_list_lastver','n'),('wiki_list_links','n'),('wiki_list_name','y'),('wiki_list_size','n'),('wiki_list_status','n'),('wiki_list_user','y'),('wiki_list_versions','n'),('wiki_page_regex','strict'),('wiki_right_column','y'),('wiki_spellcheck','n'),('wiki_top_bar','n'),('wiki_uses_slides','n'),('wiki_wikisyntax_in_html','full'),('messu_mailbox_size','0'),('messu_archive_size','200'),('messu_sent_size','200'),('case_patched','y'),('tiki_version_last_check','1209650890'),('tiki_release','1.9.11'),('style','moreneat.css'),('feature_siteidentity','y'),('user_flip_modules','module'),('tiki_needs_upgrade','y');
/*!40000 ALTER TABLE `tiki_preferences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_private_messages`
--

DROP TABLE IF EXISTS `tiki_private_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_private_messages` (
  `messageId` int(8) NOT NULL AUTO_INCREMENT,
  `toNickname` varchar(200) NOT NULL DEFAULT '',
  `data` varchar(255) DEFAULT NULL,
  `poster` varchar(200) NOT NULL DEFAULT 'anonymous',
  `timestamp` int(14) DEFAULT NULL,
  PRIMARY KEY (`messageId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_private_messages`
--

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

--
-- Table structure for table `tiki_programmed_content`
--

DROP TABLE IF EXISTS `tiki_programmed_content`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_programmed_content` (
  `pId` int(8) NOT NULL AUTO_INCREMENT,
  `contentId` int(8) NOT NULL DEFAULT '0',
  `publishDate` int(14) NOT NULL DEFAULT '0',
  `data` text,
  PRIMARY KEY (`pId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_programmed_content`
--

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

--
-- Table structure for table `tiki_quicktags`
--

DROP TABLE IF EXISTS `tiki_quicktags`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quicktags` (
  `tagId` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `taglabel` varchar(255) DEFAULT NULL,
  `taginsert` text,
  `tagicon` varchar(255) DEFAULT NULL,
  `tagcategory` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`tagId`),
  KEY `tagcategory` (`tagcategory`),
  KEY `taglabel` (`taglabel`)
) ENGINE=MyISAM AUTO_INCREMENT=61 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quicktags`
--

LOCK TABLES `tiki_quicktags` WRITE;
/*!40000 ALTER TABLE `tiki_quicktags` DISABLE KEYS */;
INSERT INTO `tiki_quicktags` VALUES (1,'bold','__text__','images/ed_format_bold.gif','wiki'),(2,'italic','\'\'text\'\'','images/ed_format_italic.gif','wiki'),(3,'underline','===text===','images/ed_format_underline.gif','wiki'),(4,'table','||r1c1|r1c2||r2c1|r2c2||','images/insert_table.gif','wiki'),(5,'table new','||r1c1|r1c2\nr2c1|r2c2||','images/insert_table.gif','wiki'),(6,'external link','[http://example.com|text]','images/ed_link.gif','wiki'),(7,'wiki link','((text))','images/ed_copy.gif','wiki'),(8,'heading1','!text','images/ed_custom.gif','wiki'),(9,'title bar','-=text=-','images/fullscreen_maximize.gif','wiki'),(10,'box','^text^','images/ed_about.gif','wiki'),(11,'rss feed','{rss id= }','images/ico_link.gif','wiki'),(12,'dynamic content','{content id= }','images/book.gif','wiki'),(13,'tagline','{cookie}','images/footprint.gif','wiki'),(14,'hr','---','images/ed_hr.gif','wiki'),(15,'center text','::text::','images/ed_align_center.gif','wiki'),(16,'colored text','~~#FF0000:text~~','images/fontfamily.gif','wiki'),(17,'dynamic variable','%text%','images/book.gif','wiki'),(18,'image','{img src= width= height= align= desc= link= }','images/ed_image.gif','wiki'),(19,'New wms Metadata','METADATA\r\n		\"wms_name\" \"myname\"\r\n 	\"wms_srs\" \"EPSG:4326\"\r\n 	\"wms_server_version\" \" \"\r\n 	\"wms_layers\" \"mylayers\"\r\n 	\"wms_request\" \"myrequest\"\r\n 	\"wms_format\" \" \"\r\n 	\"wms_time\" \" \"\r\n END','img/icons/admin_metatags.png','maps'),(20,'New Class','CLASS\r\n EXPRESSION ()\r\n SYMBOL 0\r\n OUTLINECOLOR\r\n COLOR\r\n NAME \"myclass\" \r\nEND #end of class','img/icons/mini_triangle.gif','maps'),(42,'New Projection','PROJECTION\r\n \"init=epsg:4326\"\r\nEND','images/ico_mode.gif','maps'),(22,'New Query','#\r\n# Start of query definitions\r\n#\r\n QUERYMAP\r\n STATUS ON\r\n STYLE HILITE\r\nEND','img/icons/questions.gif','maps'),(23,'New Scalebar','#\r\n# Start of scalebar\r\n#\r\nSCALEBAR\r\n IMAGECOLOR 255 255 255\r\n STYLE 1\r\n SIZE 400 2\r\n COLOR 0 0 0\r\n UNITS KILOMETERS\r\n INTERVALS 5\r\n STATUS ON\r\nEND','img/icons/desc_length.gif','maps'),(24,'New Layer','LAYER\r\n NAME\r\n TYPE\r\n STATUS ON\r\n DATA \"mydata\"\r\nEND #end of layer','images/ed_copy.gif','maps'),(25,'New Label','LABEL\r\n COLOR\r\n ANGLE\r\n FONT arial\r\n TYPE TRUETYPE\r\n POSITION\r\n PARTIALS TRUE\r\n SIZE 6\r\n BUFFER 0\r\n OUTLINECOLOR \r\nEND #end of label','img/icons/fontfamily.gif','maps'),(26,'New Reference','#\r\n#start of reference\r\n#\r\n REFERENCE\r\n SIZE 120 60\r\n STATUS ON\r\n EXTENT -180 -90 182 88\r\n OUTLINECOLOR 255 0 0\r\n IMAGE \"myimagedata\"\r\n COLOR -1 -1 -1\r\nEND','images/ed_image.gif','maps'),(27,'New Legend','#\r\n#start of Legend\r\n#\r\n LEGEND\r\n KEYSIZE 18 12\r\n POSTLABELCACHE TRUE\r\n STATUS ON\r\nEND','images/ed_about.gif','maps'),(28,'New Web','#\r\n# Start of web interface definition\r\n#\r\nWEB\r\n TEMPLATE \"myfile/url\"\r\n MINSCALE 1000\r\n MAXSCALE 40000\r\n IMAGEPATH \"myimagepath\"\r\n IMAGEURL \"mypath\"\r\nEND','img/icons/ico_link.gif','maps'),(50,'New Outputformat','OUTPUTFORMAT\r\n NAME\r\n DRIVER \" \"\r\n MIMETYPE \"myimagetype\"\r\n IMAGEMODE RGB\r\n EXTENSION \"png\"\r\nEND','img/icons/opera.gif','maps'),(30,'New Mapfile','#\r\n# Start of mapfile\r\n#\r\nNAME MYMAPFLE\r\n STATUS ON\r\nSIZE \r\nEXTENT\r\nUNITS \r\nSHAPEPATH \" \"\r\nIMAGETYPE \" \"\r\nFONTSET \" \"\r\nIMAGECOLOR -1 -1 -1\r\n\r\n#remove this text and add objects here\r\n\r\nEND # end of mapfile','img/icons/global.gif','maps'),(52,'bold','__text__','images/ed_format_bold.gif','newsletters'),(53,'italic','\'\'text\'\'','images/ed_format_italic.gif','newsletters'),(54,'underline','===text===','images/ed_format_underline.gif','newsletters'),(56,'heading1','!text','images/ed_custom.gif','newsletters'),(57,'hr','---','images/ed_hr.gif','newsletters'),(58,'center text','::text::','images/ed_align_center.gif','newsletters'),(59,'colored text','~~#FF0000:text~~','images/fontfamily.gif','newsletters'),(60,'image','{img src= width= height= align= desc= link= }','images/ed_image.gif','newsletters'),(40,'New wms Metadata','METADATA\r\n		\"wms_name\" \"myname\"\r\n		\"wms_srs\" \"EPSG:4326\"\r\n	\"wms_server_version\" \" \"\r\n	\"wms_layers\" \"mylayers\"\r\n	\"wms_request\" \"myrequest\"\r\n	\"wms_format\" \" \"\r\n	\"wms_time\" \" \"\r\n END','img/icons/admin_metatags.png','maps'),(41,'New Class','CLASS\r\n EXPRESSION ()\r\n SYMBOL 0\r\n OUTLINECOLOR\r\n COLOR\r\n  NAME \"myclass\"\r\nEND #end of class','img/icons/mini_triangle.gif','maps'),(43,'New Query','#\r\n#Start of query definitions\r\n QUERYMAP\r\n STATUS ON\r\n STYLE HILITE\r\nEND','img/icons/question.gif','maps'),(44,'New Scalebar','#\r\n#start of scalebar\r\nSCALEBAR\r\n IMAGECOLOR 255 255 255\r\n STYLE 1\r\n SIZE 400 2\r\n COLOR 0 0 0\r\n  UNITS KILOMETERS\r\n INTERVALS 5\r\n STATUS ON\r\nEND','img/icons/desc_lenght.gif','maps'),(45,'New Layer','LAYER\r\n NAME \"mylayer\"\r\n TYPE\r\n STATUS ON\r\n DATA \"mydata\"\r\nEND #end of layer','img/ed_copy.gif','maps'),(46,'New Label','LABEL\r\n  COLOR\r\n ANGLE\r\n FONT arial\r\n TYPE TRUETYPE\r\n  POSITION\r\n  PARTIALS TRUE\r\n  SIZE 6\r\n  BUFFER 0\r\n OUTLINECOLOR\r\nEND #end of label','img/icons/fontfamily.gif','maps'),(47,'New Reference','#\r\n#start of reference\r\nREFERENCE\r\n SIZE 120 60\r\n STATUS ON\r\n  EXTENT -180 -90 182 88\r\n OUTLINECOLOR 255 0 0\r\n IMAGE \"myimagedata\"\r\nCOLOR -1 -1 -1\r\nEND','images/ed_image.gif','maps'),(48,'New Legend','#\r\n#start of legend\r\n#\r\nLEGENDr\n KEYSIZE 18 12\r\n POSTLABELCACHE TRUE\r\n STATUS ON\r\nEND','images/ed_about.gif','maps'),(49,'New Web','#\r\n#Start of web interface definition\r\n#\r\nWEB\r\n TEMPLATE \"myfile/url\"\r\n MINSCALE 1000\r\n MAXSCALE 40000\r\n IMAGEPATH \"myimagepath\"\r\n IMAGEURL \"mypath\"\r\nEND','img/icons/ico_link.gif','maps'),(51,'New Mapfile','#\r\n#Start of mapfile\r\n#\r\nNAME MYMAPFILE\r\n STATUS ON\r\nSIZE \r\nEXTENT\r\n UNITS\r\nSHAPEPATH \" \"\r\nIMAGETYPE \" \"\r\nFONTSET \" \"\r\nIMAGECOLOR -1 -1 -1\r\n\r\n#remove this text and add objects here\r\n\r\nEND # end of mapfile','img/icons/global.gif','maps'),(55,'external link','[http://example.com|text|nocache]','images/ed_link.gif','newsletters');
/*!40000 ALTER TABLE `tiki_quicktags` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_quiz_question_options`
--

DROP TABLE IF EXISTS `tiki_quiz_question_options`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quiz_question_options` (
  `optionId` int(10) NOT NULL AUTO_INCREMENT,
  `questionId` int(10) DEFAULT NULL,
  `optionText` text,
  `points` int(4) DEFAULT NULL,
  PRIMARY KEY (`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quiz_question_options`
--

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

--
-- Table structure for table `tiki_quiz_questions`
--

DROP TABLE IF EXISTS `tiki_quiz_questions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quiz_questions` (
  `questionId` int(10) NOT NULL AUTO_INCREMENT,
  `quizId` int(10) DEFAULT NULL,
  `question` text,
  `position` int(4) DEFAULT NULL,
  `type` char(1) DEFAULT NULL,
  `maxPoints` int(4) DEFAULT NULL,
  PRIMARY KEY (`questionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quiz_questions`
--

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

--
-- Table structure for table `tiki_quiz_results`
--

DROP TABLE IF EXISTS `tiki_quiz_results`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quiz_results` (
  `resultId` int(10) NOT NULL AUTO_INCREMENT,
  `quizId` int(10) DEFAULT NULL,
  `fromPoints` int(4) DEFAULT NULL,
  `toPoints` int(4) DEFAULT NULL,
  `answer` text,
  PRIMARY KEY (`resultId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quiz_results`
--

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

--
-- Table structure for table `tiki_quiz_stats`
--

DROP TABLE IF EXISTS `tiki_quiz_stats`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quiz_stats` (
  `quizId` int(10) NOT NULL DEFAULT '0',
  `questionId` int(10) NOT NULL DEFAULT '0',
  `optionId` int(10) NOT NULL DEFAULT '0',
  `votes` int(10) DEFAULT NULL,
  PRIMARY KEY (`quizId`,`questionId`,`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quiz_stats`
--

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

--
-- Table structure for table `tiki_quiz_stats_sum`
--

DROP TABLE IF EXISTS `tiki_quiz_stats_sum`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quiz_stats_sum` (
  `quizId` int(10) NOT NULL DEFAULT '0',
  `quizName` varchar(255) DEFAULT NULL,
  `timesTaken` int(10) DEFAULT NULL,
  `avgpoints` decimal(5,2) DEFAULT NULL,
  `avgavg` decimal(5,2) DEFAULT NULL,
  `avgtime` decimal(5,2) DEFAULT NULL,
  PRIMARY KEY (`quizId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quiz_stats_sum`
--

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

--
-- Table structure for table `tiki_quizzes`
--

DROP TABLE IF EXISTS `tiki_quizzes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_quizzes` (
  `quizId` int(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `description` text,
  `canRepeat` char(1) DEFAULT NULL,
  `storeResults` char(1) DEFAULT NULL,
  `questionsPerPage` int(4) DEFAULT NULL,
  `timeLimited` char(1) DEFAULT NULL,
  `timeLimit` int(14) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `taken` int(10) DEFAULT NULL,
  `immediateFeedback` char(1) DEFAULT NULL,
  `showAnswers` char(1) DEFAULT NULL,
  `shuffleQuestions` char(1) DEFAULT NULL,
  `shuffleAnswers` char(1) DEFAULT NULL,
  `publishDate` int(14) DEFAULT NULL,
  `expireDate` int(14) DEFAULT NULL,
  `bDeleted` char(1) DEFAULT NULL,
  `nVersion` int(4) NOT NULL DEFAULT '0',
  `nAuthor` int(4) DEFAULT NULL,
  `bOnline` char(1) DEFAULT NULL,
  `bRandomQuestions` char(1) DEFAULT NULL,
  `nRandomQuestions` tinyint(4) DEFAULT NULL,
  `bLimitQuestionsPerPage` char(1) DEFAULT NULL,
  `nLimitQuestionsPerPage` tinyint(4) DEFAULT NULL,
  `bMultiSession` char(1) DEFAULT NULL,
  `nCanRepeat` tinyint(4) DEFAULT NULL,
  `sGradingMethod` varchar(80) DEFAULT NULL,
  `sShowScore` varchar(80) DEFAULT NULL,
  `sShowCorrectAnswers` varchar(80) DEFAULT NULL,
  `sPublishStats` varchar(80) DEFAULT NULL,
  `bAdditionalQuestions` char(1) DEFAULT NULL,
  `bForum` char(1) DEFAULT NULL,
  `sForum` varchar(80) DEFAULT NULL,
  `sPrologue` text,
  `sData` text,
  `sEpilogue` text,
  `passingperct` int(4) DEFAULT '0',
  PRIMARY KEY (`quizId`,`nVersion`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_quizzes`
--

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

--
-- Table structure for table `tiki_received_articles`
--

DROP TABLE IF EXISTS `tiki_received_articles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_received_articles` (
  `receivedArticleId` int(14) NOT NULL AUTO_INCREMENT,
  `receivedFromSite` varchar(200) DEFAULT NULL,
  `receivedFromUser` varchar(200) DEFAULT NULL,
  `receivedDate` int(14) DEFAULT NULL,
  `title` varchar(80) DEFAULT NULL,
  `authorName` varchar(60) DEFAULT NULL,
  `size` int(12) DEFAULT NULL,
  `useImage` char(1) DEFAULT NULL,
  `image_name` varchar(80) DEFAULT NULL,
  `image_type` varchar(80) DEFAULT NULL,
  `image_size` int(14) DEFAULT NULL,
  `image_x` int(4) DEFAULT NULL,
  `image_y` int(4) DEFAULT NULL,
  `image_data` longblob,
  `publishDate` int(14) DEFAULT NULL,
  `expireDate` int(14) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `heading` text,
  `body` longblob,
  `hash` varchar(32) DEFAULT NULL,
  `author` varchar(200) DEFAULT NULL,
  `type` varchar(50) DEFAULT NULL,
  `rating` decimal(3,2) DEFAULT NULL,
  PRIMARY KEY (`receivedArticleId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_received_articles`
--

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

--
-- Table structure for table `tiki_received_pages`
--

DROP TABLE IF EXISTS `tiki_received_pages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_received_pages` (
  `receivedPageId` int(14) NOT NULL AUTO_INCREMENT,
  `pageName` varchar(160) NOT NULL DEFAULT '',
  `data` longblob,
  `description` varchar(200) DEFAULT NULL,
  `comment` varchar(200) DEFAULT NULL,
  `receivedFromSite` varchar(200) DEFAULT NULL,
  `receivedFromUser` varchar(200) DEFAULT NULL,
  `receivedDate` int(14) DEFAULT NULL,
  PRIMARY KEY (`receivedPageId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_received_pages`
--

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

--
-- Table structure for table `tiki_referer_stats`
--

DROP TABLE IF EXISTS `tiki_referer_stats`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_referer_stats` (
  `referer` varchar(255) NOT NULL DEFAULT '',
  `hits` int(10) DEFAULT NULL,
  `last` int(14) DEFAULT NULL,
  PRIMARY KEY (`referer`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_referer_stats`
--

LOCK TABLES `tiki_referer_stats` WRITE;
/*!40000 ALTER TABLE `tiki_referer_stats` DISABLE KEYS */;
INSERT INTO `tiki_referer_stats` VALUES ('www.whois.sc',62,1225753216),('pacificair.com',15,1208316757),('www.google.com',5,1232019196),('therarestwords.com',6,1223357468),('www.wikili.com',1,1210902589),('www.google.com.au',27,1240199614),('ourblogs.ru',3,1211801047),('forex-trade.explainedhere.com',1,1211864794),('fillbest.com',1,1213043827),('in-textmedia.info',3,1214069264),('losangelespeople.com',1,1216420343),('888r.ru',3,1216836174),('1millionbloglinks.com',3,1217068417),('travelglobe.ru',3,1217512208),('search.live.com',24,1237280037),('555p.ru',4,1219469802),('y-travel.ru',4,1220086940),('www.google.se',3,1220180638),('onemillionlinks.biz',4,1222195769),('mywbs.com',1,1222809495),('www.domaincrawler.com',2,1224977354),('whois.domaintools.com',48,1240395009),('otvetoff.ru',2,1228562038),('www.keywordspy.com',54,1239983819),('www.iwebtool.com',1,1230173271),('RICHARDMUMFORD.com',1,1231045111),('JustShag.Me',2,1234621128),('communicationtube.com',1,1235356942),('SlutsHQ.com',1,1235468238),('www.onecallcruises.com',1,1237402530),('www.textlesson.com',2,1237423097),('www.fallentimes.com',2,1237626569),('www.metroblink.com',2,1238643587);
/*!40000 ALTER TABLE `tiki_referer_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_related_categories`
--

DROP TABLE IF EXISTS `tiki_related_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_related_categories` (
  `categId` int(10) NOT NULL DEFAULT '0',
  `relatedTo` int(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`categId`,`relatedTo`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_related_categories`
--

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

--
-- Table structure for table `tiki_rss_feeds`
--

DROP TABLE IF EXISTS `tiki_rss_feeds`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_rss_feeds` (
  `name` varchar(30) NOT NULL DEFAULT '',
  `rssVer` char(1) NOT NULL DEFAULT '1',
  `refresh` int(8) DEFAULT '300',
  `lastUpdated` int(14) DEFAULT NULL,
  `cache` longblob,
  PRIMARY KEY (`name`,`rssVer`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_rss_feeds`
--

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

--
-- Table structure for table `tiki_rss_modules`
--

DROP TABLE IF EXISTS `tiki_rss_modules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_rss_modules` (
  `rssId` int(8) NOT NULL AUTO_INCREMENT,
  `name` varchar(30) NOT NULL DEFAULT '',
  `description` text,
  `url` varchar(255) NOT NULL DEFAULT '',
  `refresh` int(8) DEFAULT NULL,
  `lastUpdated` int(14) DEFAULT NULL,
  `showTitle` char(1) DEFAULT 'n',
  `showPubDate` char(1) DEFAULT 'n',
  `content` longblob,
  PRIMARY KEY (`rssId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_rss_modules`
--

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

--
-- Table structure for table `tiki_score`
--

DROP TABLE IF EXISTS `tiki_score`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_score` (
  `event` varchar(40) NOT NULL DEFAULT '',
  `score` int(11) NOT NULL DEFAULT '0',
  `expiration` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`event`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_score`
--

LOCK TABLES `tiki_score` WRITE;
/*!40000 ALTER TABLE `tiki_score` DISABLE KEYS */;
INSERT INTO `tiki_score` VALUES ('login',1,0),('login_remain',2,60),('profile_fill',10,0),('profile_see',2,0),('profile_is_seen',1,0),('friend_new',10,0),('message_receive',1,0),('message_send',2,0),('article_read',2,0),('article_comment',5,0),('article_new',20,0),('article_is_read',1,0),('article_is_commented',2,0),('fgallery_new',10,0),('fgallery_new_file',10,0),('fgallery_download',5,0),('fgallery_is_downloaded',5,0),('igallery_new',10,0),('igallery_new_img',6,0),('igallery_see_img',3,0),('igallery_img_seen',1,0),('blog_new',20,0),('blog_post',5,0),('blog_read',2,0),('blog_comment',2,0),('blog_is_read',3,0),('blog_is_commented',3,0),('wiki_new',10,0),('wiki_edit',5,0),('wiki_attach_file',3,0);
/*!40000 ALTER TABLE `tiki_score` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_search_stats`
--

DROP TABLE IF EXISTS `tiki_search_stats`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_search_stats` (
  `term` varchar(50) NOT NULL DEFAULT '',
  `hits` int(10) DEFAULT NULL,
  PRIMARY KEY (`term`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_search_stats`
--

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

--
-- Table structure for table `tiki_searchindex`
--

DROP TABLE IF EXISTS `tiki_searchindex`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_searchindex` (
  `searchword` varchar(80) NOT NULL DEFAULT '',
  `location` varchar(80) NOT NULL DEFAULT '',
  `page` varchar(255) NOT NULL DEFAULT '',
  `count` int(11) NOT NULL DEFAULT '1',
  `last_update` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`searchword`,`location`,`page`(80)),
  KEY `last_update` (`last_update`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_searchindex`
--

LOCK TABLES `tiki_searchindex` WRITE;
/*!40000 ALTER TABLE `tiki_searchindex` DISABLE KEYS */;
INSERT INTO `tiki_searchindex` VALUES ('toilettraining','wiki','ToiletTraining',1,1239629168),('homepage','wiki','liver disease',1,1240199555),('gurgle','wiki','liver disease',2,1240199555),('blah','wiki','liver disease',2,1240199555),('disease','wiki','liver disease',2,1240199555),('liver','wiki','liver disease',2,1240199555),('homepage','wiki','HomePage',1,1239726257),('dogtraining','wiki','HomePage',1,1239726257),('disease','wiki','HomePage',1,1239726257),('about','wiki','liver disease',1,1240199555),('liver','wiki','HomePage',1,1239726257),('will','wiki','liver disease',1,1240199555),('now.','wiki','HomePage',1,1239726257),('page','wiki','liver disease',1,1240199555),('homepage','wiki','ToiletTraining',1,1239629168),('this','wiki','liver disease',1,1240199555),('admin','article','1',1,1240388140),('siterubix','article','1',1,1240388140),('generated','article','1',1,1240388140),('site','article','1',1,1240388140),('more','article','1',1,1240388140),('here','article','1',1,1240388140),('click','article','1',1,1240388140),('today!','article','1',1,1240388140),('dog,','article','1',1,1240388140),('more...','article','1',1,1240388140),('lots','article','1',1,1240388140),('outdoor','article','1',1,1240388140),('litter','article','1',1,1240388140),('paper,','article','1',1,1240388140),('crate,','article','1',1,1240388140),('about','article','1',1,1240388140),('learn','article','1',2,1240388140),('dog.','article','1',1,1240388140),('older','article','1',1,1240388140),('puppy,','article','1',1,1240388140),('easily','article','1',1,1240388140),('quickly','article','1',1,1240388140),('13-page','article','1',1,1240388140),('download','article','1',3,1240388140),('report','article','1',3,1240388140),('free','article','1',4,1240388140),('reading','article','1',1,1240388140),('how.start','article','1',1,1240388140),('know','article','1',1,1240388140),('when','article','1',1,1240388140),('easy','article','1',1,1240388140),('panic!!house','article','1',1,1240388140),('housetraining?don\'t','article','1',1,1240388140),('essentials','article','1',1,1240388140),('teaching','article','1',1,1240388140),('start','article','1',2,1240388140),('sure','article','1',1,1240388140),('puppy?','article','1',1,1240388140),('adult','article','1',3,1240388140),('with','article','1',1,1240388140),('problem','article','1',1,1240388140),('housebreaking','article','1',1,1240388140),('housetrain','article','1',1,1240388140),('train','article','1',1,1240388140),('teaches','article','1',1,1240388140),('guide','article','1',1,1240388140),('step-by-step','article','1',1,1240388140),('worry.','article','1',1,1240388140),('stress','article','1',1,1240388140),('admin','article','2',1,1238880027),('siterubix','article','2',1,1238880027),('generated','article','2',1,1238880027),('site','article','2',1,1238880027),('more','article','2',1,1238880027),('here','article','2',1,1238880027),('click','article','2',1,1238880027),('today!','article','2',1,1238880027),('dog,','article','2',1,1238880027),('more...','article','2',1,1238880027),('lots','article','2',1,1238880027),('outdoor','article','2',1,1238880027),('litter','article','2',1,1238880027),('paper,','article','2',1,1238880027),('crate,','article','2',1,1238880027),('about','article','2',1,1238880027),('learn','article','2',2,1238880027),('dog.','article','2',1,1238880027),('older','article','2',1,1238880027),('puppy,','article','2',1,1238880027),('easily','article','2',1,1238880027),('quickly','article','2',1,1238880027),('13-page','article','2',1,1238880027),('download','article','2',3,1238880027),('report','article','2',3,1238880027),('free','article','2',4,1238880027),('reading','article','2',1,1238880027),('how.start','article','2',1,1238880027),('know','article','2',1,1238880027),('session','blog_post','1',1,1239628993),('practice','blog_post','1',1,1239628993),('through','blog_post','1',1,1239628993),('sustain','blog_post','1',1,1239628993),('meal','blog_post','1',1,1239628993),('nice','blog_post','1',1,1239628993),('make','blog_post','1',1,1239628993),('mince','blog_post','1',1,1239628993),('lamb','blog_post','1',1,1239628993),('some','blog_post','1',1,1239628993),('cooking','blog_post','1',1,1239628993),('just','blog_post','1',1,1239628993),('admin','blog_post','1',1,1239628993),('prix','blog_post','1',1,1239628993),('grand','blog_post','1',1,1239628993),('dhabi','blog_post','1',1,1239628993),('without','article','1',1,1240388140),('puppy','article','1',2,1240388140),('your','article','1',6,1240388140),('housebreak','article','1',2,1240388140),('puppies','article','1',1,1240388140),('thing','blog','1',1,1237996137),('saturday','blog','1',1,1237996137),('it\'s','blog','1',1,1237996137),('admin','blog','1',1,1237996137),('blogs','blog','1',1,1237996137),('dogs','article','1',1,1240388140),('breaking','article','1',2,1240388140),('house','article','1',1,1240388140),('administrator','article','1',1,1240388140),('dogtraining','wiki','DogTraining',1,1240388264),('potty','wiki','DogTraining',1,1240388264),('toilettraining','wiki','DogTraining',1,1240388264),('discuss','wiki','DogTraining',1,1240388264),('system','article','1',1,1240388140),('training','article','1',4,1240388140),('potty','article','1',4,1240388140),('testing','blog','1',1,1237996137),('when','article','2',1,1238880027),('easy','article','2',1,1238880027),('panic!!house','article','2',1,1238880027),('housetraining?don\'t','article','2',1,1238880027),('essentials','article','2',1,1238880027),('teaching','article','2',1,1238880027),('start','article','2',2,1238880027),('sure','article','2',1,1238880027),('puppy?','article','2',1,1238880027),('adult','article','2',3,1238880027),('with','article','2',1,1238880027),('problem','article','2',1,1238880027),('we\'ll','wiki','DogTraining',1,1240388264),('training','wiki','DogTraining',2,1240388264),('housebreaking','article','2',1,1238880027),('housetrain','article','2',1,1238880027),('train','article','2',1,1238880027),('teaches','article','2',1,1238880027),('guide','article','2',1,1238880027),('step-by-step','article','2',1,1238880027),('worry.','article','2',1,1238880027),('stress','article','2',1,1238880027),('without','article','2',1,1238880027),('puppy','article','2',2,1238880027),('about','wiki','DogTraining',1,1240388264),('page','wiki','DogTraining',1,1240388264),('your','article','2',6,1238880027),('housebreak','article','2',2,1238880027),('puppies','article','2',1,1238880027),('dogs','article','2',1,1238880027),('breaking','article','2',2,1238880027),('house','article','2',1,1238880027),('things','wiki','HomePage',1,1239726257),('administrator','article','2',1,1238880027),('system','article','2',1,1238880027),('training','article','2',4,1238880027),('potty','article','2',4,1238880027),('with','wiki','HomePage',1,1239726257),('around','wiki','HomePage',1,1239726257),('playing','wiki','HomePage',1,1239726257),('just','wiki','HomePage',1,1239726257);
/*!40000 ALTER TABLE `tiki_searchindex` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_searchsyllable`
--

DROP TABLE IF EXISTS `tiki_searchsyllable`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_searchsyllable` (
  `syllable` varchar(80) NOT NULL DEFAULT '',
  `lastUsed` int(11) NOT NULL DEFAULT '0',
  `lastUpdated` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`syllable`),
  KEY `lastUsed` (`lastUsed`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_searchsyllable`
--

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

--
-- Table structure for table `tiki_searchwords`
--

DROP TABLE IF EXISTS `tiki_searchwords`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_searchwords` (
  `syllable` varchar(80) NOT NULL DEFAULT '',
  `searchword` varchar(80) NOT NULL DEFAULT '',
  PRIMARY KEY (`syllable`,`searchword`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_searchwords`
--

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

--
-- Table structure for table `tiki_secdb`
--

DROP TABLE IF EXISTS `tiki_secdb`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_secdb` (
  `md5_value` varchar(32) NOT NULL DEFAULT '',
  `filename` varchar(250) NOT NULL DEFAULT '',
  `tiki_version` varchar(60) NOT NULL DEFAULT '',
  `severity` int(4) NOT NULL DEFAULT '0',
  PRIMARY KEY (`md5_value`,`filename`(100),`tiki_version`),
  KEY `sdb_fn` (`filename`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_secdb`
--

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

--
-- Table structure for table `tiki_semaphores`
--

DROP TABLE IF EXISTS `tiki_semaphores`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_semaphores` (
  `semName` varchar(250) NOT NULL DEFAULT '',
  `user` varchar(40) DEFAULT NULL,
  `timestamp` int(14) DEFAULT NULL,
  PRIMARY KEY (`semName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_semaphores`
--

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

--
-- Table structure for table `tiki_sent_newsletters`
--

DROP TABLE IF EXISTS `tiki_sent_newsletters`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_sent_newsletters` (
  `editionId` int(12) NOT NULL AUTO_INCREMENT,
  `nlId` int(12) NOT NULL DEFAULT '0',
  `users` int(10) DEFAULT NULL,
  `sent` int(14) DEFAULT NULL,
  `subject` varchar(200) DEFAULT NULL,
  `data` longblob,
  PRIMARY KEY (`editionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_sent_newsletters`
--

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

--
-- Table structure for table `tiki_sessions`
--

DROP TABLE IF EXISTS `tiki_sessions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_sessions` (
  `sessionId` varchar(32) NOT NULL DEFAULT '',
  `user` varchar(40) DEFAULT NULL,
  `timestamp` int(14) DEFAULT NULL,
  `tikihost` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`sessionId`),
  KEY `user` (`user`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_sessions`
--

LOCK TABLES `tiki_sessions` WRITE;
/*!40000 ALTER TABLE `tiki_sessions` DISABLE KEYS */;
INSERT INTO `tiki_sessions` VALUES ('0145d31b83bbf734b52abe00baca6a23',NULL,1240480750,'richardmumford.com');
/*!40000 ALTER TABLE `tiki_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_sheet_layout`
--

DROP TABLE IF EXISTS `tiki_sheet_layout`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_sheet_layout` (
  `sheetId` int(8) NOT NULL DEFAULT '0',
  `begin` int(10) NOT NULL DEFAULT '0',
  `end` int(10) DEFAULT NULL,
  `headerRow` int(4) NOT NULL DEFAULT '0',
  `footerRow` int(4) NOT NULL DEFAULT '0',
  `className` varchar(64) DEFAULT NULL,
  UNIQUE KEY `sheetId` (`sheetId`,`begin`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_sheet_layout`
--

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

--
-- Table structure for table `tiki_sheet_values`
--

DROP TABLE IF EXISTS `tiki_sheet_values`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_sheet_values` (
  `sheetId` int(8) NOT NULL DEFAULT '0',
  `begin` int(10) NOT NULL DEFAULT '0',
  `end` int(10) DEFAULT NULL,
  `rowIndex` int(4) NOT NULL DEFAULT '0',
  `columnIndex` int(4) NOT NULL DEFAULT '0',
  `value` varchar(255) DEFAULT NULL,
  `calculation` varchar(255) DEFAULT NULL,
  `width` int(4) NOT NULL DEFAULT '1',
  `height` int(4) NOT NULL DEFAULT '1',
  `format` varchar(255) DEFAULT NULL,
  UNIQUE KEY `sheetId` (`sheetId`,`begin`,`rowIndex`,`columnIndex`),
  KEY `sheetId_2` (`sheetId`,`rowIndex`,`columnIndex`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_sheet_values`
--

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

--
-- Table structure for table `tiki_sheets`
--

DROP TABLE IF EXISTS `tiki_sheets`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_sheets` (
  `sheetId` int(8) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL DEFAULT '',
  `description` text,
  `author` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`sheetId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_sheets`
--

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

--
-- Table structure for table `tiki_shoutbox`
--

DROP TABLE IF EXISTS `tiki_shoutbox`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_shoutbox` (
  `msgId` int(10) NOT NULL AUTO_INCREMENT,
  `message` varchar(255) DEFAULT NULL,
  `timestamp` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `hash` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`msgId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_shoutbox`
--

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

--
-- Table structure for table `tiki_shoutbox_words`
--

DROP TABLE IF EXISTS `tiki_shoutbox_words`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_shoutbox_words` (
  `word` varchar(40) NOT NULL DEFAULT '',
  `qty` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`word`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_shoutbox_words`
--

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

--
-- Table structure for table `tiki_stats`
--

DROP TABLE IF EXISTS `tiki_stats`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_stats` (
  `object` varchar(255) NOT NULL DEFAULT '',
  `type` varchar(20) NOT NULL DEFAULT '',
  `day` int(14) NOT NULL DEFAULT '0',
  `hits` int(14) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object`,`type`,`day`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_stats`
--

LOCK TABLES `tiki_stats` WRITE;
/*!40000 ALTER TABLE `tiki_stats` DISABLE KEYS */;
INSERT INTO `tiki_stats` VALUES ('HomePage','wiki',1207198800,6),('liver disease','wiki',1207198800,2),('HomePage','wiki',1207285200,44),('liver disease','wiki',1207285200,22),('DogTraining','wiki',1207285200,5),('ToiletTraining','wiki',1207285200,5),('1?Dog Potty Training','article',1207285200,3),('Dog Potty Training','html_pages',1207285200,1),('Dog-Potty-Training','html_pages',1207285200,1),('2?Dog Potty Training','article',1207285200,2),('HomePage','wiki',1207371600,9),('HomePage','wiki',1207458000,7),('DogTraining','wiki',1207458000,2),('ToiletTraining','wiki',1207458000,2),('2?Dog Potty Training','article',1207458000,1),('liver disease','wiki',1207458000,1),('1?Dog Potty Training','article',1207458000,1),('HomePage','wiki',1207544400,3),('liver disease','wiki',1207544400,2),('DogTraining','wiki',1207544400,1),('ToiletTraining','wiki',1207544400,1),('HomePage','wiki',1207630800,2),('HomePage','wiki',1207803600,3),('DogTraining','wiki',1207803600,1),('HomePage','wiki',1207890000,5),('liver disease','wiki',1207890000,2),('DogTraining','wiki',1207890000,3),('ToiletTraining','wiki',1207890000,1),('HomePage','wiki',1208062800,1),('HomePage','wiki',1208149200,2),('HomePage','wiki',1208235600,4),('liver disease','wiki',1208235600,1),('DogTraining','wiki',1208235600,1),('liver disease','wiki',1208322000,1),('ToiletTraining','wiki',1208322000,1),('HomePage','wiki',1208408400,4),('2?Dog Potty Training','article',1208408400,1),('1?Dog Potty Training','article',1208408400,1),('DogTraining','wiki',1208408400,1),('ToiletTraining','wiki',1208408400,1),('liver disease','wiki',1208408400,2),('HomePage','wiki',1208494800,1),('HomePage','wiki',1208754000,4),('1?Dog Potty Training','article',1208754000,1),('2?Dog Potty Training','article',1208754000,1),('DogTraining','wiki',1208754000,1),('ToiletTraining','wiki',1208754000,1),('liver disease','wiki',1208754000,1),('HomePage','wiki',1209013200,1),('HomePage','wiki',1209099600,1),('liver disease','wiki',1209272400,1),('ToiletTraining','wiki',1209272400,1),('HomePage','wiki',1209272400,1),('HomePage','wiki',1209358800,1),('HomePage','wiki',1209531600,1),('HomePage','wiki',1209618000,12),('liver disease','wiki',1209618000,1),('DogTraining','wiki',1209618000,1),('ToiletTraining','wiki',1209618000,1),('1?Dog Potty Training','article',1209618000,1),('2?Dog Potty Training','article',1209618000,1),('HomePage','wiki',1209704400,2),('liver disease','wiki',1209704400,2),('DogTraining','wiki',1209704400,1),('ToiletTraining','wiki',1209704400,1),('HomePage','wiki',1209790800,2),('ToiletTraining','wiki',1209790800,1),('1?Dog Potty Training','article',1209790800,1),('liver disease','wiki',1209790800,1),('DogTraining','wiki',1209790800,1),('liver disease','wiki',1209877200,1),('2?Dog Potty Training','article',1209877200,1),('HomePage','wiki',1209963600,2),('HomePage','wiki',1210050000,1),('HomePage','wiki',1210136400,1),('liver disease','wiki',1210136400,1),('ToiletTraining','wiki',1210136400,1),('liver disease','wiki',1210222800,1),('HomePage','wiki',1210222800,2),('HomePage','wiki',1210395600,6),('ToiletTraining','wiki',1210395600,1),('2?Dog Potty Training','article',1210395600,2),('1?Dog Potty Training','article',1210395600,1),('liver disease','wiki',1210395600,1),('DogTraining','wiki',1210395600,1),('HomePage','wiki',1210568400,1),('HomePage','wiki',1210654800,1),('HomePage','wiki',1210741200,7),('1?Dog Potty Training','article',1210741200,2),('2?Dog Potty Training','article',1210741200,2),('DogTraining','wiki',1210741200,2),('ToiletTraining','wiki',1210741200,2),('liver disease','wiki',1210741200,3),('HomePage','wiki',1210827600,1),('HomePage','wiki',1210914000,4),('HomePage','wiki',1211000400,2),('liver disease','wiki',1211086800,1),('ToiletTraining','wiki',1211086800,2),('1?Dog Potty Training','article',1211086800,1),('HomePage','wiki',1211173200,2),('liver disease','wiki',1211173200,1),('DogTraining','wiki',1211173200,1),('ToiletTraining','wiki',1211259600,4),('HomePage','wiki',1211346000,2),('HomePage','wiki',1211432400,1),('HomePage','wiki',1211605200,1),('HomePage','wiki',1211691600,3),('HomePage','wiki',1211778000,4),('liver disease','wiki',1211864400,1),('ToiletTraining','wiki',1211864400,1),('DogTraining','wiki',1211864400,1),('HomePage','wiki',1211950800,1),('HomePage','wiki',1212210000,1),('HomePage','wiki',1212296400,2),('HomePage','wiki',1212382800,4),('liver disease','wiki',1212382800,2),('DogTraining','wiki',1212382800,1),('ToiletTraining','wiki',1212382800,1),('HomePage','wiki',1212642000,2),('HomePage','wiki',1212728400,2),('liver disease','wiki',1212728400,1),('2?Dog Potty Training','article',1212728400,1),('HomePage','wiki',1212814800,2),('ToiletTraining','wiki',1212901200,1),('HomePage','wiki',1212987600,3),('1?Dog Potty Training','article',1212987600,1),('2?Dog Potty Training','article',1212987600,1),('DogTraining','wiki',1212987600,1),('ToiletTraining','wiki',1212987600,1),('liver disease','wiki',1212987600,1),('HomePage','wiki',1213074000,1),('2?Dog Potty Training','article',1213074000,1),('HomePage','wiki',1213160400,1),('liver disease','wiki',1213246800,1),('ToiletTraining','wiki',1213246800,1),('HomePage','wiki',1213333200,2),('HomePage','wiki',1213419600,6),('DogTraining','wiki',1213419600,2),('liver disease','wiki',1213419600,1),('ToiletTraining','wiki',1213506000,1),('HomePage','wiki',1213592400,5),('2?Dog Potty Training','article',1213592400,1),('1?Dog Potty Training','article',1213592400,1),('DogTraining','wiki',1213592400,1),('ToiletTraining','wiki',1213592400,1),('liver disease','wiki',1213592400,2),('HomePage','wiki',1213678800,2),('2?Dog Potty Training','article',1213678800,1),('1?Dog Potty Training','article',1213765200,1),('liver disease','wiki',1213765200,1),('HomePage','wiki',1213938000,1),('HomePage','wiki',1214024400,5),('liver disease','wiki',1214110800,1),('HomePage','wiki',1214197200,2),('HomePage','wiki',1214283600,7),('liver disease','wiki',1214283600,3),('DogTraining','wiki',1214283600,2),('ToiletTraining','wiki',1214283600,3),('ToiletTraining','wiki',1214456400,1),('DogTraining','wiki',1214542800,1),('HomePage','wiki',1214542800,1),('HomePage','wiki',1214629200,1),('ToiletTraining','wiki',1214715600,1),('HomePage','wiki',1214715600,4),('HomePage','wiki',1214802000,4),('HomePage','wiki',1214974800,2),('liver disease','wiki',1214974800,2),('DogTraining','wiki',1214974800,1),('ToiletTraining','wiki',1214974800,1),('HomePage','wiki',1215061200,1),('HomePage','wiki',1215147600,1),('HomePage','wiki',1215234000,2),('HomePage','wiki',1215320400,1),('liver disease','wiki',1215320400,1),('ToiletTraining','wiki',1215320400,1),('HomePage','wiki',1215406800,4),('2?Dog Potty Training','article',1215406800,1),('HomePage','wiki',1215493200,1),('HomePage','wiki',1215666000,1),('ToiletTraining','wiki',1215752400,1),('HomePage','wiki',1215925200,4),('1?Dog Potty Training','article',1215925200,1),('liver disease','wiki',1215925200,2),('2?Dog Potty Training','article',1215925200,1),('DogTraining','wiki',1215925200,1),('ToiletTraining','wiki',1216011600,1),('HomePage','wiki',1216011600,1),('HomePage','wiki',1216098000,1),('HomePage','wiki',1216184400,3),('liver disease','wiki',1216184400,1),('liver disease','wiki',1216270800,1),('liver disease','wiki',1216357200,1),('1?Dog Potty Training','article',1216357200,1),('HomePage','wiki',1216530000,3),('HomePage','wiki',1216702800,3),('HomePage','wiki',1216789200,5),('HomePage','wiki',1216962000,2),('ToiletTraining','wiki',1216962000,2),('HomePage','wiki',1217048400,5),('1?Dog Potty Training','article',1217048400,1),('HomePage','wiki',1217134800,1),('DogTraining','wiki',1217134800,1),('HomePage','wiki',1217221200,2),('liver disease','wiki',1217221200,1),('DogTraining','wiki',1217221200,1),('liver disease','wiki',1217307600,2),('HomePage','wiki',1217307600,2),('DogTraining','wiki',1217307600,1),('HomePage','wiki',1217394000,2),('HomePage','wiki',1217480400,5),('HomePage','wiki',1217739600,1),('ToiletTraining','wiki',1217826000,2),('DogTraining','wiki',1217826000,2),('HomePage','wiki',1217826000,3),('liver disease','wiki',1217826000,2),('HomePage','wiki',1218085200,1),('HomePage','wiki',1218171600,3),('liver disease','wiki',1218171600,2),('DogTraining','wiki',1218171600,1),('DogTraining','wiki',1218258000,1),('liver disease','wiki',1218258000,1),('HomePage','wiki',1218258000,1),('HomePage','wiki',1218344400,4),('HomePage','wiki',1218430800,2),('2?Dog Potty Training','article',1218430800,1),('HomePage','wiki',1218517200,2),('ToiletTraining','wiki',1218517200,1),('DogTraining','wiki',1218690000,1),('HomePage','wiki',1218776400,1),('HomePage','wiki',1218949200,3),('liver disease','wiki',1218949200,1),('liver disease','wiki',1219035600,1),('HomePage','wiki',1219035600,1),('HomePage','wiki',1219122000,4),('HomePage','wiki',1219381200,5),('2?Dog Potty Training','article',1219381200,1),('1?Dog Potty Training','article',1219381200,1),('DogTraining','wiki',1219381200,1),('liver disease','wiki',1219381200,1),('HomePage','wiki',1219467600,4),('HomePage','wiki',1219554000,2),('HomePage','wiki',1219640400,2),('liver disease','wiki',1219640400,1),('liver disease','wiki',1219726800,1),('HomePage','wiki',1219726800,1),('ToiletTraining','wiki',1219726800,1),('HomePage','wiki',1219813200,2),('HomePage','wiki',1219899600,2),('liver disease','wiki',1219899600,1),('HomePage','wiki',1219986000,1),('HomePage','wiki',1220072400,5),('liver disease','wiki',1220072400,1),('DogTraining','wiki',1220072400,1),('HomePage','wiki',1220158800,4),('liver disease','wiki',1220158800,1),('DogTraining','wiki',1220158800,1),('HomePage','wiki',1220245200,2),('liver disease','wiki',1220245200,1),('DogTraining','wiki',1220245200,1),('HomePage','wiki',1220331600,2),('HomePage','wiki',1220418000,4),('liver disease','wiki',1220418000,3),('DogTraining','wiki',1220418000,1),('ToiletTraining','wiki',1220418000,1),('DogTraining','wiki',1220504400,2),('HomePage','wiki',1220504400,1),('liver disease','wiki',1220504400,1),('HomePage','wiki',1220590800,2),('HomePage','wiki',1220677200,1),('2?Dog Potty Training','article',1220677200,1),('HomePage','wiki',1220763600,1),('HomePage','wiki',1220850000,1),('HomePage','wiki',1220936400,4),('DogTraining','wiki',1220936400,1),('liver disease','wiki',1220936400,1),('HomePage','wiki',1221022800,3),('liver disease','wiki',1221022800,1),('liver disease','wiki',1221282000,1),('HomePage','wiki',1221282000,1),('HomePage','wiki',1221368400,1),('HomePage','wiki',1221454800,1),('HomePage','wiki',1221541200,2),('2?Dog Potty Training','article',1221541200,1),('1?Dog Potty Training','article',1221541200,1),('HomePage','wiki',1221627600,1),('HomePage','wiki',1221714000,1),('liver disease','wiki',1221800400,1),('HomePage','wiki',1221800400,1),('ToiletTraining','wiki',1222059600,1),('HomePage','wiki',1222059600,1),('HomePage','wiki',1222146000,5),('DogTraining','wiki',1222146000,1),('HomePage','wiki',1222232400,1),('HomePage','wiki',1222405200,1),('liver disease','wiki',1222491600,1),('1?Dog Potty Training','article',1222578000,1),('2?Dog Potty Training','article',1222578000,1),('HomePage','wiki',1222578000,1),('HomePage','wiki',1222664400,2),('HomePage','wiki',1222837200,1),('HomePage','wiki',1222923600,2),('liver disease','wiki',1222923600,2),('DogTraining','wiki',1222923600,1),('ToiletTraining','wiki',1222923600,1),('ToiletTraining','wiki',1223010000,1),('1?Dog Potty Training','article',1223010000,1),('HomePage','wiki',1223010000,1),('HomePage','wiki',1223096400,5),('liver disease','wiki',1223096400,3),('ToiletTraining','wiki',1223096400,1),('DogTraining','wiki',1223096400,1),('HomePage','wiki',1223182800,1),('DogTraining','wiki',1223182800,1),('HomePage','wiki',1223269200,3),('2?Dog Potty Training','article',1223269200,2),('1?Dog Potty Training','article',1223269200,1),('HomePage','wiki',1223355600,6),('DogTraining','wiki',1223355600,1),('ToiletTraining','wiki',1223355600,2),('2?Dog Potty Training','article',1223355600,1),('liver disease','wiki',1223355600,1),('DogTraining','wiki',1223442000,1),('2?Dog Potty Training','article',1223442000,1),('1?Dog Potty Training','article',1223442000,2),('HomePage','wiki',1223442000,3),('HomePage','wiki',1223528400,2),('liver disease','wiki',1223528400,3),('DogTraining','wiki',1223528400,1),('HomePage','wiki',1223614800,1),('2?Dog Potty Training','article',1223787600,4),('HomePage','wiki',1223787600,1),('DogTraining','wiki',1223874000,1),('1?Dog Potty Training','article',1223874000,1),('HomePage','wiki',1223874000,2),('liver disease','wiki',1223874000,1),('HomePage','wiki',1223960400,1),('HomePage','wiki',1224046800,2),('HomePage','wiki',1224133200,2),('liver disease','wiki',1224133200,1),('DogTraining','wiki',1224133200,1),('2?Dog Potty Training','article',1224133200,1),('2?Dog Potty Training','article',1224219600,2),('HomePage','wiki',1224306000,7),('liver disease','wiki',1224306000,2),('DogTraining','wiki',1224306000,2),('ToiletTraining','wiki',1224306000,1),('1?Dog Potty Training','article',1224306000,2),('2?Dog Potty Training','article',1224306000,1),('HomePage','wiki',1224392400,1),('HomePage','wiki',1224478800,1),('liver disease','wiki',1224565200,1),('ToiletTraining','wiki',1224565200,1),('HomePage','wiki',1224651600,2),('DogTraining','wiki',1224651600,2),('ToiletTraining','wiki',1224651600,2),('HomePage','wiki',1224738000,2),('1?Dog Potty Training','article',1224738000,1),('liver disease','wiki',1224738000,1),('HomePage','wiki',1224824400,1),('HomePage','wiki',1224910800,5),('liver disease','wiki',1224910800,1),('DogTraining','wiki',1224910800,2),('ToiletTraining','wiki',1224910800,1),('HomePage','wiki',1225083600,3),('DogTraining','wiki',1225083600,1),('liver disease','wiki',1225083600,1),('ToiletTraining','wiki',1225083600,1),('1?Dog Potty Training','article',1225083600,1),('2?Dog Potty Training','article',1225083600,1),('ToiletTraining','wiki',1225256400,1),('HomePage','wiki',1225342800,2),('DogTraining','wiki',1225342800,1),('HomePage','wiki',1225602000,1),('liver disease','wiki',1225602000,2),('DogTraining','wiki',1225602000,1),('2?Dog Potty Training','article',1225602000,1),('1?Dog Potty Training','article',1225692000,1),('HomePage','wiki',1225692000,2),('DogTraining','wiki',1225692000,1),('HomePage','wiki',1225778400,4),('liver disease','wiki',1225778400,4),('DogTraining','wiki',1225778400,2),('ToiletTraining','wiki',1225778400,2),('DogTraining','wiki',1225864800,1),('HomePage','wiki',1225951200,3),('ToiletTraining','wiki',1226210400,1),('2?Dog Potty Training','article',1226210400,1),('DogTraining','wiki',1226296800,1),('HomePage','wiki',1226296800,1),('HomePage','wiki',1226383200,3),('liver disease','wiki',1226383200,1),('ToiletTraining','wiki',1226383200,1),('1?Dog Potty Training','article',1226383200,1),('2?Dog Potty Training','article',1226383200,1),('1?Dog Potty Training','article',1226469600,2),('liver disease','wiki',1226556000,1),('HomePage','wiki',1226556000,2),('liver disease','wiki',1226642400,1),('ToiletTraining','wiki',1226642400,1),('2?Dog Potty Training','article',1226642400,1),('HomePage','wiki',1226728800,2),('2?Dog Potty Training','article',1226728800,1),('1?Dog Potty Training','article',1226728800,1),('HomePage','wiki',1226901600,1),('liver disease','wiki',1226988000,2),('HomePage','wiki',1226988000,2),('DogTraining','wiki',1226988000,1),('2?Dog Potty Training','article',1227074400,1),('HomePage','wiki',1227160800,3),('liver disease','wiki',1227160800,1),('1?Dog Potty Training','article',1227247200,1),('HomePage','wiki',1227247200,3),('liver disease','wiki',1227247200,2),('DogTraining','wiki',1227247200,1),('HomePage','wiki',1227333600,2),('HomePage','wiki',1227420000,3),('DogTraining','wiki',1227420000,2),('liver disease','wiki',1227420000,4),('2?Dog Potty Training','article',1227420000,1),('1?Dog Potty Training','article',1227420000,1),('ToiletTraining','wiki',1227420000,1),('HomePage','wiki',1227506400,4),('liver disease','wiki',1227506400,2),('DogTraining','wiki',1227506400,2),('ToiletTraining','wiki',1227506400,2),('1?Dog Potty Training','article',1227506400,1),('2?Dog Potty Training','article',1227506400,1),('HomePage','wiki',1227679200,3),('HomePage','wiki',1227765600,1),('liver disease','wiki',1227938400,1),('HomePage','wiki',1227938400,4),('HomePage','wiki',1228024800,1),('1?Dog Potty Training','article',1228024800,1),('HomePage','wiki',1228111200,2),('HomePage','wiki',1228197600,4),('liver disease','wiki',1228197600,2),('DogTraining','wiki',1228197600,1),('ToiletTraining','wiki',1228197600,1),('HomePage','wiki',1228284000,2),('2?Dog Potty Training','article',1228370400,2),('HomePage','wiki',1228370400,2),('1?Dog Potty Training','article',1228456800,1),('HomePage','wiki',1228456800,2),('DogTraining','wiki',1228456800,1),('HomePage','wiki',1228543200,2),('liver disease','wiki',1228543200,2),('HomePage','wiki',1228716000,1),('ToiletTraining','wiki',1228716000,1),('DogTraining','wiki',1228888800,1),('HomePage','wiki',1228888800,2),('HomePage','wiki',1228975200,3),('HomePage','wiki',1229061600,1),('HomePage','wiki',1229148000,2),('DogTraining','wiki',1229148000,1),('liver disease','wiki',1229148000,2),('1?Dog Potty Training','article',1229148000,2),('2?Dog Potty Training','article',1229148000,2),('ToiletTraining','wiki',1229148000,1),('HomePage','wiki',1229234400,1),('2?Dog Potty Training','article',1229234400,1),('HomePage','wiki',1229320800,6),('2?Dog Potty Training','article',1229320800,1),('1?Dog Potty Training','article',1229320800,2),('HomePage','wiki',1229407200,1),('2?Dog Potty Training','article',1229493600,1),('1?Dog Potty Training','article',1229493600,1),('HomePage','wiki',1229493600,2),('ToiletTraining','wiki',1229580000,1),('liver disease','wiki',1229580000,1),('DogTraining','wiki',1229666400,1),('HomePage','wiki',1229752800,3),('DogTraining','wiki',1229752800,1),('HomePage','wiki',1229839200,3),('2?Dog Potty Training','article',1229839200,1),('ToiletTraining','wiki',1229925600,1),('HomePage','wiki',1230012000,1),('2?Dog Potty Training','article',1230012000,1),('liver disease','wiki',1230012000,1),('HomePage','wiki',1230098400,7),('HomePage','wiki',1230184800,3),('ToiletTraining','wiki',1230184800,1),('2?Dog Potty Training','article',1230184800,1),('liver disease','wiki',1230184800,1),('DogTraining','wiki',1230184800,1),('HomePage','wiki',1230357600,7),('liver disease','wiki',1230444000,5),('ToiletTraining','wiki',1230444000,2),('HomePage','wiki',1230444000,5),('DogTraining','wiki',1230444000,3),('1?Dog Potty Training','article',1230444000,2),('2?Dog Potty Training','article',1230444000,3),('HomePage','wiki',1230530400,5),('2?Dog Potty Training','article',1230616800,2),('HomePage','wiki',1230616800,4),('HomePage','wiki',1230703200,1),('2?Dog Potty Training','article',1230703200,1),('liver disease','wiki',1230789600,2),('HomePage','wiki',1230876000,3),('liver disease','wiki',1230876000,1),('HomePage','wiki',1230962400,1),('1?Dog Potty Training','article',1230962400,1),('DogTraining','wiki',1231048800,1),('liver disease','wiki',1231048800,1),('liver disease','wiki',1231135200,2),('1?Dog Potty Training','article',1231135200,1),('HomePage','wiki',1231221600,3),('liver disease','wiki',1231221600,2),('DogTraining','wiki',1231221600,1),('ToiletTraining','wiki',1231221600,1),('1?Dog Potty Training','article',1231221600,1),('liver disease','wiki',1231308000,1),('HomePage','wiki',1231308000,2),('2?Dog Potty Training','article',1231308000,1),('HomePage','wiki',1231394400,1),('DogTraining','wiki',1231394400,1),('ToiletTraining','wiki',1231394400,1),('HomePage','wiki',1231480800,3),('liver disease','wiki',1231480800,1),('HomePage','wiki',1231567200,2),('DogTraining','wiki',1231567200,1),('1?Dog Potty Training','article',1231567200,1),('HomePage','wiki',1231740000,1),('DogTraining','wiki',1231740000,1),('ToiletTraining','wiki',1231826400,1),('liver disease','wiki',1231826400,1),('2?Dog Potty Training','article',1231826400,1),('HomePage','wiki',1231912800,2),('liver disease','wiki',1231912800,1),('HomePage','wiki',1231999200,6),('2?Dog Potty Training','article',1231999200,2),('1?Dog Potty Training','article',1231999200,1),('HomePage','wiki',1232085600,1),('1?Dog Potty Training','article',1232085600,1),('HomePage','wiki',1232172000,1),('liver disease','wiki',1232172000,1),('ToiletTraining','wiki',1232258400,1),('DogTraining','wiki',1232344800,1),('1?Dog Potty Training','article',1232344800,1),('HomePage','wiki',1232344800,1),('HomePage','wiki',1232431200,2),('liver disease','wiki',1232431200,1),('DogTraining','wiki',1232431200,1),('HomePage','wiki',1232517600,1),('HomePage','wiki',1232690400,1),('2?Dog Potty Training','article',1232690400,1),('ToiletTraining','wiki',1232690400,1),('HomePage','wiki',1232776800,2),('HomePage','wiki',1232863200,10),('HomePage','wiki',1232949600,5),('liver disease','wiki',1232949600,3),('DogTraining','wiki',1232949600,2),('1?Dog Potty Training','article',1232949600,2),('2?Dog Potty Training','article',1232949600,2),('ToiletTraining','wiki',1232949600,2),('HomePage','wiki',1233036000,2),('HomePage','wiki',1233122400,1),('HomePage','wiki',1233208800,3),('HomePage','wiki',1233295200,4),('liver disease','wiki',1233295200,2),('DogTraining','wiki',1233295200,1),('HomePage','wiki',1233381600,2),('2?Dog Potty Training','article',1233381600,1),('HomePage','wiki',1233468000,2),('2?Dog Potty Training','article',1233554400,1),('HomePage','wiki',1233640800,8),('liver disease','wiki',1233640800,4),('DogTraining','wiki',1233640800,2),('ToiletTraining','wiki',1233640800,2),('HomePage','wiki',1233727200,3),('liver disease','wiki',1233727200,1),('HomePage','wiki',1233900000,2),('HomePage','wiki',1234072800,3),('DogTraining','wiki',1234159200,1),('HomePage','wiki',1234159200,1),('HomePage','wiki',1234245600,4),('HomePage','wiki',1234332000,2),('HomePage','wiki',1234418400,2),('liver disease','wiki',1234418400,1),('HomePage','wiki',1234504800,2),('HomePage','wiki',1234591200,2),('DogTraining','wiki',1234591200,1),('1?Dog Potty Training','article',1234591200,1),('HomePage','wiki',1234677600,3),('2?Dog Potty Training','article',1234677600,1),('HomePage','wiki',1234850400,3),('HomePage','wiki',1234936800,2),('ToiletTraining','wiki',1234936800,1),('2?Dog Potty Training','article',1234936800,1),('liver disease','wiki',1234936800,1),('HomePage','wiki',1235023200,2),('liver disease','wiki',1235023200,1),('1?Dog Potty Training','article',1235109600,1),('HomePage','wiki',1235109600,1),('HomePage','wiki',1235282400,1),('HomePage','wiki',1235455200,1),('ToiletTraining','wiki',1235455200,1),('HomePage','wiki',1235541600,3),('1?Dog Potty Training','article',1235541600,1),('HomePage','wiki',1235628000,7),('1?Dog Potty Training','article',1235628000,1),('DogTraining','wiki',1235628000,2),('liver disease','wiki',1235628000,3),('2?Dog Potty Training','article',1235628000,2),('ToiletTraining','wiki',1235628000,1),('HomePage','wiki',1235714400,4),('liver disease','wiki',1235714400,1),('HomePage','wiki',1235800800,1),('2?Dog Potty Training','article',1235887200,1),('ToiletTraining','wiki',1235887200,1),('HomePage','wiki',1235887200,2),('HomePage','wiki',1235973600,1),('HomePage','wiki',1236060000,3),('liver disease','wiki',1236060000,3),('DogTraining','wiki',1236060000,1),('ToiletTraining','wiki',1236060000,1),('HomePage','wiki',1236146400,1),('HomePage','wiki',1236319200,1),('HomePage','wiki',1236405600,1),('HomePage','wiki',1236492000,1),('liver disease','wiki',1236492000,2),('2?Dog Potty Training','article',1236574800,1),('ToiletTraining','wiki',1236661200,1),('HomePage','wiki',1236661200,1),('HomePage','wiki',1236747600,4),('HomePage','wiki',1236920400,5),('DogTraining','wiki',1236920400,2),('liver disease','wiki',1236920400,3),('1?Dog Potty Training','article',1236920400,1),('2?Dog Potty Training','article',1236920400,1),('ToiletTraining','wiki',1236920400,1),('HomePage','wiki',1237006800,6),('2?Dog Potty Training','article',1237006800,1),('DogTraining','wiki',1237093200,1),('HomePage','wiki',1237093200,1),('HomePage','wiki',1237179600,1),('HomePage','wiki',1237266000,3),('liver disease','wiki',1237266000,1),('2?Dog Potty Training','article',1237266000,1),('HomePage','wiki',1237352400,3),('2?Dog Potty Training','article',1237525200,1),('1?Dog Potty Training','article',1237525200,1),('HomePage','wiki',1237611600,4),('HomePage','wiki',1237698000,2),('HomePage','wiki',1237784400,2),('ToiletTraining','wiki',1237784400,1),('ToiletTraining','wiki',1237870800,1),('liver disease','wiki',1237957200,1),('HomePage','wiki',1237957200,2),('HomePage','wiki',1238043600,1),('HomePage','wiki',1238216400,1),('liver disease','wiki',1238216400,1),('2?Dog Potty Training','article',1238216400,1),('ToiletTraining','wiki',1238302800,1),('1?Dog Potty Training','article',1238389200,1),('HomePage','wiki',1238389200,5),('2?Dog Potty Training','article',1238475600,1),('HomePage','wiki',1238475600,8),('HomePage','wiki',1238562000,3),('HomePage','wiki',1238648400,2),('2?Dog Potty Training','article',1238648400,1),('1?Dog Potty Training','article',1238648400,2),('HomePage','wiki',1238734800,3),('liver disease','wiki',1238734800,2),('DogTraining','wiki',1238734800,1),('ToiletTraining','wiki',1238734800,1),('2?Dog Potty Training','article',1238734800,1),('1?Dog Potty Training','article',1238734800,1),('1?Dog Potty Training','article',1238821200,1),('HomePage','wiki',1238821200,2),('2?Dog Potty Training','article',1238907600,1),('liver disease','wiki',1238907600,1),('liver disease','wiki',1238994000,1),('liver disease','wiki',1239080400,1),('HomePage','wiki',1239166800,3),('2?Dog Potty Training','article',1239166800,1),('ToiletTraining','wiki',1239166800,1),('1?Dog Potty Training','article',1239253200,1),('HomePage','wiki',1239253200,2),('HomePage','wiki',1239426000,1),('ToiletTraining','wiki',1239512400,1),('HomePage','wiki',1239512400,1),('HomePage','wiki',1239598800,1),('2?Dog Potty Training','article',1239598800,1),('HomePage','wiki',1239685200,2),('2?Dog Potty Training','article',1239685200,2),('HomePage','wiki',1239771600,2),('HomePage','wiki',1239944400,3),('2?Dog Potty Training','article',1239944400,1),('HomePage','wiki',1240030800,2),('1?Dog Potty Training','article',1240030800,1),('2?Dog Potty Training','article',1240117200,4),('liver disease','wiki',1240203600,1),('HomePage','wiki',1240376400,4);
/*!40000 ALTER TABLE `tiki_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_structure_versions`
--

DROP TABLE IF EXISTS `tiki_structure_versions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_structure_versions` (
  `structure_id` int(14) NOT NULL AUTO_INCREMENT,
  `version` int(14) DEFAULT NULL,
  PRIMARY KEY (`structure_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_structure_versions`
--

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

--
-- Table structure for table `tiki_structures`
--

DROP TABLE IF EXISTS `tiki_structures`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_structures` (
  `page_ref_id` int(14) NOT NULL AUTO_INCREMENT,
  `structure_id` int(14) NOT NULL DEFAULT '0',
  `parent_id` int(14) DEFAULT NULL,
  `page_id` int(14) NOT NULL DEFAULT '0',
  `page_version` int(8) DEFAULT NULL,
  `page_alias` varchar(240) NOT NULL DEFAULT '',
  `pos` int(4) DEFAULT NULL,
  PRIMARY KEY (`page_ref_id`),
  KEY `pidpaid` (`page_id`,`parent_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_structures`
--

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

--
-- Table structure for table `tiki_submissions`
--

DROP TABLE IF EXISTS `tiki_submissions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_submissions` (
  `subId` int(8) NOT NULL AUTO_INCREMENT,
  `topline` varchar(255) DEFAULT NULL,
  `title` varchar(80) DEFAULT NULL,
  `subtitle` varchar(255) DEFAULT NULL,
  `linkto` varchar(255) DEFAULT NULL,
  `lang` varchar(16) DEFAULT NULL,
  `authorName` varchar(60) DEFAULT NULL,
  `topicId` int(14) DEFAULT NULL,
  `topicName` varchar(40) DEFAULT NULL,
  `size` int(12) DEFAULT NULL,
  `useImage` char(1) DEFAULT NULL,
  `image_name` varchar(80) DEFAULT NULL,
  `image_caption` text,
  `image_type` varchar(80) DEFAULT NULL,
  `image_size` int(14) DEFAULT NULL,
  `image_x` int(4) DEFAULT NULL,
  `image_y` int(4) DEFAULT NULL,
  `image_data` longblob,
  `publishDate` int(14) DEFAULT NULL,
  `expireDate` int(14) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `bibliographical_references` text,
  `resume` text,
  `heading` text,
  `body` text,
  `hash` varchar(32) DEFAULT NULL,
  `author` varchar(200) DEFAULT NULL,
  `nbreads` int(14) DEFAULT NULL,
  `votes` int(8) DEFAULT NULL,
  `points` int(14) DEFAULT NULL,
  `type` varchar(50) DEFAULT NULL,
  `rating` decimal(3,2) DEFAULT NULL,
  `isfloat` char(1) DEFAULT NULL,
  PRIMARY KEY (`subId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_submissions`
--

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

--
-- Table structure for table `tiki_suggested_faq_questions`
--

DROP TABLE IF EXISTS `tiki_suggested_faq_questions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_suggested_faq_questions` (
  `sfqId` int(10) NOT NULL AUTO_INCREMENT,
  `faqId` int(10) NOT NULL DEFAULT '0',
  `question` text,
  `answer` text,
  `created` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`sfqId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_suggested_faq_questions`
--

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

--
-- Table structure for table `tiki_survey_question_options`
--

DROP TABLE IF EXISTS `tiki_survey_question_options`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_survey_question_options` (
  `optionId` int(12) NOT NULL AUTO_INCREMENT,
  `questionId` int(12) NOT NULL DEFAULT '0',
  `qoption` text,
  `votes` int(10) DEFAULT NULL,
  PRIMARY KEY (`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_survey_question_options`
--

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

--
-- Table structure for table `tiki_survey_questions`
--

DROP TABLE IF EXISTS `tiki_survey_questions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_survey_questions` (
  `questionId` int(12) NOT NULL AUTO_INCREMENT,
  `surveyId` int(12) NOT NULL DEFAULT '0',
  `question` text,
  `options` text,
  `type` char(1) DEFAULT NULL,
  `position` int(5) DEFAULT NULL,
  `votes` int(10) DEFAULT NULL,
  `value` int(10) DEFAULT NULL,
  `average` decimal(4,2) DEFAULT NULL,
  PRIMARY KEY (`questionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_survey_questions`
--

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

--
-- Table structure for table `tiki_surveys`
--

DROP TABLE IF EXISTS `tiki_surveys`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_surveys` (
  `surveyId` int(12) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) DEFAULT NULL,
  `description` text,
  `taken` int(10) DEFAULT NULL,
  `lastTaken` int(14) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `status` char(1) DEFAULT NULL,
  PRIMARY KEY (`surveyId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_surveys`
--

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

--
-- Table structure for table `tiki_tags`
--

DROP TABLE IF EXISTS `tiki_tags`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tags` (
  `tagName` varchar(80) NOT NULL DEFAULT '',
  `pageName` varchar(160) NOT NULL DEFAULT '',
  `hits` int(8) DEFAULT NULL,
  `description` varchar(200) DEFAULT NULL,
  `data` longblob,
  `lastModif` int(14) DEFAULT NULL,
  `comment` varchar(200) DEFAULT NULL,
  `version` int(8) NOT NULL DEFAULT '0',
  `user` varchar(40) DEFAULT NULL,
  `ip` varchar(15) DEFAULT NULL,
  `flag` char(1) DEFAULT NULL,
  PRIMARY KEY (`tagName`,`pageName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tags`
--

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

--
-- Table structure for table `tiki_theme_control_categs`
--

DROP TABLE IF EXISTS `tiki_theme_control_categs`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_theme_control_categs` (
  `categId` int(12) NOT NULL DEFAULT '0',
  `theme` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`categId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_theme_control_categs`
--

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

--
-- Table structure for table `tiki_theme_control_objects`
--

DROP TABLE IF EXISTS `tiki_theme_control_objects`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_theme_control_objects` (
  `objId` varchar(250) NOT NULL DEFAULT '',
  `type` varchar(250) NOT NULL DEFAULT '',
  `name` varchar(250) NOT NULL DEFAULT '',
  `theme` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`objId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_theme_control_objects`
--

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

--
-- Table structure for table `tiki_theme_control_sections`
--

DROP TABLE IF EXISTS `tiki_theme_control_sections`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_theme_control_sections` (
  `section` varchar(250) NOT NULL DEFAULT '',
  `theme` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`section`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_theme_control_sections`
--

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

--
-- Table structure for table `tiki_topics`
--

DROP TABLE IF EXISTS `tiki_topics`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_topics` (
  `topicId` int(14) NOT NULL AUTO_INCREMENT,
  `name` varchar(40) DEFAULT NULL,
  `image_name` varchar(80) DEFAULT NULL,
  `image_type` varchar(80) DEFAULT NULL,
  `image_size` int(14) DEFAULT NULL,
  `image_data` longblob,
  `active` char(1) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  PRIMARY KEY (`topicId`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_topics`
--

LOCK TABLES `tiki_topics` WRITE;
/*!40000 ALTER TABLE `tiki_topics` DISABLE KEYS */;
INSERT INTO `tiki_topics` VALUES (1,'Dog House Training','','',0,'','y',1207341682);
/*!40000 ALTER TABLE `tiki_topics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_tracker_fields`
--

DROP TABLE IF EXISTS `tiki_tracker_fields`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_fields` (
  `fieldId` int(12) NOT NULL AUTO_INCREMENT,
  `trackerId` int(12) NOT NULL DEFAULT '0',
  `name` varchar(255) DEFAULT NULL,
  `options` text,
  `type` char(1) DEFAULT NULL,
  `isMain` char(1) DEFAULT NULL,
  `isTblVisible` char(1) DEFAULT NULL,
  `position` int(4) DEFAULT NULL,
  `isSearchable` char(1) NOT NULL DEFAULT 'y',
  `isPublic` char(1) NOT NULL DEFAULT 'n',
  `isHidden` char(1) NOT NULL DEFAULT 'n',
  `isMandatory` char(1) NOT NULL DEFAULT 'n',
  PRIMARY KEY (`fieldId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_fields`
--

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

--
-- Table structure for table `tiki_tracker_item_attachments`
--

DROP TABLE IF EXISTS `tiki_tracker_item_attachments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_item_attachments` (
  `attId` int(12) NOT NULL AUTO_INCREMENT,
  `itemId` int(12) NOT NULL DEFAULT '0',
  `filename` varchar(80) DEFAULT NULL,
  `filetype` varchar(80) DEFAULT NULL,
  `filesize` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `data` longblob,
  `path` varchar(255) DEFAULT NULL,
  `downloads` int(10) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `comment` varchar(250) DEFAULT NULL,
  `longdesc` blob,
  `version` varchar(40) DEFAULT NULL,
  PRIMARY KEY (`attId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_item_attachments`
--

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

--
-- Table structure for table `tiki_tracker_item_comments`
--

DROP TABLE IF EXISTS `tiki_tracker_item_comments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_item_comments` (
  `commentId` int(12) NOT NULL AUTO_INCREMENT,
  `itemId` int(12) NOT NULL DEFAULT '0',
  `user` varchar(40) DEFAULT NULL,
  `data` text,
  `title` varchar(200) DEFAULT NULL,
  `posted` int(14) DEFAULT NULL,
  PRIMARY KEY (`commentId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_item_comments`
--

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

--
-- Table structure for table `tiki_tracker_item_fields`
--

DROP TABLE IF EXISTS `tiki_tracker_item_fields`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_item_fields` (
  `itemId` int(12) NOT NULL DEFAULT '0',
  `fieldId` int(12) NOT NULL DEFAULT '0',
  `value` text,
  PRIMARY KEY (`itemId`,`fieldId`),
  FULLTEXT KEY `ft` (`value`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_item_fields`
--

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

--
-- Table structure for table `tiki_tracker_items`
--

DROP TABLE IF EXISTS `tiki_tracker_items`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_items` (
  `itemId` int(12) NOT NULL AUTO_INCREMENT,
  `trackerId` int(12) NOT NULL DEFAULT '0',
  `created` int(14) DEFAULT NULL,
  `status` char(1) DEFAULT NULL,
  `lastModif` int(14) DEFAULT NULL,
  PRIMARY KEY (`itemId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_items`
--

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

--
-- Table structure for table `tiki_tracker_options`
--

DROP TABLE IF EXISTS `tiki_tracker_options`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_tracker_options` (
  `trackerId` int(12) NOT NULL DEFAULT '0',
  `name` varchar(80) NOT NULL DEFAULT '',
  `value` text,
  PRIMARY KEY (`trackerId`,`name`(30))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_tracker_options`
--

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

--
-- Table structure for table `tiki_trackers`
--

DROP TABLE IF EXISTS `tiki_trackers`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_trackers` (
  `trackerId` int(12) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `description` text,
  `created` int(14) DEFAULT NULL,
  `lastModif` int(14) DEFAULT NULL,
  `showCreated` char(1) DEFAULT NULL,
  `showStatus` char(1) DEFAULT NULL,
  `showLastModif` char(1) DEFAULT NULL,
  `useComments` char(1) DEFAULT NULL,
  `useAttachments` char(1) DEFAULT NULL,
  `showAttachments` char(1) DEFAULT NULL,
  `items` int(10) DEFAULT NULL,
  `showComments` char(1) DEFAULT NULL,
  `orderAttachments` varchar(255) NOT NULL DEFAULT 'filename,created,filesize,downloads,desc',
  PRIMARY KEY (`trackerId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_trackers`
--

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

--
-- Table structure for table `tiki_translated_objects`
--

DROP TABLE IF EXISTS `tiki_translated_objects`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_translated_objects` (
  `traId` int(14) NOT NULL AUTO_INCREMENT,
  `type` varchar(50) NOT NULL DEFAULT '',
  `objId` varchar(255) NOT NULL DEFAULT '',
  `lang` varchar(16) DEFAULT NULL,
  PRIMARY KEY (`type`,`objId`),
  KEY `traId` (`traId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_translated_objects`
--

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

--
-- Table structure for table `tiki_untranslated`
--

DROP TABLE IF EXISTS `tiki_untranslated`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_untranslated` (
  `id` int(14) NOT NULL AUTO_INCREMENT,
  `source` tinyblob NOT NULL,
  `lang` char(16) NOT NULL DEFAULT '',
  PRIMARY KEY (`source`(255),`lang`),
  UNIQUE KEY `id` (`id`),
  KEY `id_2` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_untranslated`
--

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

--
-- Table structure for table `tiki_user_answers`
--

DROP TABLE IF EXISTS `tiki_user_answers`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_answers` (
  `userResultId` int(10) NOT NULL DEFAULT '0',
  `quizId` int(10) NOT NULL DEFAULT '0',
  `questionId` int(10) NOT NULL DEFAULT '0',
  `optionId` int(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`userResultId`,`quizId`,`questionId`,`optionId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_answers`
--

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

--
-- Table structure for table `tiki_user_answers_uploads`
--

DROP TABLE IF EXISTS `tiki_user_answers_uploads`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_answers_uploads` (
  `answerUploadId` int(4) NOT NULL AUTO_INCREMENT,
  `userResultId` int(11) NOT NULL DEFAULT '0',
  `questionId` int(11) NOT NULL DEFAULT '0',
  `filename` varchar(255) NOT NULL DEFAULT '',
  `filetype` varchar(64) NOT NULL DEFAULT '',
  `filesize` varchar(255) NOT NULL DEFAULT '',
  `filecontent` longblob NOT NULL,
  PRIMARY KEY (`answerUploadId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_answers_uploads`
--

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

--
-- Table structure for table `tiki_user_assigned_modules`
--

DROP TABLE IF EXISTS `tiki_user_assigned_modules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_assigned_modules` (
  `name` varchar(200) NOT NULL DEFAULT '',
  `position` char(1) DEFAULT NULL,
  `ord` int(4) DEFAULT NULL,
  `type` char(1) DEFAULT NULL,
  `user` varchar(40) NOT NULL DEFAULT '',
  PRIMARY KEY (`name`,`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_assigned_modules`
--

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

--
-- Table structure for table `tiki_user_bookmarks_folders`
--

DROP TABLE IF EXISTS `tiki_user_bookmarks_folders`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_bookmarks_folders` (
  `folderId` int(12) NOT NULL AUTO_INCREMENT,
  `parentId` int(12) DEFAULT NULL,
  `user` varchar(40) NOT NULL DEFAULT '',
  `name` varchar(30) DEFAULT NULL,
  PRIMARY KEY (`user`,`folderId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_bookmarks_folders`
--

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

--
-- Table structure for table `tiki_user_bookmarks_urls`
--

DROP TABLE IF EXISTS `tiki_user_bookmarks_urls`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_bookmarks_urls` (
  `urlId` int(12) NOT NULL AUTO_INCREMENT,
  `name` varchar(30) DEFAULT NULL,
  `url` varchar(250) DEFAULT NULL,
  `data` longblob,
  `lastUpdated` int(14) DEFAULT NULL,
  `folderId` int(12) NOT NULL DEFAULT '0',
  `user` varchar(40) NOT NULL DEFAULT '',
  PRIMARY KEY (`urlId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_bookmarks_urls`
--

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

--
-- Table structure for table `tiki_user_mail_accounts`
--

DROP TABLE IF EXISTS `tiki_user_mail_accounts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_mail_accounts` (
  `accountId` int(12) NOT NULL AUTO_INCREMENT,
  `user` varchar(40) NOT NULL DEFAULT '',
  `account` varchar(50) NOT NULL DEFAULT '',
  `pop` varchar(255) DEFAULT NULL,
  `current` char(1) DEFAULT NULL,
  `port` int(4) DEFAULT NULL,
  `username` varchar(100) DEFAULT NULL,
  `pass` varchar(100) DEFAULT NULL,
  `msgs` int(4) DEFAULT NULL,
  `smtp` varchar(255) DEFAULT NULL,
  `useAuth` char(1) DEFAULT NULL,
  `smtpPort` int(4) DEFAULT NULL,
  PRIMARY KEY (`accountId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_mail_accounts`
--

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

--
-- Table structure for table `tiki_user_menus`
--

DROP TABLE IF EXISTS `tiki_user_menus`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_menus` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `menuId` int(12) NOT NULL AUTO_INCREMENT,
  `url` varchar(250) DEFAULT NULL,
  `name` varchar(40) DEFAULT NULL,
  `position` int(4) DEFAULT NULL,
  `mode` char(1) DEFAULT NULL,
  PRIMARY KEY (`menuId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_menus`
--

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

--
-- Table structure for table `tiki_user_modules`
--

DROP TABLE IF EXISTS `tiki_user_modules`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_modules` (
  `name` varchar(200) NOT NULL DEFAULT '',
  `title` varchar(40) DEFAULT NULL,
  `data` longblob,
  `parse` char(1) DEFAULT NULL,
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_modules`
--

LOCK TABLES `tiki_user_modules` WRITE;
/*!40000 ALTER TABLE `tiki_user_modules` DISABLE KEYS */;
INSERT INTO `tiki_user_modules` VALUES ('mnu_application_menu','Menu','{menu id=42}','n');
/*!40000 ALTER TABLE `tiki_user_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_notes`
--

DROP TABLE IF EXISTS `tiki_user_notes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_notes` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `noteId` int(12) NOT NULL AUTO_INCREMENT,
  `created` int(14) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `lastModif` int(14) DEFAULT NULL,
  `data` text,
  `size` int(14) DEFAULT NULL,
  `parse_mode` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`noteId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_notes`
--

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

--
-- Table structure for table `tiki_user_postings`
--

DROP TABLE IF EXISTS `tiki_user_postings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_postings` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `posts` int(12) DEFAULT NULL,
  `last` int(14) DEFAULT NULL,
  `first` int(14) DEFAULT NULL,
  `level` int(8) DEFAULT NULL,
  PRIMARY KEY (`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_postings`
--

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

--
-- Table structure for table `tiki_user_preferences`
--

DROP TABLE IF EXISTS `tiki_user_preferences`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_preferences` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `prefName` varchar(40) NOT NULL DEFAULT '',
  `value` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`user`,`prefName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_preferences`
--

LOCK TABLES `tiki_user_preferences` WRITE;
/*!40000 ALTER TABLE `tiki_user_preferences` DISABLE KEYS */;
INSERT INTO `tiki_user_preferences` VALUES ('admin','realName','System Administrator'),('admin','mytiki_pages','n'),('admin','mytiki_blogs','n'),('admin','mytiki_gals','n'),('admin','mytiki_msgs','n'),('admin','mytiki_tasks','n'),('admin','mytiki_items','n'),('admin','mytiki_workflow','n');
/*!40000 ALTER TABLE `tiki_user_preferences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tiki_user_quizzes`
--

DROP TABLE IF EXISTS `tiki_user_quizzes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_quizzes` (
  `user` varchar(40) DEFAULT NULL,
  `quizId` int(10) DEFAULT NULL,
  `timestamp` int(14) DEFAULT NULL,
  `timeTaken` int(14) DEFAULT NULL,
  `points` int(12) DEFAULT NULL,
  `maxPoints` int(12) DEFAULT NULL,
  `resultId` int(10) DEFAULT NULL,
  `userResultId` int(10) NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`userResultId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_quizzes`
--

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

--
-- Table structure for table `tiki_user_taken_quizzes`
--

DROP TABLE IF EXISTS `tiki_user_taken_quizzes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_taken_quizzes` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `quizId` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`user`,`quizId`(100))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_taken_quizzes`
--

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

--
-- Table structure for table `tiki_user_tasks`
--

DROP TABLE IF EXISTS `tiki_user_tasks`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_tasks` (
  `taskId` int(14) NOT NULL AUTO_INCREMENT,
  `last_version` int(4) NOT NULL DEFAULT '0',
  `user` varchar(40) NOT NULL DEFAULT '',
  `creator` varchar(200) NOT NULL DEFAULT '',
  `public_for_group` varchar(30) DEFAULT NULL,
  `rights_by_creator` char(1) DEFAULT NULL,
  `created` int(14) NOT NULL DEFAULT '0',
  `status` char(1) DEFAULT NULL,
  `priority` int(2) DEFAULT NULL,
  `completed` int(14) DEFAULT NULL,
  `percentage` int(4) DEFAULT NULL,
  PRIMARY KEY (`taskId`),
  UNIQUE KEY `creator` (`creator`,`created`),
  UNIQUE KEY `creator_2` (`creator`,`created`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_tasks`
--

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

--
-- Table structure for table `tiki_user_tasks_history`
--

DROP TABLE IF EXISTS `tiki_user_tasks_history`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_tasks_history` (
  `belongs_to` int(14) NOT NULL DEFAULT '0',
  `task_version` int(4) NOT NULL DEFAULT '0',
  `title` varchar(250) NOT NULL DEFAULT '',
  `description` text,
  `start` int(14) DEFAULT NULL,
  `end` int(14) DEFAULT NULL,
  `lasteditor` varchar(200) NOT NULL DEFAULT '',
  `lastchanges` int(14) NOT NULL DEFAULT '0',
  `priority` int(2) NOT NULL DEFAULT '3',
  `completed` int(14) DEFAULT NULL,
  `deleted` int(14) DEFAULT NULL,
  `status` char(1) DEFAULT NULL,
  `percentage` int(4) DEFAULT NULL,
  `accepted_creator` char(1) DEFAULT NULL,
  `accepted_user` char(1) DEFAULT NULL,
  PRIMARY KEY (`belongs_to`,`task_version`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_tasks_history`
--

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

--
-- Table structure for table `tiki_user_votings`
--

DROP TABLE IF EXISTS `tiki_user_votings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_votings` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `id` varchar(255) NOT NULL DEFAULT '',
  `optionId` int(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`user`,`id`(100))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_votings`
--

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

--
-- Table structure for table `tiki_user_watches`
--

DROP TABLE IF EXISTS `tiki_user_watches`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_user_watches` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `event` varchar(40) NOT NULL DEFAULT '',
  `object` varchar(200) NOT NULL DEFAULT '',
  `hash` varchar(32) DEFAULT NULL,
  `title` varchar(250) DEFAULT NULL,
  `type` varchar(200) DEFAULT NULL,
  `url` varchar(250) DEFAULT NULL,
  `email` varchar(200) DEFAULT NULL,
  PRIMARY KEY (`user`,`event`,`object`(100))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_user_watches`
--

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

--
-- Table structure for table `tiki_userfiles`
--

DROP TABLE IF EXISTS `tiki_userfiles`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_userfiles` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `fileId` int(12) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) DEFAULT NULL,
  `filename` varchar(200) DEFAULT NULL,
  `filetype` varchar(200) DEFAULT NULL,
  `filesize` varchar(200) DEFAULT NULL,
  `data` longblob,
  `hits` int(8) DEFAULT NULL,
  `isFile` char(1) DEFAULT NULL,
  `path` varchar(255) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  PRIMARY KEY (`fileId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_userfiles`
--

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

--
-- Table structure for table `tiki_userpoints`
--

DROP TABLE IF EXISTS `tiki_userpoints`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_userpoints` (
  `user` varchar(40) DEFAULT NULL,
  `points` decimal(8,2) DEFAULT NULL,
  `voted` int(8) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_userpoints`
--

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

--
-- Table structure for table `tiki_users`
--

DROP TABLE IF EXISTS `tiki_users`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_users` (
  `user` varchar(40) NOT NULL DEFAULT '',
  `password` varchar(40) DEFAULT NULL,
  `email` varchar(200) DEFAULT NULL,
  `lastLogin` int(14) DEFAULT NULL,
  PRIMARY KEY (`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_users`
--

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

--
-- Table structure for table `tiki_users_score`
--

DROP TABLE IF EXISTS `tiki_users_score`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_users_score` (
  `user` char(40) NOT NULL DEFAULT '',
  `event_id` char(40) NOT NULL DEFAULT '',
  `expire` int(14) NOT NULL DEFAULT '0',
  `tstamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`user`,`event_id`),
  KEY `user` (`user`,`event_id`,`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_users_score`
--

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

--
-- Table structure for table `tiki_webmail_contacts`
--

DROP TABLE IF EXISTS `tiki_webmail_contacts`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_webmail_contacts` (
  `contactId` int(12) NOT NULL AUTO_INCREMENT,
  `firstName` varchar(80) DEFAULT NULL,
  `lastName` varchar(80) DEFAULT NULL,
  `email` varchar(250) DEFAULT NULL,
  `nickname` varchar(200) DEFAULT NULL,
  `user` varchar(40) NOT NULL DEFAULT '',
  PRIMARY KEY (`contactId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_webmail_contacts`
--

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

--
-- Table structure for table `tiki_webmail_messages`
--

DROP TABLE IF EXISTS `tiki_webmail_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_webmail_messages` (
  `accountId` int(12) NOT NULL DEFAULT '0',
  `mailId` varchar(255) NOT NULL DEFAULT '',
  `user` varchar(40) NOT NULL DEFAULT '',
  `isRead` char(1) DEFAULT NULL,
  `isReplied` char(1) DEFAULT NULL,
  `isFlagged` char(1) DEFAULT NULL,
  PRIMARY KEY (`accountId`,`mailId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_webmail_messages`
--

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

--
-- Table structure for table `tiki_wiki_attachments`
--

DROP TABLE IF EXISTS `tiki_wiki_attachments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_wiki_attachments` (
  `attId` int(12) NOT NULL AUTO_INCREMENT,
  `page` varchar(200) NOT NULL DEFAULT '',
  `filename` varchar(80) DEFAULT NULL,
  `filetype` varchar(80) DEFAULT NULL,
  `filesize` int(14) DEFAULT NULL,
  `user` varchar(40) DEFAULT NULL,
  `data` longblob,
  `path` varchar(255) DEFAULT NULL,
  `downloads` int(10) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `comment` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`attId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_wiki_attachments`
--

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

--
-- Table structure for table `tiki_zones`
--

DROP TABLE IF EXISTS `tiki_zones`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `tiki_zones` (
  `zone` varchar(40) NOT NULL DEFAULT '',
  PRIMARY KEY (`zone`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `tiki_zones`
--

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

--
-- Table structure for table `users_grouppermissions`
--

DROP TABLE IF EXISTS `users_grouppermissions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_grouppermissions` (
  `groupName` varchar(255) NOT NULL DEFAULT '',
  `permName` varchar(30) NOT NULL DEFAULT '',
  `value` char(1) DEFAULT '',
  PRIMARY KEY (`groupName`(30),`permName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_grouppermissions`
--

LOCK TABLES `users_grouppermissions` WRITE;
/*!40000 ALTER TABLE `users_grouppermissions` DISABLE KEYS */;
INSERT INTO `users_grouppermissions` VALUES ('Anonymous','tiki_p_view',''),('Anonymous','tiki_p_wiki_view_history',''),('Anonymous','tiki_p_wiki_view_comments',''),('Admins','tiki_p_admin',''),('Anonymous','tiki_p_read_article','');
/*!40000 ALTER TABLE `users_grouppermissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users_groups`
--

DROP TABLE IF EXISTS `users_groups`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_groups` (
  `groupName` varchar(255) NOT NULL DEFAULT '',
  `groupDesc` varchar(255) DEFAULT NULL,
  `groupHome` varchar(255) DEFAULT NULL,
  `usersTrackerId` int(11) DEFAULT NULL,
  `groupTrackerId` int(11) DEFAULT NULL,
  `usersFieldId` int(11) DEFAULT NULL,
  `groupFieldId` int(11) DEFAULT NULL,
  PRIMARY KEY (`groupName`(30))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_groups`
--

LOCK TABLES `users_groups` WRITE;
/*!40000 ALTER TABLE `users_groups` DISABLE KEYS */;
INSERT INTO `users_groups` VALUES ('Anonymous','Public users not logged',NULL,NULL,NULL,NULL,NULL),('Registered','Users logged into the system',NULL,NULL,NULL,NULL,NULL),('Admins','Administrator and accounts managers.',NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `users_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users_objectpermissions`
--

DROP TABLE IF EXISTS `users_objectpermissions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_objectpermissions` (
  `groupName` varchar(255) NOT NULL DEFAULT '',
  `permName` varchar(30) NOT NULL DEFAULT '',
  `objectType` varchar(20) NOT NULL DEFAULT '',
  `objectId` varchar(32) NOT NULL DEFAULT '',
  PRIMARY KEY (`objectId`,`objectType`,`groupName`(30),`permName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_objectpermissions`
--

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

--
-- Table structure for table `users_permissions`
--

DROP TABLE IF EXISTS `users_permissions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_permissions` (
  `permName` varchar(30) NOT NULL DEFAULT '',
  `permDesc` varchar(250) DEFAULT NULL,
  `level` varchar(80) DEFAULT NULL,
  `type` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`permName`),
  KEY `type` (`type`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_permissions`
--

LOCK TABLES `users_permissions` WRITE;
/*!40000 ALTER TABLE `users_permissions` DISABLE KEYS */;
INSERT INTO `users_permissions` VALUES ('tiki_p_abort_instance','Can abort a process instance','editors','workflow'),('tiki_p_access_closed_site','Can access site when closed','admin','tiki'),('tiki_p_add_events','Can add events in the calendar','registered','calendar'),('tiki_p_admin','Administrator, can manage users groups and permissions, Hotwords and all the weblog features','admin','tiki'),('tiki_p_admin_banners','Administrator, can admin banners','admin','tiki'),('tiki_p_admin_banning','Can ban users or ips','admin','tiki'),('tiki_p_admin_calendar','Can create/admin calendars','admin','calendar'),('tiki_p_admin_categories','Can admin categories','editors','tiki'),('tiki_p_admin_charts','Can admin charts','admin','charts'),('tiki_p_admin_chat','Administrator, can create channels remove channels etc','editors','chat'),('tiki_p_admin_cms','Can admin the cms','editors','cms'),('tiki_p_admin_directory','Can admin the directory','editors','directory'),('tiki_p_admin_directory_cats','Can admin directory categories','editors','directory'),('tiki_p_admin_directory_sites','Can admin directory sites','editors','directory'),('tiki_p_admin_drawings','Can admin drawings','editors','drawings'),('tiki_p_admin_dynamic','Can admin the dynamic content system','editors','tiki'),('tiki_p_admin_faqs','Can admin faqs','editors','faqs'),('tiki_p_admin_file_galleries','Can admin file galleries','editors','file galleries'),('tiki_p_admin_forum','Can admin forums','editors','forums'),('tiki_p_admin_galleries','Can admin Image Galleries','editors','image galleries'),('tiki_p_admin_games','Can admin games','editors','games'),('tiki_p_admin_integrator','Can admin integrator repositories and rules','admin','tiki'),('tiki_p_admin_mailin','Can admin mail-in accounts','admin','tiki'),('tiki_p_admin_newsletters','Can admin newsletters','admin','newsletters'),('tiki_p_admin_objects','Can edit object permissions','admin','tiki'),('tiki_p_admin_polls','Can admin polls','admin','tiki'),('tiki_p_admin_quizzes','Can admin quizzes','editors','quizzes'),('tiki_p_admin_received_articles','Can admin received articles','editors','comm'),('tiki_p_admin_received_pages','Can admin received pages','editors','comm'),('tiki_p_admin_rssmodules','Can admin rss modules','admin','tiki'),('tiki_p_admin_sheet','Can admin sheet','admin','sheet'),('tiki_p_admin_shoutbox','Can admin shoutbox (Edit/remove msgs)','editors','shoutbox'),('tiki_p_admin_surveys','Can admin surveys','editors','surveys'),('tiki_p_admin_trackers','Can admin trackers','editors','trackers'),('tiki_p_admin_users','Can admin users','admin','user'),('tiki_p_admin_wiki','Can admin the wiki','editors','wiki'),('tiki_p_admin_workflow','Can admin workflow processes','admin','workflow'),('tiki_p_approve_submission','Can approve submissions','editors','cms'),('tiki_p_attach_trackers','Can attach files to tracker items','registered','trackers'),('tiki_p_autoapprove_submission','Submited articles automatically approved','editors','cms'),('tiki_p_autosubmit_link','Submited links are valid','editors','directory'),('tiki_p_autoval_chart_suggestio','Autovalidate suggestions','editors','charts'),('tiki_p_batch_upload_files','Can upload zip files with files','editors','file galleries'),('tiki_p_batch_upload_image_dir','Can use Directory Batch Load','editors','image galleries'),('tiki_p_batch_upload_images','Can upload zip files with images','editors','image galleries'),('tiki_p_blog_admin','Can admin blogs','editors','blogs'),('tiki_p_blog_post','Can post to a blog','registered','blogs'),('tiki_p_broadcast','Can broadcast messages to groups','admin','messu'),('tiki_p_broadcast_all','Can broadcast messages to all user','admin','messu'),('tiki_p_cache_bookmarks','Can cache user bookmarks','admin','user'),('tiki_p_change_events','Can change events in the calendar','registered','calendar'),('tiki_p_chat','Can use the chat system','registered','chat'),('tiki_p_comment_tracker_items','Can insert comments for tracker items','basic','trackers'),('tiki_p_configure_modules','Can configure modules','registered','user'),('tiki_p_create_blogs','Can create a blog','editors','blogs'),('tiki_p_create_bookmarks','Can create user bookmarks','registered','user'),('tiki_p_create_css','Can create new css suffixed with -user','registered','tiki'),('tiki_p_create_file_galleries','Can create file galleries','editors','file galleries'),('tiki_p_create_galleries','Can create image galleries','editors','image galleries'),('tiki_p_create_tracker_items','Can create new items for trackers','registered','trackers'),('tiki_p_download_files','Can download files','basic','file galleries'),('tiki_p_edit','Can edit pages','registered','wiki'),('tiki_p_edit_article','Can edit articles','editors','cms'),('tiki_p_edit_comments','Can edit all comments','editors','comments'),('tiki_p_edit_content_templates','Can edit content templates','editors','content templates'),('tiki_p_edit_cookies','Can admin cookies','editors','tiki'),('tiki_p_edit_copyrights','Can edit copyright notices','editors','wiki'),('tiki_p_edit_drawings','Can edit drawings','basic','drawings'),('tiki_p_edit_dynvar','Can edit dynamic variables','editors','wiki'),('tiki_p_edit_html_pages','Can edit HTML pages','editors','html pages'),('tiki_p_edit_languages','Can edit translations and create new languages','editors','tiki'),('tiki_p_edit_sheet','Can create and edit sheets','editors','sheet'),('tiki_p_edit_structures','Can create and edit structures','editors','wiki'),('tiki_p_edit_submission','Can edit submissions','editors','cms'),('tiki_p_edit_templates','Can edit site templates','admin','tiki'),('tiki_p_eph_admin','Can admin ephemerides','editors','tiki'),('tiki_p_exception_instance','Can declare an instance as exception','registered','workflow'),('tiki_p_forum_attach','Can attach to forum posts','registered','forums'),('tiki_p_forum_autoapp','Auto approve forum posts','editors','forums'),('tiki_p_forum_post','Can post in forums','registered','forums'),('tiki_p_forum_post_topic','Can start threads in forums','registered','forums'),('tiki_p_forum_read','Can read forums','basic','forums'),('tiki_p_forum_vote','Can vote comments in forums','registered','forums'),('tiki_p_forums_report','Can report msgs to moderator','registered','forums'),('tiki_p_list_users','Can list registered users','registered','community'),('tiki_p_live_support','Can use live support system','basic','support'),('tiki_p_live_support_admin','Admin live support system','admin','support'),('tiki_p_lock','Can lock pages','editors','wiki'),('tiki_p_map_create','Can create new mapfile','admin','maps'),('tiki_p_map_delete','Can delete mapfiles','admin','maps'),('tiki_p_map_edit','Can edit mapfiles','editors','maps'),('tiki_p_map_view','Can view mapfiles','basic','maps'),('tiki_p_map_view_mapfiles','Can view contents of mapfiles','registered','maps'),('tiki_p_messages','Can use the messaging system','registered','messu'),('tiki_p_minical','Can use the mini event calendar','registered','user'),('tiki_p_minor','Can save as minor edit','registered','wiki'),('tiki_p_modify_tracker_items','Can change tracker items','registered','trackers'),('tiki_p_newsreader','Can use the newsreader','registered','user'),('tiki_p_notepad','Can use the notepad','registered','user'),('tiki_p_play_games','Can play games','basic','games'),('tiki_p_post_comments','Can post new comments','registered','comments'),('tiki_p_post_shoutbox','Can post messages in shoutbox','basic','shoutbox'),('tiki_p_read_article','Can read articles','basic','cms'),('tiki_p_read_blog','Can read blogs','basic','blogs'),('tiki_p_read_comments','Can read comments','basic','comments'),('tiki_p_remove','Can remove','editors','wiki'),('tiki_p_remove_article','Can remove articles','editors','cms'),('tiki_p_remove_comments','Can delete comments','editors','comments'),('tiki_p_remove_submission','Can remove submissions','editors','cms'),('tiki_p_rename','Can rename pages','editors','wiki'),('tiki_p_rollback','Can rollback pages','editors','wiki'),('tiki_p_send_articles','Can send articles to other sites','editors','comm'),('tiki_p_send_instance','Can send instances after completion','registered','workflow'),('tiki_p_send_newsletters','Can send newsletters','editors','newsletters'),('tiki_p_send_pages','Can send pages to other sites','registered','comm'),('tiki_p_sendme_articles','Can send articles to this site','registered','comm'),('tiki_p_sendme_pages','Can send pages to this site','registered','comm'),('tiki_p_submit_article','Can submit articles','basic','cms'),('tiki_p_submit_link','Can submit sites to the directory','basic','directory'),('tiki_p_subscribe_email','Can subscribe any email to newsletters','editors','newsletters'),('tiki_p_subscribe_newsletters','Can subscribe to newsletters','basic','newsletters'),('tiki_p_suggest_chart_item','Can suggest items','basic','charts'),('tiki_p_suggest_faq','Can suggest faq questions','basic','faqs'),('tiki_p_take_quiz','Can take quizzes','basic','quizzes'),('tiki_p_take_survey','Can take surveys','basic','surveys'),('tiki_p_tasks','Can use tasks','registered','user'),('tiki_p_tasks_admin','Can admin public tasks','admin','user'),('tiki_p_tasks_receive','Can  receive tasks from other users','registered','user'),('tiki_p_tasks_send','Can send tasks to other users','registered','user'),('tiki_p_topic_read','Can read a topic (Applies only to individual topic perms)','basic','topics'),('tiki_p_tracker_view_ratings','Can view rating result for tracker items','basic','trackers'),('tiki_p_tracker_vote_ratings','Can vote a rating for tracker items','registered','trackers'),('tiki_p_upload_files','Can upload files','registered','file galleries'),('tiki_p_upload_images','Can upload images','registered','image galleries'),('tiki_p_upload_picture','Can upload pictures to wiki pages','registered','wiki'),('tiki_p_use_HTML','Can use HTML in pages','editors','tiki'),('tiki_p_use_content_templates','Can use content templates','registered','content templates'),('tiki_p_use_webmail','Can use webmail','registered','webmail'),('tiki_p_use_workflow','Can execute workflow activities','registered','workflow'),('tiki_p_userfiles','Can upload personal files','registered','user'),('tiki_p_usermenu','Can create items in personal menu','registered','user'),('tiki_p_validate_links','Can validate submited links','editors','directory'),('tiki_p_view','Can view page/pages','basic','wiki'),('tiki_p_view_calendar','Can browse the calendar','basic','calendar'),('tiki_p_view_categories','Can browse categories','basic','tiki'),('tiki_p_view_chart','Can view charts','basic','charts'),('tiki_p_view_directory','Can use the directory','basic','directory'),('tiki_p_view_eph','Can view ephemerides','registered','tiki'),('tiki_p_view_faqs','Can view faqs','basic','faqs'),('tiki_p_view_file_gallery','Can view file galleries','basic','file galleries'),('tiki_p_view_html_pages','Can view HTML pages','basic','html pages'),('tiki_p_view_image_gallery','Can view image galleries','basic','image galleries'),('tiki_p_view_integrator','Can view integrated repositories','basic','tiki'),('tiki_p_view_quiz_stats','Can view quiz stats','basic','quizzes'),('tiki_p_view_referer_stats','Can view referer stats','editors','tiki'),('tiki_p_view_sheet','Can view sheet','basic','sheet'),('tiki_p_view_sheet_history','Can view sheet history','admin','sheet'),('tiki_p_view_shoutbox','Can view shoutbox','basic','shoutbox'),('tiki_p_view_stats','Can view site stats','basic','tiki'),('tiki_p_view_survey_stats','Can view survey stats','basic','surveys'),('tiki_p_view_templates','Can view site templates','admin','tiki'),('tiki_p_view_tiki_calendar','Can view Tikiwiki tools calendar','basic','calendar'),('tiki_p_view_trackers','Can view trackers','basic','trackers'),('tiki_p_list_trackers','Can list trackers','basic','trackers'),('tiki_p_view_trackers_closed','Can view trackers closed items','registered','trackers'),('tiki_p_view_trackers_pending','Can view trackers pending items','editors','trackers'),('tiki_p_view_user_results','Can view user quiz results','editors','quizzes'),('tiki_p_vote_chart','Can vote','basic','charts'),('tiki_p_vote_comments','Can vote comments','registered','comments'),('tiki_p_vote_poll','Can vote polls','basic','tiki'),('tiki_p_wiki_admin_attachments','Can admin attachments to wiki pages','editors','wiki'),('tiki_p_wiki_admin_ratings','Can add and change ratings on wiki pages','admin','wiki'),('tiki_p_wiki_attach_files','Can attach files to wiki pages','registered','wiki'),('tiki_p_wiki_view_attachments','Can view wiki attachments and download','registered','wiki'),('tiki_p_wiki_view_comments','Can view wiki comments','basic','wiki'),('tiki_p_wiki_view_history','Can view wiki history','basic','wiki'),('tiki_p_wiki_view_ratings','Can view rating of wiki pages','basic','wiki'),('tiki_p_wiki_vote_ratings','Can participate to rating of wiki pages','registered','wiki');
/*!40000 ALTER TABLE `users_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users_score`
--

DROP TABLE IF EXISTS `users_score`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_score` (
  `user` char(40) NOT NULL DEFAULT '',
  `event_id` char(40) NOT NULL DEFAULT '',
  `score` int(11) NOT NULL DEFAULT '0',
  `expire` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `tstamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`user`,`event_id`),
  KEY `user` (`user`,`event_id`,`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_score`
--

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

--
-- Table structure for table `users_usergroups`
--

DROP TABLE IF EXISTS `users_usergroups`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_usergroups` (
  `userId` int(8) NOT NULL DEFAULT '0',
  `groupName` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`userId`,`groupName`(30))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_usergroups`
--

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

--
-- Table structure for table `users_users`
--

DROP TABLE IF EXISTS `users_users`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `users_users` (
  `userId` int(8) NOT NULL AUTO_INCREMENT,
  `email` varchar(200) DEFAULT NULL,
  `login` varchar(40) NOT NULL DEFAULT '',
  `password` varchar(30) DEFAULT '',
  `provpass` varchar(30) DEFAULT NULL,
  `default_group` varchar(255) DEFAULT NULL,
  `lastLogin` int(14) DEFAULT NULL,
  `currentLogin` int(14) DEFAULT NULL,
  `registrationDate` int(14) DEFAULT NULL,
  `challenge` varchar(32) DEFAULT NULL,
  `pass_due` int(14) DEFAULT NULL,
  `hash` varchar(32) DEFAULT NULL,
  `created` int(14) DEFAULT NULL,
  `avatarName` varchar(80) DEFAULT NULL,
  `avatarSize` int(14) DEFAULT NULL,
  `avatarFileType` varchar(250) DEFAULT NULL,
  `avatarData` longblob,
  `avatarLibName` varchar(200) DEFAULT NULL,
  `avatarType` char(1) DEFAULT NULL,
  `score` int(11) NOT NULL DEFAULT '0',
  `valid` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`userId`),
  KEY `score` (`score`),
  KEY `login` (`login`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `users_users`
--

LOCK TABLES `users_users` WRITE;
/*!40000 ALTER TABLE `users_users` DISABLE KEYS */;
INSERT INTO `users_users` VALUES (1,'','admin','','',NULL,1209651019,1214316696,NULL,NULL,1379964221,'2249b085a8c3e449a8c4b2bd6d7f5cb2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL);
/*!40000 ALTER TABLE `users_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2009-04-23 18:30:53

