-- MySQL dump 10.11
--
-- Host: localhost    Database: softdux_builder
-- ------------------------------------------------------
-- Server version	5.0.67-community

/*!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 */;

--
-- Current Database: `softdux_builder`
--

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `softdux_builder` /*!40100 DEFAULT CHARACTER SET latin1 */;

USE `softdux_builder`;

--
-- Table structure for table `block`
--

DROP TABLE IF EXISTS `block`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `block` (
  `block_id` int(11) NOT NULL default '0',
  `name` varchar(64) default NULL,
  `title` varchar(32) default NULL,
  `title_class` varchar(32) default NULL,
  `body_class` varchar(32) default NULL,
  `blk_order` smallint(6) default NULL,
  `position` varchar(16) default NULL,
  `is_enabled` smallint(6) default NULL,
  `is_cached` smallint(6) default NULL,
  `params` longtext,
  PRIMARY KEY  (`block_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `block`
--

LOCK TABLES `block` WRITE;
/*!40000 ALTER TABLE `block` DISABLE KEYS */;
INSERT INTO `block` VALUES (1,'Navigation_Block_Navigation','Admin menu','','',1,'AdminNav',1,0,'a:9:{s:15:\"startParentNode\";s:1:\"4\";s:10:\"startLevel\";s:1:\"0\";s:14:\"levelsToRender\";s:1:\"0\";s:9:\"collapsed\";s:1:\"1\";s:10:\"showAlways\";s:1:\"1\";s:12:\"cacheEnabled\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"0\";s:8:\"renderer\";s:14:\"SimpleRenderer\";s:8:\"template\";s:0:\"\";}'),(2,'Navigation_Block_Navigation','User menu','','',1,'MainNav',1,0,'a:9:{s:15:\"startParentNode\";s:1:\"2\";s:10:\"startLevel\";s:1:\"0\";s:14:\"levelsToRender\";s:1:\"0\";s:9:\"collapsed\";s:1:\"1\";s:10:\"showAlways\";s:1:\"1\";s:12:\"cacheEnabled\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"0\";s:8:\"renderer\";s:14:\"SimpleRenderer\";s:8:\"template\";s:0:\"\";}'),(3,'Navigation_Block_CategoryNav','Categories','','navWidget',1,'AdminCategory',0,1,'N;'),(4,'User_Block_Login','Login','','',5,'Right',1,0,'N;'),(5,'Default_Block_SampleRight1','Sample Right Block','','',5,'Right',0,0,'N;'),(6,'Publisher_Block_SiteNews','Site News','','',4,'Left',0,1,'N;'),(7,'Default_Block_Sample1','Community','','',7,'Right',0,1,'N;'),(8,'Default_Block_Sample2','Syndication','','',3,'Left',0,1,'N;'),(9,'Default_Block_Calendar','Calendar','','',5,'Left',0,1,'N;'),(10,'Publisher_Block_RecentHtmlArticles2','Recent articles','','',3,'Right',0,1,'N;'),(11,'User_Block_OnlineUsers','Online','','',6,'Left',0,0,'N;'),(12,'Export_Block_SampleRss','Latest Seagull News','','',2,'Left',0,1,'N;'),(13,'Publisher_Block_Html','Seagull Gear','','',6,'Right',0,0,'a:1:{s:4:\"html\";s:219:\"<a href=\"http://www.cafepress.com/seagullsystems\" title=\"Buy Seagull Gear\"><img src=\"http://seagullfiles.phpkitchen.com/images/seagull_gear.png\" alt=\"Buy Seagull gear and support the project\" title=\"Seagull Gear\" /></a>\";}'),(14,'Publisher_Block_Html','Donate','','',1,'Left',0,0,'a:1:{s:4:\"html\";s:252:\"<div class=\"alignCenter\">\r\n<a href=\"http://sf.net/donate/index.php?group_id=92482\"><img src=\"http://seagullfiles.phpkitchen.com/images/project-support.jpg\" border=\"0\" alt=\"Support The Seagull PHP Framework Project\" width=\"88\" height=\"32\" /></a>\r\n</div>\";}');
/*!40000 ALTER TABLE `block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_assignment`
--

DROP TABLE IF EXISTS `block_assignment`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `block_assignment` (
  `block_id` int(11) NOT NULL default '0',
  `section_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`block_id`,`section_id`),
  KEY `block_assignment_fk` (`block_id`),
  KEY `block_assignment_fk2` (`section_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `block_assignment`
--

LOCK TABLES `block_assignment` WRITE;
/*!40000 ALTER TABLE `block_assignment` DISABLE KEYS */;
INSERT INTO `block_assignment` VALUES (1,0),(2,0),(3,67),(3,69),(3,71),(3,73),(4,0),(5,0),(6,0),(7,0),(8,0),(9,6),(10,6),(11,6),(12,0),(13,0),(14,0);
/*!40000 ALTER TABLE `block_assignment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_assignment_seq`
--

DROP TABLE IF EXISTS `block_assignment_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `block_assignment_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `block_assignment_seq`
--

LOCK TABLES `block_assignment_seq` WRITE;
/*!40000 ALTER TABLE `block_assignment_seq` DISABLE KEYS */;
INSERT INTO `block_assignment_seq` VALUES (14);
/*!40000 ALTER TABLE `block_assignment_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_role`
--

DROP TABLE IF EXISTS `block_role`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `block_role` (
  `block_id` int(11) NOT NULL default '0',
  `role_id` int(11) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `block_role`
--

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

--
-- Table structure for table `block_role_seq`
--

DROP TABLE IF EXISTS `block_role_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `block_role_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `block_role_seq`
--

LOCK TABLES `block_role_seq` WRITE;
/*!40000 ALTER TABLE `block_role_seq` DISABLE KEYS */;
INSERT INTO `block_role_seq` VALUES (3);
/*!40000 ALTER TABLE `block_role_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_seq`
--

DROP TABLE IF EXISTS `block_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `block_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `block_seq`
--

LOCK TABLES `block_seq` WRITE;
/*!40000 ALTER TABLE `block_seq` DISABLE KEYS */;
INSERT INTO `block_seq` VALUES (14);
/*!40000 ALTER TABLE `block_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `log_table`
--

DROP TABLE IF EXISTS `log_table`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `log_table` (
  `id` int(11) NOT NULL default '0',
  `logtime` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  `ident` varchar(16) NOT NULL default '',
  `priority` int(11) NOT NULL default '0',
  `message` varchar(200) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `log_table`
--

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

--
-- Table structure for table `login`
--

DROP TABLE IF EXISTS `login`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `login` (
  `login_id` int(11) NOT NULL default '0',
  `usr_id` int(11) default NULL,
  `date_time` datetime default NULL,
  `remote_ip` varchar(16) default NULL,
  PRIMARY KEY  (`login_id`),
  KEY `usr_login_fk` (`usr_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `login`
--

LOCK TABLES `login` WRITE;
/*!40000 ALTER TABLE `login` DISABLE KEYS */;
INSERT INTO `login` VALUES (507,1000000046,'2007-11-28 08:11:32','58.137.81.9'),(506,1000000046,'2007-11-28 08:11:32','58.137.81.9'),(505,1000000046,'2007-11-28 02:57:19','58.137.81.10'),(504,1000000046,'2007-11-28 02:57:19','58.137.81.10'),(503,999999999,'2007-11-28 02:16:02','58.137.81.9'),(502,999999999,'2007-11-28 02:16:02','58.137.81.9'),(501,1000000047,'2007-11-28 02:13:51','58.137.81.9'),(500,1000000047,'2007-11-28 02:13:51','58.137.81.9'),(499,1000000000,'2007-11-28 02:08:06','58.137.81.9'),(498,1000000000,'2007-11-28 02:08:06','58.137.81.9'),(497,1000000000,'2007-11-27 10:45:02','58.137.81.9'),(496,1000000000,'2007-11-27 10:45:02','58.137.81.9'),(495,1000000000,'2007-11-26 10:16:31','58.137.81.10'),(494,1000000000,'2007-11-26 10:16:31','58.137.81.10'),(493,1000000000,'2007-11-26 09:41:07','58.137.81.10'),(492,1000000000,'2007-11-26 09:41:07','58.137.81.10'),(491,1000000000,'2007-11-26 09:34:25','58.137.81.10'),(490,1000000000,'2007-11-26 09:34:25','58.137.81.10'),(489,1000000000,'2007-11-26 08:57:43','196.25.255.214'),(488,1000000000,'2007-11-26 08:57:43','196.25.255.214'),(487,999999999,'2007-11-26 08:57:21','152.106.240.12'),(486,999999999,'2007-11-26 08:57:21','152.106.240.12'),(485,1000000000,'2007-11-26 08:57:17','198.54.202.210'),(484,1000000000,'2007-11-26 08:57:17','198.54.202.210'),(483,1000000000,'2007-11-26 08:56:30','198.54.202.210'),(482,1000000000,'2007-11-26 08:56:30','198.54.202.210'),(481,1000000000,'2007-11-26 08:47:27','196.25.255.210'),(480,1000000000,'2007-11-26 08:47:27','196.25.255.210'),(479,1000000000,'2007-11-26 08:47:24','196.25.255.210'),(478,1000000000,'2007-11-26 08:47:24','196.25.255.210'),(31,999999999,'2007-06-13 12:45:07','88.233.54.30'),(32,999999999,'2007-06-13 12:45:07','88.233.54.30'),(33,999999999,'2007-06-13 13:13:45','60.51.88.7'),(34,999999999,'2007-06-13 13:13:45','60.51.88.7'),(35,1000000004,'2007-06-15 10:17:40','196.25.255.210'),(36,1000000004,'2007-06-15 10:17:40','196.25.255.210'),(37,1000000004,'2007-06-15 12:48:03','196.25.255.194'),(38,1000000004,'2007-06-15 12:48:03','196.25.255.194'),(39,1000000004,'2007-06-15 12:57:46','198.54.202.218'),(40,1000000004,'2007-06-15 12:57:46','198.54.202.218'),(41,1000000004,'2007-06-15 13:23:19','198.54.202.195'),(42,1000000004,'2007-06-15 13:23:19','198.54.202.195'),(43,1000000004,'2007-06-15 14:27:05','198.54.202.226'),(44,1000000004,'2007-06-15 14:27:05','198.54.202.226'),(45,1000000004,'2007-06-15 14:31:54','198.54.202.210'),(46,1000000004,'2007-06-15 14:31:54','198.54.202.210'),(47,1000000004,'2007-06-16 08:37:16','198.54.202.214'),(48,1000000004,'2007-06-16 08:37:16','198.54.202.214'),(49,999999999,'2007-06-20 16:31:41','198.54.202.194'),(50,999999999,'2007-06-20 16:31:41','198.54.202.194'),(51,1000000006,'2007-06-20 16:39:07','41.243.57.40'),(52,1000000006,'2007-06-20 16:39:07','41.243.57.40'),(53,1000000006,'2007-06-20 16:54:56','198.54.202.195'),(54,1000000006,'2007-06-20 16:54:56','198.54.202.195'),(55,1000000006,'2007-06-20 17:14:00','196.25.255.195'),(56,1000000006,'2007-06-20 17:14:00','196.25.255.195'),(57,1000000007,'2007-06-20 20:28:29','196.11.241.41'),(58,1000000007,'2007-06-20 20:28:29','196.11.241.41'),(59,1000000007,'2007-06-20 21:08:18','196.11.241.41'),(60,1000000007,'2007-06-20 21:08:18','196.11.241.41'),(61,1000000007,'2007-06-21 06:16:56','196.25.255.210'),(62,1000000007,'2007-06-21 06:16:56','196.25.255.210'),(63,1000000007,'2007-06-21 06:18:39','196.25.255.218'),(64,1000000007,'2007-06-21 06:18:39','196.25.255.218'),(65,1000000007,'2007-06-21 09:10:00','198.54.202.218'),(66,1000000007,'2007-06-21 09:10:00','198.54.202.218'),(67,999999999,'2007-06-22 21:43:30','83.112.10.224'),(68,999999999,'2007-06-22 21:43:30','83.112.10.224'),(69,999999999,'2007-06-23 12:30:27','24.129.185.222'),(70,999999999,'2007-06-23 12:30:27','24.129.185.222'),(71,999999999,'2007-06-24 01:37:31','72.222.208.21'),(72,999999999,'2007-06-24 01:37:31','72.222.208.21'),(73,999999999,'2007-06-27 19:57:22','196.25.255.194'),(74,999999999,'2007-06-27 19:57:22','196.25.255.194'),(75,999999999,'2007-06-30 16:21:15','142.177.235.236'),(76,999999999,'2007-06-30 16:21:15','142.177.235.236'),(77,1000000009,'2007-07-01 17:14:26','41.241.175.236'),(78,1000000009,'2007-07-01 17:14:26','41.241.175.236'),(79,1000000010,'2007-07-01 19:07:53','196.11.241.40'),(80,1000000010,'2007-07-01 19:07:53','196.11.241.40'),(81,1000000011,'2007-07-02 07:19:18','203.197.151.138'),(82,1000000011,'2007-07-02 07:19:18','203.197.151.138'),(83,999999999,'2007-07-04 21:54:07','196.25.255.194'),(84,999999999,'2007-07-04 21:54:07','196.25.255.194'),(85,999999999,'2007-07-05 17:58:38','41.208.48.1'),(86,999999999,'2007-07-05 17:58:38','41.208.48.1'),(87,1000000013,'2007-07-05 18:25:29','41.208.48.1'),(88,1000000013,'2007-07-05 18:25:29','41.208.48.1'),(89,1000000013,'2007-07-05 20:18:09','41.208.48.1'),(90,1000000013,'2007-07-05 20:18:09','41.208.48.1'),(91,1000000015,'2007-07-06 08:39:10','196.31.153.50'),(92,1000000015,'2007-07-06 08:39:10','196.31.153.50'),(93,999999999,'2007-07-06 18:51:56','196.25.255.195'),(94,999999999,'2007-07-06 18:51:56','196.25.255.195'),(95,1000000011,'2007-07-07 10:16:16','61.246.232.246'),(96,1000000011,'2007-07-07 10:16:16','61.246.232.246'),(97,1000000016,'2007-07-08 20:40:57','196.25.255.195'),(98,1000000016,'2007-07-08 20:40:57','196.25.255.195'),(99,999999999,'2007-07-11 09:46:08','41.208.48.1'),(100,999999999,'2007-07-11 09:46:08','41.208.48.1'),(101,999999999,'2007-07-11 12:41:05','172.207.89.127'),(102,999999999,'2007-07-11 12:41:05','172.207.89.127'),(103,999999999,'2007-07-11 12:42:44','196.25.255.246'),(104,999999999,'2007-07-11 12:42:44','196.25.255.246'),(105,1000000017,'2007-07-11 20:43:45','41.244.207.24'),(106,1000000017,'2007-07-11 20:43:45','41.244.207.24'),(107,1000000017,'2007-07-12 07:13:03','198.54.202.195'),(108,1000000017,'2007-07-12 07:13:03','198.54.202.195'),(109,1000000017,'2007-07-12 07:14:09','198.54.202.210'),(110,1000000017,'2007-07-12 07:14:09','198.54.202.210'),(111,999999999,'2007-07-12 12:59:00','196.207.32.38'),(112,999999999,'2007-07-12 12:59:00','196.207.32.38'),(113,999999999,'2007-07-12 17:49:19','196.207.47.60'),(114,999999999,'2007-07-12 17:49:19','196.207.47.60'),(115,1000000019,'2007-07-12 20:46:50','41.206.160.2'),(116,1000000019,'2007-07-12 20:46:50','41.206.160.2'),(117,999999999,'2007-07-13 08:14:48','196.25.255.246'),(118,999999999,'2007-07-13 08:14:48','196.25.255.246'),(119,1000000019,'2007-07-13 19:55:59','41.206.160.2'),(120,1000000019,'2007-07-13 19:55:59','41.206.160.2'),(121,999999999,'2007-07-13 21:05:55','122.167.229.197'),(122,999999999,'2007-07-13 21:05:55','122.167.229.197'),(123,1000000020,'2007-07-14 07:18:27','196.207.40.212'),(124,1000000020,'2007-07-14 07:18:27','196.207.40.212'),(125,1000000021,'2007-07-14 11:53:49','209.203.50.157'),(126,1000000021,'2007-07-14 11:53:49','209.203.50.157'),(127,1000000020,'2007-07-14 14:16:11','196.207.40.212'),(128,1000000020,'2007-07-14 14:16:11','196.207.40.212'),(129,1000000020,'2007-07-15 08:29:54','196.207.40.212'),(130,1000000020,'2007-07-15 08:29:54','196.207.40.212'),(131,999999999,'2007-07-15 16:31:30','65.6.145.96'),(132,999999999,'2007-07-15 16:31:30','65.6.145.96'),(133,1000000022,'2007-07-16 11:52:21','41.206.160.2'),(134,1000000022,'2007-07-16 11:52:21','41.206.160.2'),(135,1000000022,'2007-07-16 12:00:06','41.206.160.2'),(136,1000000022,'2007-07-16 12:00:06','41.206.160.2'),(137,999999999,'2007-07-16 13:13:22','198.54.202.250'),(138,999999999,'2007-07-16 13:13:22','198.54.202.250'),(139,999999999,'2007-07-16 17:16:52','196.2.124.251'),(140,999999999,'2007-07-16 17:16:52','196.2.124.251'),(141,999999999,'2007-07-17 08:16:18','146.232.65.6'),(142,999999999,'2007-07-17 08:16:18','146.232.65.6'),(143,1000000023,'2007-07-17 12:00:04','196.25.255.195'),(144,1000000023,'2007-07-17 12:00:04','196.25.255.195'),(145,999999999,'2007-07-18 07:52:50','196.2.124.251'),(146,999999999,'2007-07-18 07:52:50','196.2.124.251'),(147,1000000026,'2007-07-18 10:12:49','41.206.160.2'),(148,1000000026,'2007-07-18 10:12:49','41.206.160.2'),(149,1000000000,'2007-07-18 10:16:15','196.25.255.210'),(150,1000000000,'2007-07-18 10:16:15','196.25.255.210'),(151,1000000027,'2007-07-18 12:13:01','41.206.160.2'),(152,1000000027,'2007-07-18 12:13:01','41.206.160.2'),(153,1000000027,'2007-07-18 12:26:30','41.206.160.2'),(154,1000000027,'2007-07-18 12:26:30','41.206.160.2'),(155,999999999,'2007-07-18 16:45:57','198.54.202.194'),(156,999999999,'2007-07-18 16:45:57','198.54.202.194'),(157,1000000028,'2007-07-19 04:38:54','168.210.208.52'),(158,1000000028,'2007-07-19 04:38:54','168.210.208.52'),(159,1000000028,'2007-07-19 05:22:12','168.210.208.52'),(160,1000000028,'2007-07-19 05:22:12','168.210.208.52'),(161,1000000028,'2007-07-19 06:58:01','168.210.208.52'),(162,1000000028,'2007-07-19 06:58:01','168.210.208.52'),(163,1000000028,'2007-07-19 07:04:17','168.210.208.52'),(164,1000000028,'2007-07-19 07:04:17','168.210.208.52'),(165,1000000028,'2007-07-19 07:39:44','168.210.208.52'),(166,1000000028,'2007-07-19 07:39:44','168.210.208.52'),(167,1000000028,'2007-07-19 16:04:03','198.54.202.195'),(168,1000000028,'2007-07-19 16:04:03','198.54.202.195'),(169,1000000028,'2007-07-19 16:11:52','198.54.202.195'),(170,1000000028,'2007-07-19 16:11:52','198.54.202.195'),(171,999999999,'2007-07-19 19:02:35','198.54.202.3'),(172,999999999,'2007-07-19 19:02:35','198.54.202.3'),(173,1000000028,'2007-07-20 08:14:41','168.210.208.52'),(174,1000000028,'2007-07-20 08:14:41','168.210.208.52'),(175,1000000028,'2007-07-20 08:27:55','168.210.208.52'),(176,1000000028,'2007-07-20 08:27:55','168.210.208.52'),(177,999999999,'2007-07-20 17:41:30','85.72.80.55'),(178,999999999,'2007-07-20 17:41:30','85.72.80.55'),(179,1000000029,'2007-07-22 14:11:32','201.58.55.86'),(180,1000000029,'2007-07-22 14:11:32','201.58.55.86'),(181,1000000029,'2007-07-22 14:12:09','201.58.55.86'),(182,1000000029,'2007-07-22 14:12:09','201.58.55.86'),(183,1000000029,'2007-07-22 14:29:23','201.58.55.86'),(184,1000000029,'2007-07-22 14:29:23','201.58.55.86'),(185,1000000029,'2007-07-22 14:30:56','201.58.55.86'),(186,1000000029,'2007-07-22 14:30:56','201.58.55.86'),(187,1000000029,'2007-07-22 17:32:01','201.58.55.86'),(188,1000000029,'2007-07-22 17:32:01','201.58.55.86'),(189,1000000030,'2007-07-22 17:40:54','201.58.55.86'),(190,1000000030,'2007-07-22 17:40:54','201.58.55.86'),(191,999999999,'2007-07-22 17:46:49','201.58.55.86'),(192,999999999,'2007-07-22 17:46:49','201.58.55.86'),(193,1000000030,'2007-07-22 17:52:42','201.58.55.86'),(194,1000000030,'2007-07-22 17:52:42','201.58.55.86'),(195,1000000028,'2007-07-23 07:47:10','168.210.208.52'),(196,1000000028,'2007-07-23 07:47:10','168.210.208.52'),(197,1000000028,'2007-07-24 10:14:13','168.210.208.52'),(198,1000000028,'2007-07-24 10:14:13','168.210.208.52'),(199,1000000028,'2007-07-24 10:22:20','168.210.208.52'),(200,1000000028,'2007-07-24 10:22:20','168.210.208.52'),(201,1000000028,'2007-07-24 11:38:12','168.210.208.52'),(202,1000000028,'2007-07-24 11:38:12','168.210.208.52'),(203,1000000028,'2007-07-24 13:09:10','168.210.208.52'),(204,1000000028,'2007-07-24 13:09:10','168.210.208.52'),(205,1000000028,'2007-07-24 14:13:03','168.210.208.52'),(206,1000000028,'2007-07-24 14:13:03','168.210.208.52'),(207,1000000028,'2007-07-24 14:15:37','198.54.202.195'),(208,1000000028,'2007-07-24 14:15:37','198.54.202.195'),(209,1000000028,'2007-07-24 15:59:03','198.54.202.210'),(210,1000000028,'2007-07-24 15:59:03','198.54.202.210'),(211,1000000028,'2007-07-24 16:07:54','196.25.255.210'),(212,1000000028,'2007-07-24 16:07:54','196.25.255.210'),(213,1000000028,'2007-07-24 20:35:27','198.54.202.210'),(214,1000000028,'2007-07-24 20:35:27','198.54.202.210'),(215,1000000028,'2007-07-25 05:56:24','168.210.208.52'),(216,1000000028,'2007-07-25 05:56:24','168.210.208.52'),(217,1000000028,'2007-07-25 05:57:25','168.210.208.52'),(218,1000000028,'2007-07-25 05:57:25','168.210.208.52'),(219,1000000028,'2007-07-25 06:12:45','168.210.208.52'),(220,1000000028,'2007-07-25 06:12:45','168.210.208.52'),(221,1000000028,'2007-07-25 09:39:46','196.25.255.195'),(222,1000000028,'2007-07-25 09:39:46','196.25.255.195'),(223,1000000028,'2007-07-25 10:01:00','168.210.208.52'),(224,1000000028,'2007-07-25 10:01:00','168.210.208.52'),(225,999999999,'2007-07-25 10:25:49','196.46.138.2'),(226,999999999,'2007-07-25 10:25:49','196.46.138.2'),(227,999999999,'2007-07-25 10:28:20','196.46.138.2'),(228,999999999,'2007-07-25 10:28:20','196.46.138.2'),(229,1000000028,'2007-07-25 11:04:35','41.206.160.2'),(230,1000000028,'2007-07-25 11:04:35','41.206.160.2'),(231,1000000028,'2007-07-25 11:05:35','168.210.208.52'),(232,1000000028,'2007-07-25 11:05:35','168.210.208.52'),(233,1000000028,'2007-07-25 11:46:17','168.210.208.52'),(234,1000000028,'2007-07-25 11:46:17','168.210.208.52'),(235,1000000028,'2007-07-25 17:05:48','196.25.255.210'),(236,1000000028,'2007-07-25 17:05:48','196.25.255.210'),(237,1000000028,'2007-07-25 18:07:59','198.54.202.210'),(238,1000000028,'2007-07-25 18:07:59','198.54.202.210'),(239,1000000028,'2007-07-25 18:27:25','198.54.202.210'),(240,1000000028,'2007-07-25 18:27:25','198.54.202.210'),(241,1000000028,'2007-07-25 18:42:21','198.54.202.210'),(242,1000000028,'2007-07-25 18:42:21','198.54.202.210'),(243,1000000028,'2007-07-26 05:47:26','168.210.208.52'),(244,1000000028,'2007-07-26 05:47:26','168.210.208.52'),(245,1000000028,'2007-07-26 10:07:42','168.210.208.52'),(246,1000000028,'2007-07-26 10:07:42','168.210.208.52'),(247,1000000028,'2007-07-26 11:22:46','168.210.208.52'),(248,1000000028,'2007-07-26 11:22:46','168.210.208.52'),(249,1000000028,'2007-07-26 11:52:15','168.210.208.52'),(250,1000000028,'2007-07-26 11:52:15','168.210.208.52'),(251,1000000028,'2007-07-26 15:11:30','198.54.202.210'),(252,1000000028,'2007-07-26 15:11:30','198.54.202.210'),(253,1000000028,'2007-07-26 16:17:48','198.54.202.210'),(254,1000000028,'2007-07-26 16:17:48','198.54.202.210'),(255,1000000028,'2007-07-26 17:19:31','198.54.202.210'),(256,1000000028,'2007-07-26 17:19:31','198.54.202.210'),(257,1000000028,'2007-07-26 18:49:36','196.25.255.210'),(258,1000000028,'2007-07-26 18:49:36','196.25.255.210'),(259,1000000028,'2007-07-26 18:56:25','196.25.255.210'),(260,1000000028,'2007-07-26 18:56:25','196.25.255.210'),(261,1000000028,'2007-07-27 07:00:58','168.210.208.52'),(262,1000000028,'2007-07-27 07:00:58','168.210.208.52'),(263,1000000028,'2007-07-27 09:39:51','168.210.208.52'),(264,1000000028,'2007-07-27 09:39:51','168.210.208.52'),(265,1000000028,'2007-07-27 12:25:19','168.210.208.52'),(266,1000000028,'2007-07-27 12:25:19','168.210.208.52'),(267,1000000028,'2007-07-27 15:31:08','196.25.255.210'),(268,1000000028,'2007-07-27 15:31:08','196.25.255.210'),(269,1000000028,'2007-07-27 15:39:50','198.54.202.210'),(270,1000000028,'2007-07-27 15:39:50','198.54.202.210'),(271,1000000028,'2007-07-27 15:52:59','196.25.255.210'),(272,1000000028,'2007-07-27 15:52:59','196.25.255.210'),(273,1000000028,'2007-07-27 16:17:25','198.54.202.210'),(274,1000000028,'2007-07-27 16:17:25','198.54.202.210'),(275,1000000028,'2007-07-27 17:07:57','198.54.202.210'),(276,1000000028,'2007-07-27 17:07:57','198.54.202.210'),(277,1000000028,'2007-07-27 19:13:01','196.25.255.210'),(278,1000000028,'2007-07-27 19:13:01','196.25.255.210'),(279,1000000028,'2007-07-28 09:38:08','196.25.255.210'),(280,1000000028,'2007-07-28 09:38:08','196.25.255.210'),(281,999999999,'2007-07-29 11:40:52','198.54.202.195'),(282,999999999,'2007-07-29 11:40:52','198.54.202.195'),(283,1000000028,'2007-07-29 13:43:39','196.25.255.210'),(284,1000000028,'2007-07-29 13:43:39','196.25.255.210'),(285,1000000028,'2007-07-31 05:58:03','168.210.208.52'),(286,1000000028,'2007-07-31 05:58:03','168.210.208.52'),(287,1000000028,'2007-07-31 07:29:05','168.210.208.52'),(288,1000000028,'2007-07-31 07:29:05','168.210.208.52'),(289,1000000028,'2007-07-31 09:20:53','168.210.208.52'),(290,1000000028,'2007-07-31 09:20:53','168.210.208.52'),(291,1000000000,'2007-07-31 16:21:43','198.54.202.214'),(292,1000000000,'2007-07-31 16:21:43','198.54.202.214'),(293,1000000000,'2007-07-31 17:31:14','196.25.255.210'),(294,1000000000,'2007-07-31 17:31:14','196.25.255.210'),(295,1000000003,'2007-07-31 17:38:27','196.25.255.210'),(296,1000000000,'2007-08-01 00:01:27','203.197.151.138'),(297,1000000000,'2007-08-01 00:01:27','203.197.151.138'),(298,1000000028,'2007-08-01 05:05:51','168.210.208.52'),(299,1000000028,'2007-08-01 05:05:51','168.210.208.52'),(300,1000000028,'2007-08-01 05:07:50','168.210.208.52'),(301,1000000028,'2007-08-01 05:07:50','168.210.208.52'),(302,1000000028,'2007-08-01 05:22:52','168.210.208.52'),(303,1000000028,'2007-08-01 05:22:52','168.210.208.52'),(304,1000000028,'2007-08-01 06:43:30','196.25.255.214'),(305,1000000028,'2007-08-01 06:43:30','196.25.255.214'),(306,1000000028,'2007-08-01 07:19:13','203.197.151.138'),(307,1000000028,'2007-08-01 07:19:13','203.197.151.138'),(308,1000000028,'2007-08-01 07:21:35','203.197.151.138'),(309,1000000028,'2007-08-01 07:21:35','203.197.151.138'),(310,1000000032,'2007-08-01 07:46:25','203.197.151.138'),(311,1000000032,'2007-08-01 07:46:25','203.197.151.138'),(312,1000000032,'2007-08-01 07:53:14','203.197.151.138'),(313,1000000032,'2007-08-01 07:53:14','203.197.151.138'),(314,1000000032,'2007-08-01 07:57:16','203.197.151.138'),(315,1000000032,'2007-08-01 07:57:16','203.197.151.138'),(316,1000000032,'2007-08-01 08:06:28','203.197.151.138'),(317,1000000032,'2007-08-01 08:06:28','203.197.151.138'),(318,1000000028,'2007-08-01 08:39:19','168.210.208.52'),(319,1000000028,'2007-08-01 08:39:19','168.210.208.52'),(320,1000000028,'2007-08-01 09:00:26','168.210.208.52'),(321,1000000028,'2007-08-01 09:00:26','168.210.208.52'),(322,1000000028,'2007-08-01 10:11:44','203.197.151.138'),(323,1000000028,'2007-08-01 10:11:44','203.197.151.138'),(324,1000000028,'2007-08-01 10:13:43','168.210.208.52'),(325,1000000028,'2007-08-01 10:13:43','168.210.208.52'),(326,1000000028,'2007-08-01 12:09:00','168.210.208.52'),(327,1000000028,'2007-08-01 12:09:00','168.210.208.52'),(328,1000000028,'2007-08-01 15:31:43','203.197.151.138'),(329,1000000028,'2007-08-01 15:31:43','203.197.151.138'),(330,999999999,'2007-08-01 15:47:17','203.147.0.44'),(331,999999999,'2007-08-01 15:47:17','203.147.0.44'),(332,999999999,'2007-08-01 19:19:54','196.25.255.214'),(333,999999999,'2007-08-01 19:19:54','196.25.255.214'),(334,1000000033,'2007-08-01 21:15:50','198.54.202.195'),(335,1000000033,'2007-08-01 21:15:50','198.54.202.195'),(336,1000000033,'2007-08-02 06:10:55','198.54.202.195'),(337,1000000033,'2007-08-02 06:10:55','198.54.202.195'),(338,999999999,'2007-08-02 17:42:37','196.11.241.43'),(339,999999999,'2007-08-02 17:42:37','196.11.241.43'),(340,1000000034,'2007-08-02 17:54:15','196.11.241.43'),(341,1000000034,'2007-08-02 17:54:15','196.11.241.43'),(342,1000000034,'2007-08-02 18:06:34','196.11.241.43'),(343,1000000034,'2007-08-02 18:06:34','196.11.241.43'),(344,1000000034,'2007-08-02 18:50:15','196.11.241.43'),(345,1000000034,'2007-08-02 18:50:15','196.11.241.43'),(346,1000000034,'2007-08-02 19:09:47','196.11.241.43'),(347,1000000034,'2007-08-02 19:09:47','196.11.241.43'),(348,1000000034,'2007-08-02 19:13:26','196.11.241.43'),(349,1000000034,'2007-08-02 19:13:26','196.11.241.43'),(350,1000000000,'2007-08-02 19:35:54','196.25.255.218'),(351,1000000000,'2007-08-02 19:35:54','196.25.255.218'),(352,999999999,'2007-08-03 06:20:20','203.147.0.44'),(353,999999999,'2007-08-03 06:20:20','203.147.0.44'),(354,999999999,'2007-08-03 07:21:33','203.147.0.44'),(355,999999999,'2007-08-03 07:21:33','203.147.0.44'),(356,999999999,'2007-08-03 07:30:33','203.147.0.44'),(357,999999999,'2007-08-03 07:30:33','203.147.0.44'),(358,999999999,'2007-08-03 10:57:59','203.147.0.44'),(359,999999999,'2007-08-03 10:57:59','203.147.0.44'),(360,1000000033,'2007-08-03 12:49:53','196.25.255.194'),(361,1000000033,'2007-08-03 12:49:53','196.25.255.194'),(362,999999999,'2007-08-06 04:02:37','62.231.244.177'),(363,999999999,'2007-08-06 04:02:37','62.231.244.177'),(364,999999999,'2007-08-06 04:36:58','62.231.244.177'),(365,999999999,'2007-08-06 04:36:58','62.231.244.177'),(366,999999999,'2007-08-06 07:27:46','62.231.244.177'),(367,999999999,'2007-08-06 07:27:46','62.231.244.177'),(368,999999999,'2007-08-09 11:31:22','198.54.202.194'),(369,999999999,'2007-08-09 11:31:22','198.54.202.194'),(370,999999999,'2007-08-14 10:21:48','62.231.244.177'),(371,999999999,'2007-08-14 10:21:48','62.231.244.177'),(372,1000000000,'2007-10-10 22:31:33','196.25.255.195'),(373,1000000000,'2007-10-10 22:31:33','196.25.255.195'),(374,1000000035,'2007-10-10 22:56:46','198.54.202.210'),(375,1000000035,'2007-10-10 22:56:46','198.54.202.210'),(376,1000000036,'2007-10-11 05:41:31','196.15.224.65'),(377,1000000036,'2007-10-11 05:41:31','196.15.224.65'),(378,999999999,'2007-10-11 06:13:37','198.54.202.194'),(379,999999999,'2007-10-11 06:13:37','198.54.202.194'),(380,1000000037,'2007-10-11 10:17:27','198.54.202.195'),(381,1000000037,'2007-10-11 10:17:27','198.54.202.195'),(382,999999999,'2007-10-11 12:18:29','196.25.255.246'),(383,999999999,'2007-10-11 12:18:29','196.25.255.246'),(384,999999999,'2007-10-12 12:15:29','196.209.251.3'),(385,999999999,'2007-10-12 12:15:29','196.209.251.3'),(386,999999999,'2007-10-13 20:39:21','198.54.202.246'),(387,999999999,'2007-10-13 20:39:21','198.54.202.246'),(388,999999999,'2007-10-17 21:01:31','207.65.77.126'),(389,999999999,'2007-10-17 21:01:31','207.65.77.126'),(390,1000000040,'2007-10-18 06:59:47','196.207.40.213'),(391,1000000040,'2007-10-18 06:59:47','196.207.40.213'),(392,999999999,'2007-10-18 17:41:07','198.54.202.226'),(393,999999999,'2007-10-18 17:41:07','198.54.202.226'),(394,999999999,'2007-10-20 12:10:32','196.25.253.13'),(395,999999999,'2007-10-20 12:10:32','196.25.253.13'),(396,999999999,'2007-10-20 14:35:04','196.25.253.13'),(397,999999999,'2007-10-20 14:35:04','196.25.253.13'),(398,1000000040,'2007-10-22 14:35:55','196.207.40.213'),(399,1000000040,'2007-10-22 14:35:55','196.207.40.213'),(400,999999999,'2007-10-29 07:53:53','196.34.147.100'),(401,999999999,'2007-10-29 07:53:53','196.34.147.100'),(402,999999999,'2007-11-02 11:26:00','196.41.30.5'),(403,999999999,'2007-11-02 11:26:00','196.41.30.5'),(404,1000000042,'2007-11-03 11:53:48','198.54.202.195'),(405,1000000042,'2007-11-03 11:53:48','198.54.202.195'),(406,1000000042,'2007-11-03 11:57:40','198.54.202.210'),(407,1000000042,'2007-11-03 11:57:40','198.54.202.210'),(408,1000000044,'2007-11-15 19:35:03','198.54.202.210'),(409,1000000044,'2007-11-15 19:35:03','198.54.202.210'),(410,1000000044,'2007-11-15 19:41:09','196.25.255.195'),(411,1000000044,'2007-11-15 19:41:09','196.25.255.195'),(412,999999999,'2007-11-17 15:32:16','196.25.255.210'),(413,999999999,'2007-11-17 15:32:16','196.25.255.210'),(414,1000000044,'2007-11-17 15:34:31','196.25.255.210'),(415,1000000044,'2007-11-17 15:34:31','196.25.255.210'),(416,1000000044,'2007-11-17 15:46:12','196.25.255.210'),(417,1000000044,'2007-11-17 15:46:12','196.25.255.210'),(418,1000000000,'2007-11-17 16:12:51','198.54.202.218'),(419,1000000000,'2007-11-17 16:12:51','198.54.202.218'),(420,1000000000,'2007-11-17 16:22:15','198.54.202.210'),(421,1000000000,'2007-11-17 16:22:15','198.54.202.210'),(422,1000000045,'2007-11-17 16:29:37','41.241.230.130'),(423,1000000045,'2007-11-17 16:29:37','41.241.230.130'),(424,1000000044,'2007-11-22 15:58:09','196.25.255.210'),(425,1000000044,'2007-11-22 15:58:09','196.25.255.210'),(426,1000000044,'2007-11-22 15:59:35','198.54.202.210'),(427,1000000044,'2007-11-22 15:59:35','198.54.202.210'),(428,1000000044,'2007-11-22 16:31:51','155.239.153.248'),(429,1000000044,'2007-11-22 16:31:51','155.239.153.248'),(430,999999999,'2007-11-22 17:10:53','58.137.81.10'),(431,999999999,'2007-11-22 17:10:53','58.137.81.10'),(432,1000000044,'2007-11-23 06:49:54','58.137.81.9'),(433,1000000044,'2007-11-23 06:49:54','58.137.81.9'),(434,999999999,'2007-11-23 06:51:58','58.137.81.9'),(435,999999999,'2007-11-23 06:51:58','58.137.81.9'),(436,1000000044,'2007-11-25 17:42:45','198.54.202.210'),(437,1000000044,'2007-11-25 17:42:45','198.54.202.210'),(438,1000000044,'2007-11-25 17:43:20','196.25.255.210'),(439,1000000044,'2007-11-25 17:43:20','196.25.255.210'),(440,1000000000,'2007-11-25 17:45:47','198.54.202.210'),(441,1000000000,'2007-11-25 17:45:47','198.54.202.210'),(442,1000000000,'2007-11-25 17:49:02','196.25.255.210'),(443,1000000000,'2007-11-25 17:49:02','196.25.255.210'),(444,1000000000,'2007-11-25 17:50:09','198.54.202.210'),(445,1000000000,'2007-11-25 17:50:09','198.54.202.210'),(446,1000000000,'2007-11-25 18:43:59','196.25.255.210'),(447,1000000000,'2007-11-25 18:43:59','196.25.255.210'),(448,1000000000,'2007-11-25 18:44:40','198.54.202.210'),(449,1000000000,'2007-11-25 18:44:40','198.54.202.210'),(450,1000000000,'2007-11-25 18:46:40','198.54.202.210'),(451,1000000000,'2007-11-25 18:46:40','198.54.202.210'),(452,999999999,'2007-11-26 01:13:16','58.137.81.9'),(453,999999999,'2007-11-26 01:13:16','58.137.81.9'),(454,1000000000,'2007-11-26 01:14:47','58.137.81.9'),(455,1000000000,'2007-11-26 01:14:47','58.137.81.9'),(456,1000000000,'2007-11-26 01:21:11','58.137.81.9'),(457,1000000000,'2007-11-26 01:21:11','58.137.81.9'),(458,1000000047,'2007-11-26 01:29:07','58.137.81.9'),(459,1000000047,'2007-11-26 01:29:07','58.137.81.9'),(460,999999999,'2007-11-26 01:30:12','58.137.81.9'),(461,999999999,'2007-11-26 01:30:12','58.137.81.9'),(462,1000000000,'2007-11-26 06:43:37','198.54.202.210'),(463,1000000000,'2007-11-26 06:43:37','198.54.202.210'),(464,1000000000,'2007-11-26 06:48:09','196.25.255.210'),(465,1000000000,'2007-11-26 06:48:09','196.25.255.210'),(466,1000000000,'2007-11-26 06:51:23','196.25.255.210'),(467,1000000000,'2007-11-26 06:51:23','196.25.255.210'),(468,1000000000,'2007-11-26 08:04:23','196.25.255.210'),(469,1000000000,'2007-11-26 08:04:23','196.25.255.210'),(470,1000000000,'2007-11-26 08:04:57','198.54.202.210'),(471,1000000000,'2007-11-26 08:04:57','198.54.202.210'),(472,1000000000,'2007-11-26 08:05:50','198.54.202.210'),(473,1000000000,'2007-11-26 08:05:50','198.54.202.210'),(474,1000000000,'2007-11-26 08:06:21','196.25.255.210'),(475,1000000000,'2007-11-26 08:06:21','196.25.255.210'),(476,1000000000,'2007-11-26 08:29:20','196.25.255.210'),(477,1000000000,'2007-11-26 08:29:20','196.25.255.210'),(508,1000000046,'2007-11-29 01:45:29','58.137.81.9'),(509,1000000046,'2007-11-29 01:45:29','58.137.81.9'),(510,999999999,'2007-11-30 21:53:36','196.12.174.134'),(511,999999999,'2007-11-30 21:53:36','196.12.174.134'),(512,999999999,'2007-12-10 14:28:26','193.226.47.195'),(513,999999999,'2007-12-10 14:28:26','193.226.47.195'),(514,999999999,'2007-12-12 15:19:10','196.209.251.3'),(515,999999999,'2007-12-12 15:19:10','196.209.251.3'),(516,999999999,'2007-12-18 11:49:36','196.211.88.3'),(517,999999999,'2007-12-18 11:49:36','196.211.88.3'),(518,1000000053,'2007-12-18 11:51:36','196.211.88.3'),(519,1000000053,'2007-12-18 11:51:36','196.211.88.3'),(520,1000000000,'2007-12-18 12:17:49','198.54.202.218'),(521,1000000000,'2007-12-18 12:17:49','198.54.202.218'),(522,1000000054,'2007-12-18 13:50:04','198.54.202.195'),(523,1000000054,'2007-12-18 13:50:04','198.54.202.195'),(524,999999999,'2007-12-18 13:53:16','196.211.88.3'),(525,999999999,'2007-12-18 13:53:16','196.211.88.3'),(526,1000000053,'2007-12-18 13:55:48','196.211.88.3'),(527,1000000053,'2007-12-18 13:55:48','196.211.88.3'),(528,1000000054,'2007-12-18 14:49:41','196.25.255.210'),(529,1000000054,'2007-12-18 14:49:41','196.25.255.210'),(530,1000000054,'2007-12-18 14:49:54','196.25.255.210'),(531,1000000054,'2007-12-18 14:49:54','196.25.255.210'),(532,1000000000,'2007-12-18 14:50:05','198.54.202.210'),(533,1000000000,'2007-12-18 14:50:05','198.54.202.210'),(534,1000000054,'2007-12-18 14:52:57','196.25.255.210'),(535,1000000054,'2007-12-18 14:52:57','196.25.255.210'),(536,999999999,'2007-12-19 04:40:44','71.163.23.236'),(537,999999999,'2007-12-19 04:40:44','71.163.23.236'),(538,1000000000,'2007-12-19 06:52:10','196.25.255.218'),(539,1000000000,'2007-12-19 06:52:10','196.25.255.218'),(540,999999999,'2007-12-19 06:56:15','58.137.81.9'),(541,999999999,'2007-12-19 06:56:15','58.137.81.9'),(542,1000000000,'2007-12-19 06:57:00','58.137.81.9'),(543,1000000000,'2007-12-19 06:57:00','58.137.81.9'),(544,1000000053,'2007-12-19 09:05:42','196.211.88.3'),(545,1000000053,'2007-12-19 09:05:42','196.211.88.3'),(546,1000000000,'2007-12-19 10:12:30','196.25.255.210'),(547,1000000000,'2007-12-19 10:12:30','196.25.255.210'),(548,1000000000,'2007-12-19 10:30:02','196.25.255.214'),(549,1000000000,'2007-12-19 10:30:02','196.25.255.214'),(550,999999999,'2007-12-19 13:40:10','196.211.88.3'),(551,999999999,'2007-12-19 13:40:10','196.211.88.3'),(552,1000000054,'2007-12-20 09:00:39','41.208.11.160'),(553,1000000054,'2007-12-20 09:00:39','41.208.11.160'),(554,1000000054,'2007-12-20 09:11:38','41.208.11.160'),(555,1000000054,'2007-12-20 09:11:38','41.208.11.160'),(556,999999999,'2007-12-20 09:12:58','41.208.11.160'),(557,999999999,'2007-12-20 09:12:58','41.208.11.160'),(558,1000000054,'2007-12-20 09:14:39','41.208.11.160'),(559,1000000054,'2007-12-20 09:14:39','41.208.11.160'),(560,1000000054,'2007-12-20 09:43:07','41.208.11.160'),(561,1000000054,'2007-12-20 09:43:07','41.208.11.160'),(562,999999999,'2007-12-20 12:09:41','196.7.19.143'),(563,999999999,'2007-12-20 12:09:41','196.7.19.143'),(564,999999999,'2007-12-21 04:17:32','58.137.81.9'),(565,999999999,'2007-12-21 04:17:32','58.137.81.9'),(566,999999999,'2007-12-23 09:07:20','196.2.124.253'),(567,999999999,'2007-12-23 09:07:20','196.2.124.253'),(568,1000000053,'2007-12-27 12:46:09','196.211.88.3'),(569,1000000053,'2007-12-27 12:46:09','196.211.88.3'),(570,999999999,'2007-12-27 12:46:51','196.211.88.3'),(571,999999999,'2007-12-27 12:46:51','196.211.88.3'),(572,999999999,'2007-12-28 08:23:22','196.207.47.60'),(573,999999999,'2007-12-28 08:23:22','196.207.47.60'),(574,1000000056,'2007-12-29 06:45:59','217.219.169.226'),(575,1000000056,'2007-12-29 06:45:59','217.219.169.226'),(576,1000000056,'2007-12-29 06:47:08','217.219.169.226'),(577,1000000056,'2007-12-29 06:47:08','217.219.169.226'),(578,1000000056,'2007-12-29 06:50:19','217.219.169.226'),(579,1000000056,'2007-12-29 06:50:19','217.219.169.226'),(580,1000000056,'2007-12-29 06:51:36','217.219.169.226'),(581,1000000056,'2007-12-29 06:51:36','217.219.169.226'),(582,999999999,'2007-12-31 04:12:09','87.194.116.83'),(583,999999999,'2007-12-31 04:12:09','87.194.116.83'),(584,999999999,'2008-01-04 16:04:58','198.54.202.194'),(585,999999999,'2008-01-04 16:04:58','198.54.202.194'),(586,999999999,'2008-01-07 15:02:49','196.211.88.3'),(587,999999999,'2008-01-07 15:02:49','196.211.88.3'),(588,1000000057,'2008-01-07 15:13:26','196.25.255.210'),(589,1000000057,'2008-01-07 15:13:26','196.25.255.210'),(590,1000000053,'2008-01-07 15:13:39','196.211.88.3'),(591,1000000053,'2008-01-07 15:13:39','196.211.88.3'),(592,1000000057,'2008-01-07 18:41:51','198.54.202.210'),(593,1000000057,'2008-01-07 18:41:51','198.54.202.210'),(594,999999999,'2008-01-08 05:59:56','196.25.255.210'),(595,999999999,'2008-01-08 05:59:56','196.25.255.210'),(596,1000000053,'2008-01-08 13:30:33','196.211.88.3'),(597,1000000053,'2008-01-08 13:30:33','196.211.88.3'),(598,1000000053,'2008-01-08 13:49:24','196.211.88.3'),(599,1000000053,'2008-01-08 13:49:24','196.211.88.3'),(600,1000000059,'2008-01-10 16:04:31','196.209.251.3'),(601,1000000059,'2008-01-10 16:04:31','196.209.251.3'),(602,999999999,'2008-01-16 05:04:26','99.129.68.29'),(603,999999999,'2008-01-16 05:04:26','99.129.68.29'),(604,1000000017,'2008-01-27 10:09:55','196.35.158.180'),(605,1000000017,'2008-01-27 10:09:55','196.35.158.180'),(606,1000000060,'2008-01-29 14:04:47','196.207.47.60'),(607,1000000060,'2008-01-29 14:04:47','196.207.47.60'),(608,1000000060,'2008-01-29 14:42:40','196.207.47.60'),(609,1000000060,'2008-01-29 14:42:40','196.207.47.60'),(610,999999999,'2008-01-29 14:57:47','196.207.47.60'),(611,999999999,'2008-01-29 14:57:47','196.207.47.60'),(612,999999999,'2008-01-29 14:59:53','196.207.47.60'),(613,999999999,'2008-01-29 14:59:53','196.207.47.60'),(614,999999999,'2008-02-07 14:57:10','70.243.252.97'),(615,999999999,'2008-02-07 14:57:10','70.243.252.97'),(616,999999999,'2008-02-07 16:12:15','41.208.50.160'),(617,999999999,'2008-02-07 16:12:15','41.208.50.160'),(618,999999999,'2008-02-07 16:45:44','41.208.50.160'),(619,999999999,'2008-02-07 16:45:44','41.208.50.160'),(620,999999999,'2008-02-13 11:12:19','198.54.202.146'),(621,999999999,'2008-02-13 11:12:19','198.54.202.146'),(622,999999999,'2008-02-13 18:06:23','201.29.64.194'),(623,999999999,'2008-02-13 18:06:23','201.29.64.194'),(624,999999999,'2008-02-13 18:32:19','196.207.35.245'),(625,999999999,'2008-02-13 18:32:19','196.207.35.245'),(626,1000000063,'2008-02-28 19:45:43','196.209.251.3'),(627,1000000063,'2008-02-28 19:45:43','196.209.251.3'),(628,1000000064,'2008-03-01 11:36:22','196.207.35.245'),(629,1000000064,'2008-03-01 11:36:22','196.207.35.245'),(630,999999999,'2008-03-01 11:49:44','196.207.35.245'),(631,999999999,'2008-03-01 11:49:44','196.207.35.245'),(632,999999999,'2008-03-01 12:02:05','196.207.35.245'),(633,999999999,'2008-03-01 12:02:05','196.207.35.245'),(634,1000000064,'2008-03-03 08:59:16','198.54.202.146'),(635,1000000064,'2008-03-03 08:59:16','198.54.202.146'),(636,999999999,'2008-03-12 03:10:48','24.37.62.13'),(637,999999999,'2008-03-12 03:10:48','24.37.62.13'),(638,999999999,'2008-03-28 18:02:08','71.121.102.48'),(639,999999999,'2008-03-28 18:02:08','71.121.102.48'),(640,999999999,'2008-03-30 15:29:10','88.67.213.193'),(641,999999999,'2008-03-30 15:29:10','88.67.213.193'),(642,999999999,'2008-03-31 21:15:18','198.54.202.130'),(643,999999999,'2008-03-31 21:15:18','198.54.202.130'),(644,999999999,'2008-04-01 19:32:53','198.54.202.130'),(645,999999999,'2008-04-01 19:32:53','198.54.202.130'),(646,999999999,'2008-04-05 09:28:38','196.207.40.213'),(647,999999999,'2008-04-05 09:28:38','196.207.40.213'),(648,1000000065,'2008-04-12 01:58:14','203.160.1.49'),(649,1000000065,'2008-04-12 01:58:14','203.160.1.49'),(650,999999999,'2008-04-17 06:56:34','88.247.176.182'),(651,999999999,'2008-04-17 06:56:34','88.247.176.182'),(652,1000000066,'2008-04-17 19:09:23','196.207.47.60'),(653,1000000066,'2008-04-17 19:09:23','196.207.47.60'),(654,999999999,'2008-04-17 21:17:59','196.207.33.198'),(655,999999999,'2008-04-17 21:17:59','196.207.33.198'),(656,1000000067,'2008-04-17 21:20:02','196.207.33.198'),(657,1000000067,'2008-04-17 21:20:02','196.207.33.198'),(658,999999999,'2008-04-23 19:48:07','168.209.97.42'),(659,999999999,'2008-04-23 19:48:07','168.209.97.42'),(660,999999999,'2008-04-24 07:45:15','196.207.40.213'),(661,999999999,'2008-04-24 07:45:15','196.207.40.213'),(662,999999999,'2008-04-24 22:27:26','217.194.135.59'),(663,999999999,'2008-04-24 22:27:26','217.194.135.59'),(664,999999999,'2008-04-29 13:25:56','196.35.158.182'),(665,999999999,'2008-04-29 13:25:56','196.35.158.182'),(666,999999999,'2008-05-06 20:05:01','41.208.48.1'),(667,999999999,'2008-05-06 20:05:01','41.208.48.1'),(668,999999999,'2008-05-07 06:00:30','198.54.202.194'),(669,999999999,'2008-05-07 06:00:30','198.54.202.194'),(670,999999999,'2008-05-09 10:04:26','196.15.193.90'),(671,999999999,'2008-05-09 10:04:26','196.15.193.90'),(672,999999999,'2008-05-09 14:08:40','196.207.40.149'),(673,999999999,'2008-05-09 14:08:40','196.207.40.149'),(674,1000000072,'2008-05-12 10:27:31','198.54.202.195'),(675,1000000072,'2008-05-12 10:27:31','198.54.202.195'),(676,999999999,'2008-05-16 11:47:38','196.25.255.194'),(677,999999999,'2008-05-16 11:47:38','196.25.255.194'),(678,999999999,'2008-05-18 07:32:35','196.207.35.245'),(679,999999999,'2008-05-18 07:32:35','196.207.35.245'),(680,999999999,'2008-05-19 00:58:04','196.25.255.195'),(681,999999999,'2008-05-19 00:58:04','196.25.255.195'),(682,999999999,'2008-05-30 01:12:30','196.25.255.194'),(683,999999999,'2008-05-30 01:12:30','196.25.255.194'),(684,1000000078,'2008-06-02 11:21:53','168.167.154.34'),(685,1000000078,'2008-06-02 11:21:53','168.167.154.34'),(686,999999999,'2008-06-02 11:54:19','196.207.33.198'),(687,999999999,'2008-06-02 11:54:19','196.207.33.198'),(688,999999999,'2008-06-02 19:49:12','81.166.245.129'),(689,999999999,'2008-06-02 19:49:12','81.166.245.129'),(690,1000000079,'2008-06-05 12:31:02','41.245.74.244'),(691,1000000079,'2008-06-05 12:31:02','41.245.74.244'),(692,999999999,'2008-06-06 11:33:51','196.25.255.195'),(693,999999999,'2008-06-06 11:33:51','196.25.255.195'),(694,999999999,'2008-06-06 12:09:26','196.2.124.253'),(695,999999999,'2008-06-06 12:09:26','196.2.124.253'),(696,999999999,'2008-06-11 15:58:28','196.25.255.246'),(697,999999999,'2008-06-11 15:58:28','196.25.255.246'),(698,999999999,'2008-06-12 14:14:49','41.245.98.22'),(699,999999999,'2008-06-12 14:14:49','41.245.98.22'),(700,1000000081,'2008-06-12 14:16:11','41.245.98.22'),(701,1000000081,'2008-06-12 14:16:11','41.245.98.22'),(702,1000000081,'2008-06-12 14:25:38','196.25.255.210'),(703,1000000081,'2008-06-12 14:25:38','196.25.255.210'),(704,1000000081,'2008-06-12 15:04:40','196.25.255.210'),(705,1000000081,'2008-06-12 15:04:40','196.25.255.210'),(706,1000000082,'2008-06-17 11:35:17','41.206.160.2'),(707,1000000082,'2008-06-17 11:35:17','41.206.160.2'),(708,999999999,'2008-06-17 11:48:23','41.206.160.2'),(709,999999999,'2008-06-17 11:48:23','41.206.160.2'),(710,1000000082,'2008-06-17 11:49:45','41.206.160.2'),(711,1000000082,'2008-06-17 11:49:45','41.206.160.2'),(712,1000000082,'2008-06-18 06:57:49','41.206.160.2'),(713,1000000082,'2008-06-18 06:57:49','41.206.160.2'),(714,1000000082,'2008-06-18 07:04:44','41.206.160.2'),(715,1000000082,'2008-06-18 07:04:44','41.206.160.2'),(716,1000000082,'2008-06-18 07:09:03','41.206.160.2'),(717,1000000082,'2008-06-18 07:09:03','41.206.160.2'),(718,1000000082,'2008-06-18 08:05:10','41.206.160.2'),(719,1000000082,'2008-06-18 08:05:10','41.206.160.2'),(720,999999999,'2008-06-18 09:20:30','87.150.142.146'),(721,999999999,'2008-06-18 09:20:30','87.150.142.146'),(722,999999999,'2008-06-20 00:34:45','196.25.255.250'),(723,999999999,'2008-06-20 00:34:45','196.25.255.250'),(724,1000000084,'2008-06-23 12:20:10','196.25.255.195'),(725,1000000084,'2008-06-23 12:20:10','196.25.255.195'),(726,1000000085,'2008-06-23 13:52:02','198.54.202.195'),(727,1000000085,'2008-06-23 13:52:02','198.54.202.195'),(728,1000000084,'2008-06-23 14:12:34','198.54.202.195'),(729,1000000084,'2008-06-23 14:12:34','198.54.202.195'),(730,1000000084,'2008-06-23 14:18:51','196.25.255.195'),(731,1000000084,'2008-06-23 14:18:51','196.25.255.195'),(732,1000000084,'2008-06-23 14:43:14','198.54.202.210'),(733,1000000084,'2008-06-23 14:43:14','198.54.202.210'),(734,1000000083,'2008-06-25 07:17:40','196.25.95.194'),(735,1000000083,'2008-06-25 07:17:40','196.25.95.194'),(736,999999999,'2008-06-25 13:44:45','78.32.61.209'),(737,999999999,'2008-06-25 13:44:45','78.32.61.209'),(738,1000000086,'2008-06-26 10:04:15','196.7.0.164'),(739,1000000086,'2008-06-26 10:04:15','196.7.0.164'),(740,1000000087,'2008-06-26 19:39:18','196.207.47.60'),(741,1000000087,'2008-06-26 19:39:18','196.207.47.60'),(742,999999999,'2008-06-27 06:21:05','196.207.47.60'),(743,999999999,'2008-06-27 06:21:05','196.207.47.60'),(744,1000000087,'2008-06-27 06:23:08','196.207.47.60'),(745,1000000087,'2008-06-27 06:23:08','196.207.47.60'),(746,1000000086,'2008-06-30 07:10:52','196.7.0.164'),(747,1000000086,'2008-06-30 07:10:52','196.7.0.164'),(748,1000000086,'2008-06-30 08:11:05','196.7.0.164'),(749,1000000086,'2008-06-30 08:11:05','196.7.0.164'),(750,1000000088,'2008-07-01 08:49:35','196.38.218.24'),(751,1000000088,'2008-07-01 08:49:35','196.38.218.24'),(752,999999999,'2008-07-01 15:03:57','196.25.255.194'),(753,999999999,'2008-07-01 15:03:57','196.25.255.194'),(754,999999999,'2008-07-01 15:18:32','41.241.164.77'),(755,999999999,'2008-07-01 15:18:32','41.241.164.77'),(756,1000000086,'2008-07-02 12:41:56','196.7.0.164'),(757,1000000086,'2008-07-02 12:41:56','196.7.0.164'),(758,1000000089,'2008-07-02 14:03:37','196.25.255.195'),(759,1000000089,'2008-07-02 14:03:37','196.25.255.195'),(760,999999999,'2008-07-03 07:13:36','196.41.124.8'),(761,999999999,'2008-07-03 07:13:36','196.41.124.8'),(762,999999999,'2008-07-04 07:55:19','196.25.255.195'),(763,999999999,'2008-07-04 07:55:19','196.25.255.195'),(764,1000000086,'2008-07-04 11:01:08','196.7.0.164'),(765,1000000086,'2008-07-04 11:01:08','196.7.0.164'),(766,999999999,'2008-07-07 16:03:05','78.0.66.89'),(767,999999999,'2008-07-07 16:03:05','78.0.66.89'),(768,999999999,'2008-07-07 19:51:24','213.35.176.54'),(769,999999999,'2008-07-07 19:51:24','213.35.176.54'),(770,1000000083,'2008-07-11 13:17:28','198.54.202.250'),(771,1000000083,'2008-07-11 13:17:28','198.54.202.250'),(772,1000000083,'2008-07-11 13:26:34','196.25.95.194'),(773,1000000083,'2008-07-11 13:26:34','196.25.95.194'),(774,1000000091,'2008-07-11 14:09:35','216.139.164.86'),(775,1000000091,'2008-07-11 14:09:35','216.139.164.86'),(776,1000000090,'2008-07-14 03:20:34','24.110.226.71'),(777,1000000090,'2008-07-14 03:20:34','24.110.226.71'),(778,999999999,'2008-07-14 12:54:32','196.207.32.38'),(779,999999999,'2008-07-14 12:54:32','196.207.32.38'),(780,999999999,'2008-07-15 04:21:16','220.238.220.167'),(781,999999999,'2008-07-15 04:21:16','220.238.220.167'),(782,1000000083,'2008-07-15 07:58:54','196.25.95.194'),(783,1000000083,'2008-07-15 07:58:54','196.25.95.194'),(784,1000000083,'2008-07-15 08:12:53','196.25.95.194'),(785,1000000083,'2008-07-15 08:12:53','196.25.95.194'),(786,1000000083,'2008-07-15 08:20:26','196.25.95.194'),(787,1000000083,'2008-07-15 08:20:26','196.25.95.194'),(788,1000000083,'2008-07-15 08:55:40','196.25.95.194'),(789,1000000083,'2008-07-15 08:55:40','196.25.95.194'),(790,1000000083,'2008-07-15 09:28:40','196.25.95.194'),(791,1000000083,'2008-07-15 09:28:40','196.25.95.194'),(792,999999999,'2008-07-15 11:11:30','59.95.23.255'),(793,999999999,'2008-07-15 11:11:30','59.95.23.255'),(794,1000000000,'2008-07-15 11:14:10','41.245.34.235'),(795,1000000000,'2008-07-15 11:14:10','41.245.34.235'),(796,999999999,'2008-07-15 20:27:48','198.54.202.195'),(797,999999999,'2008-07-15 20:27:48','198.54.202.195'),(798,999999999,'2008-07-16 02:49:03','58.137.81.9'),(799,999999999,'2008-07-16 02:49:03','58.137.81.9'),(800,999999999,'2008-07-16 03:50:44','58.137.81.9'),(801,999999999,'2008-07-16 03:50:44','58.137.81.9'),(802,999999999,'2008-07-16 08:09:15','198.54.202.194'),(803,999999999,'2008-07-16 08:09:15','198.54.202.194'),(804,1000000083,'2008-07-16 14:26:16','196.25.95.194'),(805,1000000083,'2008-07-16 14:26:16','196.25.95.194'),(806,1000000083,'2008-07-18 07:21:09','196.25.95.194'),(807,1000000083,'2008-07-18 07:21:09','196.25.95.194'),(808,1000000083,'2008-07-18 07:53:27','196.25.95.194'),(809,1000000083,'2008-07-18 07:53:27','196.25.95.194'),(810,999999999,'2008-07-18 20:32:13','41.246.245.223'),(811,999999999,'2008-07-18 20:32:13','41.246.245.223'),(812,999999999,'2008-07-21 16:58:11','77.97.26.72'),(813,999999999,'2008-07-21 16:58:11','77.97.26.72'),(814,999999999,'2008-07-27 07:20:05','24.24.214.19'),(815,999999999,'2008-07-27 07:20:05','24.24.214.19'),(816,999999999,'2008-07-29 14:39:47','196.41.124.8'),(817,999999999,'2008-07-29 14:39:47','196.41.124.8'),(818,1000000094,'2008-07-29 14:41:35','196.41.124.8'),(819,1000000094,'2008-07-29 14:41:35','196.41.124.8'),(820,1000000094,'2008-07-29 14:45:01','196.41.124.8'),(821,1000000094,'2008-07-29 14:45:01','196.41.124.8'),(822,999999999,'2008-07-29 16:50:09','196.25.255.195'),(823,999999999,'2008-07-29 16:50:09','196.25.255.195'),(824,1000000095,'2008-07-30 09:15:10','196.25.255.210'),(825,1000000095,'2008-07-30 09:15:10','196.25.255.210'),(826,1000000000,'2008-07-30 09:21:55','196.25.255.250'),(827,1000000000,'2008-07-30 09:21:55','196.25.255.250'),(828,1000000095,'2008-07-30 09:46:42','198.54.202.210'),(829,1000000095,'2008-07-30 09:46:42','198.54.202.210'),(830,999999999,'2008-07-30 12:29:44','163.195.192.74'),(831,999999999,'2008-07-30 12:29:44','163.195.192.74'),(832,999999999,'2008-07-31 19:23:25','196.2.124.252'),(833,999999999,'2008-07-31 19:23:25','196.2.124.252'),(834,1000000095,'2008-08-01 13:57:30','198.54.202.214'),(835,1000000095,'2008-08-01 13:57:30','198.54.202.214'),(836,1000000095,'2008-08-01 13:58:48','196.25.255.210'),(837,1000000095,'2008-08-01 13:58:48','196.25.255.210'),(838,999999999,'2008-08-02 02:05:45','198.54.202.146'),(839,999999999,'2008-08-02 02:05:45','198.54.202.146'),(840,1000000099,'2008-08-03 12:27:34','41.208.50.176'),(841,1000000099,'2008-08-03 12:27:34','41.208.50.176'),(842,999999999,'2008-08-07 06:04:49','198.54.202.194'),(843,999999999,'2008-08-07 06:04:49','198.54.202.194'),(844,999999999,'2008-08-07 06:04:52','196.25.255.194'),(845,999999999,'2008-08-07 06:04:52','196.25.255.194'),(846,1000000101,'2008-08-10 07:50:07','41.6.137.144'),(847,1000000101,'2008-08-10 07:50:07','41.6.137.144'),(848,999999999,'2008-08-12 10:57:08','198.54.202.3'),(849,999999999,'2008-08-12 10:57:08','198.54.202.3'),(850,999999999,'2008-08-15 08:28:45','198.54.202.246'),(851,999999999,'2008-08-15 08:28:45','198.54.202.246'),(852,1000000105,'2008-08-19 06:40:49','41.208.11.176'),(853,1000000105,'2008-08-19 06:40:49','41.208.11.176'),(854,1000000105,'2008-08-19 06:46:02','41.208.11.176'),(855,1000000105,'2008-08-19 06:46:02','41.208.11.176'),(856,1000000105,'2008-08-19 07:38:15','41.208.11.176'),(857,1000000105,'2008-08-19 07:38:15','41.208.11.176'),(858,1000000105,'2008-08-19 07:43:10','41.208.11.176'),(859,1000000105,'2008-08-19 07:43:10','41.208.11.176'),(860,1000000105,'2008-08-19 08:14:43','41.208.11.176'),(861,1000000105,'2008-08-19 08:14:43','41.208.11.176'),(862,999999999,'2008-08-19 22:22:12','99.239.184.72'),(863,999999999,'2008-08-19 22:22:12','99.239.184.72'),(864,1000000105,'2008-08-21 05:18:02','41.208.11.176'),(865,1000000105,'2008-08-21 05:18:02','41.208.11.176'),(866,1000000105,'2008-08-21 05:21:31','41.208.11.176'),(867,1000000105,'2008-08-21 05:21:31','41.208.11.176'),(868,999999999,'2008-08-21 09:25:55','196.35.158.179'),(869,999999999,'2008-08-21 09:25:55','196.35.158.179'),(870,999999999,'2008-08-21 12:46:25','196.35.158.179'),(871,999999999,'2008-08-21 12:46:25','196.35.158.179'),(872,1000000107,'2008-08-21 14:05:43','196.35.158.179'),(873,1000000107,'2008-08-21 14:05:43','196.35.158.179'),(874,999999999,'2008-08-23 09:57:08','71.131.133.168'),(875,999999999,'2008-08-23 09:57:08','71.131.133.168'),(876,999999999,'2008-08-23 09:57:37','71.131.133.168'),(877,999999999,'2008-08-23 09:57:37','71.131.133.168'),(878,999999999,'2008-08-23 19:24:43','212.102.0.104'),(879,999999999,'2008-08-23 19:24:43','212.102.0.104'),(880,1000000105,'2008-08-24 09:29:25','41.208.11.180'),(881,1000000105,'2008-08-24 09:29:25','41.208.11.180'),(882,999999999,'2008-08-24 10:59:36','196.46.71.251'),(883,999999999,'2008-08-24 10:59:36','196.46.71.251'),(884,999999999,'2008-08-27 14:26:27','196.25.255.250'),(885,999999999,'2008-08-27 14:26:27','196.25.255.250'),(886,1000000100,'2008-08-31 13:50:13','41.208.50.176'),(887,1000000100,'2008-08-31 13:50:13','41.208.50.176'),(888,999999999,'2008-08-31 14:54:20','41.208.50.176'),(889,999999999,'2008-08-31 14:54:20','41.208.50.176'),(890,1000000100,'2008-08-31 14:55:15','41.208.50.176'),(891,1000000100,'2008-08-31 14:55:15','41.208.50.176'),(892,1000000100,'2008-08-31 17:21:32','198.54.202.195'),(893,1000000100,'2008-08-31 17:21:32','198.54.202.195'),(894,1000000100,'2008-09-01 07:54:50','198.54.202.195'),(895,1000000100,'2008-09-01 07:54:50','198.54.202.195'),(896,1000000100,'2008-09-01 08:20:06','196.25.255.195'),(897,1000000100,'2008-09-01 08:20:06','196.25.255.195'),(898,1000000100,'2008-09-01 14:38:25','198.54.202.195'),(899,1000000100,'2008-09-01 14:38:25','198.54.202.195'),(900,999999999,'2008-09-01 15:48:12','163.195.192.74'),(901,999999999,'2008-09-01 15:48:12','163.195.192.74'),(902,1000000100,'2008-09-02 00:27:18','196.25.255.195'),(903,1000000100,'2008-09-02 00:27:18','196.25.255.195'),(904,1000000100,'2008-09-02 09:36:44','196.25.255.195'),(905,1000000100,'2008-09-02 09:36:44','196.25.255.195'),(906,1000000100,'2008-09-02 09:45:29','196.35.158.180'),(907,1000000100,'2008-09-02 09:45:29','196.35.158.180'),(908,1000000110,'2008-09-02 11:12:22','198.54.202.146'),(909,1000000110,'2008-09-02 11:12:22','198.54.202.146'),(910,1000000100,'2008-09-03 02:45:11','58.137.81.9'),(911,1000000100,'2008-09-03 02:45:11','58.137.81.9'),(912,999999999,'2008-09-03 04:44:26','58.137.81.9'),(913,999999999,'2008-09-03 04:44:26','58.137.81.9'),(914,999999999,'2008-09-03 04:54:42','58.137.81.9'),(915,999999999,'2008-09-03 04:54:42','58.137.81.9'),(916,999999999,'2008-09-03 08:23:23','82.231.165.198'),(917,999999999,'2008-09-03 08:23:23','82.231.165.198'),(918,1000000111,'2008-09-04 08:06:18','41.208.50.160'),(919,1000000111,'2008-09-04 08:06:18','41.208.50.160'),(920,1000000112,'2008-09-04 23:12:48','41.244.59.248'),(921,1000000112,'2008-09-04 23:12:48','41.244.59.248'),(922,1000000111,'2008-09-05 08:07:05','41.208.50.160'),(923,1000000111,'2008-09-05 08:07:05','41.208.50.160'),(924,1000000111,'2008-09-05 08:10:54','41.208.50.160'),(925,1000000111,'2008-09-05 08:10:54','41.208.50.160'),(926,1000000113,'2008-09-06 04:21:16','196.25.255.210'),(927,1000000113,'2008-09-06 04:21:16','196.25.255.210'),(928,999999999,'2008-09-07 08:21:01','196.25.255.195'),(929,999999999,'2008-09-07 08:21:01','196.25.255.195'),(930,1000000114,'2008-09-07 08:22:11','198.54.202.195'),(931,1000000114,'2008-09-07 08:22:11','198.54.202.195'),(932,1000000114,'2008-09-07 16:41:41','198.54.202.210'),(933,1000000114,'2008-09-07 16:41:41','198.54.202.210'),(934,1000000113,'2008-09-07 16:54:26','198.54.202.226'),(935,1000000113,'2008-09-07 16:54:26','198.54.202.226'),(936,1000000113,'2008-09-07 17:13:05','196.25.255.195'),(937,1000000113,'2008-09-07 17:13:05','196.25.255.195'),(938,999999999,'2008-09-08 03:38:44','196.25.78.162'),(939,999999999,'2008-09-08 03:38:44','196.25.78.162'),(940,1000000115,'2008-09-08 04:26:36','196.25.78.162'),(941,1000000115,'2008-09-08 04:26:36','196.25.78.162'),(942,1000000111,'2008-09-08 10:42:46','41.208.50.160'),(943,1000000111,'2008-09-08 10:42:46','41.208.50.160'),(944,1000000111,'2008-09-08 13:11:50','198.54.202.110'),(945,1000000111,'2008-09-08 13:11:50','198.54.202.110'),(946,1000000111,'2008-09-08 13:20:40','198.54.202.110'),(947,1000000111,'2008-09-08 13:20:40','198.54.202.110'),(948,1000000115,'2008-09-08 20:49:47','196.25.78.162'),(949,1000000115,'2008-09-08 20:49:47','196.25.78.162'),(950,1000000115,'2008-09-08 22:08:21','196.25.78.162'),(951,1000000115,'2008-09-08 22:08:21','196.25.78.162'),(952,1000000115,'2008-09-08 23:03:06','196.25.78.162'),(953,1000000115,'2008-09-08 23:03:06','196.25.78.162'),(954,1000000100,'2008-09-09 10:44:03','196.35.158.180'),(955,1000000000,'2008-09-09 10:44:51','196.35.158.180'),(956,1000000000,'2008-09-09 10:44:51','196.35.158.180'),(957,1000000100,'2008-09-09 16:01:31','41.208.48.180'),(958,1000000100,'2008-09-09 16:01:31','41.208.48.180'),(959,1000000111,'2008-09-10 12:57:37','196.30.245.149'),(960,1000000111,'2008-09-10 12:57:37','196.30.245.149'),(961,1000000000,'2008-09-11 17:51:17','196.210.136.57'),(962,1000000000,'2008-09-11 17:51:17','196.210.136.57'),(963,1000000116,'2008-09-12 05:55:11','196.35.158.180'),(964,1000000116,'2008-09-12 05:55:11','196.35.158.180'),(965,1000000118,'2008-09-12 06:47:28','41.244.195.112'),(966,1000000118,'2008-09-12 06:47:28','41.244.195.112'),(967,1000000116,'2008-09-13 05:00:53','196.35.158.180'),(968,1000000116,'2008-09-13 05:00:53','196.35.158.180'),(969,1000000116,'2008-09-13 05:04:41','196.35.158.180'),(970,1000000116,'2008-09-13 05:04:41','196.35.158.180'),(971,1000000116,'2008-09-13 05:40:38','196.35.158.180'),(972,1000000116,'2008-09-13 05:40:38','196.35.158.180'),(973,1000000115,'2008-09-14 08:57:00','196.25.78.162'),(974,1000000115,'2008-09-14 08:57:00','196.25.78.162'),(975,1000000115,'2008-09-14 10:25:35','196.25.78.162'),(976,1000000115,'2008-09-14 10:25:35','196.25.78.162'),(977,1000000115,'2008-09-14 11:21:55','196.25.78.162'),(978,1000000115,'2008-09-14 11:21:55','196.25.78.162'),(979,1000000115,'2008-09-15 10:57:55','196.25.78.162'),(980,1000000115,'2008-09-15 10:57:55','196.25.78.162'),(981,999999999,'2008-09-15 20:27:01','41.247.47.66'),(982,999999999,'2008-09-15 20:27:01','41.247.47.66'),(983,1000000120,'2008-09-16 12:41:20','163.203.196.30'),(984,1000000120,'2008-09-16 12:41:20','163.203.196.30'),(985,999999999,'2008-09-18 13:41:34','196.35.158.180'),(986,999999999,'2008-09-18 13:41:34','196.35.158.180'),(987,1000000122,'2008-09-22 10:57:54','196.2.124.254'),(988,1000000122,'2008-09-22 10:57:54','196.2.124.254'),(989,1000000122,'2008-09-22 18:48:14','196.207.32.38'),(990,1000000122,'2008-09-22 18:48:14','196.207.32.38'),(991,1000000122,'2008-09-24 17:04:33','196.207.32.38'),(992,1000000122,'2008-09-24 17:04:33','196.207.32.38'),(993,1000000123,'2008-09-24 22:57:20','87.74.2.238'),(994,1000000123,'2008-09-24 22:57:20','87.74.2.238'),(995,1000000123,'2008-09-24 23:03:51','87.74.2.238'),(996,1000000123,'2008-09-24 23:03:51','87.74.2.238'),(997,1000000123,'2008-09-25 10:29:41','87.74.2.238'),(998,1000000123,'2008-09-25 10:29:41','87.74.2.238'),(999,1000000124,'2008-09-25 11:30:20','41.242.181.14'),(1000,1000000124,'2008-09-25 11:30:20','41.242.181.14'),(1001,999999999,'2008-09-25 14:00:06','122.108.144.144'),(1002,999999999,'2008-09-25 14:00:06','122.108.144.144'),(1003,1000000123,'2008-09-25 20:42:48','87.74.2.238'),(1004,1000000123,'2008-09-25 20:42:48','87.74.2.238'),(1005,999999999,'2008-10-01 06:55:59','198.54.202.194'),(1006,999999999,'2008-10-01 06:55:59','198.54.202.194'),(1007,1000000127,'2008-10-04 07:53:35','41.241.169.4'),(1008,1000000127,'2008-10-04 07:53:35','41.241.169.4'),(1009,999999999,'2008-10-05 13:50:48','196.25.255.250'),(1010,999999999,'2008-10-05 13:50:48','196.25.255.250'),(1011,999999999,'2008-10-05 18:15:05','196.25.255.218'),(1012,999999999,'2008-10-05 18:15:05','196.25.255.218'),(1013,999999999,'2008-10-06 10:44:09','198.54.202.246'),(1014,999999999,'2008-10-06 10:44:09','198.54.202.246'),(1015,1000000128,'2008-10-06 11:22:14','198.54.202.195'),(1016,1000000128,'2008-10-06 11:22:14','198.54.202.195'),(1017,1000000129,'2008-10-07 10:02:33','196.41.124.8'),(1018,1000000129,'2008-10-07 10:02:33','196.41.124.8'),(1019,1000000129,'2008-10-07 10:17:24','196.41.124.8'),(1020,1000000129,'2008-10-07 10:17:24','196.41.124.8'),(1021,1000000122,'2008-10-07 11:32:02','196.2.124.252'),(1022,1000000122,'2008-10-07 11:32:02','196.2.124.252'),(1023,1000000128,'2008-10-09 07:05:47','198.54.202.218'),(1024,1000000128,'2008-10-09 07:05:47','198.54.202.218'),(1025,1000000130,'2008-10-10 09:21:03','198.54.202.210'),(1026,1000000130,'2008-10-10 09:21:03','198.54.202.210'),(1027,999999999,'2008-10-12 19:00:07','189.46.161.252'),(1028,999999999,'2008-10-12 19:00:07','189.46.161.252'),(1029,1000000000,'2008-10-13 19:33:33','196.25.255.218'),(1030,1000000000,'2008-10-13 19:33:33','196.25.255.218'),(1031,1000000000,'2008-11-11 05:27:16','196.25.255.195'),(1032,1000000000,'2008-11-11 05:27:16','196.25.255.195'),(1033,999999999,'2008-11-11 13:26:24','196.207.47.60'),(1034,999999999,'2008-11-11 13:26:24','196.207.47.60'),(1035,1000000131,'2008-11-11 13:31:15','196.207.47.60'),(1036,1000000131,'2008-11-11 13:31:15','196.207.47.60'),(1037,999999999,'2008-11-13 15:28:33','196.35.158.179'),(1038,999999999,'2008-11-13 15:28:33','196.35.158.179'),(1039,999999999,'2008-11-15 10:44:51','121.219.27.150'),(1040,999999999,'2008-11-15 10:44:51','121.219.27.150'),(1041,999999999,'2008-11-16 23:44:46','41.4.164.226'),(1042,999999999,'2008-11-16 23:44:46','41.4.164.226'),(1043,999999999,'2008-11-20 07:45:00','196.28.12.27'),(1044,999999999,'2008-11-20 07:45:00','196.28.12.27'),(1045,1000000133,'2008-11-20 07:49:30','196.28.12.27'),(1046,1000000133,'2008-11-20 07:49:30','196.28.12.27'),(1047,999999999,'2008-11-20 13:50:12','41.242.72.183'),(1048,999999999,'2008-11-20 13:50:12','41.242.72.183'),(1049,1000000134,'2008-11-21 04:13:59','155.239.117.21'),(1050,1000000134,'2008-11-21 04:13:59','155.239.117.21'),(1051,1000000135,'2008-11-24 13:31:41','196.25.255.210'),(1052,1000000135,'2008-11-24 13:31:41','196.25.255.210'),(1053,1000000136,'2008-11-24 15:51:04','168.167.159.77'),(1054,1000000136,'2008-11-24 15:51:04','168.167.159.77'),(1055,999999999,'2008-11-24 15:56:52','198.54.202.195'),(1056,999999999,'2008-11-24 15:56:52','198.54.202.195'),(1057,1000000135,'2008-11-24 16:03:43','196.25.255.195'),(1058,1000000135,'2008-11-24 16:03:43','196.25.255.195'),(1059,1000000137,'2008-11-25 04:03:17','41.245.111.184'),(1060,1000000137,'2008-11-25 04:03:17','41.245.111.184'),(1061,1000000135,'2008-11-25 14:14:36','198.54.202.195'),(1062,1000000135,'2008-11-25 14:14:36','198.54.202.195'),(1063,1000000135,'2008-11-26 17:52:15','196.25.255.195'),(1064,1000000135,'2008-11-26 17:52:15','196.25.255.195'),(1065,1000000138,'2008-11-27 20:40:18','196.207.47.60'),(1066,1000000138,'2008-11-27 20:40:18','196.207.47.60'),(1067,1000000138,'2008-11-27 20:58:40','196.207.47.60'),(1068,1000000138,'2008-11-27 20:58:40','196.207.47.60'),(1069,1000000139,'2008-11-28 21:40:35','41.208.50.160'),(1070,1000000139,'2008-11-28 21:40:35','41.208.50.160'),(1071,999999999,'2008-11-29 11:59:04','213.48.170.130'),(1072,999999999,'2008-11-29 11:59:04','213.48.170.130'),(1073,1000000138,'2008-12-03 20:33:52','196.207.47.60'),(1074,1000000138,'2008-12-03 20:33:52','196.207.47.60'),(1075,999999999,'2008-12-04 09:12:30','41.246.59.103'),(1076,999999999,'2008-12-04 09:12:30','41.246.59.103'),(1077,1000000138,'2008-12-10 19:53:50','196.207.47.60'),(1078,1000000138,'2008-12-10 19:53:50','196.207.47.60'),(1079,999999999,'2008-12-17 05:14:12','196.207.32.38'),(1080,999999999,'2008-12-17 05:14:12','196.207.32.38'),(1081,1000000142,'2008-12-17 14:16:12','203.160.1.72'),(1082,1000000142,'2008-12-17 14:16:12','203.160.1.72'),(1083,999999999,'2008-12-19 10:26:10','196.35.158.179'),(1084,999999999,'2008-12-19 10:26:10','196.35.158.179'),(1085,999999999,'2008-12-20 18:36:30','196.207.32.38'),(1086,999999999,'2008-12-20 18:36:30','196.207.32.38'),(1087,999999999,'2008-12-21 06:08:39','196.207.32.38'),(1088,999999999,'2008-12-21 06:08:39','196.207.32.38'),(1089,999999999,'2008-12-22 16:22:41','198.54.202.150'),(1090,999999999,'2008-12-22 16:22:41','198.54.202.150'),(1091,1000000144,'2008-12-27 15:19:39','196.207.47.60'),(1092,1000000144,'2008-12-27 15:19:39','196.207.47.60'),(1093,999999999,'2009-01-05 08:38:09','196.207.47.60'),(1094,999999999,'2009-01-05 08:38:09','196.207.47.60'),(1095,1000000145,'2009-01-05 08:39:56','196.207.47.60'),(1096,1000000145,'2009-01-05 08:39:56','196.207.47.60'),(1097,999999999,'2009-01-07 13:57:44','203.193.165.78'),(1098,999999999,'2009-01-07 13:57:44','203.193.165.78'),(1099,999999999,'2009-01-10 07:23:07','41.3.197.222'),(1100,999999999,'2009-01-10 07:23:07','41.3.197.222'),(1101,1000000146,'2009-01-10 07:45:32','41.3.197.222'),(1102,1000000146,'2009-01-10 07:45:32','41.3.197.222'),(1103,1000000146,'2009-01-10 08:01:13','41.3.197.222'),(1104,1000000146,'2009-01-10 08:01:13','41.3.197.222'),(1105,1000000145,'2009-01-10 08:34:43','196.207.47.60'),(1106,1000000145,'2009-01-10 08:34:43','196.207.47.60'),(1107,1000000146,'2009-01-10 12:31:02','41.6.209.120'),(1108,1000000146,'2009-01-10 12:31:02','41.6.209.120'),(1109,1000000146,'2009-01-10 12:34:27','41.6.209.120'),(1110,1000000146,'2009-01-10 12:34:27','41.6.209.120'),(1111,1000000149,'2009-01-11 06:49:59','41.4.200.175'),(1112,1000000149,'2009-01-11 06:49:59','41.4.200.175'),(1113,1000000145,'2009-01-11 13:00:00','196.207.47.60'),(1114,1000000145,'2009-01-11 13:00:00','196.207.47.60'),(1115,999999999,'2009-01-11 16:52:42','69.183.252.18'),(1116,999999999,'2009-01-11 16:52:42','69.183.252.18'),(1117,999999999,'2009-01-12 11:44:52','196.35.158.179'),(1118,999999999,'2009-01-12 11:44:52','196.35.158.179'),(1119,1000000145,'2009-01-13 09:06:50','196.207.47.60'),(1120,1000000145,'2009-01-13 09:06:50','196.207.47.60'),(1121,1000000100,'2009-01-13 19:48:34','41.208.50.160'),(1122,999999999,'2009-01-16 08:46:43','198.54.202.246'),(1123,999999999,'2009-01-16 08:46:43','198.54.202.246'),(1124,1000000152,'2009-01-17 20:42:31','198.54.202.210'),(1125,1000000152,'2009-01-17 20:42:31','198.54.202.210'),(1126,999999999,'2009-01-21 20:03:38','88.232.100.198'),(1127,999999999,'2009-01-21 20:03:38','88.232.100.198'),(1128,1000000154,'2009-01-23 01:21:06','216.221.91.214'),(1129,1000000154,'2009-01-23 01:21:06','216.221.91.214'),(1130,999999999,'2009-01-24 11:19:17','198.54.202.194'),(1131,999999999,'2009-01-24 11:19:17','198.54.202.194'),(1132,1000000155,'2009-01-29 08:04:37','196.21.99.1'),(1133,1000000155,'2009-01-29 08:04:37','196.21.99.1'),(1134,1000000157,'2009-01-30 11:39:17','196.35.158.179'),(1135,1000000157,'2009-01-30 11:39:17','196.35.158.179'),(1136,1000000156,'2009-02-02 06:22:47','196.25.255.195'),(1137,1000000156,'2009-02-02 06:22:47','196.25.255.195'),(1138,1000000155,'2009-02-03 09:35:33','196.25.253.13'),(1139,1000000155,'2009-02-03 09:35:33','196.25.253.13'),(1140,999999999,'2009-02-03 11:50:01','41.246.110.110'),(1141,999999999,'2009-02-03 11:50:01','41.246.110.110'),(1142,999999999,'2009-02-03 13:33:13','196.25.255.195'),(1143,999999999,'2009-02-03 13:33:13','196.25.255.195'),(1144,999999999,'2009-02-04 11:50:58','196.207.32.38'),(1145,999999999,'2009-02-04 11:50:58','196.207.32.38'),(1146,999999999,'2009-02-04 11:52:15','196.207.32.38'),(1147,999999999,'2009-02-04 11:52:15','196.207.32.38'),(1148,1000000161,'2009-02-04 14:46:57','196.2.126.113'),(1149,1000000161,'2009-02-04 14:46:57','196.2.126.113'),(1150,1000000162,'2009-02-09 18:40:10','41.15.175.246'),(1151,1000000162,'2009-02-09 18:40:10','41.15.175.246'),(1152,999999999,'2009-02-10 15:39:35','198.54.202.150'),(1153,999999999,'2009-02-10 15:39:35','198.54.202.150'),(1154,999999999,'2009-02-10 21:23:32','196.25.255.214'),(1155,999999999,'2009-02-10 21:23:32','196.25.255.214'),(1156,999999999,'2009-02-11 09:07:51','196.35.158.179'),(1157,999999999,'2009-02-11 09:07:51','196.35.158.179'),(1158,999999999,'2009-02-11 11:45:24','41.30.46.219'),(1159,999999999,'2009-02-11 11:45:24','41.30.46.219'),(1160,999999999,'2009-02-11 11:50:50','41.30.46.219'),(1161,999999999,'2009-02-11 11:50:50','41.30.46.219'),(1162,999999999,'2009-02-11 22:54:57','148.87.1.171'),(1163,999999999,'2009-02-11 22:54:57','148.87.1.171'),(1164,1000000163,'2009-02-12 14:27:26','196.6.141.27'),(1165,1000000163,'2009-02-12 14:27:26','196.6.141.27'),(1166,1000000163,'2009-02-13 06:12:33','196.6.141.27'),(1167,1000000163,'2009-02-13 06:12:33','196.6.141.27'),(1168,1000000163,'2009-02-13 08:55:58','196.6.141.27'),(1169,1000000163,'2009-02-13 08:55:58','196.6.141.27'),(1170,1000000164,'2009-02-15 14:15:15','196.2.126.113'),(1171,1000000164,'2009-02-15 14:15:15','196.2.126.113'),(1172,1000000164,'2009-02-15 17:46:16','196.2.126.113'),(1173,1000000164,'2009-02-15 17:46:16','196.2.126.113'),(1174,1000000164,'2009-02-15 17:48:10','196.2.126.113'),(1175,1000000164,'2009-02-15 17:48:10','196.2.126.113'),(1176,1000000164,'2009-02-16 18:14:19','196.2.126.113'),(1177,1000000164,'2009-02-16 18:14:19','196.2.126.113'),(1178,1000000164,'2009-02-16 18:51:16','196.2.126.113'),(1179,1000000164,'2009-02-16 18:51:16','196.2.126.113'),(1180,1000000164,'2009-02-17 04:10:22','198.54.202.195'),(1181,1000000164,'2009-02-17 04:10:22','198.54.202.195'),(1182,1000000000,'2009-02-17 04:11:55','198.54.202.210'),(1183,1000000000,'2009-02-17 04:11:55','198.54.202.210'),(1184,1000000000,'2009-02-17 04:16:59','198.54.202.210'),(1185,1000000000,'2009-02-17 04:16:59','198.54.202.210'),(1186,1000000164,'2009-02-17 04:51:33','196.25.255.210'),(1187,1000000164,'2009-02-17 04:51:33','196.25.255.210'),(1188,999999999,'2009-02-17 05:00:40','58.137.81.9'),(1189,999999999,'2009-02-17 05:00:40','58.137.81.9'),(1190,1000000000,'2009-02-17 09:30:19','196.25.255.246'),(1191,1000000000,'2009-02-17 09:30:19','196.25.255.246'),(1192,1000000164,'2009-02-17 09:42:19','198.54.202.210'),(1193,1000000164,'2009-02-17 09:42:19','198.54.202.210'),(1194,1000000164,'2009-02-17 15:52:26','196.2.126.113'),(1195,1000000164,'2009-02-17 15:52:26','196.2.126.113'),(1196,1000000164,'2009-02-17 16:16:35','196.2.126.113'),(1197,1000000164,'2009-02-17 16:16:35','196.2.126.113'),(1198,1000000164,'2009-02-17 20:09:42','196.2.126.113'),(1199,1000000164,'2009-02-17 20:09:42','196.2.126.113'),(1200,1000000164,'2009-02-17 20:13:45','196.2.126.113'),(1201,1000000164,'2009-02-17 20:13:45','196.2.126.113'),(1202,1000000166,'2009-02-18 13:57:31','41.240.220.188'),(1203,1000000166,'2009-02-18 13:57:31','41.240.220.188'),(1204,1000000164,'2009-02-18 16:40:11','196.2.126.113'),(1205,1000000164,'2009-02-18 16:40:11','196.2.126.113'),(1206,1000000166,'2009-02-20 08:17:54','198.54.202.194'),(1207,1000000166,'2009-02-20 08:17:54','198.54.202.194'),(1208,1000000166,'2009-02-20 08:31:46','196.25.255.210'),(1209,1000000166,'2009-02-20 08:31:46','196.25.255.210'),(1210,999999999,'2009-02-20 13:00:19','198.54.202.214'),(1211,999999999,'2009-02-20 13:00:19','198.54.202.214'),(1212,999999999,'2009-02-24 00:15:05','70.83.174.143'),(1213,999999999,'2009-02-24 00:15:05','70.83.174.143'),(1214,999999999,'2009-02-24 00:33:08','70.83.174.143'),(1215,999999999,'2009-02-24 00:33:08','70.83.174.143'),(1216,999999999,'2009-02-25 00:10:40','68.196.60.167'),(1217,999999999,'2009-02-25 00:10:40','68.196.60.167'),(1218,1000000168,'2009-02-26 06:39:42','196.207.33.198'),(1219,1000000168,'2009-02-26 06:39:42','196.207.33.198'),(1220,999999999,'2009-03-01 19:56:54','41.247.161.123'),(1221,999999999,'2009-03-01 19:56:54','41.247.161.123'),(1222,1000000170,'2009-03-03 08:44:53','196.25.255.195'),(1223,1000000170,'2009-03-03 08:44:53','196.25.255.195'),(1224,999999999,'2009-03-03 10:43:29','198.54.202.194'),(1225,999999999,'2009-03-03 10:43:29','198.54.202.194'),(1226,1000000170,'2009-03-03 10:47:19','196.25.255.195'),(1227,1000000170,'2009-03-03 10:47:19','196.25.255.195'),(1228,1000000172,'2009-03-03 12:16:41','164.151.130.58'),(1229,1000000172,'2009-03-03 12:16:41','164.151.130.58'),(1230,1000000170,'2009-03-03 15:31:42','196.25.255.195'),(1231,1000000170,'2009-03-03 15:31:42','196.25.255.195'),(1232,999999999,'2009-03-03 15:35:55','198.54.202.194'),(1233,999999999,'2009-03-03 15:35:55','198.54.202.194'),(1234,1000000170,'2009-03-03 16:29:53','41.240.239.78'),(1235,1000000170,'2009-03-03 16:29:53','41.240.239.78'),(1236,1000000170,'2009-03-03 19:57:00','196.25.255.194'),(1237,1000000170,'2009-03-03 19:57:00','196.25.255.194'),(1238,999999999,'2009-03-04 14:29:44','41.243.229.133'),(1239,999999999,'2009-03-04 14:29:44','41.243.229.133'),(1240,999999999,'2009-03-06 05:32:23','137.158.152.209'),(1241,999999999,'2009-03-06 05:32:23','137.158.152.209'),(1242,1000000175,'2009-03-09 10:11:11','196.25.255.195'),(1243,1000000175,'2009-03-09 10:11:11','196.25.255.195'),(1244,1000000177,'2009-03-11 06:40:01','60.240.134.140'),(1245,1000000177,'2009-03-11 06:40:01','60.240.134.140'),(1246,1000000178,'2009-03-11 12:50:39','96.245.202.103'),(1247,1000000178,'2009-03-11 12:50:39','96.245.202.103'),(1248,1000000178,'2009-03-11 13:17:58','96.245.202.103'),(1249,1000000178,'2009-03-11 13:17:58','96.245.202.103'),(1250,1000000178,'2009-03-12 03:23:13','96.245.202.103'),(1251,1000000178,'2009-03-12 03:23:13','96.245.202.103'),(1252,1000000177,'2009-03-12 03:33:37','60.240.134.140'),(1253,1000000177,'2009-03-12 03:33:37','60.240.134.140'),(1254,1000000177,'2009-03-12 05:49:04','60.240.134.140'),(1255,1000000177,'2009-03-12 05:49:04','60.240.134.140'),(1256,1000000179,'2009-03-12 06:46:48','196.25.255.195'),(1257,1000000179,'2009-03-12 06:46:48','196.25.255.195'),(1258,1000000179,'2009-03-12 11:53:08','196.25.255.195'),(1259,1000000179,'2009-03-12 11:53:08','196.25.255.195'),(1260,999999999,'2009-03-13 08:17:49','24.19.89.18'),(1261,999999999,'2009-03-13 08:17:49','24.19.89.18'),(1262,1000000180,'2009-03-13 16:41:35','168.167.110.50'),(1263,1000000180,'2009-03-13 16:41:35','168.167.110.50'),(1264,1000000181,'2009-03-14 19:51:45','89.5.36.243'),(1265,1000000181,'2009-03-14 19:51:45','89.5.36.243'),(1266,999999999,'2009-03-17 08:11:37','196.33.11.10'),(1267,999999999,'2009-03-17 08:11:37','196.33.11.10'),(1268,999999999,'2009-03-17 12:21:51','41.240.151.196'),(1269,999999999,'2009-03-17 12:21:51','41.240.151.196'),(1270,1000000185,'2009-03-19 20:55:01','196.25.255.218'),(1271,1000000185,'2009-03-19 20:55:01','196.25.255.218'),(1272,1000000185,'2009-03-19 21:34:17','198.54.202.210'),(1273,1000000185,'2009-03-19 21:34:17','198.54.202.210'),(1274,1000000000,'2009-03-20 10:19:22','196.35.158.179'),(1275,1000000000,'2009-03-20 10:19:22','196.35.158.179'),(1276,999999999,'2009-03-20 17:28:37','59.93.122.219'),(1277,999999999,'2009-03-20 17:28:37','59.93.122.219'),(1278,999999999,'2009-03-22 02:40:06','70.125.71.151'),(1279,999999999,'2009-03-22 02:40:06','70.125.71.151'),(1280,999999999,'2009-03-22 11:26:04','41.213.63.245'),(1281,999999999,'2009-03-22 11:26:04','41.213.63.245'),(1282,999999999,'2009-03-22 18:26:01','70.125.71.151'),(1283,999999999,'2009-03-22 18:26:01','70.125.71.151'),(1284,999999999,'2009-03-23 14:40:19','198.54.202.195'),(1285,999999999,'2009-03-23 14:40:19','198.54.202.195'),(1286,1000000187,'2009-03-23 23:59:41','189.27.189.155'),(1287,1000000187,'2009-03-23 23:59:41','189.27.189.155'),(1288,1000000188,'2009-03-24 01:29:23','67.176.112.139'),(1289,1000000188,'2009-03-24 01:29:23','67.176.112.139'),(1290,1000000188,'2009-03-24 02:02:09','67.176.112.139'),(1291,1000000188,'2009-03-24 02:02:09','67.176.112.139'),(1292,999999999,'2009-03-25 10:44:19','164.151.129.210'),(1293,999999999,'2009-03-25 10:44:19','164.151.129.210'),(1294,999999999,'2009-03-25 13:04:03','88.253.14.20'),(1295,999999999,'2009-03-25 13:04:03','88.253.14.20'),(1296,1000000189,'2009-03-27 12:25:32','196.15.245.150'),(1297,1000000189,'2009-03-27 12:25:32','196.15.245.150'),(1298,1000000190,'2009-03-29 10:03:23','41.241.173.89'),(1299,1000000190,'2009-03-29 10:03:23','41.241.173.89'),(1300,1000000190,'2009-03-29 10:33:13','198.54.202.210'),(1301,1000000190,'2009-03-29 10:33:13','198.54.202.210'),(1302,1000000170,'2009-03-29 15:29:56','198.54.202.234'),(1303,1000000170,'2009-03-29 15:29:56','198.54.202.234'),(1304,1000000189,'2009-03-30 08:34:24','196.15.245.150'),(1305,1000000189,'2009-03-30 08:34:24','196.15.245.150'),(1306,1000000190,'2009-03-30 18:24:34','198.54.202.210'),(1307,1000000190,'2009-03-30 18:24:34','198.54.202.210'),(1308,1000000191,'2009-03-31 03:21:07','41.208.50.176'),(1309,1000000191,'2009-03-31 03:21:07','41.208.50.176'),(1310,1000000191,'2009-03-31 07:19:35','41.208.50.176'),(1311,1000000191,'2009-03-31 07:19:35','41.208.50.176'),(1312,1000000170,'2009-04-02 09:16:39','198.54.202.195'),(1313,1000000170,'2009-04-02 09:16:47','198.54.202.195'),(1314,999999999,'2009-04-02 09:18:36','198.54.202.194'),(1315,999999999,'2009-04-02 09:18:36','198.54.202.194'),(1316,1000000000,'2009-04-02 13:07:50','41.245.29.5'),(1317,1000000000,'2009-04-02 13:07:50','41.245.29.5'),(1318,999999999,'2009-04-02 22:03:07','77.222.0.125'),(1319,999999999,'2009-04-02 22:03:07','77.222.0.125'),(1320,999999999,'2009-04-03 16:11:25','196.6.141.27'),(1321,999999999,'2009-04-03 16:11:25','196.6.141.27'),(1322,999999999,'2009-04-07 17:13:06','75.27.62.252'),(1323,999999999,'2009-04-07 17:13:06','75.27.62.252'),(1324,999999999,'2009-04-08 12:01:36','198.54.202.110'),(1325,999999999,'2009-04-08 12:01:36','198.54.202.110'),(1326,999999999,'2009-04-09 06:56:41','41.223.73.74'),(1327,999999999,'2009-04-09 06:56:41','41.223.73.74'),(1328,999999999,'2009-04-09 07:40:40','198.54.202.194'),(1329,999999999,'2009-04-09 07:40:40','198.54.202.194'),(1330,1000000195,'2009-04-10 12:24:39','41.208.48.160'),(1331,1000000195,'2009-04-10 12:24:39','41.208.48.160'),(1332,1000000195,'2009-04-10 19:46:57','41.208.48.160'),(1333,1000000195,'2009-04-10 19:46:57','41.208.48.160'),(1334,1000000195,'2009-04-10 20:27:07','41.208.48.160'),(1335,1000000195,'2009-04-10 20:27:07','41.208.48.160'),(1336,1000000195,'2009-04-10 20:28:44','41.208.48.160'),(1337,1000000195,'2009-04-10 20:28:44','41.208.48.160'),(1338,1000000195,'2009-04-10 20:38:12','41.208.48.160'),(1339,1000000195,'2009-04-10 20:38:12','41.208.48.160'),(1340,1000000195,'2009-04-10 21:05:47','41.208.48.160'),(1341,1000000195,'2009-04-10 21:05:47','41.208.48.160'),(1342,1000000195,'2009-04-10 21:43:42','41.208.48.160'),(1343,1000000195,'2009-04-10 21:43:42','41.208.48.160'),(1344,1000000195,'2009-04-12 20:30:42','41.208.48.160'),(1345,1000000195,'2009-04-12 20:30:42','41.208.48.160'),(1346,1000000195,'2009-04-12 20:53:19','41.208.48.160'),(1347,1000000195,'2009-04-12 20:53:19','41.208.48.160'),(1348,1000000195,'2009-04-12 22:48:49','41.208.48.160'),(1349,1000000195,'2009-04-12 22:48:49','41.208.48.160'),(1350,1000000195,'2009-04-12 22:57:59','41.208.48.160'),(1351,1000000195,'2009-04-12 22:57:59','41.208.48.160'),(1352,1000000195,'2009-04-13 00:14:01','41.208.48.160'),(1353,1000000195,'2009-04-13 00:14:01','41.208.48.160'),(1354,999999999,'2009-04-13 03:24:12','84.113.197.224'),(1355,999999999,'2009-04-13 03:24:12','84.113.197.224'),(1356,999999999,'2009-04-13 15:17:56','84.113.197.224'),(1357,999999999,'2009-04-13 15:17:56','84.113.197.224'),(1358,999999999,'2009-04-13 19:14:23','84.113.197.224'),(1359,999999999,'2009-04-13 19:14:23','84.113.197.224'),(1360,999999999,'2009-04-26 22:15:58','66.90.167.81'),(1361,999999999,'2009-04-26 22:15:58','66.90.167.81'),(1362,1000000000,'2009-04-27 06:25:31','198.54.202.214'),(1363,1000000000,'2009-04-27 06:25:31','198.54.202.214');
/*!40000 ALTER TABLE `login` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `login_seq`
--

DROP TABLE IF EXISTS `login_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `login_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1365 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `login_seq`
--

LOCK TABLES `login_seq` WRITE;
/*!40000 ALTER TABLE `login_seq` DISABLE KEYS */;
INSERT INTO `login_seq` VALUES (1363);
/*!40000 ALTER TABLE `login_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `module`
--

DROP TABLE IF EXISTS `module`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `module` (
  `module_id` int(11) NOT NULL default '0',
  `is_configurable` smallint(1) default NULL,
  `name` varchar(255) default NULL,
  `title` varchar(255) default NULL,
  `description` text,
  `admin_uri` varchar(255) default NULL,
  `icon` varchar(255) default NULL,
  `maintainers` text,
  `version` varchar(8) default NULL,
  `license` varchar(16) default NULL,
  `state` varchar(8) default NULL,
  PRIMARY KEY  (`module_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `module`
--

LOCK TABLES `module` WRITE;
/*!40000 ALTER TABLE `module` DISABLE KEYS */;
INSERT INTO `module` VALUES (1,1,'block','Blocks','Use the \'Blocks\' module to configure the contents of the blocks in the left and right hand columns.','block/block','48/module_block.png','',NULL,NULL,NULL),(2,1,'default','Default','The \'Default\' module includes functionality that is needed in every install, for example, configuration and interface language manangement, and module management.','default/maintenance','48/module_default.png','',NULL,NULL,NULL),(3,0,'export','Export Data','Used for exporting to various formats, ie RSS, OPML, etc.','export/rss','rndmsg.png','',NULL,NULL,NULL),(4,1,'navigation','Navigation','The \'Navigation\' module is what you use to build your site navigation, it creates menus that you can customise in terms of look and feel, and allows you to link to any site resource.','navigation/page','navigation.png','',NULL,NULL,NULL),(5,1,'user','Users and Security','The \'Users and Security\' module allows you to manage all your users, administer the roles they belong to, change their passwords, setup permissions and alter the global default preferences.','user/user','48/module_user.png','',NULL,NULL,NULL),(6,1,'rvsemailtemplate','Email Template','','rvsemailtemplate/emailtemplate','','',NULL,NULL,NULL),(7,1,'rvuser','Rvuser Configuration','The \'Users and Security\' module allows you to manage all your users, administer the roles they belong to, change their passwords, setup permissions and alter the global default preferences.','user/user','48/module_user.png','',NULL,NULL,NULL);
/*!40000 ALTER TABLE `module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `module_seq`
--

DROP TABLE IF EXISTS `module_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `module_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `module_seq`
--

LOCK TABLES `module_seq` WRITE;
/*!40000 ALTER TABLE `module_seq` DISABLE KEYS */;
INSERT INTO `module_seq` VALUES (7);
/*!40000 ALTER TABLE `module_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `org_preference`
--

DROP TABLE IF EXISTS `org_preference`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `org_preference` (
  `org_preference_id` int(11) NOT NULL default '0',
  `organisation_id` int(11) NOT NULL default '0',
  `preference_id` int(11) NOT NULL default '0',
  `value` varchar(128) default NULL,
  PRIMARY KEY  (`org_preference_id`),
  KEY `organisation_org_preference_fk` (`organisation_id`),
  KEY `preference_org_preference_fk` (`preference_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `org_preference`
--

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

--
-- Table structure for table `organisation`
--

DROP TABLE IF EXISTS `organisation`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `organisation` (
  `organisation_id` int(11) NOT NULL default '0',
  `parent_id` int(11) NOT NULL default '0',
  `root_id` int(11) NOT NULL default '0',
  `left_id` int(11) NOT NULL default '0',
  `right_id` int(11) NOT NULL default '0',
  `order_id` int(11) NOT NULL default '0',
  `level_id` int(11) NOT NULL default '0',
  `role_id` int(11) NOT NULL default '0',
  `organisation_type_id` int(11) NOT NULL default '0',
  `name` varchar(128) default NULL,
  `description` text,
  `addr_1` varchar(128) NOT NULL default '',
  `addr_2` varchar(128) default NULL,
  `addr_3` varchar(128) default NULL,
  `city` varchar(32) NOT NULL default '',
  `region` varchar(32) default NULL,
  `country` char(2) default NULL,
  `post_code` varchar(16) default NULL,
  `telephone` varchar(32) default NULL,
  `website` varchar(128) default NULL,
  `email` varchar(128) default NULL,
  `date_created` datetime default NULL,
  `created_by` int(11) default NULL,
  `last_updated` datetime default NULL,
  `updated_by` int(11) default NULL,
  PRIMARY KEY  (`organisation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `organisation`
--

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

--
-- Table structure for table `organisation_type`
--

DROP TABLE IF EXISTS `organisation_type`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `organisation_type` (
  `organisation_type_id` int(11) NOT NULL default '0',
  `name` varchar(64) default NULL,
  PRIMARY KEY  (`organisation_type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `organisation_type`
--

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

--
-- Table structure for table `permission`
--

DROP TABLE IF EXISTS `permission`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `permission` (
  `permission_id` int(11) NOT NULL default '0',
  `name` varchar(255) default NULL,
  `description` text,
  `module_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`permission_id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `permission`
--

LOCK TABLES `permission` WRITE;
/*!40000 ALTER TABLE `permission` DISABLE KEYS */;
INSERT INTO `permission` VALUES (1,'blockmgr','Permission to use block manager',1),(2,'blockmgr_cmd_add','Permission to add new block',1),(3,'blockmgr_cmd_edit','Permission to edit existing block',1),(4,'blockmgr_cmd_delete','Permission to remove block',1),(5,'blockmgr_cmd_reorder','Permission to reorder blocks',1),(6,'blockmgr_cmd_list','Permission to view block listing',1),(7,'blockmgr_cmd_insert','Permission to view block listing',1),(8,'blockmgr_cmd_update','Permission to view block listing',1),(9,'modulemgr','',2),(10,'modulemgr_cmd_add','',2),(11,'modulemgr_cmd_insert','',2),(12,'modulemgr_cmd_delete','',2),(13,'modulemgr_cmd_list','',2),(14,'modulemgr_cmd_overview','',2),(15,'modulemgr_cmd_edit','',2),(16,'modulemgr_cmd_update','',2),(17,'configmgr','',2),(18,'configmgr_cmd_edit','Permission to view and edit config settings',2),(19,'configmgr_cmd_update','Permission to update config values',2),(20,'defaultmgr','',2),(21,'defaultmgr_cmd_list','',2),(22,'bugmgr','',2),(23,'bugmgr_cmd_list',NULL,2),(24,'bugmgr_cmd_send',NULL,2),(25,'maintenancemgr_cmd_edit','',2),(26,'maintenancemgr_cmd_update','',2),(27,'maintenancemgr_cmd_append','',2),(28,'maintenancemgr_cmd_dbgen','',2),(29,'maintenancemgr_cmd_clearCache','',2),(30,'maintenancemgr_cmd_list','',2),(31,'maintenancemgr','',2),(32,'maintenancemgr_cmd_verify','',2),(33,'maintenancemgr_cmd_checkAllModules','',2),(34,'maintenancemgr_cmd_rebuildSequences','',2),(35,'maintenancemgr_cmd_createModule','',2),(36,'maintenancemgr_cmd_checkLatestVersion','',2),(37,'pearmgr','',2),(38,'pearmgr_cmd_list','',2),(39,'pearmgr_cmd_doRequest','',2),(40,'rssmgr',NULL,3),(41,'rssmgr_cmd_news','',3),(42,'navstylemgr','',4),(43,'navstylemgr_cmd_changeStyle','',4),(44,'navstylemgr_cmd_list','',4),(45,'sectionmgr','',4),(46,'sectionmgr_cmd_add','',4),(47,'sectionmgr_cmd_insert','',4),(48,'sectionmgr_cmd_edit','',4),(49,'sectionmgr_cmd_update','',4),(50,'sectionmgr_cmd_delete','',4),(51,'sectionmgr_cmd_reorder','',4),(52,'sectionmgr_cmd_list','',4),(53,'rolemgr_cmd_duplicate','',5),(54,'accountmgr_cmd_edit','',5),(55,'accountmgr_cmd_update','',5),(56,'accountmgr_cmd_viewProfile','',5),(57,'accountmgr_cmd_summary','',5),(58,'loginmgr_cmd_login','',5),(59,'loginmgr_cmd_list','',5),(60,'orgmgr_cmd_add','',5),(61,'orgmgr_cmd_insert','',5),(62,'orgmgr_cmd_edit','',5),(63,'orgmgr_cmd_update','',5),(64,'orgmgr_cmd_delete','',5),(65,'orgmgr_cmd_list','',5),(66,'passwordmgr_cmd_retrieve','',5),(67,'passwordmgr_cmd_forgot','',5),(68,'userpasswordmgr','',5),(69,'userpasswordmgr_cmd_edit','',5),(70,'userpasswordmgr_cmd_update','',5),(71,'permissionmgr_cmd_add','',5),(72,'permissionmgr_cmd_insert','',5),(73,'permissionmgr_cmd_edit','',5),(74,'permissionmgr_cmd_update','',5),(75,'permissionmgr_cmd_delete','',5),(76,'permissionmgr_cmd_list','',5),(77,'preferencemgr_cmd_add','',5),(78,'preferencemgr_cmd_insert','',5),(79,'preferencemgr_cmd_edit','',5),(80,'preferencemgr_cmd_update','',5),(81,'preferencemgr_cmd_delete','',5),(82,'preferencemgr_cmd_list','',5),(83,'profilemgr_cmd_view','',5),(84,'registermgr_cmd_add','',5),(85,'registermgr_cmd_insert','',5),(86,'rolemgr_cmd_add','',5),(87,'rolemgr_cmd_insert','',5),(88,'rolemgr_cmd_edit','',5),(89,'rolemgr_cmd_update','',5),(90,'rolemgr_cmd_delete','',5),(91,'rolemgr_cmd_list','',5),(92,'rolemgr_cmd_editPerms','',5),(93,'rolemgr_cmd_updatePerms','',5),(94,'usermgr_cmd_add','',5),(95,'usermgr_cmd_insert','',5),(96,'usermgr_cmd_edit','',5),(97,'usermgr_cmd_update','',5),(98,'usermgr_cmd_delete','',5),(99,'usermgr_cmd_list','',5),(100,'usermgr_cmd_requestPasswordReset','',5),(101,'usermgr_cmd_resetPassword','',5),(102,'usermgr_cmd_editPerms','',5),(103,'usermgr_cmd_updatePerms','',5),(104,'userpreferencemgr_cmd_editAll','',5),(105,'userpreferencemgr_cmd_updateAll','',5),(106,'accountmgr','',5),(107,'loginmgr','',5),(108,'loginmgr_cmd_logout','',5),(109,'orgmgr','',5),(110,'orgpreferencemgr','',5),(111,'orgpreferencemgr_cmd_editAll','',5),(112,'orgpreferencemgr_cmd_updateAll','',5),(113,'passwordmgr','',5),(114,'permissionmgr','',5),(115,'permissionmgr_cmd_scanNew','',5),(116,'permissionmgr_cmd_insertNew','',5),(117,'permissionmgr_cmd_scanOrphaned','',5),(118,'permissionmgr_cmd_deleteOrphaned','',5),(119,'preferencemgr','',5),(120,'profilemgr','',5),(121,'registermgr','',5),(122,'rolemgr','',5),(123,'userimportmgr','',5),(124,'userimportmgr_cmd_list','',5),(125,'userimportmgr_cmd_insertImportedUsers','',5),(126,'usermgr','',5),(127,'usermgr_cmd_syncToRole','',5),(128,'userpreferencemgr','',5),(129,'orgtypemgr',NULL,5),(130,'orgtypemgr_cmd_add',NULL,5),(131,'orgtypemgr_cmd_insert',NULL,5),(132,'orgtypemgr_cmd_edit',NULL,5),(133,'orgtypemgr_cmd_update',NULL,5),(134,'orgtypemgr_cmd_delete',NULL,5),(135,'orgtypemgr_cmd_list',NULL,5),(136,'usermgr_cmd_requestChangeUserStatus',NULL,5),(137,'usermgr_cmd_changeUserStatus',NULL,5),(138,'usermgr_cmd_viewLogin',NULL,5),(139,'usermgr_cmd_truncateLoginTbl',NULL,5),(140,'usersearchmgr',NULL,5),(141,'usersearchmgr_cmd_add',NULL,5),(142,'usersearchmgr_cmd_search',NULL,5);
/*!40000 ALTER TABLE `permission` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `permission_seq`
--

DROP TABLE IF EXISTS `permission_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `permission_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=144 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `permission_seq`
--

LOCK TABLES `permission_seq` WRITE;
/*!40000 ALTER TABLE `permission_seq` DISABLE KEYS */;
INSERT INTO `permission_seq` VALUES (142);
/*!40000 ALTER TABLE `permission_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `preference`
--

DROP TABLE IF EXISTS `preference`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `preference` (
  `preference_id` int(11) NOT NULL default '0',
  `name` varchar(128) default NULL,
  `default_value` varchar(128) default NULL,
  PRIMARY KEY  (`preference_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `preference`
--

LOCK TABLES `preference` WRITE;
/*!40000 ALTER TABLE `preference` DISABLE KEYS */;
INSERT INTO `preference` VALUES (1,'sessionTimeout','1800'),(2,'timezone','UTC'),(3,'theme','default'),(4,'dateFormat','UK'),(5,'language','en-iso-8859-15'),(6,'resPerPage','10'),(7,'showExecutionTimes','1'),(8,'locale','en_GB');
/*!40000 ALTER TABLE `preference` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `preference_seq`
--

DROP TABLE IF EXISTS `preference_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `preference_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `preference_seq`
--

LOCK TABLES `preference_seq` WRITE;
/*!40000 ALTER TABLE `preference_seq` DISABLE KEYS */;
INSERT INTO `preference_seq` VALUES (8);
/*!40000 ALTER TABLE `preference_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `remote_access_key`
--

DROP TABLE IF EXISTS `remote_access_key`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `remote_access_key` (
  `remote_access_key` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `remote_access_key`
--

LOCK TABLES `remote_access_key` WRITE;
/*!40000 ALTER TABLE `remote_access_key` DISABLE KEYS */;
INSERT INTO `remote_access_key` VALUES ('åèëêÙ„Ð‚‡ÜÕÐß‹Š‰ÙØ‘•—Æ‘Ç’‘™ÁÈ˜ñ÷Ì8b76e63>lk<o5>9>s\"!wrp\" .}/,.)/*EE@AMIK	V^\n\n^]&LH&!rs!}pz(.uywibb5gd4o9i;n8iilXWnnSUVSY\r[]KBFB\ZKLHIâä»±àˆŒæé¹»¾¿µ½îöô÷÷õ¬÷ñ¨¬ª¬©û¯®™‘‘œ’ª¢ÈÉÎ˜œÌŸƒƒ‚‹‡Ñ…ÞÝÞˆ‹ÜÛñø£óððõ¥øÄÀ­©øûø´·´ç²¶´±¼ï¾ïë¼ºîƒÒ…ÕÝ…†‰ÙÙææ‰ÙÃÄÃ‘——ÀÇ™ÀË™Ê˜Æc653g`5?m9hh>< $+&!$ /y.*x~y,&E@BCK=;W\n\0QZ	ZZ\\uxpzr!q#*(rrt{+z30_Ybe01lkl?oo:=WUS_^\\[T\\\\^GCGFyCN\ZEEMF´àä·å³ãä¹èè¾ºì·¿õ¤ð¦òó›úýøÿÿ¬ª¯Ä“—šÁÁÇ–ŸÊÎœÍÎŸš‰ƒŠ…Ð„‡µ³‚…ÞŽŒ¡÷¦öüö¢ð¬«øü¯«¯üçéêàå´´ãêá×Ñ¹äëî××ÛÝÔ†Ž‹ÙÜßÝˆÙÄÀ––ÂÂÏ–ÊœÌñ÷Çb8ge165c9mh8=ok6vw\'#w %&z*-#/+,*@ABKHI\0\nS]\rXYrLHst$qvz+s-yy-b7c5al01lkn:jdjlUQnnUS_ZQY\\X\\^ZBBE@AENKOHâ³³å·ˆŒâº¹²î´½»º ô¤¦¤¬¦§üªûªøûø©ÁÀ›Á—œ“ª¢ÌŸ›ÈÉŸž…€‡ÐÐ„„ˆ‚Ú„ˆŽ£óòñòòþöþÄÀþüüûûé°çêãìãµ½ëãè½ëêîÙØÒ×Ó€‚‰ŒÝææÔÛŽÅÃÇ–—Å•Á™ÏÉžÎÊÊ80g;15228=8ho5\'\' wu&# ~-(.-+,D\ZCFLNNKM=;VVSZ_\r^\"#q\"tuqr~,syz||}43_Yge76akclklojYPZP\0]\0TQZX[Z[]DCK@yAJKCM¶ã²µå±ç·éïîíêì¾¼ñô§÷§¡›ûý«©¥©§­”Å‘Â–Å‘ŸžŸÍ•ÊÍ‡…‚†…„Ô‡');
/*!40000 ALTER TABLE `remote_access_key` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role`
--

DROP TABLE IF EXISTS `role`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `role` (
  `role_id` int(11) NOT NULL default '-1',
  `name` varchar(255) default NULL,
  `description` text,
  `date_created` datetime default NULL,
  `created_by` int(11) default NULL,
  `last_updated` datetime default NULL,
  `updated_by` int(11) default NULL,
  PRIMARY KEY  (`role_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `role`
--

LOCK TABLES `role` WRITE;
/*!40000 ALTER TABLE `role` DISABLE KEYS */;
INSERT INTO `role` VALUES (-1,'unassigned','not assigned a role',NULL,NULL,NULL,NULL),(0,'guest','public user',NULL,NULL,NULL,NULL),(1,'root','super user',NULL,NULL,NULL,NULL),(2,'member','has a limited set of privileges',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_permission`
--

DROP TABLE IF EXISTS `role_permission`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `role_permission` (
  `role_permission_id` int(11) NOT NULL default '0',
  `role_id` int(11) NOT NULL default '0',
  `permission_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`role_permission_id`),
  KEY `permission_id` (`permission_id`),
  KEY `role_id` (`role_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `role_permission`
--

LOCK TABLES `role_permission` WRITE;
/*!40000 ALTER TABLE `role_permission` DISABLE KEYS */;
INSERT INTO `role_permission` VALUES (1,2,22),(2,2,21),(3,2,41),(4,2,106),(5,2,54),(6,2,57),(7,2,55),(8,2,56),(9,2,107),(10,2,59),(11,2,58),(12,2,108),(13,2,69),(14,2,70),(15,2,79),(16,2,80),(17,2,83),(18,2,84),(19,2,85),(20,2,104),(21,2,105);
/*!40000 ALTER TABLE `role_permission` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_permission_seq`
--

DROP TABLE IF EXISTS `role_permission_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `role_permission_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `role_permission_seq`
--

LOCK TABLES `role_permission_seq` WRITE;
/*!40000 ALTER TABLE `role_permission_seq` DISABLE KEYS */;
INSERT INTO `role_permission_seq` VALUES (21);
/*!40000 ALTER TABLE `role_permission_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_seq`
--

DROP TABLE IF EXISTS `role_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `role_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `role_seq`
--

LOCK TABLES `role_seq` WRITE;
/*!40000 ALTER TABLE `role_seq` DISABLE KEYS */;
INSERT INTO `role_seq` VALUES (2);
/*!40000 ALTER TABLE `role_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `section`
--

DROP TABLE IF EXISTS `section`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `section` (
  `section_id` int(11) NOT NULL default '0',
  `title` varchar(32) default NULL,
  `resource_uri` varchar(128) default NULL,
  `perms` varchar(32) default NULL,
  `trans_id` int(11) default NULL,
  `parent_id` int(11) default NULL,
  `root_id` int(11) default NULL,
  `left_id` int(11) default NULL,
  `right_id` int(11) default NULL,
  `order_id` int(11) default NULL,
  `level_id` int(11) default NULL,
  `is_enabled` smallint(6) default NULL,
  `is_static` smallint(6) default NULL,
  `access_key` char(1) default NULL,
  `rel` varchar(16) default NULL,
  PRIMARY KEY  (`section_id`),
  KEY `AK_key_root_id` (`root_id`),
  KEY `AK_key_order_id` (`order_id`),
  KEY `AK_key_left_id` (`left_id`),
  KEY `AK_key_right_id` (`right_id`),
  KEY `AK_id_root_l_r` (`section_id`,`root_id`,`left_id`,`right_id`),
  KEY `AK_key_level_id` (`level_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `section`
--

LOCK TABLES `section` WRITE;
/*!40000 ALTER TABLE `section` DISABLE KEYS */;
INSERT INTO `section` VALUES (0,'root','uriEmpty:','1',0,0,0,0,0,0,0,0,0,'',''),(2,'User menu','uriEmpty:','-2',2,0,2,1,6,1,1,1,0,'',''),(4,'Admin menu','uriEmpty:','1',4,0,4,1,42,2,1,1,0,'',''),(9,'My Account','user/account','2',9,2,2,4,5,2,2,1,0,'',''),(6,'Home','default/default','-2',6,2,2,2,3,1,2,1,0,'',''),(51,'Manage navigation','navigation/section','1',51,23,4,17,18,1,3,0,0,'',''),(13,'General','default/config','1',13,4,4,2,15,1,2,1,0,'',''),(15,'Configuration','default/config','1',15,13,4,5,6,2,3,1,0,'',''),(17,'Maintenance','default/maintenance','1',17,13,4,7,8,3,3,0,0,'',''),(19,'Module Generator','default/modulegeneration','1',19,13,4,9,10,4,3,0,0,'',''),(21,'Translation','default/translation','1',21,13,4,11,12,5,3,1,0,'',''),(23,'Navigation','navigation/section','1',23,4,4,16,19,2,2,0,0,'',''),(25,'Blocks','block/block','1',25,4,4,20,23,3,2,0,0,'',''),(35,'Users and security','user/user','1',35,4,4,24,33,4,2,1,0,'',''),(37,'Manage users','user/user','1',37,35,4,25,26,1,3,1,0,'',''),(39,'Manage permissions','user/permission','1',39,35,4,27,28,2,3,1,0,'',''),(41,'Manage roles','user/role','1',41,35,4,29,30,3,3,1,0,'',''),(43,'Manage preferences','user/preference','1',43,35,4,31,32,4,3,1,0,'',''),(45,'My Account','user/account','1',45,4,4,34,41,5,2,1,0,'',''),(47,'View Profile','user/account/action/viewProfile','1',47,45,4,37,38,2,3,1,0,'',''),(49,'Edit Preferences','user/userpreference','1',49,45,4,39,40,3,3,1,0,'',''),(53,'Manage modules','default/module','1',53,13,4,3,4,1,3,0,0,'',''),(59,'Manage blocks','block/block','1',59,25,4,21,22,1,3,0,0,'',''),(61,'Summary','user/account','1',61,45,4,35,36,1,3,1,0,'',''),(63,'PEAR packages','default/pear','1',63,13,4,13,14,6,3,0,0,'',''),(65,'Administrator','uriNode:13','1',65,2,2,6,7,3,2,1,0,'',''),(91,'Email Template','rvsemailtemplate/emailtemplate','1',91,13,4,15,16,3,3,1,0,'',''),(83,'Customize Page','default/customizepage','1',83,13,4,15,16,7,3,1,0,'',''),(85,'Remote Access Key','rvuser/remoteaccesskey','1',85,13,4,17,18,8,3,1,0,'',''),(92,'Templates','rvuser/templatecategory','-2',113,2,2,8,9,4,2,1,0,'',''),(90,'Billing Setting','rvuser/billingsetting','1',90,4,4,42,43,6,2,1,0,'','');
/*!40000 ALTER TABLE `section` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `section_seq`
--

DROP TABLE IF EXISTS `section_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `section_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=94 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `section_seq`
--

LOCK TABLES `section_seq` WRITE;
/*!40000 ALTER TABLE `section_seq` DISABLE KEYS */;
INSERT INTO `section_seq` VALUES (92);
/*!40000 ALTER TABLE `section_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `table_lock`
--

DROP TABLE IF EXISTS `table_lock`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `table_lock` (
  `lockID` char(32) NOT NULL default '',
  `lockTable` char(32) NOT NULL default '',
  `lockStamp` int(11) default NULL,
  PRIMARY KEY  (`lockID`,`lockTable`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `table_lock`
--

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

--
-- Table structure for table `uri_alias`
--

DROP TABLE IF EXISTS `uri_alias`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `uri_alias` (
  `uri_alias_id` int(11) unsigned NOT NULL default '0',
  `uri_alias` varchar(255) default NULL,
  `section_id` int(11) default NULL,
  `title` varchar(255) default NULL,
  `keywords` text,
  `description` text,
  PRIMARY KEY  (`uri_alias_id`),
  UNIQUE KEY `uri_alias` (`uri_alias`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `uri_alias`
--

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

--
-- Table structure for table `user_hash`
--

DROP TABLE IF EXISTS `user_hash`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `user_hash` (
  `usr_id` int(11) NOT NULL default '0',
  `hash` varchar(64) NOT NULL default '',
  KEY `usr_id` (`usr_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `user_hash`
--

LOCK TABLES `user_hash` WRITE;
/*!40000 ALTER TABLE `user_hash` DISABLE KEYS */;
INSERT INTO `user_hash` VALUES (1000000049,'cd335f0a0616485a5096a30ba090b631'),(1000000200,'4e53f20f45b6756160b42bae516bf075'),(1000000198,'a5c3b0685081e1d1c753ab9648486b6a'),(1000000201,'c5f903f0b913f7e85e3d5fd22fbf7986'),(1000000197,'21f7cf0a66d57a93b1bfe0c556aa35a9'),(1000000196,'66ec614ed3354cbbfed48005d29420d6');
/*!40000 ALTER TABLE `user_hash` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_permission`
--

DROP TABLE IF EXISTS `user_permission`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `user_permission` (
  `user_permission_id` int(11) NOT NULL default '0',
  `usr_id` int(11) NOT NULL default '0',
  `permission_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`user_permission_id`),
  KEY `usr_id` (`usr_id`),
  KEY `permission_id` (`permission_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `user_permission`
--

LOCK TABLES `user_permission` WRITE;
/*!40000 ALTER TABLE `user_permission` DISABLE KEYS */;
INSERT INTO `user_permission` VALUES (1,999999999,21),(2,999999999,106),(3,999999999,57),(4,999999999,107),(5,999999999,59),(6,999999999,58),(7,999999999,108),(8,999999999,84),(9,999999999,85),(10,999999999,85),(11,999999999,85),(12,999999999,85),(13,999999999,85),(14,999999999,85),(15,999999999,85),(16,999999999,85),(751,1000000035,105),(750,1000000035,104),(749,1000000035,85),(748,1000000035,84),(747,1000000035,83),(746,1000000035,80),(745,1000000035,79),(744,1000000035,70),(743,1000000035,69),(742,1000000035,108),(741,1000000035,58),(740,1000000035,59),(739,1000000035,107),(738,1000000035,56),(737,1000000035,55),(736,1000000035,57),(735,1000000035,54),(734,1000000035,106),(733,1000000035,41),(732,1000000035,21),(731,1000000035,22),(941,1000000045,22),(942,1000000045,21),(943,1000000045,41),(944,1000000045,106),(945,1000000045,54),(946,1000000045,57),(947,1000000045,55),(948,1000000045,56),(949,1000000045,107),(950,1000000045,59),(951,1000000045,58),(952,1000000045,108),(953,1000000045,69),(954,1000000045,70),(955,1000000045,79),(956,1000000045,80),(957,1000000045,83),(958,1000000045,84),(959,1000000045,85),(960,1000000045,104),(961,1000000045,105),(1025,1000000049,22),(1026,1000000049,21),(1027,1000000049,41),(1028,1000000049,106),(1029,1000000049,54),(1030,1000000049,57),(1031,1000000049,55),(1032,1000000049,56),(1033,1000000049,107),(1034,1000000049,59),(1035,1000000049,58),(1036,1000000049,108),(1037,1000000049,69),(1038,1000000049,70),(1039,1000000049,79),(1040,1000000049,80),(1041,1000000049,83),(1042,1000000049,84),(1043,1000000049,85),(1044,1000000049,104),(1045,1000000049,105),(4342,1000000205,105),(4341,1000000205,104),(4340,1000000205,85),(4339,1000000205,84),(4338,1000000205,83),(4337,1000000205,80),(4336,1000000205,79),(4335,1000000205,70),(4334,1000000205,69),(4333,1000000205,108),(4332,1000000205,58),(4331,1000000205,59),(4330,1000000205,107),(4329,1000000205,56),(4328,1000000205,55),(4327,1000000205,57),(4326,1000000205,54),(4325,1000000205,106),(4324,1000000205,41),(4323,1000000205,21),(4322,1000000205,22),(4321,1000000204,105),(4320,1000000204,104),(4319,1000000204,85),(4318,1000000204,84),(4317,1000000204,83),(4316,1000000204,80),(4315,1000000204,79),(4314,1000000204,70),(4313,1000000204,69),(4312,1000000204,108),(4311,1000000204,58),(4310,1000000204,59),(4309,1000000204,107),(4308,1000000204,56),(4307,1000000204,55),(4306,1000000204,57),(4305,1000000204,54),(4304,1000000204,106),(4303,1000000204,41),(4302,1000000204,21),(4301,1000000204,22),(4300,1000000203,105),(4299,1000000203,104),(4298,1000000203,85),(4297,1000000203,84),(4296,1000000203,83),(4295,1000000203,80),(4294,1000000203,79),(4293,1000000203,70),(4292,1000000203,69),(4291,1000000203,108),(4290,1000000203,58),(4289,1000000203,59),(4288,1000000203,107),(4287,1000000203,56),(4286,1000000203,55),(4285,1000000203,57),(4284,1000000203,54),(4283,1000000203,106),(4282,1000000203,41),(4281,1000000203,21),(4280,1000000203,22),(4279,1000000202,105),(4278,1000000202,104),(4277,1000000202,85),(4276,1000000202,84),(4275,1000000202,83),(4274,1000000202,80),(4273,1000000202,79),(4272,1000000202,70),(4271,1000000202,69),(4270,1000000202,108),(4269,1000000202,58),(4268,1000000202,59),(4267,1000000202,107),(4266,1000000202,56),(4265,1000000202,55),(4264,1000000202,57),(4263,1000000202,54),(4262,1000000202,106),(4261,1000000202,41),(4260,1000000202,21),(4259,1000000202,22),(4258,1000000201,105),(4257,1000000201,104),(4256,1000000201,85),(4255,1000000201,84),(4254,1000000201,83),(4253,1000000201,80),(4252,1000000201,79),(4251,1000000201,70),(4250,1000000201,69),(4249,1000000201,108),(4248,1000000201,58),(4247,1000000201,59),(4246,1000000201,107),(4245,1000000201,56),(4244,1000000201,55),(4243,1000000201,57),(4242,1000000201,54),(4241,1000000201,106),(4240,1000000201,41),(4239,1000000201,21),(4238,1000000201,22),(4237,1000000200,105),(4236,1000000200,104),(4235,1000000200,85),(4234,1000000200,84),(4233,1000000200,83),(4232,1000000200,80),(4231,1000000200,79),(4230,1000000200,70),(4229,1000000200,69),(4228,1000000200,108),(4227,1000000200,58),(4226,1000000200,59),(4225,1000000200,107),(4224,1000000200,56),(4223,1000000200,55),(4222,1000000200,57),(4221,1000000200,54),(4220,1000000200,106),(4219,1000000200,41),(4218,1000000200,21),(4217,1000000200,22),(4216,1000000199,105),(4215,1000000199,104),(4214,1000000199,85),(4213,1000000199,84),(4212,1000000199,83),(4211,1000000199,80),(4210,1000000199,79),(4209,1000000199,70),(4208,1000000199,69),(4207,1000000199,108),(4206,1000000199,58),(4205,1000000199,59),(4204,1000000199,107),(4203,1000000199,56),(4202,1000000199,55),(4201,1000000199,57),(4200,1000000199,54),(4199,1000000199,106),(4198,1000000199,41),(4197,1000000199,21),(4196,1000000199,22),(4195,1000000198,105),(4194,1000000198,104),(4193,1000000198,85),(4192,1000000198,84),(4191,1000000198,83),(4190,1000000198,80),(4189,1000000198,79),(4188,1000000198,70),(4187,1000000198,69),(4186,1000000198,108),(4185,1000000198,58),(4184,1000000198,59),(4183,1000000198,107),(4182,1000000198,56),(4181,1000000198,55),(4180,1000000198,57),(4179,1000000198,54),(4178,1000000198,106),(4177,1000000198,41),(4176,1000000198,21),(4175,1000000198,22),(4174,1000000197,105),(4173,1000000197,104),(4172,1000000197,85),(4171,1000000197,84),(4170,1000000197,83),(4169,1000000197,80),(4168,1000000197,79),(4167,1000000197,70),(4166,1000000197,69),(4165,1000000197,108),(4164,1000000197,58),(4163,1000000197,59),(4162,1000000197,107),(4161,1000000197,56),(4160,1000000197,55),(4159,1000000197,57),(4158,1000000197,54),(4157,1000000197,106),(4156,1000000197,41),(4155,1000000197,21),(4154,1000000197,22),(3629,1000000172,22),(3630,1000000172,21),(3631,1000000172,41),(3632,1000000172,106),(3633,1000000172,54),(3634,1000000172,57),(3635,1000000172,55),(3636,1000000172,56),(3637,1000000172,107),(3638,1000000172,59),(3639,1000000172,58),(3640,1000000172,108),(3641,1000000172,69),(3642,1000000172,70),(3643,1000000172,79),(3644,1000000172,80),(3645,1000000172,83),(3646,1000000172,84),(3647,1000000172,85),(3648,1000000172,104),(3649,1000000172,105),(3650,1000000173,22),(3651,1000000173,21),(3652,1000000173,41),(3653,1000000173,106),(3654,1000000173,54),(3655,1000000173,57),(3656,1000000173,55),(3657,1000000173,56),(3658,1000000173,107),(3659,1000000173,59),(3660,1000000173,58),(3661,1000000173,108),(3662,1000000173,69),(3663,1000000173,70),(3664,1000000173,79),(3665,1000000173,80),(3666,1000000173,83),(3667,1000000173,84),(3668,1000000173,85),(3669,1000000173,104),(3670,1000000173,105),(4153,1000000196,105),(4152,1000000196,104),(4151,1000000196,85),(4150,1000000196,84),(4149,1000000196,83),(4148,1000000196,80),(4147,1000000196,79),(4146,1000000196,70),(4145,1000000196,69),(4144,1000000196,108),(4143,1000000196,58),(4142,1000000196,59),(4141,1000000196,107),(4140,1000000196,56),(4139,1000000196,55),(4138,1000000196,57),(4137,1000000196,54),(4136,1000000196,106),(4135,1000000196,41),(4134,1000000196,21),(4133,1000000196,22),(3692,1000000175,22),(3693,1000000175,21),(3694,1000000175,41),(3695,1000000175,106),(3696,1000000175,54),(3697,1000000175,57),(3698,1000000175,55),(3699,1000000175,56),(3700,1000000175,107),(3701,1000000175,59),(3702,1000000175,58),(3703,1000000175,108),(3704,1000000175,69),(3705,1000000175,70),(3706,1000000175,79),(3707,1000000175,80),(3708,1000000175,83),(3709,1000000175,84),(3710,1000000175,85),(3711,1000000175,104),(3712,1000000175,105),(4132,1000000195,105),(4131,1000000195,104),(4130,1000000195,85),(4129,1000000195,84),(4128,1000000195,83),(4127,1000000195,80),(4126,1000000195,79),(4125,1000000195,70),(4124,1000000195,69),(4123,1000000195,108),(4122,1000000195,58),(4121,1000000195,59),(4120,1000000195,107),(4119,1000000195,56),(4118,1000000195,55),(4117,1000000195,57),(4116,1000000195,54),(4115,1000000195,106),(4114,1000000195,41),(4113,1000000195,21),(4112,1000000195,22),(3734,1000000177,22),(3735,1000000177,21),(3736,1000000177,41),(3737,1000000177,106),(3738,1000000177,54),(3739,1000000177,57),(3740,1000000177,55),(3741,1000000177,56),(3742,1000000177,107),(3743,1000000177,59),(3744,1000000177,58),(3745,1000000177,108),(3746,1000000177,69),(3747,1000000177,70),(3748,1000000177,79),(3749,1000000177,80),(3750,1000000177,83),(3751,1000000177,84),(3752,1000000177,85),(3753,1000000177,104),(3754,1000000177,105),(3755,1000000178,22),(3756,1000000178,21),(3757,1000000178,41),(3758,1000000178,106),(3759,1000000178,54),(3760,1000000178,57),(3761,1000000178,55),(3762,1000000178,56),(3763,1000000178,107),(3764,1000000178,59),(3765,1000000178,58),(3766,1000000178,108),(3767,1000000178,69),(3768,1000000178,70),(3769,1000000178,79),(3770,1000000178,80),(3771,1000000178,83),(3772,1000000178,84),(3773,1000000178,85),(3774,1000000178,104),(3775,1000000178,105),(3776,1000000179,22),(3777,1000000179,21),(3778,1000000179,41),(3779,1000000179,106),(3780,1000000179,54),(3781,1000000179,57),(3782,1000000179,55),(3783,1000000179,56),(3784,1000000179,107),(3785,1000000179,59),(3786,1000000179,58),(3787,1000000179,108),(3788,1000000179,69),(3789,1000000179,70),(3790,1000000179,79),(3791,1000000179,80),(3792,1000000179,83),(3793,1000000179,84),(3794,1000000179,85),(3795,1000000179,104),(3796,1000000179,105),(3797,1000000180,22),(3798,1000000180,21),(3799,1000000180,41),(3800,1000000180,106),(3801,1000000180,54),(3802,1000000180,57),(3803,1000000180,55),(3804,1000000180,56),(3805,1000000180,107),(3806,1000000180,59),(3807,1000000180,58),(3808,1000000180,108),(3809,1000000180,69),(3810,1000000180,70),(3811,1000000180,79),(3812,1000000180,80),(3813,1000000180,83),(3814,1000000180,84),(3815,1000000180,85),(3816,1000000180,104),(3817,1000000180,105),(3818,1000000181,22),(3819,1000000181,21),(3820,1000000181,41),(3821,1000000181,106),(3822,1000000181,54),(3823,1000000181,57),(3824,1000000181,55),(3825,1000000181,56),(3826,1000000181,107),(3827,1000000181,59),(3828,1000000181,58),(3829,1000000181,108),(3830,1000000181,69),(3831,1000000181,70),(3832,1000000181,79),(3833,1000000181,80),(3834,1000000181,83),(3835,1000000181,84),(3836,1000000181,85),(3837,1000000181,104),(3838,1000000181,105),(4111,1000000194,105),(4110,1000000194,104),(4109,1000000194,85),(4108,1000000194,84),(4107,1000000194,83),(4106,1000000194,80),(4105,1000000194,79),(4104,1000000194,70),(4103,1000000194,69),(4102,1000000194,108),(4101,1000000194,58),(4100,1000000194,59),(4099,1000000194,107),(4098,1000000194,56),(4097,1000000194,55),(4096,1000000194,57),(4095,1000000194,54),(4094,1000000194,106),(4093,1000000194,41),(4092,1000000194,21),(4091,1000000194,22),(3860,1000000183,22),(3861,1000000183,21),(3862,1000000183,41),(3863,1000000183,106),(3864,1000000183,54),(3865,1000000183,57),(3866,1000000183,55),(3867,1000000183,56),(3868,1000000183,107),(3869,1000000183,59),(3870,1000000183,58),(3871,1000000183,108),(3872,1000000183,69),(3873,1000000183,70),(3874,1000000183,79),(3875,1000000183,80),(3876,1000000183,83),(3877,1000000183,84),(3878,1000000183,85),(3879,1000000183,104),(3880,1000000183,105),(3881,1000000184,22),(3882,1000000184,21),(3883,1000000184,41),(3884,1000000184,106),(3885,1000000184,54),(3886,1000000184,57),(3887,1000000184,55),(3888,1000000184,56),(3889,1000000184,107),(3890,1000000184,59),(3891,1000000184,58),(3892,1000000184,108),(3893,1000000184,69),(3894,1000000184,70),(3895,1000000184,79),(3896,1000000184,80),(3897,1000000184,83),(3898,1000000184,84),(3899,1000000184,85),(3900,1000000184,104),(3901,1000000184,105),(3902,1000000185,22),(3903,1000000185,21),(3904,1000000185,41),(3905,1000000185,106),(3906,1000000185,54),(3907,1000000185,57),(3908,1000000185,55),(3909,1000000185,56),(3910,1000000185,107),(3911,1000000185,59),(3912,1000000185,58),(3913,1000000185,108),(3914,1000000185,69),(3915,1000000185,70),(3916,1000000185,79),(3917,1000000185,80),(3918,1000000185,83),(3919,1000000185,84),(3920,1000000185,85),(3921,1000000185,104),(3922,1000000185,105),(3923,1000000186,22),(3924,1000000186,21),(3925,1000000186,41),(3926,1000000186,106),(3927,1000000186,54),(3928,1000000186,57),(3929,1000000186,55),(3930,1000000186,56),(3931,1000000186,107),(3932,1000000186,59),(3933,1000000186,58),(3934,1000000186,108),(3935,1000000186,69),(3936,1000000186,70),(3937,1000000186,79),(3938,1000000186,80),(3939,1000000186,83),(3940,1000000186,84),(3941,1000000186,85),(3942,1000000186,104),(3943,1000000186,105),(3944,1000000187,22),(3945,1000000187,21),(3946,1000000187,41),(3947,1000000187,106),(3948,1000000187,54),(3949,1000000187,57),(3950,1000000187,55),(3951,1000000187,56),(3952,1000000187,107),(3953,1000000187,59),(3954,1000000187,58),(3955,1000000187,108),(3956,1000000187,69),(3957,1000000187,70),(3958,1000000187,79),(3959,1000000187,80),(3960,1000000187,83),(3961,1000000187,84),(3962,1000000187,85),(3963,1000000187,104),(3964,1000000187,105),(3965,1000000188,22),(3966,1000000188,21),(3967,1000000188,41),(3968,1000000188,106),(3969,1000000188,54),(3970,1000000188,57),(3971,1000000188,55),(3972,1000000188,56),(3973,1000000188,107),(3974,1000000188,59),(3975,1000000188,58),(3976,1000000188,108),(3977,1000000188,69),(3978,1000000188,70),(3979,1000000188,79),(3980,1000000188,80),(3981,1000000188,83),(3982,1000000188,84),(3983,1000000188,85),(3984,1000000188,104),(3985,1000000188,105),(3986,1000000189,22),(3987,1000000189,21),(3988,1000000189,41),(3989,1000000189,106),(3990,1000000189,54),(3991,1000000189,57),(3992,1000000189,55),(3993,1000000189,56),(3994,1000000189,107),(3995,1000000189,59),(3996,1000000189,58),(3997,1000000189,108),(3998,1000000189,69),(3999,1000000189,70),(4000,1000000189,79),(4001,1000000189,80),(4002,1000000189,83),(4003,1000000189,84),(4004,1000000189,85),(4005,1000000189,104),(4006,1000000189,105),(4007,1000000190,22),(4008,1000000190,21),(4009,1000000190,41),(4010,1000000190,106),(4011,1000000190,54),(4012,1000000190,57),(4013,1000000190,55),(4014,1000000190,56),(4015,1000000190,107),(4016,1000000190,59),(4017,1000000190,58),(4018,1000000190,108),(4019,1000000190,69),(4020,1000000190,70),(4021,1000000190,79),(4022,1000000190,80),(4023,1000000190,83),(4024,1000000190,84),(4025,1000000190,85),(4026,1000000190,104),(4027,1000000190,105),(4028,1000000191,22),(4029,1000000191,21),(4030,1000000191,41),(4031,1000000191,106),(4032,1000000191,54),(4033,1000000191,57),(4034,1000000191,55),(4035,1000000191,56),(4036,1000000191,107),(4037,1000000191,59),(4038,1000000191,58),(4039,1000000191,108),(4040,1000000191,69),(4041,1000000191,70),(4042,1000000191,79),(4043,1000000191,80),(4044,1000000191,83),(4045,1000000191,84),(4046,1000000191,85),(4047,1000000191,104),(4048,1000000191,105),(4090,1000000193,105),(4089,1000000193,104),(4088,1000000193,85),(4087,1000000193,84),(4086,1000000193,83),(4085,1000000193,80),(4084,1000000193,79),(4083,1000000193,70),(4082,1000000193,69),(4081,1000000193,108),(4080,1000000193,58),(4079,1000000193,59),(4078,1000000193,107),(4077,1000000193,56),(4076,1000000193,55),(4075,1000000193,57),(4074,1000000193,54),(4073,1000000193,106),(4072,1000000193,41),(4071,1000000193,21),(4070,1000000193,22);
/*!40000 ALTER TABLE `user_permission` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_permission_seq`
--

DROP TABLE IF EXISTS `user_permission_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `user_permission_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4344 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `user_permission_seq`
--

LOCK TABLES `user_permission_seq` WRITE;
/*!40000 ALTER TABLE `user_permission_seq` DISABLE KEYS */;
INSERT INTO `user_permission_seq` VALUES (4342);
/*!40000 ALTER TABLE `user_permission_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_preference`
--

DROP TABLE IF EXISTS `user_preference`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `user_preference` (
  `user_preference_id` int(11) NOT NULL default '0',
  `usr_id` int(11) NOT NULL default '0',
  `preference_id` int(11) NOT NULL default '0',
  `value` varchar(128) default NULL,
  PRIMARY KEY  (`user_preference_id`),
  KEY `usr_user_preference_fk` (`usr_id`),
  KEY `preference_user_preference_fk` (`preference_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `user_preference`
--

LOCK TABLES `user_preference` WRITE;
/*!40000 ALTER TABLE `user_preference` DISABLE KEYS */;
INSERT INTO `user_preference` VALUES (1438,1000000000,2,'Africa/Windhoek'),(1437,1000000000,8,'en_GB'),(1436,1000000000,1,'3600'),(1435,1000000000,5,'en-iso-8859-15'),(1434,1000000000,4,'UK'),(1433,1000000000,3,'default'),(320,1000000035,8,'en_GB'),(319,1000000035,7,'1'),(318,1000000035,6,'10'),(317,1000000035,5,'en-iso-8859-15'),(316,1000000035,4,'UK'),(315,1000000035,3,'default'),(314,1000000035,2,'UTC'),(313,1000000035,1,'1800'),(393,1000000045,1,'1800'),(394,1000000045,2,'UTC'),(395,1000000045,3,'default'),(396,1000000045,4,'UK'),(397,1000000045,5,'en-iso-8859-15'),(398,1000000045,6,'10'),(399,1000000045,7,'1'),(400,1000000045,8,'en_GB'),(425,1000000049,1,'1800'),(426,1000000049,2,'UTC'),(427,1000000049,3,'default'),(428,1000000049,4,'UK'),(429,1000000049,5,'en-iso-8859-15'),(430,1000000049,6,'10'),(431,1000000049,7,'1'),(432,1000000049,8,'en_GB'),(1768,1000000204,8,'en_GB'),(1767,1000000204,7,'1'),(1766,1000000204,6,'10'),(1765,1000000204,5,'en-iso-8859-15'),(1764,1000000204,4,'UK'),(1776,1000000205,8,'en_GB'),(1775,1000000205,7,'1'),(1774,1000000205,6,'10'),(1773,1000000205,5,'en-iso-8859-15'),(1772,1000000205,4,'UK'),(1771,1000000205,3,'default'),(1770,1000000205,2,'UTC'),(1769,1000000205,1,'1800'),(1752,1000000202,8,'en_GB'),(1751,1000000202,7,'1'),(1750,1000000202,6,'10'),(1749,1000000202,5,'en-iso-8859-15'),(1748,1000000202,4,'UK'),(1763,1000000204,3,'default'),(1762,1000000204,2,'UTC'),(1761,1000000204,1,'1800'),(1760,1000000203,8,'en_GB'),(1759,1000000203,7,'1'),(1758,1000000203,6,'10'),(1757,1000000203,5,'en-iso-8859-15'),(1756,1000000203,4,'UK'),(1755,1000000203,3,'default'),(1754,1000000203,2,'UTC'),(1753,1000000203,1,'1800'),(1747,1000000202,3,'default'),(1746,1000000202,2,'UTC'),(1745,1000000202,1,'1800'),(1744,1000000201,8,'en_GB'),(1743,1000000201,7,'1'),(1742,1000000201,6,'10'),(1741,1000000201,5,'en-iso-8859-15'),(1740,1000000201,4,'UK'),(1739,1000000201,3,'default'),(1738,1000000201,2,'UTC'),(1439,1000000000,6,'50'),(1440,1000000000,7,'1'),(1737,1000000201,1,'1800'),(1736,1000000200,8,'en_GB'),(1735,1000000200,7,'1'),(1734,1000000200,6,'10'),(1733,1000000200,5,'en-iso-8859-15'),(1732,1000000200,4,'UK'),(1731,1000000200,3,'default'),(1730,1000000200,2,'UTC'),(1729,1000000200,1,'1800'),(1728,1000000199,8,'en_GB'),(1727,1000000199,7,'1'),(1726,1000000199,6,'10'),(1725,1000000199,5,'en-iso-8859-15'),(1724,1000000199,4,'UK'),(1723,1000000199,3,'default'),(1722,1000000199,2,'UTC'),(1721,1000000199,1,'1800'),(1720,1000000198,8,'en_GB'),(1719,1000000198,7,'1'),(1718,1000000198,6,'10'),(1717,1000000198,5,'en-iso-8859-15'),(1716,1000000198,4,'UK'),(1715,1000000198,3,'default'),(1714,1000000198,2,'UTC'),(1713,1000000198,1,'1800'),(1712,1000000197,8,'en_GB'),(1711,1000000197,7,'1'),(1710,1000000197,6,'10'),(1709,1000000197,5,'en-iso-8859-15'),(1708,1000000197,4,'UK'),(1707,1000000197,3,'default'),(1706,1000000197,2,'UTC'),(1705,1000000197,1,'1800'),(1704,1000000196,8,'en_GB'),(1703,1000000196,7,'1'),(1702,1000000196,6,'10'),(1701,1000000196,5,'en-iso-8859-15'),(1700,1000000196,4,'UK'),(1699,1000000196,3,'default'),(1698,1000000196,2,'UTC'),(1697,1000000196,1,'1800'),(1696,1000000195,8,'en_GB'),(1505,1000000172,1,'1800'),(1506,1000000172,2,'UTC'),(1507,1000000172,3,'default'),(1508,1000000172,4,'UK'),(1509,1000000172,5,'en-iso-8859-15'),(1510,1000000172,6,'10'),(1511,1000000172,7,'1'),(1512,1000000172,8,'en_GB'),(1513,1000000173,1,'1800'),(1514,1000000173,2,'UTC'),(1515,1000000173,3,'default'),(1516,1000000173,4,'UK'),(1517,1000000173,5,'en-iso-8859-15'),(1518,1000000173,6,'10'),(1519,1000000173,7,'1'),(1520,1000000173,8,'en_GB'),(1695,1000000195,7,'1'),(1694,1000000195,6,'10'),(1693,1000000195,5,'en-iso-8859-15'),(1692,1000000195,4,'UK'),(1691,1000000195,3,'default'),(1690,1000000195,2,'UTC'),(1529,1000000175,1,'1800'),(1530,1000000175,2,'UTC'),(1531,1000000175,3,'default'),(1532,1000000175,4,'UK'),(1533,1000000175,5,'en-iso-8859-15'),(1534,1000000175,6,'10'),(1535,1000000175,7,'1'),(1536,1000000175,8,'en_GB'),(1689,1000000195,1,'1800'),(1688,1000000194,8,'en_GB'),(1687,1000000194,7,'1'),(1686,1000000194,6,'10'),(1685,1000000194,5,'en-iso-8859-15'),(1684,1000000194,4,'UK'),(1545,1000000177,1,'1800'),(1546,1000000177,2,'UTC'),(1547,1000000177,3,'default'),(1548,1000000177,4,'UK'),(1549,1000000177,5,'en-iso-8859-15'),(1550,1000000177,6,'10'),(1551,1000000177,7,'1'),(1552,1000000177,8,'en_GB'),(1553,1000000178,1,'1800'),(1554,1000000178,2,'UTC'),(1555,1000000178,3,'default'),(1556,1000000178,4,'UK'),(1557,1000000178,5,'en-iso-8859-15'),(1558,1000000178,6,'10'),(1559,1000000178,7,'1'),(1560,1000000178,8,'en_GB'),(1561,1000000179,1,'1800'),(1562,1000000179,2,'UTC'),(1563,1000000179,3,'default'),(1564,1000000179,4,'UK'),(1565,1000000179,5,'en-iso-8859-15'),(1566,1000000179,6,'10'),(1567,1000000179,7,'1'),(1568,1000000179,8,'en_GB'),(1569,1000000180,1,'1800'),(1570,1000000180,2,'UTC'),(1571,1000000180,3,'default'),(1572,1000000180,4,'UK'),(1573,1000000180,5,'en-iso-8859-15'),(1574,1000000180,6,'10'),(1575,1000000180,7,'1'),(1576,1000000180,8,'en_GB'),(1577,1000000181,1,'1800'),(1578,1000000181,2,'UTC'),(1579,1000000181,3,'default'),(1580,1000000181,4,'UK'),(1581,1000000181,5,'en-iso-8859-15'),(1582,1000000181,6,'10'),(1583,1000000181,7,'1'),(1584,1000000181,8,'en_GB'),(1683,1000000194,3,'default'),(1682,1000000194,2,'UTC'),(1681,1000000194,1,'1800'),(1680,1000000193,8,'en_GB'),(1679,1000000193,7,'1'),(1593,1000000183,1,'1800'),(1594,1000000183,2,'UTC'),(1595,1000000183,3,'default'),(1596,1000000183,4,'UK'),(1597,1000000183,5,'en-iso-8859-15'),(1598,1000000183,6,'10'),(1599,1000000183,7,'1'),(1600,1000000183,8,'en_GB'),(1601,1000000184,1,'1800'),(1602,1000000184,2,'UTC'),(1603,1000000184,3,'default'),(1604,1000000184,4,'UK'),(1605,1000000184,5,'en-iso-8859-15'),(1606,1000000184,6,'10'),(1607,1000000184,7,'1'),(1608,1000000184,8,'en_GB'),(1609,1000000185,1,'1800'),(1610,1000000185,2,'UTC'),(1611,1000000185,3,'default'),(1612,1000000185,4,'UK'),(1613,1000000185,5,'en-iso-8859-15'),(1614,1000000185,6,'10'),(1615,1000000185,7,'1'),(1616,1000000185,8,'en_GB'),(1617,1000000186,1,'1800'),(1618,1000000186,2,'UTC'),(1619,1000000186,3,'default'),(1620,1000000186,4,'UK'),(1621,1000000186,5,'en-iso-8859-15'),(1622,1000000186,6,'10'),(1623,1000000186,7,'1'),(1624,1000000186,8,'en_GB'),(1625,1000000187,1,'1800'),(1626,1000000187,2,'UTC'),(1627,1000000187,3,'default'),(1628,1000000187,4,'UK'),(1629,1000000187,5,'en-iso-8859-15'),(1630,1000000187,6,'10'),(1631,1000000187,7,'1'),(1632,1000000187,8,'en_GB'),(1633,1000000188,1,'1800'),(1634,1000000188,2,'UTC'),(1635,1000000188,3,'default'),(1636,1000000188,4,'UK'),(1637,1000000188,5,'en-iso-8859-15'),(1638,1000000188,6,'10'),(1639,1000000188,7,'1'),(1640,1000000188,8,'en_GB'),(1641,1000000189,1,'1800'),(1642,1000000189,2,'UTC'),(1643,1000000189,3,'default'),(1644,1000000189,4,'UK'),(1645,1000000189,5,'en-iso-8859-15'),(1646,1000000189,6,'10'),(1647,1000000189,7,'1'),(1648,1000000189,8,'en_GB'),(1649,1000000190,1,'1800'),(1650,1000000190,2,'UTC'),(1651,1000000190,3,'default'),(1652,1000000190,4,'UK'),(1653,1000000190,5,'en-iso-8859-15'),(1654,1000000190,6,'10'),(1655,1000000190,7,'1'),(1656,1000000190,8,'en_GB'),(1657,1000000191,1,'1800'),(1658,1000000191,2,'UTC'),(1659,1000000191,3,'default'),(1660,1000000191,4,'UK'),(1661,1000000191,5,'en-iso-8859-15'),(1662,1000000191,6,'10'),(1663,1000000191,7,'1'),(1664,1000000191,8,'en_GB'),(1678,1000000193,6,'10'),(1677,1000000193,5,'en-iso-8859-15'),(1676,1000000193,4,'UK'),(1675,1000000193,3,'default'),(1674,1000000193,2,'UTC'),(1673,1000000193,1,'1800');
/*!40000 ALTER TABLE `user_preference` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_preference_seq`
--

DROP TABLE IF EXISTS `user_preference_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `user_preference_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1778 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `user_preference_seq`
--

LOCK TABLES `user_preference_seq` WRITE;
/*!40000 ALTER TABLE `user_preference_seq` DISABLE KEYS */;
INSERT INTO `user_preference_seq` VALUES (1776);
/*!40000 ALTER TABLE `user_preference_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_session`
--

DROP TABLE IF EXISTS `user_session`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `user_session` (
  `session_id` varchar(255) NOT NULL default '',
  `last_updated` datetime default NULL,
  `data_value` text,
  `usr_id` int(11) NOT NULL default '0',
  `username` varchar(64) default NULL,
  `expiry` int(11) NOT NULL default '0',
  PRIMARY KEY  (`session_id`),
  KEY `last_updated` (`last_updated`),
  KEY `usr_id` (`usr_id`),
  KEY `username` (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `user_session`
--

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

--
-- Table structure for table `usr`
--

DROP TABLE IF EXISTS `usr`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `usr` (
  `usr_id` int(11) NOT NULL default '0',
  `organisation_id` int(11) default '0',
  `role_id` int(11) NOT NULL default '0',
  `username` varchar(64) default NULL,
  `passwd` varchar(32) default NULL,
  `first_name` varchar(128) default NULL,
  `last_name` varchar(128) default NULL,
  `telephone` varchar(16) default NULL,
  `mobile` varchar(16) default NULL,
  `email` varchar(128) default NULL,
  `addr_1` varchar(128) default NULL,
  `addr_2` varchar(128) default NULL,
  `addr_3` varchar(128) default NULL,
  `city` varchar(64) default NULL,
  `region` varchar(32) default NULL,
  `country` char(2) default NULL,
  `post_code` varchar(16) default NULL,
  `is_email_public` smallint(6) default NULL,
  `is_acct_active` smallint(6) default NULL,
  `is_activate_email` smallint(6) NOT NULL default '0',
  `security_question` smallint(6) default NULL,
  `security_answer` varchar(128) default NULL,
  `date_created` datetime default NULL,
  `date_expired` datetime NOT NULL default '0000-00-00 00:00:00',
  `created_by` int(11) default NULL,
  `last_updated` datetime default NULL,
  `updated_by` int(11) default NULL,
  PRIMARY KEY  (`usr_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `usr`
--

LOCK TABLES `usr` WRITE;
/*!40000 ALTER TABLE `usr` DISABLE KEYS */;
INSERT INTO `usr` VALUES (0,1,0,'nobody','21232f297a57a5a743894a0e4a801fc3','Nobody','Nobody','','','none@none.com','none','','','None','','GB','55555',0,0,0,1,'rover','2003-12-09 18:02:44','0000-00-00 00:00:00',1,'2004-06-10 11:07:27',1),(999999999,0,2,'demo@rvsitebuilder.com','fe01ce2a7fbac8fafaed7c982a04e229','demo','demo','','','demo@rvsitebuilder.com','demo','','','demo','','TH','00000',1,1,1,1,'demo','2006-11-08 14:56:45','2035-01-01 00:00:00',1,'2006-11-08 14:56:45',1),(1000000000,1,1,'Rudi@SoftDux.com','2f360fb4aea2ac2f287167b673b984ac','Rudi','Ahlers','0878059573','0825547532','Rudi@SoftDux.com','63 Club Street','Linksfield','','Johannesburg','','ZA','2192',0,1,1,4,'Naude','2007-04-04 13:20:29','0000-00-00 00:00:00',1,'2007-11-26 08:59:02',1000000000),(1000000205,1,2,'rudiahlers@gmail.com','23ad984cb955191bdb88f56b9c247265','Rudi','Ahlers','0878059573','0825547532','rudiahlers@gmail.com','63 Club Street','','','Linksfield','','ZA','2192',NULL,1,1,4,'Naude','2009-04-27 06:34:25','2009-05-27 06:34:25',NULL,'2009-04-27 06:34:25',NULL),(1000000204,1,2,'suzi@myofascialstretchtherapy.com','3098d26c3f69129b241e71d5769c0bb4','Suzi','Alderete','512-992-4934','512-992-4934','suzi@myofascialstretchtherapy.com','1208 Enfield Rd. #207','','','Austin','TX','US','78703',NULL,1,1,1,'Stymie','2009-04-26 22:15:00','2009-05-26 22:15:00',NULL,'2009-04-26 22:15:00',NULL),(1000000203,1,2,'suzi@mystretchtherapy.com','33f5ccb00b2acec0daea22acbe80c816','Suzi','Alderete','512-992-4934','','suzi@mystretchtherapy.com','1208 Enfield Rd. #207','','','Austin','TX','US','78703',NULL,1,1,1,'Stymie','2009-04-26 22:07:50','2009-05-26 22:07:50',NULL,'2009-04-26 22:07:50',NULL),(1000000202,1,2,'suzi@pilatesinthecity.net','d0d6a8bce8e262d79f1042f4d82785fa','Suzi','Alderete','512-992-4934','','suzi@pilatesinthecity.net','1208 Enfield Rd. #207','','','Austin','TX','US','78703',NULL,1,1,1,'Stymie','2009-04-26 22:07:20','2009-05-26 22:07:20',NULL,'2009-04-26 22:07:20',NULL),(1000000201,1,2,'jabulanijoe@gmail.com','e10adc3949ba59abbe56e057f20f883e','jabulani','joe','','','jabulanijoe@gmail.com','2 Kokerboom Street','Kuilsriver','Cape Town','Cape Town','','ZA','7580',NULL,NULL,0,1,'Kennis','2009-04-23 07:19:16','0000-00-00 00:00:00',NULL,'2009-04-23 07:19:16',NULL),(1000000200,1,2,'h.burger@live.com','e10adc3949ba59abbe56e057f20f883e','johannes','burger','','','h.burger@live.com','rosevillas number 4 adamtasstreet roodepoort 1724','','','roodepoort','','ZA','1724',NULL,NULL,0,1,'tammy','2009-04-17 09:44:04','0000-00-00 00:00:00',NULL,'2009-04-17 09:44:04',NULL),(1000000199,1,2,'trendzdesign@yahoo.com','303b225bf04fd983aab56d0586e658f3','','','','','trendzdesign@yahoo.com','15 Murfield','Greenside','','Johannesburg','','ZA','2058',NULL,1,1,4,'Grobler','2009-04-15 17:59:00','2009-05-15 17:59:00',NULL,'2009-04-15 17:59:00',NULL),(1000000198,1,2,'lakhoni22@yahoo.com','e10adc3949ba59abbe56e057f20f883e','nokulunga','khuzwayo','0315039663','0738501700','lakhoni22@yahoo.com','d1221 mpofu road, kwa mashu','','','durban','AL','ZA','4359',NULL,NULL,0,4,'sarah','2009-04-15 08:54:27','0000-00-00 00:00:00',NULL,'2009-04-15 08:54:27',NULL),(1000000172,1,2,'clement.khoza@sita.co.za','baa93376f1b694c26c10b39b8df207da','','','','','clement.khoza@sita.co.za','Jacob Mare','','','Pretoria','','ZA','0001',NULL,1,1,3,'Laughing corner','2009-03-03 12:14:24','2009-04-02 12:14:24',NULL,'2009-03-03 12:14:24',NULL),(1000000173,1,2,'Hiram.Arendse@uct.ac.za','2cbfe2448a5965cd7b5114c6fcfb066c','Hiram','Arendse','','','Hiram.Arendse@uct.ac.za','vsdhvc','','','Cape Town','NY','US','10001',NULL,1,1,3,'doggy','2009-03-05 14:14:52','2009-04-04 14:14:52',NULL,'2009-03-05 14:14:52',NULL),(1000000197,1,2,'naki_carrabregi@hotmail.com','e10adc3949ba59abbe56e057f20f883e','demhasaj','veton','00436769515711','00436769515711','naki_carrabregi@hotmail.com','Radiodeqani','','','wien','','AT','1180 wien',NULL,NULL,0,1,'veton','2009-04-13 15:14:21','0000-00-00 00:00:00',NULL,'2009-04-13 15:14:21',NULL),(1000000175,1,2,'moeketsi213@gmail.com','4ba7d39febb08ab9aaee6f96ed632250','Moeketsi','Mbele','','0783057364','moeketsi213@gmail.com','27 Vaalbos street,Mayberry park','27 Vaalbo street, Mayberry park','27Vaalbos street, mayberry park','Johannesburg','','ZA','1448',NULL,1,1,3,'heaven','2009-03-09 10:07:27','2009-04-08 10:07:27',NULL,'2009-03-09 10:07:27',NULL),(1000000195,1,2,'natomb1@gmail.com','8db7e28e67e9fe2fc3d1d9eea5b07b55','Ombeni','Katige','031 36 82241','083 6892 817','natomb1@gmail.com','74 bays water','5 pickering street','','Durban','','ZA','4001',NULL,1,1,4,'adela','2009-04-10 12:18:45','2009-05-10 12:18:45',NULL,'2009-04-10 12:18:45',NULL),(1000000177,1,2,'amylu01@gmail.com','33804941da0192f9a33461758f0dc9f6','','','','','amylu01@gmail.com','danielle','','','glen waverley','','AU','3150',NULL,1,1,2,'02/03/2001','2009-03-11 06:37:47','2009-04-10 06:37:47',NULL,'2009-03-11 06:37:47',NULL),(1000000178,1,2,'dfr-softdux@enric.net','aa4f14beb68c053681e889105eced77f','','','','','dfr-softdux@enric.net','14525 SW Millikan #50645','','','Beaverton','OR','US','97005-2343',NULL,1,1,1,'Bubba','2009-03-11 12:47:20','2009-04-10 12:47:20',NULL,'2009-03-11 12:47:20',NULL),(1000000179,1,2,'teffu@webmail.co.za','414b0f1abab9a3b61ae1cb5a004da619','Matsemane','Teffu','0125469733','0843920130','teffu@webmail.co.za','2719 block L Soshanguve 0152','','','Pretoria','SD','ZA','0152',NULL,1,1,1,'punny','2009-03-11 13:23:56','2009-04-10 13:23:56',NULL,'2009-03-11 13:23:56',NULL),(1000000180,1,2,'jophi81@gmail.com','4c3444fc43d283625a2007dc487ae8fe','Jonathan','Phiri','','','jophi81@gmail.com','Route 21 Corporate Park','27 Regency Drive','Irene','Pretoria','','ZA','0174',NULL,1,1,1,'Dog','2009-03-13 16:37:43','2009-04-12 16:37:43',NULL,'2009-03-13 16:37:43',NULL),(1000000181,1,2,'sirajdnn@yahoo.co.in','5dd8dded1aa094156c998199ae59a8ed','siraj','shaik','0096633576496','','sirajdnn@yahoo.co.in','al-jubail','','','aljubail','','SA','31961',NULL,1,1,1,'nhanna','2009-03-13 19:26:38','2009-04-12 19:26:38',NULL,'2009-03-13 19:26:38',NULL),(1000000196,1,2,'deqanasi_wien@hotmail.com','e10adc3949ba59abbe56e057f20f883e','demhasaj','veton','','00436769515711','deqanasi_wien@hotmail.com','staudgasse','','','wien','','AT','1180',NULL,NULL,0,1,'radiomiloti','2009-04-13 03:21:29','0000-00-00 00:00:00',NULL,'2009-04-13 03:21:29',NULL),(1000000183,1,2,'gtebza@gmail.com','dbfa1bc3e9fee9318474e2c63cb93397','tebogo','gaotshabege','72762650','72672650','gtebza@gmail.com','p bag x014','','','gaborone','','BW','267',NULL,1,1,6,'rasta','2009-03-16 06:58:50','2009-04-15 06:58:50',NULL,'2009-03-16 06:58:50',NULL),(1000000184,1,2,'nicvanderwesthuizen@gmail.com','013a9ef09a931ccaf2217916169beae2','','','','','nicvanderwesthuizen@gmail.com','1 street','','','Pretoria','','ZA','0176',NULL,1,1,1,'Bambi','2009-03-17 12:20:17','2009-04-16 12:20:17',NULL,'2009-03-17 12:20:17',NULL),(1000000185,1,2,'childabandoned@gmail.com','f243346a0d243606762ddfe88344b1a7','ABANDONED','CHILD','0027[0]215527148','0027[0]746909630','childabandoned@gmail.com','15 BREMER STREET','TYGERHOF-EST','MILNERTON','CAPE TOWN','','ZA','7441',NULL,1,1,1,'MUM','2009-03-19 08:54:40','2009-04-18 08:54:40',NULL,'2009-03-19 08:54:40',NULL),(1000000186,1,2,'jmoorsen@gmail.com','d2cc0eb176d845ec506bed3a7311200a','','','','','jmoorsen@gmail.com','Private','','','Gauteng','','ZA','12345',NULL,1,1,1,'Diesel','2009-03-22 11:10:32','2009-04-21 11:10:32',NULL,'2009-03-22 11:10:32',NULL),(1000000187,1,2,'aranha.com@gmail.com','117c3593634c9a2e285d1b1278723707','Alex','aranha','','','aranha.com@gmail.com','Jovelino','','','POA','NY','BR','90201000',NULL,1,1,1,'spider','2009-03-23 23:58:00','2009-04-22 23:58:00',NULL,'2009-03-23 23:58:00',NULL),(1000000188,1,2,'raul_castillo@earthlink.net','aac32662d9e7d85b59885fb18adc97d6','raul','calderon castillo','3036413281','','raul_castillo@earthlink.net','7679 S Steele St.','','','Centennial','CO','US','80122',NULL,1,1,7,'bahama mama','2009-03-24 01:20:17','2009-04-23 01:20:17',NULL,'2009-03-24 01:20:17',NULL),(1000000189,1,2,'wesleymoses@yahoo.com','d41e98d1eafa6d6011d3a70f1a5b92f0','Wesley','Moses','0116981000','0788018806','wesleymoses@yahoo.com','PO Box 10023','','','Johannesburg','','ZA','2007',NULL,1,1,4,'Ford','2009-03-27 12:19:31','2009-04-26 12:19:31',NULL,'2009-03-27 12:19:31',NULL),(1000000190,1,2,'roddyt3@gmail.com','7b8ce0bcc973ff26d556650bba7400b6','','','','','roddyt3@gmail.com','7 Grand Canyon Way','','','CapeTown','','ZA','8000',NULL,1,1,1,'Sasha','2009-03-29 09:58:28','2009-04-28 09:58:28',NULL,'2009-03-29 09:58:28',NULL),(1000000191,1,2,'chenegous@gmail.com','69535fb0f61e52b2c66273db5ae46f10','Geeny','','','','chenegous@gmail.com','22 Ursula street','Glenvista','','Johannesburg','','ZA','2058',0,1,1,1,'Peppie','2009-03-31 03:12:48','2009-04-30 03:12:48',NULL,'2009-03-31 07:24:05',NULL),(1000000193,1,2,'BASHMOR@GMAIL.COM','1cc18992b1e7c1e42df6a39994ae4b36','BASHI','MOMPATI','','+267 73336262','BASHMOR@GMAIL.COM','PO BOX 4241','','','GABORONE','','BW','00000',NULL,1,1,4,'MOMPATI','2009-04-03 06:20:24','2009-05-03 06:20:24',NULL,'2009-04-03 06:20:24',NULL),(1000000194,1,2,'lizo.ntlabati@vodamail.co.za','d6df5e98f342d84181b31249810dfb4c','Lizo','Ntlabati','+27116693922','+27767766271','lizo.ntlabati@vodamail.co.za','80 Louise Way','Kelvin','Sandton','Johannesburg','','ZA','2090',NULL,1,1,1,'Browney','2009-04-03 16:08:15','2009-05-03 16:08:15',NULL,'2009-04-03 16:08:15',NULL);
/*!40000 ALTER TABLE `usr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usr_seq`
--

DROP TABLE IF EXISTS `usr_seq`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `usr_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1000000207 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `usr_seq`
--

LOCK TABLES `usr_seq` WRITE;
/*!40000 ALTER TABLE `usr_seq` DISABLE KEYS */;
INSERT INTO `usr_seq` VALUES (1000000205);
/*!40000 ALTER TABLE `usr_seq` 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-27  7:16:38
