-- MySQL dump 10.11
--
-- Host: localhost    Database: damidgr8_smf1
-- ------------------------------------------------------
-- Server version	5.0.51a-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 */;

--
-- Table structure for table `smf_ads`
--

DROP TABLE IF EXISTS `smf_ads`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_ads` (
  `ADS_ID` mediumint(8) unsigned NOT NULL auto_increment,
  `NAME` tinytext NOT NULL,
  `CONTENT` text NOT NULL,
  `BOARDS` tinytext,
  `POSTS` tinytext,
  `CATEGORY` tinytext,
  `HITS` mediumint(8) NOT NULL default '0',
  `TYPE` smallint(4) NOT NULL default '0',
  `show_index` smallint(4) NOT NULL default '0',
  `show_board` smallint(4) NOT NULL default '0',
  `show_threadindex` smallint(4) NOT NULL default '0',
  `show_lastpost` smallint(4) NOT NULL default '0',
  `show_thread` smallint(4) NOT NULL default '0',
  `show_bottom` smallint(4) NOT NULL default '0',
  `show_welcome` smallint(4) NOT NULL default '0',
  `show_topofpage` smallint(4) NOT NULL default '0',
  `show_towerright` smallint(4) NOT NULL default '0',
  `show_towerleft` smallint(4) NOT NULL default '0',
  `show_betweencategories` smallint(4) NOT NULL default '0',
  `show_underchildren` smallint(4) NOT NULL default '0',
  PRIMARY KEY  (`ADS_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_ads`
--

LOCK TABLES `smf_ads` WRITE;
/*!40000 ALTER TABLE `smf_ads` DISABLE KEYS */;
INSERT INTO `smf_ads` (`ADS_ID`, `NAME`, `CONTENT`, `BOARDS`, `POSTS`, `CATEGORY`, `HITS`, `TYPE`, `show_index`, `show_board`, `show_threadindex`, `show_lastpost`, `show_thread`, `show_bottom`, `show_welcome`, `show_topofpage`, `show_towerright`, `show_towerleft`, `show_betweencategories`, `show_underchildren`) VALUES (1,'google adsense search','<script type=\\\"text/javascript\\\"><!--\r\ngoogle_ad_client = \\\"pub-2650770982785170\\\";\r\n/* 728x90, created 10/9/08 */\r\ngoogle_ad_slot = \\\"4433311716\\\";\r\ngoogle_ad_width = 728;\r\ngoogle_ad_height = 90;\r\n//-->\r\n</script>\r\n<script type=\\\"text/javascript\\\"\r\nsrc=\\\"http://pagead2.googlesyndication.com/pagead/show_ads.js\\\">\r\n</script>','scream your dream!, emotional, ','','introduction,personal development',57,0,0,1,1,0,0,1,0,1,0,0,0,1),(2,'google adsense horizontal','<script type=\\\"text/javascript\\\"><!--\r\ngoogle_ad_client = \\\"pub-2650770982785170\\\";\r\n/* 728x90, created 10/9/08 */\r\ngoogle_ad_slot = \\\"4433311716\\\";\r\ngoogle_ad_width = 728;\r\ngoogle_ad_height = 90;\r\n//-->\r\n</script>\r\n<script type=\\\"text/javascript\\\"\r\nsrc=\\\"http://pagead2.googlesyndication.com/pagead/show_ads.js\\\">\r\n</script>','','1,2','1,2,3,4,5,6,7',87,0,1,1,1,0,1,1,0,1,0,0,0,1);
/*!40000 ALTER TABLE `smf_ads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_ads_settings`
--

DROP TABLE IF EXISTS `smf_ads_settings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_ads_settings` (
  `variable` tinytext NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY  (`variable`(30))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_ads_settings`
--

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

--
-- Table structure for table `smf_attachments`
--

DROP TABLE IF EXISTS `smf_attachments`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_attachments` (
  `ID_ATTACH` int(10) unsigned NOT NULL auto_increment,
  `ID_THUMB` int(10) unsigned NOT NULL default '0',
  `ID_MSG` int(10) unsigned NOT NULL default '0',
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `attachmentType` tinyint(3) unsigned NOT NULL default '0',
  `filename` tinytext NOT NULL,
  `size` int(10) unsigned NOT NULL default '0',
  `downloads` mediumint(8) unsigned NOT NULL default '0',
  `width` mediumint(8) unsigned NOT NULL default '0',
  `height` mediumint(8) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_ATTACH`),
  UNIQUE KEY `ID_MEMBER` (`ID_MEMBER`,`ID_ATTACH`),
  KEY `ID_MSG` (`ID_MSG`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_attachments`
--

LOCK TABLES `smf_attachments` WRITE;
/*!40000 ALTER TABLE `smf_attachments` DISABLE KEYS */;
INSERT INTO `smf_attachments` (`ID_ATTACH`, `ID_THUMB`, `ID_MSG`, `ID_MEMBER`, `attachmentType`, `filename`, `size`, `downloads`, `width`, `height`) VALUES (5,0,0,4,0,'avatar_4.png',7793,50,65,48),(2,0,0,1,0,'avatar_1.png',6436,198,43,65),(3,0,0,5,0,'avatar_5.png',7793,29,53,65),(4,0,0,10,0,'avatar_10.png',7521,62,48,65),(6,0,0,15,0,'avatar_15.png',8520,4,65,48);
/*!40000 ALTER TABLE `smf_attachments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_ban_groups`
--

DROP TABLE IF EXISTS `smf_ban_groups`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_ban_groups` (
  `ID_BAN_GROUP` mediumint(8) unsigned NOT NULL auto_increment,
  `name` varchar(20) NOT NULL default '',
  `ban_time` int(10) unsigned NOT NULL default '0',
  `expire_time` int(10) unsigned default NULL,
  `cannot_access` tinyint(3) unsigned NOT NULL default '0',
  `cannot_register` tinyint(3) unsigned NOT NULL default '0',
  `cannot_post` tinyint(3) unsigned NOT NULL default '0',
  `cannot_login` tinyint(3) unsigned NOT NULL default '0',
  `reason` tinytext NOT NULL,
  `notes` text NOT NULL,
  PRIMARY KEY  (`ID_BAN_GROUP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_ban_groups`
--

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

--
-- Table structure for table `smf_ban_items`
--

DROP TABLE IF EXISTS `smf_ban_items`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_ban_items` (
  `ID_BAN` mediumint(8) unsigned NOT NULL auto_increment,
  `ID_BAN_GROUP` smallint(5) unsigned NOT NULL default '0',
  `ip_low1` tinyint(3) unsigned NOT NULL default '0',
  `ip_high1` tinyint(3) unsigned NOT NULL default '0',
  `ip_low2` tinyint(3) unsigned NOT NULL default '0',
  `ip_high2` tinyint(3) unsigned NOT NULL default '0',
  `ip_low3` tinyint(3) unsigned NOT NULL default '0',
  `ip_high3` tinyint(3) unsigned NOT NULL default '0',
  `ip_low4` tinyint(3) unsigned NOT NULL default '0',
  `ip_high4` tinyint(3) unsigned NOT NULL default '0',
  `hostname` tinytext NOT NULL,
  `email_address` tinytext NOT NULL,
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `hits` mediumint(8) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_BAN`),
  KEY `ID_BAN_GROUP` (`ID_BAN_GROUP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_ban_items`
--

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

--
-- Table structure for table `smf_board_permissions`
--

DROP TABLE IF EXISTS `smf_board_permissions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_board_permissions` (
  `ID_GROUP` smallint(5) NOT NULL default '0',
  `ID_BOARD` smallint(5) unsigned NOT NULL default '0',
  `permission` varchar(30) NOT NULL default '',
  `addDeny` tinyint(4) NOT NULL default '1',
  PRIMARY KEY  (`ID_GROUP`,`ID_BOARD`,`permission`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_board_permissions`
--

LOCK TABLES `smf_board_permissions` WRITE;
/*!40000 ALTER TABLE `smf_board_permissions` DISABLE KEYS */;
INSERT INTO `smf_board_permissions` (`ID_GROUP`, `ID_BOARD`, `permission`, `addDeny`) VALUES (-1,0,'poll_view',1),(0,0,'remove_own',1),(0,0,'lock_own',1),(0,0,'mark_any_notify',1),(0,0,'mark_notify',1),(0,0,'modify_own',1),(0,0,'poll_add_own',1),(0,0,'poll_edit_own',1),(0,0,'poll_lock_own',1),(0,0,'poll_post',1),(0,0,'poll_view',1),(0,0,'poll_vote',1),(0,0,'post_attachment',1),(0,0,'post_new',1),(0,0,'post_reply_any',1),(0,0,'post_reply_own',1),(0,0,'delete_own',1),(0,0,'report_any',1),(0,0,'send_topic',1),(0,0,'view_attachments',1),(2,0,'moderate_board',1),(2,0,'post_new',1),(2,0,'post_reply_own',1),(2,0,'post_reply_any',1),(2,0,'poll_post',1),(2,0,'poll_add_any',1),(2,0,'poll_remove_any',1),(2,0,'poll_view',1),(2,0,'poll_vote',1),(2,0,'poll_edit_any',1),(2,0,'report_any',1),(2,0,'lock_own',1),(2,0,'send_topic',1),(2,0,'mark_any_notify',1),(2,0,'mark_notify',1),(2,0,'delete_own',1),(2,0,'modify_own',1),(2,0,'make_sticky',1),(2,0,'lock_any',1),(2,0,'remove_any',1),(2,0,'move_any',1),(2,0,'merge_any',1),(2,0,'split_any',1),(2,0,'delete_any',1),(2,0,'modify_any',1),(3,0,'moderate_board',1),(3,0,'post_new',1),(3,0,'post_reply_own',1),(3,0,'post_reply_any',1),(3,0,'poll_post',1),(3,0,'poll_add_own',1),(3,0,'poll_remove_any',1),(3,0,'poll_view',1),(3,0,'poll_vote',1),(3,0,'report_any',1),(3,0,'lock_own',1),(3,0,'send_topic',1),(3,0,'mark_any_notify',1),(3,0,'mark_notify',1),(3,0,'delete_own',1),(3,0,'modify_own',1),(3,0,'make_sticky',1),(3,0,'lock_any',1),(3,0,'remove_any',1),(3,0,'move_any',1),(3,0,'merge_any',1),(3,0,'split_any',1),(3,0,'delete_any',1),(3,0,'modify_any',1);
/*!40000 ALTER TABLE `smf_board_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_boards`
--

DROP TABLE IF EXISTS `smf_boards`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_boards` (
  `ID_BOARD` smallint(5) unsigned NOT NULL auto_increment,
  `ID_CAT` tinyint(4) unsigned NOT NULL default '0',
  `childLevel` tinyint(4) unsigned NOT NULL default '0',
  `ID_PARENT` smallint(5) unsigned NOT NULL default '0',
  `boardOrder` smallint(5) NOT NULL default '0',
  `ID_LAST_MSG` int(10) unsigned NOT NULL default '0',
  `ID_MSG_UPDATED` int(10) unsigned NOT NULL default '0',
  `memberGroups` varchar(255) NOT NULL default '-1,0',
  `name` tinytext NOT NULL,
  `description` text NOT NULL,
  `numTopics` mediumint(8) unsigned NOT NULL default '0',
  `numPosts` mediumint(8) unsigned NOT NULL default '0',
  `countPosts` tinyint(4) NOT NULL default '0',
  `ID_THEME` tinyint(4) unsigned NOT NULL default '0',
  `permission_mode` tinyint(4) unsigned NOT NULL default '0',
  `override_theme` tinyint(4) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_BOARD`),
  UNIQUE KEY `categories` (`ID_CAT`,`ID_BOARD`),
  KEY `ID_PARENT` (`ID_PARENT`),
  KEY `ID_MSG_UPDATED` (`ID_MSG_UPDATED`),
  KEY `memberGroups` (`memberGroups`(48))
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_boards`
--

LOCK TABLES `smf_boards` WRITE;
/*!40000 ALTER TABLE `smf_boards` DISABLE KEYS */;
INSERT INTO `smf_boards` (`ID_BOARD`, `ID_CAT`, `childLevel`, `ID_PARENT`, `boardOrder`, `ID_LAST_MSG`, `ID_MSG_UPDATED`, `memberGroups`, `name`, `description`, `numTopics`, `numPosts`, `countPosts`, `ID_THEME`, `permission_mode`, `override_theme`) VALUES (5,2,0,0,1,59,59,'-1,0,2','First things first.','Introduce yourself,tell us why you are here and meet other dreamers.',4,14,0,0,0,0),(3,1,0,0,2,44,44,'-1,0,2','Scream your dream!','Share your dreams and ideas no matter how unachievable they may seem.Let your imagination soar.',3,13,0,0,0,0),(2,1,0,0,3,61,61,'-1,0,2','Spirituality','talk about God, faith, hope, morals and eternity. ',4,11,0,0,0,0),(4,1,0,0,4,58,58,'-1,0,2','Emotional','discuss issues that pertain to emotional intelligence,addictions,rehabilitation,fear,anxiety,depression,doubt,worry,forgiveness',4,15,0,0,0,0),(6,1,0,0,5,31,31,'-1,0,2','Mental','Develop the right mindset to fulfill your dreams.Improve your intelligence Quotient and memory.Become a master strategist.Release the genius in you.Achieve remarkable results in your academics.',1,2,0,0,0,0),(7,1,0,0,6,47,47,'-1,0,2','Physical','Learn how to build the body you need to fulfill your dreams.Talk about health,fitness,diet,exercise,sports,health habits, healing,aging,long life and medicine.',1,1,0,0,0,0),(8,1,0,0,7,40,40,'-1,0,2','Financial','Become a financial giant.Create wealth and attract riches.Talk about business,enterpreneurship,sales,marketing,savings,investments,loans,internet marketing,business opportunities,debt maagement.',1,2,0,0,0,0),(9,1,0,0,8,60,60,'-1,0,2','Social','Master the art of building strong networks with other dreamers and trailblazers.Develop social skills and manners.Invest in mutually beneficial friendships.Discuss family, marriage and courtship.',1,1,0,0,0,0),(10,3,0,0,9,0,0,'-1,0,2','Profession and career','Discuss work ethic,employer-employee relationship,productivity,promotion and other office issues.',0,0,0,0,0,0),(12,7,0,0,10,0,0,'-1,0,2','Adverts and Announcements','Tell other dreamers what you are doing with your dreams.Announce your services, products and events only on this board of the forum.',0,0,0,0,0,0),(14,7,0,0,11,0,0,'-1,0,2','Feed your dreams','Discuss programs and products that have encouraged, enlightened and empowered you.Recommend resources-books,CDS,VCDs,DVDS that will help other dreamers.',0,0,0,0,0,0),(11,6,0,0,12,0,0,'-1,0,2','Dreams come true','Refresh other dreamers with success stories.Share true life experiences of your dreams that have come true.',0,0,0,0,0,0),(13,6,0,0,13,0,0,'-1,0,2','Dreamers hall of fame','tell the stories of men and women who paid the price to achieve their dreams.',0,0,0,0,0,0);
/*!40000 ALTER TABLE `smf_boards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_calendar`
--

DROP TABLE IF EXISTS `smf_calendar`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_calendar` (
  `ID_EVENT` smallint(5) unsigned NOT NULL auto_increment,
  `startDate` date NOT NULL default '0001-01-01',
  `endDate` date NOT NULL default '0001-01-01',
  `ID_BOARD` smallint(5) unsigned NOT NULL default '0',
  `ID_TOPIC` mediumint(8) unsigned NOT NULL default '0',
  `title` varchar(48) NOT NULL default '',
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_EVENT`),
  KEY `startDate` (`startDate`),
  KEY `endDate` (`endDate`),
  KEY `topic` (`ID_TOPIC`,`ID_MEMBER`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_calendar`
--

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

--
-- Table structure for table `smf_calendar_holidays`
--

DROP TABLE IF EXISTS `smf_calendar_holidays`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_calendar_holidays` (
  `ID_HOLIDAY` smallint(5) unsigned NOT NULL auto_increment,
  `eventDate` date NOT NULL default '0001-01-01',
  `title` varchar(30) NOT NULL default '',
  PRIMARY KEY  (`ID_HOLIDAY`),
  KEY `eventDate` (`eventDate`)
) ENGINE=MyISAM AUTO_INCREMENT=168 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_calendar_holidays`
--

LOCK TABLES `smf_calendar_holidays` WRITE;
/*!40000 ALTER TABLE `smf_calendar_holidays` DISABLE KEYS */;
INSERT INTO `smf_calendar_holidays` (`ID_HOLIDAY`, `eventDate`, `title`) VALUES (1,'0004-01-01','New Year\'s'),(2,'0004-12-25','Christmas'),(3,'0004-02-14','Valentine\'s Day'),(4,'0004-03-17','St. Patrick\'s Day'),(5,'0004-04-01','April Fools'),(6,'0004-04-22','Earth Day'),(7,'0004-10-24','United Nations Day'),(8,'0004-10-31','Halloween'),(9,'2004-05-09','Mother\'s Day'),(10,'2005-05-08','Mother\'s Day'),(11,'2006-05-14','Mother\'s Day'),(12,'2007-05-13','Mother\'s Day'),(13,'2008-05-11','Mother\'s Day'),(14,'2009-05-10','Mother\'s Day'),(15,'2010-05-09','Mother\'s Day'),(16,'2011-05-08','Mother\'s Day'),(17,'2012-05-13','Mother\'s Day'),(18,'2013-05-12','Mother\'s Day'),(19,'2014-05-11','Mother\'s Day'),(20,'2015-05-10','Mother\'s Day'),(21,'2016-05-08','Mother\'s Day'),(22,'2017-05-14','Mother\'s Day'),(23,'2018-05-13','Mother\'s Day'),(24,'2019-05-12','Mother\'s Day'),(25,'2020-05-10','Mother\'s Day'),(26,'2004-06-20','Father\'s Day'),(27,'2005-06-19','Father\'s Day'),(28,'2006-06-18','Father\'s Day'),(29,'2007-06-17','Father\'s Day'),(30,'2008-06-15','Father\'s Day'),(31,'2009-06-21','Father\'s Day'),(32,'2010-06-20','Father\'s Day'),(33,'2011-06-19','Father\'s Day'),(34,'2012-06-17','Father\'s Day'),(35,'2013-06-16','Father\'s Day'),(36,'2014-06-15','Father\'s Day'),(37,'2015-06-21','Father\'s Day'),(38,'2016-06-19','Father\'s Day'),(39,'2017-06-18','Father\'s Day'),(40,'2018-06-17','Father\'s Day'),(41,'2019-06-16','Father\'s Day'),(42,'2020-06-21','Father\'s Day'),(43,'2004-06-20','Summer Solstice'),(44,'2005-06-20','Summer Solstice'),(45,'2006-06-21','Summer Solstice'),(46,'2007-06-21','Summer Solstice'),(47,'2008-06-20','Summer Solstice'),(48,'2009-06-20','Summer Solstice'),(49,'2010-06-21','Summer Solstice'),(50,'2011-06-21','Summer Solstice'),(51,'2012-06-20','Summer Solstice'),(52,'2013-06-21','Summer Solstice'),(53,'2014-06-21','Summer Solstice'),(54,'2015-06-21','Summer Solstice'),(55,'2016-06-20','Summer Solstice'),(56,'2017-06-20','Summer Solstice'),(57,'2018-06-21','Summer Solstice'),(58,'2019-06-21','Summer Solstice'),(59,'2020-06-20','Summer Solstice'),(60,'2004-03-19','Vernal Equinox'),(61,'2005-03-20','Vernal Equinox'),(62,'2006-03-20','Vernal Equinox'),(63,'2007-03-20','Vernal Equinox'),(64,'2008-03-19','Vernal Equinox'),(65,'2009-03-20','Vernal Equinox'),(66,'2010-03-20','Vernal Equinox'),(67,'2011-03-20','Vernal Equinox'),(68,'2012-03-20','Vernal Equinox'),(69,'2013-03-20','Vernal Equinox'),(70,'2014-03-20','Vernal Equinox'),(71,'2015-03-20','Vernal Equinox'),(72,'2016-03-19','Vernal Equinox'),(73,'2017-03-20','Vernal Equinox'),(74,'2018-03-20','Vernal Equinox'),(75,'2019-03-20','Vernal Equinox'),(76,'2020-03-19','Vernal Equinox'),(77,'2004-12-21','Winter Solstice'),(78,'2005-12-21','Winter Solstice'),(79,'2006-12-22','Winter Solstice'),(80,'2007-12-22','Winter Solstice'),(81,'2008-12-21','Winter Solstice'),(82,'2009-12-21','Winter Solstice'),(83,'2010-12-21','Winter Solstice'),(84,'2011-12-22','Winter Solstice'),(85,'2012-12-21','Winter Solstice'),(86,'2013-12-21','Winter Solstice'),(87,'2014-12-21','Winter Solstice'),(88,'2015-12-21','Winter Solstice'),(89,'2016-12-21','Winter Solstice'),(90,'2017-12-21','Winter Solstice'),(91,'2018-12-21','Winter Solstice'),(92,'2019-12-21','Winter Solstice'),(93,'2020-12-21','Winter Solstice'),(94,'2004-09-22','Autumnal Equinox'),(95,'2005-09-22','Autumnal Equinox'),(96,'2006-09-22','Autumnal Equinox'),(97,'2007-09-23','Autumnal Equinox'),(98,'2008-09-22','Autumnal Equinox'),(99,'2009-09-22','Autumnal Equinox'),(100,'2010-09-22','Autumnal Equinox'),(101,'2011-09-23','Autumnal Equinox'),(102,'2012-09-22','Autumnal Equinox'),(103,'2013-09-22','Autumnal Equinox'),(104,'2014-09-22','Autumnal Equinox'),(105,'2015-09-23','Autumnal Equinox'),(106,'2016-09-22','Autumnal Equinox'),(107,'2017-09-22','Autumnal Equinox'),(108,'2018-09-22','Autumnal Equinox'),(109,'2019-09-23','Autumnal Equinox'),(110,'2020-09-22','Autumnal Equinox'),(111,'0004-07-04','Independence Day'),(112,'0004-05-05','Cinco de Mayo'),(113,'0004-06-14','Flag Day'),(114,'0004-11-11','Veterans Day'),(115,'0004-02-02','Groundhog Day'),(116,'2004-11-25','Thanksgiving'),(117,'2005-11-24','Thanksgiving'),(118,'2006-11-23','Thanksgiving'),(119,'2007-11-22','Thanksgiving'),(120,'2008-11-27','Thanksgiving'),(121,'2009-11-26','Thanksgiving'),(122,'2010-11-25','Thanksgiving'),(123,'2011-11-24','Thanksgiving'),(124,'2012-11-22','Thanksgiving'),(125,'2013-11-21','Thanksgiving'),(126,'2014-11-20','Thanksgiving'),(127,'2015-11-26','Thanksgiving'),(128,'2016-11-24','Thanksgiving'),(129,'2017-11-23','Thanksgiving'),(130,'2018-11-22','Thanksgiving'),(131,'2019-11-21','Thanksgiving'),(132,'2020-11-26','Thanksgiving'),(133,'2004-05-31','Memorial Day'),(134,'2005-05-30','Memorial Day'),(135,'2006-05-29','Memorial Day'),(136,'2007-05-28','Memorial Day'),(137,'2008-05-26','Memorial Day'),(138,'2009-05-25','Memorial Day'),(139,'2010-05-31','Memorial Day'),(140,'2011-05-30','Memorial Day'),(141,'2012-05-28','Memorial Day'),(142,'2013-05-27','Memorial Day'),(143,'2014-05-26','Memorial Day'),(144,'2015-05-25','Memorial Day'),(145,'2016-05-30','Memorial Day'),(146,'2017-05-29','Memorial Day'),(147,'2018-05-28','Memorial Day'),(148,'2019-05-27','Memorial Day'),(149,'2020-05-25','Memorial Day'),(150,'2004-09-06','Labor Day'),(151,'2005-09-05','Labor Day'),(152,'2006-09-04','Labor Day'),(153,'2007-09-03','Labor Day'),(154,'2008-09-01','Labor Day'),(155,'2009-09-07','Labor Day'),(156,'2010-09-06','Labor Day'),(157,'2011-09-05','Labor Day'),(158,'2012-09-03','Labor Day'),(159,'2013-09-09','Labor Day'),(160,'2014-09-08','Labor Day'),(161,'2015-09-07','Labor Day'),(162,'2016-09-05','Labor Day'),(163,'2017-09-04','Labor Day'),(164,'2018-09-03','Labor Day'),(165,'2019-09-09','Labor Day'),(166,'2020-09-07','Labor Day'),(167,'0004-06-06','D-Day');
/*!40000 ALTER TABLE `smf_calendar_holidays` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_categories`
--

DROP TABLE IF EXISTS `smf_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_categories` (
  `ID_CAT` tinyint(4) unsigned NOT NULL auto_increment,
  `catOrder` tinyint(4) NOT NULL default '0',
  `name` tinytext NOT NULL,
  `canCollapse` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`ID_CAT`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_categories`
--

LOCK TABLES `smf_categories` WRITE;
/*!40000 ALTER TABLE `smf_categories` DISABLE KEYS */;
INSERT INTO `smf_categories` (`ID_CAT`, `catOrder`, `name`, `canCollapse`) VALUES (1,2,'Personal development',1),(2,1,'Introduction ',0),(3,3,'Professional development',1),(4,0,'Advertisements',1),(5,4,'General Discussion',1),(6,6,'Dreams come true!',1),(7,5,'Billboard',1);
/*!40000 ALTER TABLE `smf_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_collapsed_categories`
--

DROP TABLE IF EXISTS `smf_collapsed_categories`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_collapsed_categories` (
  `ID_CAT` tinyint(4) unsigned NOT NULL default '0',
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_CAT`,`ID_MEMBER`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_collapsed_categories`
--

LOCK TABLES `smf_collapsed_categories` WRITE;
/*!40000 ALTER TABLE `smf_collapsed_categories` DISABLE KEYS */;
INSERT INTO `smf_collapsed_categories` (`ID_CAT`, `ID_MEMBER`) VALUES (1,6),(2,1),(2,10);
/*!40000 ALTER TABLE `smf_collapsed_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_log_actions`
--

DROP TABLE IF EXISTS `smf_log_actions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_actions` (
  `ID_ACTION` int(10) unsigned NOT NULL auto_increment,
  `logTime` int(10) unsigned NOT NULL default '0',
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `ip` char(16) NOT NULL default '',
  `action` varchar(30) NOT NULL default '',
  `extra` text NOT NULL,
  PRIMARY KEY  (`ID_ACTION`),
  KEY `logTime` (`logTime`),
  KEY `ID_MEMBER` (`ID_MEMBER`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_actions`
--

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

--
-- Table structure for table `smf_log_activity`
--

DROP TABLE IF EXISTS `smf_log_activity`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_activity` (
  `date` date NOT NULL default '0001-01-01',
  `hits` mediumint(8) unsigned NOT NULL default '0',
  `topics` smallint(5) unsigned NOT NULL default '0',
  `posts` smallint(5) unsigned NOT NULL default '0',
  `registers` smallint(5) unsigned NOT NULL default '0',
  `mostOn` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`date`),
  KEY `hits` (`hits`),
  KEY `mostOn` (`mostOn`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_activity`
--

LOCK TABLES `smf_log_activity` WRITE;
/*!40000 ALTER TABLE `smf_log_activity` DISABLE KEYS */;
INSERT INTO `smf_log_activity` (`date`, `hits`, `topics`, `posts`, `registers`, `mostOn`) VALUES ('2008-09-29',0,0,0,0,4),('2008-09-30',0,0,0,0,1),('2008-10-01',0,1,2,2,3),('2008-10-02',21,1,4,2,4),('2008-10-03',143,0,0,0,2),('2008-10-04',175,1,4,1,5),('2008-10-05',69,0,0,0,8),('2008-10-06',47,0,0,1,3),('2008-10-07',13,0,0,0,1),('2008-10-08',58,1,2,0,1),('2008-10-09',278,1,8,2,5),('2008-10-10',623,10,25,1,7),('2008-10-11',651,4,15,6,4);
/*!40000 ALTER TABLE `smf_log_activity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_log_banned`
--

DROP TABLE IF EXISTS `smf_log_banned`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_banned` (
  `ID_BAN_LOG` mediumint(8) unsigned NOT NULL auto_increment,
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `ip` char(16) NOT NULL default '',
  `email` tinytext NOT NULL,
  `logTime` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_BAN_LOG`),
  KEY `logTime` (`logTime`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_banned`
--

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

--
-- Table structure for table `smf_log_boards`
--

DROP TABLE IF EXISTS `smf_log_boards`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_boards` (
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `ID_BOARD` smallint(5) unsigned NOT NULL default '0',
  `ID_MSG` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_MEMBER`,`ID_BOARD`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_boards`
--

LOCK TABLES `smf_log_boards` WRITE;
/*!40000 ALTER TABLE `smf_log_boards` DISABLE KEYS */;
INSERT INTO `smf_log_boards` (`ID_MEMBER`, `ID_BOARD`, `ID_MSG`) VALUES (1,2,61),(1,3,61),(1,10,1),(1,5,61),(3,5,3),(4,5,21),(5,3,7),(5,5,7),(6,5,12),(6,3,12),(4,3,56),(6,4,13),(9,5,58),(9,3,28),(9,4,17),(1,4,35),(4,4,61),(10,3,56),(10,5,59),(10,4,58),(10,2,61),(9,2,61),(9,6,57),(1,6,31),(10,6,48),(10,8,61),(1,8,40),(4,2,61),(4,6,56),(4,8,52),(11,3,46),(11,8,46),(11,4,46),(10,7,47),(10,9,61),(12,5,48),(13,5,52),(14,5,52),(14,2,52),(14,3,52),(4,7,56),(4,9,61),(16,5,57),(1,9,61);
/*!40000 ALTER TABLE `smf_log_boards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_log_errors`
--

DROP TABLE IF EXISTS `smf_log_errors`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_errors` (
  `ID_ERROR` mediumint(8) unsigned NOT NULL auto_increment,
  `logTime` int(10) unsigned NOT NULL default '0',
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `ip` char(16) NOT NULL default '',
  `url` text NOT NULL,
  `message` text NOT NULL,
  `session` char(32) NOT NULL default '',
  PRIMARY KEY  (`ID_ERROR`),
  KEY `logTime` (`logTime`),
  KEY `ID_MEMBER` (`ID_MEMBER`),
  KEY `ip` (`ip`)
) ENGINE=MyISAM AUTO_INCREMENT=103 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_errors`
--

LOCK TABLES `smf_log_errors` WRITE;
/*!40000 ALTER TABLE `smf_log_errors` DISABLE KEYS */;
INSERT INTO `smf_log_errors` (`ID_ERROR`, `logTime`, `ID_MEMBER`, `ip`, `url`, `message`, `session`) VALUES (1,1222743411,0,'62.173.56.219','?action=logout;sesc','Unable to verify referring url.  Please go back and try again.','276507dbc6a0ae12bc3b6a64e52e246f'),(2,1222743448,0,'62.173.56.219','?action=logout;sesc','Unable to verify referring url.  Please go back and try again.','276507dbc6a0ae12bc3b6a64e52e246f'),(3,1222892612,1,'41.219.227.172','?action=manageboards;sa=board2','Administration login attempt!<br />Referer: http://dreamersforum.com/index.php?action=manageboards;sa=board2<br />User agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.16) Gecko/20080702 Firefox/2.0.0.16<br />IP: 41.219.227.172','5c299165f12b62aac43125d09f02e0a9'),(4,1222892646,1,'41.219.227.172','?action=manageboards;sa=board2','8: Undefined index:  boardid<br />File: /home/damidgr8/public_html/dreamersforum/Sources/ManageBoards.php<br />Line: 563','5c299165f12b62aac43125d09f02e0a9'),(5,1222964805,0,'41.219.214.19','?PHPSESSID=bb0fd95c17fb765a17d344b6344d05e6&amp;action=register2','8: Undefined index:  visual_verification_code<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Register.php<br />Line: 171','d0d37c972bf23afdfbf362717548d954'),(6,1222981968,0,'193.62.251.36','?PHPSESSID=6df28bd391f514c94b5cfa03a62c5a5c&amp;action=register2','8: Undefined index:  visual_verification_code<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Register.php<br />Line: 171','5fac66cc5a87f0accfe8f4ac8573db4f'),(7,1222982028,0,'193.62.251.36','?PHPSESSID=6df28bd391f514c94b5cfa03a62c5a5c&amp;action=register2','8: Undefined index:  visual_verification_code<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Register.php<br />Line: 171','5fac66cc5a87f0accfe8f4ac8573db4f'),(8,1222993860,5,'41.219.251.184','?action=profile2','8: A non well formed numeric value encountered<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Profile.php<br />Line: 620','e262c06d42e42e68f62891683436beaf'),(9,1223025471,0,'41.219.227.154','?action=login2','Password incorrect - &lt;span class=&quot;remove&quot;&gt;damidgr8&lt;/span&gt;','78ec5e26c9b5671ee7c20368084c4f09'),(10,1223027104,1,'41.219.227.154','?action=packageget','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(11,1223027104,1,'41.219.227.154','?action=packageget','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(12,1223027143,1,'41.219.227.154','?action=packageget;sa=upload','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(13,1223027143,1,'41.219.227.154','?action=packageget;sa=upload','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(14,1223027154,1,'41.219.227.154','?action=packages;sa=install;package=Social_Bookmarks_For_SMF_1.1.x.zip','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(15,1223027154,1,'41.219.227.154','?action=packages;sa=install;package=Social_Bookmarks_For_SMF_1.1.x.zip','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(16,1223027177,1,'41.219.227.154','?action=packages;sa=install2;package=Social_Bookmarks_For_SMF_1.1.x.zip','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(17,1223027177,1,'41.219.227.154','?action=packages;sa=install2;package=Social_Bookmarks_For_SMF_1.1.x.zip','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(18,1223027193,1,'41.219.227.154','?action=admin','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(19,1223027193,1,'41.219.227.154','?action=admin','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(20,1223027234,1,'41.219.227.154','?action=admin','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(21,1223027234,1,'41.219.227.154','?action=admin','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(22,1223027537,1,'41.219.227.154','?action=admin','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(23,1223027537,1,'41.219.227.154','?action=admin','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(24,1223027596,1,'41.219.227.154','?action=permissions','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(25,1223027596,1,'41.219.227.154','?action=permissions','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(26,1223027698,1,'41.219.227.154','?action=permissions;sa=board','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(27,1223027698,1,'41.219.227.154','?action=permissions;sa=board','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(28,1223027726,1,'41.219.227.154','?action=permissions;sa=settings','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(29,1223027726,1,'41.219.227.154','?action=permissions;sa=settings','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(30,1223027744,1,'41.219.227.154','?action=permissions','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(31,1223027744,1,'41.219.227.154','?action=permissions','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(32,1223027804,1,'41.219.227.154','?action=packages','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(33,1223027804,1,'41.219.227.154','?action=packages','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(34,1223027852,1,'41.219.227.154','?action=packages;sa=list;package=ad_mod_1-1-x_v2-3.zip','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(35,1223027852,1,'41.219.227.154','?action=packages;sa=list;package=ad_mod_1-1-x_v2-3.zip','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(36,1223027877,1,'41.219.227.154','?action=packages','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(37,1223027877,1,'41.219.227.154','?action=packages','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(38,1223027924,1,'41.219.227.154','?action=packages;sa=installed','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(39,1223027924,1,'41.219.227.154','?action=packages;sa=installed','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(40,1223027934,1,'41.219.227.154','?action=packages;sa=options','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(41,1223027934,1,'41.219.227.154','?action=packages;sa=options','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(42,1223027956,1,'41.219.227.154','?action=packages;sa=browse','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(43,1223027956,1,'41.219.227.154','?action=packages;sa=browse','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(44,1223028006,1,'41.219.227.154','?action=featuresettings','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(45,1223028006,1,'41.219.227.154','?action=featuresettings','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(46,1223028034,1,'41.219.227.154','?action=admin','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(47,1223028034,1,'41.219.227.154','?action=admin','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(48,1223028056,1,'41.219.227.154','?action=packages','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(49,1223028056,1,'41.219.227.154','?action=packages','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(50,1223028195,1,'41.219.227.154','?action=news','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(51,1223028195,1,'41.219.227.154','?action=news','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(52,1223028618,1,'41.219.227.154','?action=news;sa=editnews','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(53,1223028618,1,'41.219.227.154','?action=news;sa=editnews','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(54,1223028726,1,'41.219.227.154','?action=news;sa=settings','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(55,1223028726,1,'41.219.227.154','?action=news;sa=settings','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(56,1223028733,1,'41.219.227.154','?action=featuresettings','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(57,1223028733,1,'41.219.227.154','?action=featuresettings','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(58,1223028767,1,'41.219.227.154','?action=theme;sa=admin;sesc','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(59,1223028767,1,'41.219.227.154','?action=theme;sa=admin;sesc','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(60,1223028866,1,'41.219.227.154','?action=theme;sesc;sa=admin','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(61,1223028867,1,'41.219.227.154','?action=theme;sesc;sa=admin','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(62,1223028883,1,'41.219.227.154','?action=theme;sesc;sa=list','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(63,1223028883,1,'41.219.227.154','?action=theme;sesc;sa=list','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(64,1223028913,1,'41.219.227.154','?action=theme;sesc;sa=reset','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(65,1223028913,1,'41.219.227.154','?action=theme;sesc;sa=reset','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(66,1223028938,1,'41.219.227.154','?action=theme;sesc;sa=edit','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(67,1223028938,1,'41.219.227.154','?action=theme;sesc;sa=edit','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(68,1223028968,1,'41.219.227.154','?action=theme;th=3;sesc;sa=edit','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(69,1223028968,1,'41.219.227.154','?action=theme;th=3;sesc;sa=edit','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(70,1223028991,1,'41.219.227.154','?action=theme;th=3;sesc;sa=edit;filename=style.css','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(71,1223028991,1,'41.219.227.154','?action=theme;th=3;sesc;sa=edit;filename=style.css','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(72,1223029141,1,'41.219.227.154','?action=theme;sesc;sa=admin','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(73,1223029141,1,'41.219.227.154','?action=theme;sesc;sa=admin','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(74,1223029195,1,'41.219.227.154','?action=news','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(75,1223029195,1,'41.219.227.154','?action=news','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(76,1223029202,1,'41.219.227.154','?action=news;sa=mailingmembers','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(77,1223029202,1,'41.219.227.154','?action=news;sa=mailingmembers','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(78,1223029235,1,'41.219.227.154','?action=news;sa=mailingcompose','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(79,1223029235,1,'41.219.227.154','?action=news;sa=mailingcompose','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(80,1223029354,1,'41.219.227.154','?action=news;sa=settings','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(81,1223029354,1,'41.219.227.154','?action=news;sa=settings','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(82,1223029404,1,'41.219.227.154','?action=postsettings','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(83,1223029404,1,'41.219.227.154','?action=postsettings','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(84,1223029427,1,'41.219.227.154','?action=postsettings;sa=topics','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(85,1223029427,1,'41.219.227.154','?action=postsettings;sa=topics','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(86,1223029455,1,'41.219.227.154','?action=postsettings;sa=topics','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(87,1223029455,1,'41.219.227.154','?action=postsettings;sa=topics','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(88,1223029837,1,'41.219.227.154','?action=theme;sa=admin;sesc','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(89,1223029837,1,'41.219.227.154','?action=theme;sa=admin;sesc','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(90,1223030037,1,'41.219.227.154','?action=serversettings;sesc','Unable to load the \'Ads.english-utf8\' language file.','78ec5e26c9b5671ee7c20368084c4f09'),(91,1223030037,1,'41.219.227.154','?action=serversettings;sesc','8: Undefined index:  ad_management<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Subs.php<br />Line: 2742','78ec5e26c9b5671ee7c20368084c4f09'),(92,1223057154,0,'2.51.27.172','?PHPSESSID=19aca519f9b4dacc04d8f465ef777288&amp;action=register2','8: Undefined index:  visual_verification_code<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Register.php<br />Line: 171','bdb1e1941de4067a36d95ab9e7c4ad5f'),(93,1223565309,0,'193.219.244.242','?action=login2','Password incorrect - &lt;span class=&quot;remove&quot;&gt;damidgr8&lt;/span&gt;','3212ff8cdffef3342584d17d58da57ca'),(94,1223581884,1,'193.219.244.242','?action=logout;sesc','Unable to verify referring url.  Please go back and try again.','059aa1f1bdb05a830c78dd12323acc05'),(95,1223629331,0,'82.45.133.130','?PHPSESSID=8e28ec160d2b3d8987999a594828dc93&amp;action=register2','8: Undefined index:  visual_verification_code<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Register.php<br />Line: 171','08dda3d5422acfc4482f1bb75d9343d2'),(96,1223671442,0,'41.219.232.143','?PHPSESSID=1e97fb4a02723724879af0d4da7d2798&amp;action=login2','Password incorrect - &lt;span class=&quot;remove&quot;&gt;damidgr8&lt;/span&gt;','506762122854cfd9acc335899282c141'),(97,1223674870,0,'80.250.35.214','?PHPSESSID=e255d0b61406f4f698e60920e48ad24b&amp;action=login2','Password incorrect - &lt;span class=&quot;remove&quot;&gt;fiyin oluwatoyinbo&lt;/span&gt;','af59ac25981820450aac0a49f8df322e'),(98,1223677683,0,'41.211.238.137','?PHPSESSID=43a08446170b08b2e9bc54375d644030&amp;action=register2','8: Undefined index:  visual_verification_code<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Register.php<br />Line: 171','808466de0d3bfde8434c688274285195'),(99,1223678286,0,'41.247.156.229','?action=login2','Password incorrect - &lt;span class=&quot;remove&quot;&gt;lade&lt;/span&gt;','3f76249b43f11d8a591906b4f472fbb8'),(100,1223688047,0,'41.219.232.143','?action=logout;sesc','Unable to verify referring url.  Please go back and try again.','506762122854cfd9acc335899282c141'),(101,1223739927,0,'196.46.242.74','?action=login2','Password incorrect - &lt;span class=&quot;remove&quot;&gt;Damilola aina&lt;/span&gt;','06daf284048735c5add0704f1923dea0'),(102,1223753965,0,'82.128.39.249','?PHPSESSID=a7335c0c72e743e466ee293f5f0b44cb&amp;action=register2','8: Undefined index:  visual_verification_code<br />File: /home/damidgr8/public_html/dreamersforum/Sources/Register.php<br />Line: 171','1e56dd6c21674b73d40a3fb3fdda1cca');
/*!40000 ALTER TABLE `smf_log_errors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_log_floodcontrol`
--

DROP TABLE IF EXISTS `smf_log_floodcontrol`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_floodcontrol` (
  `ip` char(16) NOT NULL default '',
  `logTime` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_floodcontrol`
--

LOCK TABLES `smf_log_floodcontrol` WRITE;
/*!40000 ALTER TABLE `smf_log_floodcontrol` DISABLE KEYS */;
INSERT INTO `smf_log_floodcontrol` (`ip`, `logTime`) VALUES ('80.250.35.238',1223762068);
/*!40000 ALTER TABLE `smf_log_floodcontrol` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_log_karma`
--

DROP TABLE IF EXISTS `smf_log_karma`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_karma` (
  `ID_TARGET` mediumint(8) unsigned NOT NULL default '0',
  `ID_EXECUTOR` mediumint(8) unsigned NOT NULL default '0',
  `logTime` int(10) unsigned NOT NULL default '0',
  `action` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`ID_TARGET`,`ID_EXECUTOR`),
  KEY `logTime` (`logTime`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_karma`
--

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

--
-- Table structure for table `smf_log_mark_read`
--

DROP TABLE IF EXISTS `smf_log_mark_read`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_mark_read` (
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `ID_BOARD` smallint(5) unsigned NOT NULL default '0',
  `ID_MSG` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_MEMBER`,`ID_BOARD`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_mark_read`
--

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

--
-- Table structure for table `smf_log_notify`
--

DROP TABLE IF EXISTS `smf_log_notify`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_notify` (
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `ID_TOPIC` mediumint(8) unsigned NOT NULL default '0',
  `ID_BOARD` smallint(5) unsigned NOT NULL default '0',
  `sent` tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_MEMBER`,`ID_TOPIC`,`ID_BOARD`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_notify`
--

LOCK TABLES `smf_log_notify` WRITE;
/*!40000 ALTER TABLE `smf_log_notify` DISABLE KEYS */;
INSERT INTO `smf_log_notify` (`ID_MEMBER`, `ID_TOPIC`, `ID_BOARD`, `sent`) VALUES (6,5,0,1),(1,0,9,0);
/*!40000 ALTER TABLE `smf_log_notify` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_log_online`
--

DROP TABLE IF EXISTS `smf_log_online`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_online` (
  `session` varchar(32) NOT NULL default '',
  `logTime` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `ip` int(10) unsigned NOT NULL default '0',
  `url` text NOT NULL,
  PRIMARY KEY  (`session`),
  KEY `logTime` (`logTime`),
  KEY `ID_MEMBER` (`ID_MEMBER`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_online`
--

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

--
-- Table structure for table `smf_log_polls`
--

DROP TABLE IF EXISTS `smf_log_polls`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_polls` (
  `ID_POLL` mediumint(8) unsigned NOT NULL default '0',
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `ID_CHOICE` tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_POLL`,`ID_MEMBER`,`ID_CHOICE`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_polls`
--

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

--
-- Table structure for table `smf_log_search_messages`
--

DROP TABLE IF EXISTS `smf_log_search_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_search_messages` (
  `ID_SEARCH` tinyint(3) unsigned NOT NULL default '0',
  `ID_MSG` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_SEARCH`,`ID_MSG`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_search_messages`
--

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

--
-- Table structure for table `smf_log_search_results`
--

DROP TABLE IF EXISTS `smf_log_search_results`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_search_results` (
  `ID_SEARCH` tinyint(3) unsigned NOT NULL default '0',
  `ID_TOPIC` mediumint(8) unsigned NOT NULL default '0',
  `ID_MSG` int(10) unsigned NOT NULL default '0',
  `relevance` smallint(5) unsigned NOT NULL default '0',
  `num_matches` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_SEARCH`,`ID_TOPIC`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_search_results`
--

LOCK TABLES `smf_log_search_results` WRITE;
/*!40000 ALTER TABLE `smf_log_search_results` DISABLE KEYS */;
INSERT INTO `smf_log_search_results` (`ID_SEARCH`, `ID_TOPIC`, `ID_MSG`, `relevance`, `num_matches`) VALUES (2,2,2,139,1);
/*!40000 ALTER TABLE `smf_log_search_results` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_log_search_subjects`
--

DROP TABLE IF EXISTS `smf_log_search_subjects`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_search_subjects` (
  `word` varchar(20) NOT NULL default '',
  `ID_TOPIC` mediumint(8) unsigned NOT NULL default '0',
  PRIMARY KEY  (`word`,`ID_TOPIC`),
  KEY `ID_TOPIC` (`ID_TOPIC`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_search_subjects`
--

LOCK TABLES `smf_log_search_subjects` WRITE;
/*!40000 ALTER TABLE `smf_log_search_subjects` DISABLE KEYS */;
INSERT INTO `smf_log_search_subjects` (`word`, `ID_TOPIC`) VALUES ('a',3),('a',13),('a',18),('a',20),('about',12),('alone',13),('alone',15),('alone',16),('and',7),('anymore',15),('anymore',16),('are',7),('are',13),('be',2),('be',7),('be',8),('christianity',18),('christianity',20),('could',8),('different',7),('does',14),('don',15),('don',16),('dont',11),('dream',3),('dream',4),('dream',8),('emotions',5),('enjoy',18),('enjoy',20),('fill',14),('for',11),('forgive',19),('god',8),('god',15),('god',16),('great',2),('have',3),('he',14),('here',2),('i',3),('i',12),('i',15),('i',16),('i',18),('i',20),('in',15),('in',16),('is',13),('it',2),('it',8),('it',13),('jr',3),('king',3),('leave',15),('leave',16),('less',11),('life',15),('life',16),('life',18),('life',20),('luther',3),('martin',3),('me',15),('me',16),('me',19),('mine',8),('mouthful',13),('moved',16),('moved',20),('my',4),('my',14),('my',15),('my',16),('my',17),('my',18),('my',20),('need',15),('need',16),('not',13),('obsession',17),('own',6),('please',19),('pls',6),('pocket',14),('post',6),('puzzle',18),('puzzle',20),('quite',13),('relationship',9),('s',2),('s',3),('s',8),('settle',11),('sex',12),('shapes',10),('speech',3),('start',6),('still',18),('still',20),('t',15),('t',16),('take',13),('talk',12),('time',13),('to',2),('to',18),('to',20),('too',8),('too',14),('unique',7),('wanna',12),('want',18),('want',20),('weight',17),('what',10),('with',17),('yah',12),('you',7),('you',10),('you',13),('you',15),('you',16),('your',6),('yourself',7);
/*!40000 ALTER TABLE `smf_log_search_subjects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_log_search_topics`
--

DROP TABLE IF EXISTS `smf_log_search_topics`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_search_topics` (
  `ID_SEARCH` tinyint(3) unsigned NOT NULL default '0',
  `ID_TOPIC` mediumint(9) NOT NULL default '0',
  PRIMARY KEY  (`ID_SEARCH`,`ID_TOPIC`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_search_topics`
--

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

--
-- Table structure for table `smf_log_topics`
--

DROP TABLE IF EXISTS `smf_log_topics`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_log_topics` (
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `ID_TOPIC` mediumint(8) unsigned NOT NULL default '0',
  `ID_MSG` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_MEMBER`,`ID_TOPIC`),
  KEY `ID_TOPIC` (`ID_TOPIC`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_log_topics`
--

LOCK TABLES `smf_log_topics` WRITE;
/*!40000 ALTER TABLE `smf_log_topics` DISABLE KEYS */;
INSERT INTO `smf_log_topics` (`ID_MEMBER`, `ID_TOPIC`, `ID_MSG`) VALUES (1,2,61),(3,2,3),(4,2,21),(1,3,61),(5,2,7),(5,3,7),(6,2,11),(6,3,9),(6,4,12),(4,3,9),(4,4,56),(6,5,14),(1,4,61),(9,2,28),(9,4,28),(9,5,17),(1,6,20),(1,5,35),(4,5,56),(10,4,48),(10,6,21),(10,2,61),(10,7,48),(10,8,48),(10,5,55),(10,9,56),(10,10,48),(10,3,27),(1,7,29),(9,9,28),(9,7,28),(9,10,58),(9,6,28),(1,9,29),(9,11,57),(1,11,52),(1,8,31),(1,10,31),(10,12,54),(1,12,32),(10,11,48),(10,13,61),(10,14,61),(1,13,61),(1,14,40),(10,15,48),(1,15,41),(1,16,41),(4,8,56),(4,10,56),(4,15,45),(4,13,61),(4,14,46),(11,3,46),(11,8,46),(11,4,46),(11,14,46),(11,5,46),(11,9,46),(11,12,46),(10,17,57),(4,9,56),(4,12,56),(13,6,52),(14,16,52),(14,15,52),(14,4,52),(14,2,52),(10,18,61),(4,11,56),(4,17,56),(4,18,57),(16,16,57),(10,19,59),(9,16,58),(10,16,58),(9,15,58),(9,13,62),(1,18,59),(1,20,61),(10,20,61),(4,20,61),(4,19,61);
/*!40000 ALTER TABLE `smf_log_topics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_membergroups`
--

DROP TABLE IF EXISTS `smf_membergroups`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_membergroups` (
  `ID_GROUP` smallint(5) unsigned NOT NULL auto_increment,
  `groupName` varchar(80) NOT NULL default '',
  `onlineColor` varchar(20) NOT NULL default '',
  `minPosts` mediumint(9) NOT NULL default '-1',
  `maxMessages` smallint(5) unsigned NOT NULL default '0',
  `stars` tinytext NOT NULL,
  PRIMARY KEY  (`ID_GROUP`),
  KEY `minPosts` (`minPosts`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_membergroups`
--

LOCK TABLES `smf_membergroups` WRITE;
/*!40000 ALTER TABLE `smf_membergroups` DISABLE KEYS */;
INSERT INTO `smf_membergroups` (`ID_GROUP`, `groupName`, `onlineColor`, `minPosts`, `maxMessages`, `stars`) VALUES (1,'Administrator','#FF0000',-1,0,'5#staradmin.gif'),(2,'Global Moderator','#0000FF',-1,0,'5#stargmod.gif'),(3,'Moderator','',-1,0,'5#starmod.gif'),(4,'Newbie','',0,0,'1#star.gif'),(5,'Jr. Member','',50,0,'2#star.gif'),(6,'Full Member','',100,0,'3#star.gif'),(7,'Sr. Member','',250,0,'4#star.gif'),(8,'Hero Member','',500,0,'5#star.gif');
/*!40000 ALTER TABLE `smf_membergroups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_members`
--

DROP TABLE IF EXISTS `smf_members`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_members` (
  `ID_MEMBER` mediumint(8) unsigned NOT NULL auto_increment,
  `memberName` varchar(80) NOT NULL default '',
  `dateRegistered` int(10) unsigned NOT NULL default '0',
  `posts` mediumint(8) unsigned NOT NULL default '0',
  `ID_GROUP` smallint(5) unsigned NOT NULL default '0',
  `lngfile` tinytext NOT NULL,
  `lastLogin` int(10) unsigned NOT NULL default '0',
  `realName` tinytext NOT NULL,
  `instantMessages` smallint(5) NOT NULL default '0',
  `unreadMessages` smallint(5) NOT NULL default '0',
  `buddy_list` text NOT NULL,
  `pm_ignore_list` tinytext NOT NULL,
  `messageLabels` text NOT NULL,
  `passwd` varchar(64) NOT NULL default '',
  `emailAddress` tinytext NOT NULL,
  `personalText` tinytext NOT NULL,
  `gender` tinyint(4) unsigned NOT NULL default '0',
  `birthdate` date NOT NULL default '0001-01-01',
  `websiteTitle` tinytext NOT NULL,
  `websiteUrl` tinytext NOT NULL,
  `location` tinytext NOT NULL,
  `ICQ` tinytext NOT NULL,
  `AIM` varchar(16) NOT NULL default '',
  `YIM` varchar(32) NOT NULL default '',
  `MSN` tinytext NOT NULL,
  `hideEmail` tinyint(4) NOT NULL default '0',
  `showOnline` tinyint(4) NOT NULL default '1',
  `timeFormat` varchar(80) NOT NULL default '',
  `signature` text NOT NULL,
  `timeOffset` float NOT NULL default '0',
  `avatar` tinytext NOT NULL,
  `pm_email_notify` tinyint(4) NOT NULL default '0',
  `karmaBad` smallint(5) unsigned NOT NULL default '0',
  `karmaGood` smallint(5) unsigned NOT NULL default '0',
  `usertitle` tinytext NOT NULL,
  `notifyAnnouncements` tinyint(4) NOT NULL default '1',
  `notifyOnce` tinyint(4) NOT NULL default '1',
  `notifySendBody` tinyint(4) NOT NULL default '0',
  `notifyTypes` tinyint(4) NOT NULL default '2',
  `memberIP` tinytext NOT NULL,
  `memberIP2` tinytext NOT NULL,
  `secretQuestion` tinytext NOT NULL,
  `secretAnswer` varchar(64) NOT NULL default '',
  `ID_THEME` tinyint(4) unsigned NOT NULL default '0',
  `is_activated` tinyint(3) unsigned NOT NULL default '1',
  `validation_code` varchar(10) NOT NULL default '',
  `ID_MSG_LAST_VISIT` int(10) unsigned NOT NULL default '0',
  `additionalGroups` tinytext NOT NULL,
  `smileySet` varchar(48) NOT NULL default '',
  `ID_POST_GROUP` smallint(5) unsigned NOT NULL default '0',
  `totalTimeLoggedIn` int(10) unsigned NOT NULL default '0',
  `passwordSalt` varchar(5) NOT NULL default '',
  PRIMARY KEY  (`ID_MEMBER`),
  KEY `memberName` (`memberName`(30)),
  KEY `dateRegistered` (`dateRegistered`),
  KEY `ID_GROUP` (`ID_GROUP`),
  KEY `birthdate` (`birthdate`),
  KEY `posts` (`posts`),
  KEY `lastLogin` (`lastLogin`),
  KEY `lngfile` (`lngfile`(30)),
  KEY `ID_POST_GROUP` (`ID_POST_GROUP`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_members`
--

LOCK TABLES `smf_members` WRITE;
/*!40000 ALTER TABLE `smf_members` DISABLE KEYS */;
INSERT INTO `smf_members` (`ID_MEMBER`, `memberName`, `dateRegistered`, `posts`, `ID_GROUP`, `lngfile`, `lastLogin`, `realName`, `instantMessages`, `unreadMessages`, `buddy_list`, `pm_ignore_list`, `messageLabels`, `passwd`, `emailAddress`, `personalText`, `gender`, `birthdate`, `websiteTitle`, `websiteUrl`, `location`, `ICQ`, `AIM`, `YIM`, `MSN`, `hideEmail`, `showOnline`, `timeFormat`, `signature`, `timeOffset`, `avatar`, `pm_email_notify`, `karmaBad`, `karmaGood`, `usertitle`, `notifyAnnouncements`, `notifyOnce`, `notifySendBody`, `notifyTypes`, `memberIP`, `memberIP2`, `secretQuestion`, `secretAnswer`, `ID_THEME`, `is_activated`, `validation_code`, `ID_MSG_LAST_VISIT`, `additionalGroups`, `smileySet`, `ID_POST_GROUP`, `totalTimeLoggedIn`, `passwordSalt`) VALUES (1,'damidgr8',1222741773,14,1,'',1223787066,'damilola oluwatoyinbo',0,0,'','','','2ace2ed5ec89af2949a5bf8a7899ffd4a83f20ee','d_oluwatoyinbo@yahoo.com','',1,'0001-01-01','quality information on personal transformation, business optimisation and social reformation.','http://www.damioluwatoyinbo.com','Lagos, Nigeria','','','','',0,1,'','www.damioluwatoyinbo.com<br />if you can dream it, you can stream it.',0,'',0,0,0,'',1,1,0,2,'41.219.215.45','41.219.215.45','','',4,1,'',59,'','',4,60029,'<SALT'),(2,'Joy',1222902092,0,0,'',0,'Joy',0,0,'','','','ab9e15da5b146d029c29a0867ab746bd654f8b30','cmfx2001@yahoo.com','',0,'0001-01-01','','','','','','','',0,1,'','',0,'',1,0,0,'',1,1,0,2,'41.219.214.118','41.219.214.118','','',4,1,'',0,'','',4,0,'7007'),(3,'Darek Sule',1222906816,1,0,'',1222908532,'Darek Sule',0,0,'','','','5271697fddc9c40bae1e103e31d1f377d1677ab4','me4rill@yahoo.com','',0,'0001-01-01','','','','','','','',0,1,'','',0,'',1,0,0,'',1,1,0,2,'82.128.39.4','82.128.39.4','','',4,1,'',2,'','',4,778,'f08f'),(4,'Ralphie',1222982109,12,0,'',1223814903,'Ralphie',0,0,'','','','41651b326802eea4e12d2d93ecb2c53fb3b3d9f6','ayedesever@yahoo.com','&quot;I have a dream...&quot;...no wait, &quot;I have A PLAN&quot;...',1,'1983-06-20','','','Glasgow, Scotland','','','','ayedesever@live.co.uk',0,1,'',':-p',0,'',1,0,0,'',1,1,0,2,'193.62.251.36','193.62.251.36','','',4,1,'',61,'','',4,11066,'30ae'),(5,'ruach',1222993062,1,0,'',1222995012,'ruach',0,0,'','','','dc318015357315f4ee7273d55d73151b05a6c21d','wunmii4life@yahoo.com','',2,'0198-01-05','','','Lagos, Nigeria','','','','',0,1,'','He Reigns.',0,'',1,0,0,'',1,1,0,2,'41.219.251.184','41.219.251.184','','',4,1,'',6,'','',4,1546,'2384'),(6,'toju',1223127780,4,0,'',1223465532,'toju',0,0,'','','','a579ff6e2483be0a28b318603647a62b96593b81','toju_fregene@yahoo.com','',0,'0001-01-01','','','','','','','',0,1,'','',0,'',1,0,0,'',1,1,0,2,'77.220.15.130','77.220.15.130','','',4,1,'',11,'','',4,5556,'b932'),(7,'cheve1810',1223284321,0,0,'',1223284325,'cheve1810',0,0,'','','','4dd83a11e51eb87929b5e1fb3cb96d9b9b4652de','cheve1810@yahoo.co.uk','',0,'0001-01-01','','','','','','','',0,1,'','',0,'',1,0,0,'',1,1,0,2,'41.221.167.225','41.222.70.187','','',4,1,'',11,'','',4,0,'3583'),(8,'syi014',1223571106,0,0,'',1223571108,'syi014',0,0,'','','','fe31f19d22708d1829b083af87ecd490e0a350b4','e_syi@yahoo.com','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'196.220.9.46','196.220.9.46','','',4,1,'',15,'','',4,0,'dd07'),(9,'fiyin oluwatoyinbo',1223573479,4,0,'',1223762603,'fiyin oluwatoyinbo',0,0,'','','','d2fbb3dfdfa929b6b9d306d1fe9d47bf4ee572ba','fify_actiong@yahoo.com','',0,'0001-01-01','','','','','','','',0,1,'','',0,'',1,0,0,'',1,1,0,2,'80.250.35.238','80.250.35.238','','',4,1,'',57,'','',4,8335,'b6a1'),(10,'lade',1223629380,21,0,'',1223768619,'lade',0,0,'','','','697bc1375d414a260ba3c568fc330dc6d39ee154','shawtylade@yahoo.com','',2,'1984-10-07','','','benoni, South Africa','','','shawtylade','bestgift84@htomail.com',0,1,'','You attract people by the qualities you display and keep them by the qualities you possess.',0,'',1,0,0,'',1,1,0,2,'41.247.157.215','41.247.157.215','','',4,1,'',61,'','',4,13080,'ea7f'),(11,'odebs',1223704713,0,0,'',1223707775,'odebs',0,0,'','','','70c1b5937bbbbd67f584d0dc7e1e5beca46716b3','tlbnm@yahoo.com','',0,'0001-01-01','','','','','','','',1,1,'','',0,'',1,0,0,'',1,1,0,2,'41.211.226.108','41.211.226.108','','',4,1,'',46,'','',4,1369,'26f8'),(12,'chibu',1223715082,0,0,'',1223718364,'chibu',0,0,'','','','fd2d4f007e299b8d62252c126b6dd8200158ac0d','niggac007@yahoo.com','',0,'0001-01-01','','','','','','','',0,1,'','',0,'',1,0,0,'',1,1,0,2,'193.219.244.3','193.219.244.3','','',4,1,'',48,'','',4,684,'f9da'),(13,'Ola-Tokunbo',1223724905,0,0,'',0,'Ola-Tokunbo',0,0,'','','','5593cb8ba45ffa894f64ffbb3c4be47d88332beb','holla4ola@yahoo.com','',0,'0001-01-01','','','','','','','',0,1,'','',0,'',1,0,0,'',1,1,0,2,'41.219.211.132','41.219.211.132','','',4,1,'',0,'','',4,0,'fd84'),(14,'Damilola aina',1223729507,0,0,'',1223740140,'Damilola aina',0,0,'','','','d2f88ee3ed90bc99f72c64c2b5fd84e50a37ad76','Damilola_aina@yahoo.com','',0,'0001-01-01','','','','','','','',0,1,'','',0,'',1,0,0,'',1,1,0,2,'196.46.242.74','196.46.242.74','','',4,1,'',52,'','',4,920,'c08f'),(15,'vivian',1223740356,0,0,'',1223743752,'vivian',0,0,'','','','c3784f0e5199a9d3f3920c09633a27fa215b7973','venizika45@yahoo.co.uk','',2,'1986-10-18','','','nigeria','','','venizika45@yahoo.co.uk','',0,1,'','',0,'',1,0,0,'',1,1,0,2,'196.3.183.72','196.3.183.72','','',4,1,'',52,'','',4,1785,'f293'),(16,'Dgeneral',1223754120,0,0,'',1223754200,'Dgeneral',0,0,'','','','fa5d35ad9da08213608808f9f3e1b0164b9a318c','bayobello007@yahoo.com','',0,'0001-01-01','','','','','','','',0,1,'','',0,'',1,0,0,'',1,1,0,2,'82.128.39.249','82.128.39.249','','',4,1,'',57,'','',4,609,'ae31');
/*!40000 ALTER TABLE `smf_members` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_message_icons`
--

DROP TABLE IF EXISTS `smf_message_icons`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_message_icons` (
  `ID_ICON` smallint(5) unsigned NOT NULL auto_increment,
  `title` varchar(80) NOT NULL default '',
  `filename` varchar(80) NOT NULL default '',
  `ID_BOARD` mediumint(8) unsigned NOT NULL default '0',
  `iconOrder` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_ICON`),
  KEY `ID_BOARD` (`ID_BOARD`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_message_icons`
--

LOCK TABLES `smf_message_icons` WRITE;
/*!40000 ALTER TABLE `smf_message_icons` DISABLE KEYS */;
INSERT INTO `smf_message_icons` (`ID_ICON`, `title`, `filename`, `ID_BOARD`, `iconOrder`) VALUES (1,'Standard','xx',0,0),(2,'Thumb Up','thumbup',0,1),(3,'Thumb Down','thumbdown',0,2),(4,'Exclamation point','exclamation',0,3),(5,'Question mark','question',0,4),(6,'Lamp','lamp',0,5),(7,'Smiley','smiley',0,6),(8,'Angry','angry',0,7),(9,'Cheesy','cheesy',0,8),(10,'Grin','grin',0,9),(11,'Sad','sad',0,10),(12,'Wink','wink',0,11);
/*!40000 ALTER TABLE `smf_message_icons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_messages`
--

DROP TABLE IF EXISTS `smf_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_messages` (
  `ID_MSG` int(10) unsigned NOT NULL auto_increment,
  `ID_TOPIC` mediumint(8) unsigned NOT NULL default '0',
  `ID_BOARD` smallint(5) unsigned NOT NULL default '0',
  `posterTime` int(10) unsigned NOT NULL default '0',
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `ID_MSG_MODIFIED` int(10) unsigned NOT NULL default '0',
  `subject` tinytext NOT NULL,
  `posterName` tinytext NOT NULL,
  `posterEmail` tinytext NOT NULL,
  `posterIP` tinytext NOT NULL,
  `smileysEnabled` tinyint(4) NOT NULL default '1',
  `modifiedTime` int(10) unsigned NOT NULL default '0',
  `modifiedName` tinytext NOT NULL,
  `body` text NOT NULL,
  `icon` varchar(16) NOT NULL default 'xx',
  PRIMARY KEY  (`ID_MSG`),
  UNIQUE KEY `topic` (`ID_TOPIC`,`ID_MSG`),
  UNIQUE KEY `ID_BOARD` (`ID_BOARD`,`ID_MSG`),
  UNIQUE KEY `ID_MEMBER` (`ID_MEMBER`,`ID_MSG`),
  KEY `ipIndex` (`posterIP`(15),`ID_TOPIC`),
  KEY `participation` (`ID_MEMBER`,`ID_TOPIC`),
  KEY `showPosts` (`ID_MEMBER`,`ID_BOARD`),
  KEY `ID_TOPIC` (`ID_TOPIC`)
) ENGINE=MyISAM AUTO_INCREMENT=62 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_messages`
--

LOCK TABLES `smf_messages` WRITE;
/*!40000 ALTER TABLE `smf_messages` DISABLE KEYS */;
INSERT INTO `smf_messages` (`ID_MSG`, `ID_TOPIC`, `ID_BOARD`, `posterTime`, `ID_MEMBER`, `ID_MSG_MODIFIED`, `subject`, `posterName`, `posterEmail`, `posterIP`, `smileysEnabled`, `modifiedTime`, `modifiedName`, `body`, `icon`) VALUES (2,2,5,1222899825,1,2,'It\'s great to be here.','damidgr8','d_oluwatoyinbo@yahoo.com','41.219.214.118',1,0,'','Hi.My name is Damilola Oluwatoyinbo.I am a speaker, writer, spiritual shepherd, youth leader and blogger.I created this forum to provide a platform for dreamers from different walks of life,nationalities,age groups,genders and classes to encourage and strengthen one another.<br /><br />I have a dream that one day, this forum will be the most active personal and proffesional development forum in the world.I&#039;m so excited that you are a part of that dream.<br /><br />Feel free to contribute to any thread or discussion board you find engaging.Share what you know.You&#039;d never know how much impact it&#039;s going to make in another dreamer&#039;s life.Invite other dreamers you know and let&#039;s make more dreams come true. :) ','xx'),(3,2,5,1222908532,3,3,'great to be a part of dis!','Darek Sule','me4rill@yahoo.com','82.128.39.4',1,0,'','wow got to be da first afta da administrator:)))<br /><br />ok. I&#039;m Darek Sule, a friend of God, God chaser, minister, architectural student, and a person who loves to challenge and get challenged:) i&#039;m here to get more knowledge (which is neva too much) bout what it takes to be all God desires me to be, get impacted and to make an impact in the life&#039;s of other dreamers.<br /><br />also wanna be a part of the greatest blog the world has ever seen:) <br /><br />God bless u Sir for bringing this into reality','xx'),(4,2,5,1222982528,4,4,'Re: It\'s great to be here.','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','Hi People... think the sites a marvelous idea. think i&#039;ll roam around it a bit. I personally value inspiration being inspired feels great, inspiring others feels even greater, hearing about others inspirations, aspirations and dreams... thats my equivalent of a hollywood blockbuster. Look forward to rubbing minds with whoever is in here...<br /><br /><br />Oh forgot to mention, I&#039;m Ralph from Glasgow Scotland(at the moment)...','xx'),(5,2,5,1222990434,1,5,'Re: It\'s great to be here.','damidgr8','d_oluwatoyinbo@yahoo.com','41.219.197.242',1,0,'','Congrats Darek and Ralphie.You guys are the earliest birds on the forum.It feels great being around high-flyers like you.I have no doubt that your contributions to the discussions on this forum will empower millions of people to fulfill their dreams. ;)','xx'),(6,3,3,1222992708,1,6,'Martin Luther King Jr.\'s &quot;I Have A Dream&quot; Speech.','damidgr8','d_oluwatoyinbo@yahoo.com','41.219.197.242',1,0,'','This forum is all about dreamers and their dreams.<br /><br />In 1950&#039;s America, the equality of man envisioned by the Declaration of Independence was far from a reality. People of color — blacks, Hispanics, Asians — were discriminated against in many ways, both overt and covert. The 1950&#039;s were a turbulent time in America, when racial barriers began to come down due to Supreme Court decisions, and due to an increase in the activism of blacks, fighting for equal rights.<br /><br />Martin Luther King, Jr., a Baptist minister had a dream of racial equality in the 1950&#039;s and the 1960&#039;s.King and his colleagues marched and protested non-violently. The bad publicity and break-down of business forced the white leaders of Birmingham to concede to some anti-segregation demands.<br /><br />Thrust into the national spotlight in Birmingham, where he was arrested and jailed, King helped organize a massive march on Washington, DC, on August 28, 1963. His partners in the March on Washington for Jobs and Freedom included other religious leaders, labor leaders, and black organizers. The assembled masses marched down the Washington Mall from the Washington Monument to the Lincoln Memorial, heard songs from Bob Dylan and Joan Baez, and heard speeches by actor Charlton Heston and NAACP president Roy Wilkins.<br /><br />King&#039;s appearance was the last of the event; the closing speech was carried live on major television networks. On the steps of the Lincoln Memorial, King evoked the name of Lincoln in his &quot;I Have a Dream&quot; speech, which is credited with mobilizing supporters of desegregation and prompted the 1964 Civil Rights Act. The next year, King was awarded the Nobel Peace Prize.<br /><br />The following is the exact text of the spoken speech.<br /><br />[color=blue]I am happy to join with you today in what will go down in history as the greatest demonstration for freedom in the history of our nation.<br /><br />Five score years ago, a great American, in whose symbolic shadow we stand today, signed the Emancipation Proclamation. This momentous decree came as a great beacon light of hope to millions of Negro slaves who had been seared in the flames of withering injustice. It came as a joyous daybreak to end the long night of their captivity.<br /><br />But one hundred years later, the Negro still is not free. One hundred years later, the life of the Negro is still sadly crippled by the manacles of segregation and the chains of discrimination. One hundred years later, the Negro lives on a lonely island of poverty in the midst of a vast ocean of material prosperity. One hundred years later, the Negro is still languishing in the corners of American society and finds himself an exile in his own land. So we have come here today to dramatize a shameful condition.<br /><br />I am happy to join with you today in what will go down in history as the greatest demonstration for freedom in the history of our nation.<br /><br />Five score years ago, a great American, in whose symbolic shadow we stand today, signed the Emancipation Proclamation. This momentous decree came as a great beacon light of hope to millions of Negro slaves who had been seared in the flames of withering injustice. It came as a joyous daybreak to end the long night of their captivity.<br /><br />But one hundred years later, the Negro still is not free. One hundred years later, the life of the Negro is still sadly crippled by the manacles of segregation and the chains of discrimination. One hundred years later, the Negro lives on a lonely island of poverty in the midst of a vast ocean of material prosperity. One hundred years later, the Negro is still languishing in the corners of American society and finds himself an exile in his own land. So we have come here today to dramatize a shameful condition.<br />[/color]<br />Martin Luther King Jr. &quot;screamed his dream&quot; now you can scream yours.<br /><br />Things are different in the U.S.A and indeed the world today because of Martin Luther King Jr.&#039;s dream.The world will be a much better place tommorow because of your dream.<br /><br />It may seem ridiculous at first but if you scream it loud enough, you will stream it soon enough. 8)','thumbup'),(7,2,5,1222994388,5,7,'Re: It\'s great to be here.','ruach','wunmii4life@yahoo.com','41.219.251.184',1,0,'','Yea,<br />My name&#039;s wunmi, mid 20&#039;s and very loving, beautiful and brilliant. <br />Agile, active, very efficient, goal getter, an achiever and I love to learn and anything that&#039;ll teach me positively i grab.<br />Hope to learn a lot<br />Great job.God bless','xx'),(8,2,5,1223129471,6,8,'Re: It\'s great to be here.','toju','toju_fregene@yahoo.com','41.222.70.203',1,0,'','hi.my name&#039;s Toju and im extremli xcited about ths forum.i celebrate the creator...im a student of English,a convicted God addict,confident,a go-getter,thirsty for more wisdom,info,concepts,ideas&amp;ready to learn.interested in writing,public speaking,acting and some sort of advertising.il definateli b around a forum for dreamers.','xx'),(9,4,3,1223132125,6,9,'my dream','toju','toju_fregene@yahoo.com','41.222.70.203',1,0,'','honestli,just b4 writing ths,got a lil aprehensv.wot,tel the whole world my dreams?now?in d midst of unfinishd processes?then it occurd to me that just cos incubation tyms r dfrnt dosnt min i wont eventuali hatch...someday,im going to be an author,a speaker-a youth&amp;women leader all over the world.im goin to b on tv&amp;dvds.im goin to b on runways,billboards&amp;magazine covers.sumhow...im goin to hav my own poise skul.','xx'),(10,4,3,1223148240,4,10,'Re: my dream','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','My dream ::)...<br />I DREAM ABOUT INCOME REDISTRIBUTION! ;D a quiet revolution where the poor cease to be poor and the basic societal assumption that there always will be poor people will be reexamined and at least challenged.<br />My fight is with the poverty that grabs children before they know they have any other option &gt;:(.<br /><br />I plan to start a self saving cycle for Nigeria that&#039;ll become a model for others to adopt. I&#039;ll explain how I plan to finance it later. <br />but I plan to start with street kids and remand home boys and girls only and show them the more comfortable possibilities, inspire them to want more, equip them to chase and attain more(through skill acquisition) and the whole time work on MORAL reformation and embedding in their minds the idea that it should be a cycle they were taken into, groomed through, supported by, to attain financial means and then return to support the system financially so that it continues to go round long after the initiator(s) is/are dead.<br /><br />I want to set up a WORLD CLASS academy of Management, ICT and FX Trading that will be completely free to its students (tuition, accommodation, and stationary support) and Kept afloat by a board of contributors.<br />Until I can organise the board the school will actually be just a personal fund of mine offering educational support to the kid that wipes your windscreen in Lagos traffic.<br /><br />who knows,the school might just continue to be a place for them to crash, a payment to their parents to stop them from harassing the kids out to risk it for N200 a day, laptops and fees plus transportation to that lekki British whatever school, and from there maybe apti-american university or hopefully we would have done the job well enough for them to shoot at Harvard scholarships.<br /><br />thats the Dream/Plan. Take em&#039; in...teach fluent English, mastering of math, etiquette... move on to secondary level(world class, no be 9ja) education probably shortened to remove all the unnecessary bits and give advice on specialisation into the 3fields mentioned all from the context of personal enterprise(cuz its not like there&#039;re jobs out there for them anyway). also there&#039;ll have to be free psychological assistance towards improving what they expect they can get from life and their worth...<br />but it will be about how well each kid can be inspired, not how many kids. so if it can only be 10kids every year then I guess Na to manage the ten and pray for the ability for more instead of spreading the budget thin... and when they&#039;re done with education there&#039;ll be entrepreneurial support or jobs, but the basic premise is that the fund makes turns urchins to high net-worth individuals and these individuals support the fund which takes more urchins and so on, round and round.<br /><br />it&#039;ll be an expensive plan to make happen, would take a decade plus to even see the fruit, and not everyone you try to help will be helped, but as long as the fund continues, somebody out there in the cold has a shot of leaving the cycle of poverty he was born into for reasons best known to his family...<br /><br />ITS NAIVE right? It only sounds that way because I haven&#039;t Ironed out all the details but I think its a model with potential. besides, its either this or build another orphanage that just turns them loose when their 18with skill acquisition in tailoring and carpentry, u catch my drift :-\\<br /><br />also I&#039;d be happy if some one out there with money steals my Idea, the more ther are of us the better. I&#039;m probably not even the first guy to come up with the silly Idea :D','xx'),(11,4,3,1223148385,4,11,'Ralphie\'s dream2(addition to Ralphie\'s dream)','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','forgot to add that I plan to start financing the fund with forex trading. and dont worry, I&#039;m actually getting good at it right now.','xx'),(12,4,3,1223464026,6,12,'Re: my dream','toju','toju_fregene@yahoo.com','77.220.15.130',1,0,'','hey...just read ur dream.its definatli not silly.sounds to me like quite an amount of thinking,plannin a heart felt desire has gone in2 it.ur ryt,ur probli nt the 1st to hav the dream,many hav tried,bt dont let it go,get to work,so u kan b the 1 2make it happen wiv a difference...that xtra touch.il b prayn 4u on the whole &#039;sum1 wiv money &#039;stealn ur idea&#039;....so we do u plan on kumin bak home?ANYWAY,im totali intrestd in the English&amp;etiquette part.hav my &#039;roots&#039; in that,so if u eva kan/1nt to discuss...redi wen u are.tkcre of urslf','xx'),(13,5,4,1223465532,6,13,'emotions','toju','toju_fregene@yahoo.com','77.220.15.130',1,0,'','it&#039;d be nice to discuss what it is about our emotions that give them so much power to influence our decisions.from little things like impulsli buying that dress not b&#039;cos we hav the money,but b&#039;cos we fil &#039;happy&#039;&amp;oohh,its so gorgeous,to &#039;moderate&#039; thns lyk slwmming the door in an uncle&#039;s face cos we&#039;r mad&amp;major thns lyk compromisn our values b&#039;cos we&#039;r &#039;in luv&#039;.at the end of the day,we always &#039;see clerli nw the rain is gone&#039;...but do we always hav to go thru that phaze?','xx'),(14,4,3,1223565891,1,14,'Re: my dream','damidgr8','d_oluwatoyinbo@yahoo.com','193.219.244.3',1,0,'','t-o-j-u thanks for breaking the ice.thanks for screaming your dream. ;)<br /><br />ralphie, if i say i&#039;m not inspired by your dreams i&#039;d be lying. 8)<br /><br />I believe our dreams will definitely come true as we assist each other in every way we can.','xx'),(15,2,5,1223566552,1,15,'Re: It\'s great to be here.','damidgr8','d_oluwatoyinbo@yahoo.com','193.219.244.3',1,0,'','it&#039;s great to have you here toju and ruach.i have no doubt that this forum will be a lot more exciting because you joined.you are so welcome. :)','xx'),(16,2,5,1223574210,9,16,'finally....','fiyin oluwatoyinbo','fify_actiong@yahoo.com','80.250.35.214',1,0,'','Im so happy cos I&#039;ve been looking for a forum like this.My name is Fiyinfolu Oluwatoyinbo,a physics electronics student,a singer,dancer,writer and actress.i&#039;m looking forward to meeting the right partners for my ministry and destiny.God bless you Damilola.','xx'),(17,4,3,1223574804,9,17,'Re: my dream','fiyin oluwatoyinbo','fify_actiong@yahoo.com','80.250.35.214',1,0,'','phew.....someday I know I&#039;m going to be singing,dancing and preaching all over the world.I want to hold fund-raising concerts for the less priviliged.I want to have a dance school where people especially children(girls precisely)can learn how to dance.i dream of seeing myself on the cover of magazines,newspapers,bill boards,television adverts,books,tapes and cds.....I see myself as a female force in the nigerian telecommunication industry.i want to be model to girls in my generation and those unborn.......i want to die empty.','xx'),(18,2,5,1223575438,1,18,'Re: It\'s great to be here.','damidgr8','d_oluwatoyinbo@yahoo.com','193.219.244.3',1,0,'','vinvin.sorry fify.gr8 to hav u in the forum.i&#039;m&nbsp; sure you r going to forge healthy relationships here.enjoy. ;)<br />','xx'),(19,6,5,1223577351,1,19,'Pls start your own post.','damidgr8','d_oluwatoyinbo@yahoo.com','193.219.244.3',1,0,'','I understand that it might be a litte challenging for new members of this forum to find their way around so i&#039;d encourage older/more experienced members to assist new members in navigating.I&nbsp; have noticed that almos teveryone seems to post in reply to an&nbsp; old post.That shouldn&#039;t be the case every time.Its alright for you to reply to a post but its also very important for you to start your own post.For example, in the introduction page, instead of replying to my post titled &quot;it&#039;s great to be here&quot; you could click on &quot;new topic&quot; and write your own introduction titled &quot;i&#039;m excited about this forum&quot; or give it any other title you like.<br /><br />Also, you can go to any of the other boards-emotional,mental,financial etc and be the first to post your thoughts.You don&#039;t have to wait for a post that you can reply to.Let your post be the one other dreamers reply to. ;) Remember you are a dreamer so you should be proactive.<br /><br />I really hope this is clear. <br /><br />Thanks for reading this post. ','xx'),(20,4,3,1223577616,1,20,'Re: my dream','damidgr8','d_oluwatoyinbo@yahoo.com','193.219.244.3',1,0,'','go girl.who says it can&#039;t happen?','xx'),(21,5,4,1223581002,1,21,'Re: emotions','damidgr8','d_oluwatoyinbo@yahoo.com','193.219.244.3',1,0,'','hmmm.there&#039;s a whole lot to talk about here.i wonder who&#039;s going first...[color=red][/color]','xx'),(22,7,5,1223630936,10,22,'You are different and Unique - (Be yourself)','lade','shawtylade@yahoo.com','82.45.133.130',1,0,'','Sometimes in life, everyone wants us to be perfect. the world draws a picture of what they want you to be. As a Pastors Child or someone whose father is the founder of a church (You are expected to be an angel). For example, you must not have a boyfriend, sleep around, wear jeans or wear bikinis. You are suppose to talk in a particular way. Don&#039;t you think, the more you continue to jump to what everybody wants, you would continue to jump for the rest of your life.<br /><br />My advice would be, accept yourself for who you are. Don&#039;t let anyone shape you into something that you are not. If God looks down today and he sees that girl wearing Jeans, but serving him whole-heartedly, Isn&#039;t that what really matters. Don&#039;t get me wrong, as a person, you know somethings are bad and wrong, my advice is that you shouldn&#039;t do those wrong things but at the same time, be comfortable with who and what you are. God created you that way and their is nothing you can do about it. What is the point of pretending when you will always be mysterious and never happy with yourself. Instead you would be angry at the world. <br /><br />Once you learn to accept yourself for your weaknesses, your strengths and your fault, everyone would have no choice but to love and accept you the way you are. And if they don&#039;t then maybe they are not meant to be in your life. The bible says we are wonderfully made. A royal priesthoood, A peculiar nation.<br /><br />Be yourself, be happy and remember at the end of it all, there is one race we are all running, only God can give the power to us so that we can be through. I maybe a Pastors child but I am Lade. I am Me, I am Special. I am what God says I am. Not what people want me to be. My goal is not to make any body proud of me but my goal is to look back, and see God looking at me and saying &quot;Well done my daughter, am proud of you and I want to be able to stand in the society adn say, Lade, I am proud of you. You have done well for yourself.<br /><br />Go out there people, and be what you wanna be. Be happy with who you are because you are unique and special.<br /><br />God bless :)','xx'),(23,8,3,1223631683,10,23,'God\'s dream - Could it be mine too.','lade','shawtylade@yahoo.com','82.45.133.130',1,0,'','Yah, we all have our dreams but actually is that the dream God wants for us. You know Man Proposes but God disposes. As a little kid, I always wanted to be a doctor or something in the medical field. Look at me today, am a sponsorship assistant. I do community work. I never knew I would love that so much. I never knew I would be good as a Children Teacher, I never knew I could sing or write, guess those are the dreams that I never knew about myself.<br /><br />My final note to whoever reads this is that, there is nothing wrong with having your own dreams but soak it well with prayers and if God changes the steering wheel, let him. You might not be happy with what he changed it too but he knows you more than anyone and he knows what you are good at. Let him be the driver and you just follow obediently. he would never let you fall.<br /><br /> 8)','xx'),(24,4,3,1223631832,10,24,'Re: my dream','lade','shawtylade@yahoo.com','82.45.133.130',1,0,'','I have a dream or should I say I had a dream. My dream for now is something I don&#039;t know. I had so many dreams but it keeps changing and my life just keeps changing with it. ','xx'),(25,9,4,1223632627,10,25,'Relationship','lade','shawtylade@yahoo.com','82.45.133.130',1,0,'','yah, we talk about God but what about finding the right person. Yah, I know it has to do with prayers &amp; patience but what if patience, perseverance fails. What if you are getting way too old and still waiting for the right person? What do you do next? ??? ???','xx'),(26,10,2,1223632752,10,26,'What shapes you','lade','shawtylade@yahoo.com','82.45.133.130',1,0,'','Your culture, your God, or the environment','xx'),(27,4,3,1223648130,10,27,'Re: my dream','lade','shawtylade@yahoo.com','82.45.133.130',1,0,'','Oh yah, previously my dream was to have one of the best schools in Nigeria but finance it from overseas (that way, excluded and poor people would be able to afford it and then get the quality education they want). Another dream of mine was to write articles most especially for Youth ( I have written about 6 already but they are inside my drawers I think) maybe I would post it sometime and then advise Church Leaders children particularly in a Country like Nigeria who are struggling to fit into the community and who feel they are not loved. I wanna have my events company in Nigeria. I want to do Counselling mostly coz that is where my strong point is. <br /><br />But as I said earlier, guess dreams do change. For now, I don&#039;t have a dream. ','xx'),(28,7,5,1223671759,1,28,'Re: You are different and Unique - (Be yourself)','damidgr8','d_oluwatoyinbo@yahoo.com','41.219.232.143',1,0,'','hi lade.i&#039;m so excited that you are part of the forum.We are all going to learn a lot from you.<br /><br />I do agree that there are too many people who are forcing themselves into the mould that society has formed for them.That&#039;s a dangerous way to live.Like you say &quot;you are who God says you are not what others call you.&quot;<br /><br />Thanks for such a beautiful post.','xx'),(29,9,4,1223677456,1,29,'Re: Relationship','damidgr8','d_oluwatoyinbo@yahoo.com','41.219.232.143',1,0,'','That&#039;s a good one.<br /><br />Most of us focus more on finding the right person instead of focusing on how to become the right person.Your signature is so profound and it captures my thoughts along these lines &quot;You attract people by the qualities you display and keep them by the qualities you possess.&quot;<br /><br />If you become the right person, you&#039;ll surely attracct the right people.It&#039;s only natural for sugar ants to crawl over sugar.It&#039;s only natural for moths to flutter around a candle flame.One old proverb puts it this way birds of the same feather flock together.<br /><br />In a nutshell focus on developing yourself and the right man will show up at the right time(don&#039;t put yourself under any pressure-peer pressure or any other)<br />If you want to end up with a caring husband, groom yourself to be a caring wife.<br />If you want to end up with a diligent,disciplined,devoted.....husband then train yourself to be a diligent,disciplined, devoted.....wife.<br />If you want to marry a King, be a Queen.<br /><br />','xx'),(30,11,6,1223677910,9,30,'dont settle for less!','fiyin oluwatoyinbo','fify_actiong@yahoo.com','80.250.35.214',1,0,'','&nbsp; &nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp; &nbsp;  Its funny how sometimes we resign to fate when we find ourselves in situations or positions we really dont want to be when all it takes is one determined step forward. Come on! there&#039;s still a better place ahead. Motivational speaker Mack Anderson explains :<br />&nbsp; &nbsp; &nbsp;  <br />&nbsp; &nbsp; &nbsp;  &quot;At 211 degrees Farenheit,water is hot.At 212 degrees,it boils,this produces steam and can power a locomotive&quot;<br /><br />&nbsp; &nbsp; &nbsp; So you see what just 1 degree farenheit can do?So you&#039;ve just got to move on,you never know which step will take you there.<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  shalom!','xx'),(31,11,6,1223678824,1,31,'Re: dont settle for less!','damidgr8','d_oluwatoyinbo@yahoo.com','41.219.232.143',1,0,'','that&#039;s so profound.<br />another way to put it is &quot;the next step you take might just be the one that will land you on the goldmine&quot;<br />there were some things i was planning to do much later but i&#039;d do something about them tonight cos of your post.thanks fiyin.','xx'),(32,12,4,1223680594,10,32,'Yah, I wanna talk about Sex','lade','shawtylade@yahoo.com','41.247.156.229',1,0,'','Let’s talk for a moment about the word “SEX”<br />Many people particularly parents are scared to talk to their children about “SEX”. A three letter word that can destroy one’s life and change it forever. The reason why some of the children end up sleeping around is because their parents fail to talk about it and so when they get the chance, they go all out for it. Sometimes curfew for 10:00 p.m at night doesn’t help because the kid may sneak out. Another thing is that, they may lie to you by telling you that they want to go and visit their friends. Don’t get me wrong, I am not saying you should start suspecting your kids, but it is time that you wake up and see reality. Talk about it. Tell them the advantages and disadvantages of it before it comes back to hunt you and then, it becomes your worse nightmare when you end-up being a grandpa or grandma for a kid whose father is not there to take up the responsibility. A friend of mine was telling me about her ex-boyfriend. She told me that she loved him so much but things just went wrong. She asked me the following questions: “Was I a fool to fall for him? Am I really a disgrace to have fallen for him knowing that my father is a pastor and my mum is a deaconess? Was I selfish and inconsiderate? If you think that by sleeping with a guy you have control over him, then you have another thing coming. If he tells you to prove to him that you love him by sleeping with him, then “[b]tell him that, if he really loves you, he would wait because love waits patiently.” [/b] If he doesn’t wait, then he doesn’t deserve you. <br /><br />You deserve better than what he is giving you. Sleeping around as a female does not make you have experience but instead it makes you to become a second-hand. Nobody wants a second-hand because they want the person who can give them all. The same goes for men or guys. If you think that by sleeping around, you have become a man, think again. Your chances of getting STDs, HIV and other diseases are just increasing daily.<br /><br />Remember that human beings can never love or satisfy us the way the Lord does and he is the one who can give you unconditional love and peace. No matter what happens, happiness is something we all deserve and we owe it to ourselves to be happy. Although we may feel disappointed because we believe that no matter how much time, effort and money that we put in a relationship, it never happens. We just have to be patient and never stop believing. We have to open our eyes so that when it slaps us in the face or when it walks infront of us, we would not be too blind to see it or notice it or be overcome with a lot of self-pity that we wouldn’t grab it. There is someone special for us all, we just have to be patient. Never allow your blessings to pass you by because it isn’t packaged the way you expect it. <br /><br />While watching an advertisement one day, I saw a lady teaching people how to use condoms. It was educative but the fact was that, they never mentioned anything about Abstainance. The government sometimes encourages people to condomize and also introduce various types of condoms but they never tell people to stay away. Let us look into the Scriptures, Ephesians 5:3-4 says “But among you there must not be even a hint of sexual immorality or of any kind of impurity, or of greed, because these are improper for God’s holy people. Nor should there be obscenity, foolish talk or coarse joking, which are out of place, but rather thanksgiving.” The Bible warns us to flee from all sexual immorality, adultery, fornication e.t.c. It is clear from the scriptures but sometimes due to peer pressure, we want to forget&nbsp; God’s word. <br /><br />We all make mistakes in life and it is improper for me to judge because I am not perfect. The bible warns us not to judge so that we may not be judge and it also admonishes us in the book of Matthew to remove the speck in our eyes before removing the log on our brother’s eyes. We are all guilty of one sin or the other. We may be guilty of sexual sin either with the same sex (homosexuality) or with opposite sex, we may even be guilty of oral sex or we might be guilty of masturbation (i.e. trillating your sexual organ with your own hands either with or without gel). We may be guilty of watching nude movies. Many people don’t understand the warning they put on most of this movies i.e. the age restriction movies. Let me enlighten you. If they write 16SVLN in a movie this means that any child younger than 16 years must not watch the movie because it contains (S – sex, V- violence, L – language and N- nudity). What do we mean by Oral sex – Oral sex is just a phone call. You call one of those ladies who work at Jungle Cats or Pleasure dome i.e. the strippers e.t.c and you tell them to start talking dirty with you or it could mean you licking your penis or private part. Sometimes a girl or lady does it for the man so that she can lick out the juice that comes out of his penis in form of a gel or you call them and they start talking to you (they would tell you to picture yourself with them either in the car, a beach e.t.c and then the talk starts, they even make those dirty noises that they make when they are having the normal sex). All these are what the Bible wants us to flee from them no matter what. We have the power, but sometimes we lack the determination and the strength because we so much enjoy it. It is not for me to judge but no matter how great your sin may be either you are a murderer (those who have aborted or executed an innocent baby during pregnancy), God is willing to forgive you if only you turn unto him for help, he gives us a second chance at every point in time. The book of Isaiah 1:18 says, “Come now, let us reason together says the Lord, ‘though your sins are like scarlet, they shall be as white as snow, though they are red as crimson, they shall be like wool.” God has forgiven me a lot of times and he can do the same for you. I may not have done some of the things you did but I am no angel neither am I innocent. He is a loving father whose arms are always open. Don’t let your sin and the devil overcome you. Remember what Romans 6:18 says, “For sin shall not be your master, because you are not under law, but under grace.” I am not going to preach to you but I am your friend and I love you. I can never force you to do something you are not ready for, it is your choice but time is flying. Turn around before it is too late. I think you must weigh your options, the guy or lady you are prepared to sleep with or is sleeping with, how sure are you that you are the only person he has slept with? If he says so, then check your fact, do your homework, he may be telling the truth or maybe not, have you checked if he or she doesn’t have AIDS, STD (Sexually Transmitted Disease) or any incurable disease. It is your choice but I hope you make the right one.&nbsp; <br /><br />For those young girls, who follow the sweet talking of a guy that, “if I have sex with you, I will marry you.” That is the greatest mistake you can ever make. Never allow a guy to sweet talk you into having sex with him.&nbsp; You don’t need the opposite sex to satisfy you financially or materially, it is time&nbsp; ;Dyou get up and work for yourself, this would help you to stop and actually appreciate yourself. It would also raise your self esteem and make you realize that you don’t need anyone to survive except the help of the Almighty God. Think about it. Maybe you have made the mistake in the past, God is still willing to forgive you.<br /><br />For the parents, who know that their children are sexually active and you have talked to them about it, then maybe it is time you got actively involved in another way. Take that child of yours to someone of her sex who had a baby at a young age or who contacted AIDS at a young or old age. Let that child of yours, stay with the person for 2 weeks and make sure she does all the things the person does e.g. waking up at night to take care of a baby, going to counseling and support groups for people with AIDS and seeing all the medication he or she has to use and things like that. Let that person advise her but during this time either two weeks or one month, make sure you as a parent back-off and don’t get involved or else you would spoil the whole thing. Another thing is to give her number to someone of her age or older who has more experience and let the person talk to her and at the same time, don’t get involved or you would spoil the whole experience. Maybe it is time, for you as a parent to stop and be a friend to your child, a friend she can come to and talk about anything. A very good friend and also a parent when it seems necessary. It is also your choice. I know it is not easy to follow your head when you are lonely and so you follow your heart. But, mistakes can lead to hatred, rejection and anger. So think twice with your head and not your heart if you don’t want to make a mistake.<br /><br />CONCLUSION<br />Having weaknesses makes us human because nobody is perfect but never allow your weaknesses to overshadow your good qualities. You may think that you have no good qualities but deep down inside you, there is a special, nice, caring and loving person. Don’t become defensive when people notice it. Sometimes we so much hold unto the past that we are scared of the future and the future looks so uncertain to us. It sometimes looks as if we are never going to live for our time. We create so much bondage for ourselves that we are chained down. Until we decide to set ourselves loose, we can never move forward. The journey is definitely not bread and butter and the more you want to change or believe in yourself, start finding something positive about yourself, the more people put you down, and the more you feel your heart with anger, hatred and fear of the future. Just take each day at a time and tell yourself everytime you wake up that you are somebody. What my cure is may not be your cure but remember to always do something that makes you happy. Don’t be comfortable with your past. Move on!!! Remember what the Bible says in the book of Isaiah 43:18-19 “But the Lord says, do not cling to events of the past or dwell on what happened long ago. Watch for the new thing I am going to do. It is happening already – you can see it now! I will make a road through the wilderness and give you streams of water there.”<br /><br />Only God can heal a broken heart and he is calling you today to open up to Him, let Him take control and charge over your life because He is the only one that can bring peace, joy, and happiness. You may be down right now and hope may be lost but God is willing to give you a second chance. You are a victor not a victim and He would give you the ability and strength to laugh at the storm. It is never too late to come to him because his arms are wide open. He is ready to receive you only if you allow him to come into your life and your heart. <br /><br />How to Solve your Problems?<br />•	Don’t fear the problem<br />•	Study and analyze the problem (get advice)<br />•	Concentrate on the solution<br />•	Select a solution that is good<br />•	Act on it with prayer.<br />Remember not to be part of a problem but instead be the Solution.<br />','xx'),(33,9,4,1223680855,10,33,'Re: Relationship','lade','shawtylade@yahoo.com','41.247.156.229',1,0,'','thanks. that is quite a difficult task becaus as human beings we tend to believe that we are perfect and everyone must bend or adjust to us. that is a pride, that needs to drop. Am as guilty as everyone else. <br /><br />My Question is what I would ask again and please, feel free to contribute.<br /><br />1.&nbsp; Why is keeping your virginity for marriage so important<br />2.&nbsp; When a man have sex before marriage, it is okay but when a woman does the same thing, it is a taboo? Why?<br /><br />Just the two questions.&nbsp; :)','xx'),(34,5,4,1223681044,10,34,'Re: emotions','lade','shawtylade@yahoo.com','41.247.156.229',1,0,'','What about emotions,<br /><br />What do we fear most about ourselves when it comes to our emotions? Do we cry a lot, do we become aggressive? Do we hide our pains and feel it with laughter? Come on people, it is time.','xx'),(35,13,2,1223681872,10,35,'You are not ALONE (take time) it is quite a mouthful','lade','shawtylade@yahoo.com','41.247.156.229',1,0,'','YOU ARE NOT ALONE<br />I look around me and all seems quiet and scary. I felt alone and prayed a little prayer for God’s protection upon my property and me. Was my prayer answered or was I wasting my saliva? That, I don’t know. Where has everyone gone too? I am deserted, lonely, afraid and lost. People don’t know how I feel and I am willing to tell you the way I feel if only you would understand. <br /><br />•	I feel unloved by my family and friends<br /><br />•	I feel stupid because I have just impregnated my girlfriend and people tell me that “I am stupid”<br /><br />•	I fell confused &nbsp;and lonely<br /><br />•	I fell scared because I married at a young age or they warned me never to marry that man but unfortunately, I am now a mother.<br /><br />•	I feel betrayed<br /><br />•	I feel I am a disappointment<br /><br />•	I feel like killing myself because life is worthless &amp; nobody cares about me.<br /><br />These are some of the complains we make every day in life. “I” is all we say forgetting that people like us may have the same problem and are just as desperate as we are for someone. My mother beat me last night and she has been acting strange to me lately every time I greet her. My Dad doesn’t even care and he always complains about what I do. Why worry and why are you afraid?<br />Because of your insecurity, you don’t feel like talking to someone because they don’t understand and they don’t care. <br />I hate my life and I hate myself. My parents told me that they hate me and that I am a pain being born to this world. I cause trouble wherever I go and people don’t know me for good at all. They think I am useless and that I am nothing but stupid and a pain. My parents beat me everyday and they even went to the extent of sending me away from home. I am tired of my life and all I can think of now is to kill myself since I am no use in this world. This are some of the things and the challenges some of us face in everyday life but are too scared to talk about it or worried in opening up. <br /><br />God cares for us even when we think He is far off, his love is always closer than we think. &nbsp;The main reason why we don’t feel God’s presence and love in time of trouble is because we have placed our situations and problems ahead of God and we wouldn’t hear His voice nor feel Him. Our God loves a quiet place and until we realize that, we can never carry the problem alone or solve the problem with our power that is when we would feel God’s presence. He is our very help in time of need and He would never leave us nor forsake us. Sometimes we tend to behave as if God doesn’t exist but have we tried to place our situation, worries and troubles in his hands? We may have gone through hard times in life but sometimes trials and temptations come to test our faith and see how high we are in the Lord. A young girl of 10 years was telling us of how she went from her country to another country preaching the gospel and through her word; people took advantage of her and raped her. She told us that she never said a word because she knew that she was suffering for God and that she would receive an everlasting crown when God comes in glory. This taught me a lot of lessons, because left to me; I would have given up on preaching the gospel. In our society today, it is only the grace of God that can allow you to succeed and with His help, you can overcome anything. The parents that you look up unto as your role model sometimes may disappoint you but remember that there is no friend like the lonely Jesus. <br /><br />Loneliness on its own is a tactic from the devil because he knows that when you are lonely, you would only be thinking of something that would not benefit you or the people around you. I want to tell you that human beings may disappoint us, but God would never fail us, neither would he let us down only if we allow Him to take control of our lives. The teachers you trusted to lead you, may end up misleading you, sometimes they may be the one that will make you denounce your faith in God because of their behavior. I want to tell you that human beings may fail you but you have a Father that would never forsake you. He came to this world in human flesh so that He could feel your pain. God is the only one that can heal a wounded heart, whether you have been raped, abused, manipulated, betrayed or cheated. The government may even disappoint you because you trusted them to protect you and after telling them what has happened, they turned their backs against you. They are all human beings and would continue to behave like that because they sometimes listen to the flesh and not the Spirit inside them. It is only the Almighty God who has the supernatural power. There is nothing the herbalist or witch doctor can do because they are also human beings. The medicine or concussion they give us may work at that point in time but it is never permanent. <br /><br />I was also speaking to a friend of mine who was depressed and lonely. I asked her why she was crying and she told me that someone told her that, “She’s worth nothing”. I sat down and explained to her that what people think about you or what people say about you doesn’t matter but it is what you think about yourself and say to yourself that counts. If you can’t believe in yourself, then don’t expect anyone to believe in you. You must have a high self-esteem. Life is full of challenges and obstacles but only the one who is strong shall stand. Sometimes you may sit down and the next thing is that you want to kill yourself; some even turn to drugs because they believe it would take the pain away. I have a message for you today. You are the apple of God’s eye and the Bible says that even if your parents forsake you, God would never forsake you. The Father (God) valued you so much that he spared nothing, not even his own son Jhn 3:16 “for God so loved the world that he gave his only begotten son that whosoever believeth in him shall not perish but have eternal life”. But instead He gave it freely for you and me. Do you feel valuable? Do you feel precious? Do you feel treasured? If you don’t know that you are valuable and precious to God … You need to renew your mind to the truth of whom the Word of God says you are! The kingdom of heaven is like a treasure hidden in a field. When a man found it, he hid it again, and then in his joy went and sold all he had and bought that field. Matthew 13:14. God sees you as a precious treasure. He gave up all He had to redeem you back, from the power of darkness. Hebrews 12:2 says that Jesus endured the cross “for the joy that was set before him,” despising the shame. You and I were the “Joy” that He saw when He went to the cross. He knew that when He gave himself for you, you would be free to come and live with him forever. That is how precious you are to God. To God you have great value. You may think you are nothing but to God you are something and you are special. If you had been the only person alive on earth, He would still have sent His son to die on your behalf. Romans 8:32. That is how valuable you are to God! Isaiah 43:1-2 “Fear not, for I have redeemed you; I have summoned you by name; for you are mine. When you pass through the waters, I will be with you; and when you pass through the rivers, they will not sweep over you. When you walk through the fire, you will not be burned; the flames will not set you ablaze … since you are precious and honored in my sight and because I love you”. All you have to do is to accept him and open up to him. Tell him your deepest secret, pain, anger, shame and every thing that nobody knows about you because he loves you. His load is easy and He says in Jeremiah 33:3“Call to me, and I will answer you; and show you great and marvelous things that you know nothing about.” Open up to God and he would allow his light to shine upon you but how can you open up to him if you haven’t given your life to him. You must first give your life to God and call upon him to come into your heart and heal your wound. He is the only one who can heal a wounded heart and he is waiting for you. It is never too late and he is still waiting patiently for you because he is never tired of you and he is never tired of your prayers no matter how many times you call unto him. You are not alone because Christ is with you. God gives his very best to those who leave the choice to him but remember that life is full of challenges, obstacles and trial and through this, God is shaping your personality and also shaping you for higher and greater things. Once you overcome this, then you would become stronger in the Lord. Try to talk to a Christian brother or sister because you don’t know if they have passed through the same situation, you are passing through. In addition, you must learn from the mistakes of others because you can’t live enough to make them all yourself. You must also ask for the help of the HolySpirit and for his anointing because with him on your side, the devil wouldn’t be kicking you around like a soccer ball. To all Parents, Teachers and Church Leaders, why don’t you give the children a chance to prove themselves and to show them what they are made up of? Why do you look at their weak points and find nothing good about them and even if we do, why do we find it difficult to tell them? Why don’t we accept them for whom they are and teach them the right way to go using their weak points? Some parents only realize their mistakes when it is too late. The Bible says, “Children are the heritage of the Lord”. Many people have caring attitude but they don’t have kids. Well, maybe you should take this opportunity, go to a motherless baby’s home, and adopt a child. Bring him up the way you would have brought your kids up if you had a chance and some have kids without knowing how to bring them up. Have you forgotten Proverbs 22:6 “Train up your child in the way he should go and when he is old, he would not depart from it”? Nevertheless, what do you do to a child who has departed from the way in which you trained him? You still have to love the child and correct him because one day, he would look back and appreciate what you have done for him/her. The main reason why some children are doing some things today is because they don’t have the fear of God while some of them have the fear of God but still do the wrong things because they haven’t surrendered totally to God. It may take time to bring the children back but would you be patient enough for the time? Sometimes, parents expect too much from their kids most especially members of the Church expecting too much from a leader’s child, well, we are all human and we make the same mistakes because we are not perfect. God wouldn’t separate the Church Leaders children from normal kids when we get to heaven because he sees us as being equal and we are prone to making the same mistakes. Some children even go to the extent of doing what their parents, Church members and friends forbade of them. The question now rests on us, if we gave them the love, support and encouragement they needed or did we abandon them because we don’t support what they are doing? Some children teachers pick on a particular child everyday by telling their friends “she is too proud” and things like that but have you ever asked yourself that if they were your children, is this the way you would put them down with your words? I think the answer would be “NO” because we love them and we want the best for them but why don’t we do the same for the ones God has placed under our care to love and support? We even pretend to be praying for them when we don’t even know their names. It is time to make a change and accept everyone either they are related to us or not. You may be wondering why I have been mentioning kids all day long. Remember that we are the leaders of tomorrow and our future lies in your hands. This message goes to all children. The bible says, “Children, obey your parents in the Lord. Honour your father and your mother so that your days may be long on earth”. &nbsp;Respect those who are older than you are. &nbsp;Time is running by and it is time for us to arise and make a difference in this world of ours. It is time to arise boldly with power and think of a way to make this world a better place. In conclusion, to what I have mentioned above, you must remember that “to handle yourself, use your head, but to handle others, use your heart. Think twice! Your word means a lot. It can either heal a soul or destroy it forever”. No matter what your parents, friends, family and the people you once loved have done to you that has created a lot of hatred, it is important that you forgive them. Un-forgiveness can lead to hell fire and keep in mind that “Forgiveness is the fragrance of the violet that still clings to the heel that crushed it”. <br />Finally, thank you to my friends once again because you are just like angels who lift my feet when my wings have trouble remembering how to fly. Thank you because I can always count on you but thanks to my Creator, because He created me for a reason and that I am not a mistake to be born.<br /><br />Sometimes you may ask yourself why that particular incident is happening to you and not to anyone else. The first reason is because God loves you and he is trying to get something through to you. Have you ever asked yourself if you were tough enough for that particular situation? The answer maybe NO. &nbsp;Life is like a field of newly fallen snow and don’t forget that where you choose to walk, every step will show. Your thought sometimes predicts what you think and it shows the quality of what God would do for you. The thing you may be withholding in your hands or in your heart right now is what makes you weak and until you find out that it is yourself, you would never be able to conquer your fears and doubts and move on to a higher level in life. You must also remember, “What lies behind you and what lies before you are tiny matters compared to what lies within you”. You may have tried several times and feel like giving up but “Courage does not always roar, Sometimes courage is the little voice at the end of the day that says I will try again tomorrow” Someone still knows what you are passing through, someone still cares for you and someone still whispers your name in prayers. I do care and I know that God cares so much. Even if you don’t want to accept it, I know it is a fact. You are not alone in this race and God is waiting for you. He wants you to open the door of your heart to him. He says in Matthew 7:7 “Ask and it shall be given unto you, Seek and you shall find, Knock and the door would be open unto you.” God is waiting for you and he would continue to wait until you say to him “I surrender all” Are you ready to take the step and let him in? He is waiting for you and he is ready to accept you. Take a step of faith and pray a prayer of faith today. Acknowledge that you are a sinner and ask him to forgive you for your selfishness for not inviting him into your heart before today and ask him for help. It is never too late and it is not over. You are not a sorry case. <br />Your friends are also there to help you if only you give them a chance. I am talking about your true friends. A friend is the one who comes to you when the whole world goes out.<br />Your parents would always be there for you. They still love you because they gave birth to you. They know better than we do and you just have to give them a chance. Don’t write them off from your life. They are always there and they are definitely waiting for you. <br />Failure is not final. You may have tried to work things out with your parents before but it seems as if your plans have been destroyed. I want to tell you that it is not how many times you fall that counts, but it is how many times you rise on your feet and never allow the situation to get you down. You must be committed in whatsoever you lay your hands upon because “Total Commitment determines your degree of success and what is in you would determine what God would do for you”.<br />Christ in you is the hope of glory and God gives his very best to those who leave the choice to him. The goal may seem nearer than expected but the journey may seem hard and unbearable. God is waiting to make your yoke light and he wants to walk with you all the way. It is not your ability that counts, but your response to God’s ability. A smile on your face today can make our world a better place. You must never give-up on your hopes and dreams because “Hope sees the invisible, feels the intangible, and achieves the impossible”. You must also remember that to FAIL means:<br />F = first<br />A= attempt<br />I = in <br />L= life <br /><br />Strive on to achieve the best in whatsoever you do and you would see God crowning your effort with success.<br /><br />In Conclusion, God is calling you today and he wants you to give him a chance. Revelation 3:20 “Behold I stand at the door and knock, if anyone hears my voice and opens the door, I would come into him and dine with him and he with me”. &nbsp;He is waiting patiently for us to take that step of faith and trust me you would never regret it. It is your choice and I hope you make the right one but time waits for nobody. You may think no one cares or understands but Jesus understands it all because he has already passed through what we are passing through right now. He is calling you now and if you give him a chance, you would be surprise what he can do for you.<br /><br />Someone is telling you that you are worth more than gold. Someone out there cares for you and he/she is ready to lead you through and carry your load with you because you cannot carry it on your own. Although the mountain may seem too high to climb and the river too wide to cross. The journey in life may look endless and the road seems bad, I want to tell you to know that with God on your side, easier goes the way. Just learn to take one-step at a time and one day at a time. God, who made a way in the Red Sea for the Israelites when the Egyptians were chasing them, would definitely make a way for you because he is the same Yesterday, Today and Forever. <br /><br />God bless you (Amen).<br />','xx'),(36,14,8,1223682389,10,36,'Does He fill my pocket too','lade','shawtylade@yahoo.com','41.247.156.229',1,0,'',' I have prayed night and day and seems to get no answer instead the answer I got, was lots of unpaid debts. I went to the Church, I couldn&#039;t even pray. The pastor said we should come out if we needed a miracle, and I did, look at me 2 weeks later, I am still flat - my bank account is empty, my pocket is empty. I think I need a sugar mummy or daddy to give me a quick fix, at least that is one of the blessings. Yah, choice number one. Choice number two is to go out there and look for a job while the last choice is to continue to wait patiently upon the Lord for some sort of miracle. The choice is yours. Now the answer lies within us all, does he fill my pocket too? Who is he? :o','xx'),(37,13,2,1223682628,1,37,'Re: You are not ALONE (take time) it is quite a mouthful','damidgr8','d_oluwatoyinbo@yahoo.com','41.219.232.143',1,0,'','true talk.<br /><br />more people need to hear/read this.<br /><br />i hope you are going to put it into a book or an audio format.','xx'),(38,15,2,1223682882,10,38,'God - I don\'t need you anymore in my life. Leave me alone','lade','shawtylade@yahoo.com','41.247.156.229',1,0,'','Who watches over me when I cry at night? I need to let go of my past pain, anger, and hatred but I don&#039;t know how too. Sometimes life can be very difficult. The last thing we wanna hear is someone quoting bible verses to us or telling us about the love of the father. Other times, we just wanna be alone. We wanna run away. Sometimes, we feel like committing suicide. Guess what, I told you yesterday that, I feel like crying, that I am depressed and the I feel like dying. What did you say? You said it was only a phase and it would pass. I remember you saying that depression is from the devil.that wasn&#039;twaht I wanted to hear. I wanted to tell you that am scared. I wanted to tell you that my heart has been broken and I don&#039;t want to love anymore. I wanted you to know everything. But when I called you, I could not open my mouth to talk to you. I needed to tell you that I am tired of going to Church and all the responsibilities that has been place on me.<br />So what am i gonna do now?','xx'),(39,13,2,1223682994,10,39,'Re: You are not ALONE (take time) it is quite a mouthful','lade','shawtylade@yahoo.com','41.247.156.229',1,0,'','no sorry. none of the above. it is part of the 7 articles I have written but it would never see the light of day. but thanks','xx'),(40,14,8,1223683233,1,40,'Re: Does He fill my pocket too','damidgr8','d_oluwatoyinbo@yahoo.com','41.219.232.143',1,0,'','it&#039;s true the bible says &quot;My God shall supply all your need according to His riches in glory through Christ Jesus.&quot;<br /><br />The bible also underscores the importance of work.So we trust God to provide for us by working in line with His purpose for our lives.<br /><br />Moreso, we don&#039;t just work for money.We work to fulfill His purpose&nbsp; then money comes as a fnancial reward.<br /><br />Our work is actually an act of worship.<br /><br />When a car performs well, we praise/celebrate the manufacturer and we spend our money to maintain the car.Similarly, when we perform well professionally(in whatever field), the people around us celebrate our &quot;manufacturer&quot;-God and spend money on us(reward us financially).<br /><br />So we need both faith and works to produce wealth.<br /><br />However, i must also mention that we don&#039;t put our faith in our works but we put our works in our faith.','xx'),(41,16,5,1223683528,1,41,'MOVED: God - I don\'t need you anymore in my life. Leave me alone','damilola oluwatoyinbo','d_oluwatoyinbo@yahoo.com','41.219.232.143',1,0,'','This topic has been moved to [url=http://dreamersforum.com/index.php?board=2]Spirituality[/url].<br /><br />[iurl]http://dreamersforum.com/index.php?topic=15.0[/iurl]','moved'),(42,8,3,1223686992,4,42,'Re: God\'s dream - Could it be mine too.','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','Hmmm... Solid point.&nbsp; got some brooding to do...','xx'),(45,10,2,1223688893,4,45,'Re: What shapes you','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','I&#039;m afraid of arguing with God who seems to think free-will is an awesome idea(personally I think his intervention has done more 4my good than my free will ever has :-\\) so he lets your culture school you first, I dont think he shapes too much. but i guess he lines up circumstance that should shape you towards a purpose but theres so much free will in the eqaution that most of us will never know or fulfill this purpose....<br /><br />seemingly simple question...not so simple answer. I&#039;d say we&#039;re all products of our culture and environments we were born into...&nbsp; we&#039;re also shaped by our history of choices and what we kept as knowledge from experience<br /><br />I think the most important thing is the awareness that you can shape yourself regardless... mind over matter<br /><br />what shapes you...? ONLY WHATEVER YOU LET shape you :P','xx'),(44,4,3,1223687900,4,44,'Re: my dream','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','&nbsp; Thanks Toju, good 2know I&#039;m wont be alone when the work starts. Hi Lade, if your dream ever swings back towards setting up that school... (u can guess where I&#039;m heading with that thot),<br /><br /> in the meantime Lade, about the stuff you&#039;ve written thats still in your drawer... hey&nbsp;  you COULD post em&#039; here in one of the sub-forums. I&#039;m sure we&#039;ll respect your copyrights and stuff. As soon as i blow the dust of the notepad i used to write in I&#039;m doing that','xx'),(46,13,2,1223690594,4,46,'Re: You are not ALONE (take time) it is quite a mouthful','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','ok here&#039;s how its going to go Lade...<br /><br />you are either going to let them writings see the light of day.... OR your gonna get swallowed by a fish while walking away, get thrown-up, and then have to make your way back to Niniveh to let them see the light of day like they should have from the start ;D (hope u get the reference)<br /><br />no vex, I&#039;m kidding :)<br />but i think the gifts of Insight and counseling are&#039;nt gifts you should keep as hobbies.<br /><br />we with the ability to see, we being given vision of how it should be, we with insight to other peoples worries and societies problems, we given ability... are&#039;nt superheroes with a choice to keep our secret identity &gt;:(&nbsp; ... we are tools.<br /><br />besides I think the writings themselves want to come out of the closet. some of them have already made it out here and I&#039;m hoping the rest gang up on you and they just keep coming in torrents so that eventually it all has to gush out.<br /><br />sori if i sound pushy... i was actually shooting for encouraging :)&nbsp;  <br />dont put the pen down, dont put the note pad back in the bag','xx'),(47,17,7,1223709991,10,47,'Obsession with my weight.','lade','shawtylade@yahoo.com','41.247.157.215',1,0,'','I am so obsessed with my weight. I believe if I skinny, I would get the right guy who likes skinny girls. At least for a boyfriend. I used some diet pills but realise that it has its own effect. :-\\ Now I cannot decide, I am so used to people telling me that am pretty but now, they don&#039;t even look at me. I have become so fact and ugly. Who would tell me am beautiful both as a skinny woman and as a fat woman???? Who would look at me twice because I am very pretty? Questions about question. Weight becomes something that makes us obsessed. Men always say natural beauty but please give me a break, a woman has a heart of gold but nobody looks at her. They only look at the ones with the right packages in the right places. Honestly, I am tired. Very tired because I am tired of not loosing the weight I want too and my stomach is too big.','xx'),(48,10,2,1223710205,10,48,'Re: What shapes you','lade','shawtylade@yahoo.com','41.247.157.215',1,0,'','thanks eh. you put things into perspective. Yah. good to get more contributions','xx'),(49,9,4,1223717177,4,49,'Re: Relationship','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','&quot;you attract people with the qualities you display...and keep them with the qualities you posses&quot;... Wow. u know whats wierd is I think i can feel myself actually get wiser from listening to people on the forum. Hmmm...<br /><br />anyway, Lade society has its own idea of what a taboo is but in reality its a Taboo for either gender. <br />Personaly i think i like the way soceity see&#039;s it, sorry if that makes me sound like a chauvenist.<br />I... and society as a whole expect a greater purity and a higher degree of moral fibre from ladies(I say nothing wrong with that ;)) I think the bad part isnt that we think its a taboo for ladies,... i think the bad part is that we dont think its a taboo for ourselves(men folk) :-\\&nbsp; &nbsp;  <br />we want to have fun in our youth, then in the end we want to marry vigins(while not having to be virgins ourselves) <br />and we deeeeefinately dont want to date virgins...unless we&#039;re now ready for marriage.<br /><br />If you&#039;ve always been religious or spiritual you might not get what I&#039;m saying or think I&#039;m a backward chauvenist<br />If your new to spirituality you&#039;ll be able to forgive my opinion ;)<br /><br />but I think its a fortunate instance of double standards, I&#039;d hate to raise daughter in a world where women thought about sex the same way we guys do... the thought itself is scary ::)<br /><br /><br />as for the first question... my opinions would&#039;nt be very... ummm...&quot;INFORMED&quot; so I wont contribute on that just yet','xx'),(50,5,4,1223717704,4,50,'Re: emotions','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','Okay then here are a few nuggets to chew on<br /><br />[list]<br />[li]just how emotional is a guy allowed to be in relationships?[/li]<br />[li]how much of a persons heart should they give away(male or female) and how much should they sheild in a relationship?[/li]<br />[li](less importantly) who else agree&#039;s with me that the days of arranged marraiges were less complicated emotionally and maybe even better? at a particular generational level in one side of my family for instance all the marriages broke down except the ones that were arranged. I&#039;ve always found that intresting. so the question i guess is...Just how important is the whole &quot;I love you and you dey scatter my thoughts&quot;- factor towarsds a union that will last[/li][/list]<br /><br />I&#039;m hoping the last question makes sense cuz I&#039;m kinda rambling here<br />[/list]','xx'),(51,5,4,1223718078,4,51,'Re: emotions','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','Okay here&#039;s another one,<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [list]<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  [li]&quot;What do women want?&quot;[/li]<br /><br />[/list] <br /><br />its an open ended question. any gender can answer but I&#039;d appreci8 the female insight,<br />it could mean different things to different ladies so you can just free style it<br />MOST IMPORTANTLY its from the relationship context. <br /><br />feel free to list qualities, and answer in any form whether a &#039;one-liner&#039; or a poem...','xx'),(52,12,4,1223718309,4,52,'Re: Yah, I wanna talk about Sex','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','take it from a guy... that phrase &quot;if he loves you he will wait&quot;... totaly true. If he cant wait he doesnt know what love is...and thats a veeery dangerous guy to tangle destinys with :&#039;(','xx'),(53,12,4,1223741785,10,53,'Re: Yah, I wanna talk about Sex','lade','shawtylade@yahoo.com','41.247.157.215',1,0,'','You are very deep.Thanks.','xx'),(54,5,4,1223742634,10,54,'Re: emotions','lade','shawtylade@yahoo.com','41.247.157.215',1,0,'','It is kind of difficult to explain what exactly a woman wants. Women are complicated and change their minds easily. Sometimes a woman wants you to be a good listerner, other times she wants you to be a good hugger, other times she wants you to make her safe and secure. A woman may want something now and then in the next five minutes, they have changed thier minds. Women are a little bit difficult to read but one thing I can assure you is that, a woman needs a lot of love, patience and understanding.Women need to be handled with because they are fragile with soft hearts. Hurt and pains is what makes a woman to be hardcore at heart.&nbsp; :D<br /><br />From my side, a man can be emotional in a relationship but at the same time, he should keep itto himself sometimes. The main reason is because an emotional guy can be viewed as being weak. From someone who has been hurt before, I would say don&#039;t give a relationship your all. But as a compassionate person and the new me, I would say, give that relationship your all but know that the person aint perfect and he/she is just as careful as you are so that he/she doesn&#039;t get a heartbreak.<br /><br />Personally, I wouldn&#039;t support that arrange marriage thing. If it were to be left to my Dad, I would be married to a typical SU who hardly have fun or travel. I would be bored to the skull and I am a free-spirited person. The partner may not be what we want exactly but a picture of what they want','xx'),(55,9,4,1223743185,10,55,'Re: Relationship','lade','shawtylade@yahoo.com','41.247.157.215',1,0,'','Thanks for the question. Let me just explain it from my point of view. The pride of a true woman is the fact that she is a Virgin. It is something that she can stand up and say out loud in the society but at the same time the choice rest on you. For the people who have slept with someone, it is not for us to look at them in any funny way or anything like that. We are all equal in the sight of God.<br /><br />To me, a sin is a sin. either from a guy or from a lady. I like the bible verse that says our body is the temple of the living God. My opinion is that, as much as it is not easy because you are trying to fit into the society that wouldn&#039;t accept you or your belief, don&#039;t let anyone change your perceptions on somethings. if you are patient enough, a man or woman of pure gold will come your way. <br /><br />Someone you deserve but at the same time, God is theone that forgives, it is not good for us as human beings to judge others. <br />','xx'),(56,18,2,1223743766,10,56,'Christianity (a puzzle!!!) I still want to enjoy my life','lade','shawtylade@yahoo.com','41.247.157.215',1,0,'','89% of my friends love going to the Clubs, they love drinking and some of them love smoking. But on Sunday, we still attend the same church. I love going to the Clubs with my friends and going to the parties too. They know that at the party, all I care about his dancing. I can dance the whole day. Does that mean am not a Christian.<br /><br />I listen to groups like D&#039;bang, P-square e.t.c, Does that disqualify me from being a born-again Christian? What is this story of being born again and avoiding music like Usher, Ciara e.t.c? My craziness may be too extreme but I make sure I tell everyone of them that I may be extreme as a person but I am a Christian. <br /><br />Now Christianity has a puzzle, you just wonder if what you are doing is allowed in the Christian world.','xx'),(57,18,2,1223748802,4,57,'Re: Christianity (a puzzle!!!) I still want to enjoy my life','Ralphie','ayedesever@yahoo.com','193.62.251.36',1,0,'','feel u on all counts.<br />no answer here.<br />just echoing the question.... :-[<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ','xx'),(58,19,4,1223760189,10,58,'Please forgive me','lade','shawtylade@yahoo.com','41.247.157.215',1,0,'','When we look at the person who have hurt us the most, (Is it the person who raped us, the father who never loves us at all, the boyfriend or partner who hurt us badly). Where do we draw the line when it comes to forgiveness. How can we forgive and forget? Is there anything like forgiving and forgetting. <br /><br />I believe we can forgive but forgetting?? I don&#039;t think so. if you do, you might end up repeating the same mistake twice. Everyone in life deserves a second chance but when do you draw the line as to say, partner or dad, you have hurt me before.&nbsp; :-\\ i would never open my eyes and allow myself to make the previous mistake again<br /><br />I choose to forgive and sometimes I choose to forget. As much as I try to forget, my past keeps coming back to hunt me. Burying of the past and leaving it buried is a battle at heart that I need to do. Now to do that, it is another story. ::)','xx'),(59,2,5,1223761053,10,59,'Re: It\'s great to be here.','lade','shawtylade@yahoo.com','41.247.157.215',1,0,'','Ohk my name is Lade.(olulademi in full). Don&#039;t really know what to say about myself. Am a Communication Degree Student majoring in media, Linguistics and Advertising. I work as a Sponsorship Assistant for an NGO who fight in ending poverty in Africa. Well, I love singing, writing (when am in the mood), hanging out with a lot of my friends, talking, exercising particularly by dancing a little bit of hiphop which I don&#039;t know how too. Christianity wise, am kind of a Radical Christian. It can be scary at times because you might not know where I stand with the way I talk but yah, that is just who I am exactly as a person. I don&#039;t know what to say about myself. I am a complicated person. My general theory of defining myself is this &quot;What you see is what you get. Love me for who I am or if you can&#039;t, then it is better you leave me.&quot; It is good to write in this forum but what would even be nice, is if we could chat together online.<br /><br />Have a great day. :D','xx'),(60,20,9,1223761826,1,60,'MOVED: Christianity (a puzzle!!!) I still want to enjoy my life','damilola oluwatoyinbo','d_oluwatoyinbo@yahoo.com','41.219.225.28',1,0,'','This topic has been moved to [url=http://dreamersforum.com/index.php?board=2]Spirituality[/url].<br /><br />[iurl]http://dreamersforum.com/index.php?topic=18.0[/iurl]','moved'),(61,13,2,1223762068,9,61,'Re: You are not ALONE (take time) it is quite a mouthful','fiyin oluwatoyinbo','fify_actiong@yahoo.com','80.250.35.238',1,0,'','lade you are a blessing,dont be a stagnant pond,share your gift with people and let the issues flow throughout the world.some really &#039;down&#039; souls need to read from you.(including this person)','xx');
/*!40000 ALTER TABLE `smf_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_moderators`
--

DROP TABLE IF EXISTS `smf_moderators`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_moderators` (
  `ID_BOARD` smallint(5) unsigned NOT NULL default '0',
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_BOARD`,`ID_MEMBER`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_moderators`
--

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

--
-- Table structure for table `smf_package_servers`
--

DROP TABLE IF EXISTS `smf_package_servers`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_package_servers` (
  `ID_SERVER` smallint(5) unsigned NOT NULL auto_increment,
  `name` tinytext NOT NULL,
  `url` tinytext NOT NULL,
  PRIMARY KEY  (`ID_SERVER`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_package_servers`
--

LOCK TABLES `smf_package_servers` WRITE;
/*!40000 ALTER TABLE `smf_package_servers` DISABLE KEYS */;
INSERT INTO `smf_package_servers` (`ID_SERVER`, `name`, `url`) VALUES (1,'Simple Machines Third-party Mod Site','http://mods.simplemachines.org');
/*!40000 ALTER TABLE `smf_package_servers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_permissions`
--

DROP TABLE IF EXISTS `smf_permissions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_permissions` (
  `ID_GROUP` smallint(5) NOT NULL default '0',
  `permission` varchar(30) NOT NULL default '',
  `addDeny` tinyint(4) NOT NULL default '1',
  PRIMARY KEY  (`ID_GROUP`,`permission`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_permissions`
--

LOCK TABLES `smf_permissions` WRITE;
/*!40000 ALTER TABLE `smf_permissions` DISABLE KEYS */;
INSERT INTO `smf_permissions` (`ID_GROUP`, `permission`, `addDeny`) VALUES (-1,'search_posts',1),(-1,'calendar_view',1),(-1,'view_stats',1),(-1,'profile_view_any',1),(0,'view_mlist',1),(0,'search_posts',1),(0,'profile_view_own',1),(0,'profile_view_any',1),(0,'pm_read',1),(0,'pm_send',1),(0,'calendar_view',1),(0,'view_stats',1),(0,'who_view',1),(0,'profile_identity_own',1),(0,'profile_extra_own',1),(0,'profile_remove_own',1),(0,'profile_server_avatar',1),(0,'profile_upload_avatar',1),(0,'profile_remote_avatar',1),(0,'karma_edit',1),(2,'view_mlist',1),(2,'search_posts',1),(2,'profile_view_own',1),(2,'profile_view_any',1),(2,'pm_read',1),(2,'pm_send',1),(2,'calendar_view',1),(2,'view_stats',1),(2,'who_view',1),(2,'profile_identity_own',1),(2,'profile_extra_own',1),(2,'profile_remove_own',1),(2,'profile_server_avatar',1),(2,'profile_upload_avatar',1),(2,'profile_remote_avatar',1),(2,'profile_title_own',1),(2,'calendar_post',1),(2,'calendar_edit_any',1),(2,'karma_edit',1),(-1,'ad_manageperm',1),(0,'ad_manageperm',1),(2,'ad_manageperm',1),(3,'ad_manageperm',1);
/*!40000 ALTER TABLE `smf_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_personal_messages`
--

DROP TABLE IF EXISTS `smf_personal_messages`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_personal_messages` (
  `ID_PM` int(10) unsigned NOT NULL auto_increment,
  `ID_MEMBER_FROM` mediumint(8) unsigned NOT NULL default '0',
  `deletedBySender` tinyint(3) unsigned NOT NULL default '0',
  `fromName` tinytext NOT NULL,
  `msgtime` int(10) unsigned NOT NULL default '0',
  `subject` tinytext NOT NULL,
  `body` text NOT NULL,
  PRIMARY KEY  (`ID_PM`),
  KEY `ID_MEMBER` (`ID_MEMBER_FROM`,`deletedBySender`),
  KEY `msgtime` (`msgtime`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_personal_messages`
--

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

--
-- Table structure for table `smf_pm_recipients`
--

DROP TABLE IF EXISTS `smf_pm_recipients`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_pm_recipients` (
  `ID_PM` int(10) unsigned NOT NULL default '0',
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `labels` varchar(60) NOT NULL default '-1',
  `bcc` tinyint(3) unsigned NOT NULL default '0',
  `is_read` tinyint(3) unsigned NOT NULL default '0',
  `deleted` tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_PM`,`ID_MEMBER`),
  UNIQUE KEY `ID_MEMBER` (`ID_MEMBER`,`deleted`,`ID_PM`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_pm_recipients`
--

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

--
-- Table structure for table `smf_poll_choices`
--

DROP TABLE IF EXISTS `smf_poll_choices`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_poll_choices` (
  `ID_POLL` mediumint(8) unsigned NOT NULL default '0',
  `ID_CHOICE` tinyint(3) unsigned NOT NULL default '0',
  `label` tinytext NOT NULL,
  `votes` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_POLL`,`ID_CHOICE`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_poll_choices`
--

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

--
-- Table structure for table `smf_polls`
--

DROP TABLE IF EXISTS `smf_polls`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_polls` (
  `ID_POLL` mediumint(8) unsigned NOT NULL auto_increment,
  `question` tinytext NOT NULL,
  `votingLocked` tinyint(1) NOT NULL default '0',
  `maxVotes` tinyint(3) unsigned NOT NULL default '1',
  `expireTime` int(10) unsigned NOT NULL default '0',
  `hideResults` tinyint(3) unsigned NOT NULL default '0',
  `changeVote` tinyint(3) unsigned NOT NULL default '0',
  `ID_MEMBER` mediumint(8) unsigned NOT NULL default '0',
  `posterName` tinytext NOT NULL,
  PRIMARY KEY  (`ID_POLL`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_polls`
--

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

--
-- Table structure for table `smf_sessions`
--

DROP TABLE IF EXISTS `smf_sessions`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_sessions` (
  `session_id` char(32) NOT NULL,
  `last_update` int(10) unsigned NOT NULL,
  `data` text NOT NULL,
  PRIMARY KEY  (`session_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_sessions`
--

LOCK TABLES `smf_sessions` WRITE;
/*!40000 ALTER TABLE `smf_sessions` DISABLE KEYS */;
INSERT INTO `smf_sessions` (`session_id`, `last_update`, `data`) VALUES ('39bbd88669aae1acb5c46b5677449e6f',1223817816,'rand_code|s:32:\"f7ce097aaf69a497f189d497b361ce17\";'),('0d317c68ba2e9e1aa608a0b262e3c8c0',1223819922,'rand_code|s:32:\"8ea763eabf402fc7ae2e14d2bdbf152a\";'),('aab2070d80a4b2c131c2530a7073563c',1223814903,'rand_code|s:32:\"0fa0faf1e6f6904255aaabee31b05a17\";ID_MSG_LAST_VISIT|s:2:\"61\";'),('8bc53002086b4d22ba39d94ffa93f6b6',1223782319,'rand_code|s:32:\"0e2fc60b888f8b5c21a80cf35e18db2a\";ID_THEME|i:1;ban|a:5:{s:12:\"last_checked\";i:1223782319;s:9:\"ID_MEMBER\";i:0;s:2:\"ip\";s:13:\"66.249.71.213\";s:3:\"ip2\";s:13:\"66.249.71.213\";s:5:\"email\";s:0:\"\";}log_time|i:1223782319;timeOnlineUpdated|i:1223782319;old_url|s:42:\"http://dreamersforum.com/index.php?theme=1\";USER_AGENT|s:20:\"Mediapartners-Google\";'),('3b0f81808d94443bab1a0aab2c91e6d0',1223782642,'rand_code|s:32:\"2ce9870b3238caa676812f6498ed6eae\";'),('48c2eda12c8d62f4eb2d54d5f2fc8ac6',1223782557,'rand_code|s:32:\"b59a4532058faf6b93b6ed83eefe9848\";'),('cea24e6eafa71b5e7c0d4e42f1768bae',1223782558,'rand_code|s:32:\"fd55bc8093281aeaef15f704227e21e3\";'),('550b49fe65a761c2a45ab878f90da9bf',1223782691,'rand_code|s:32:\"e78691f727b47ada80d3312fbba035cf\";'),('a1581d48243892b5616a86979143cc5f',1223782698,'rand_code|s:32:\"f9a8f0915a2f416bebffbf6e3deeda22\";'),('fb5ea73beeb54e1f4ed6daeb9714a4f5',1223793211,'rand_code|s:32:\"35e970725d29a04c240fe3688961eb6d\";'),('8b36c9d4fce57933f1b981d0f36c7ca9',1223793213,'rand_code|s:32:\"aecef27448793b65b7793e4682576d97\";'),('d80cbb1aadd83e57b4c030fd1643dfc5',1223793216,'rand_code|s:32:\"583620aa3d8a5eb8cead8f5c6ebf6e2b\";'),('e4745e60c58c53292108a56ac3ed78c5',1223793218,'rand_code|s:32:\"6edc27c0828b7c98f072fdac1b24b611\";'),('ff373b5fdf9932b8577ab8d8ddbd2dba',1223794031,'rand_code|s:32:\"d492d66806aecd423296ddec2a22bcbe\";'),('880d39efac4475aff801bfdd619c961c',1223794195,'rand_code|s:32:\"1a4ec469b3ded970cad1d69a69e18312\";'),('f9b923309e13d0bf64f79e33169b3daa',1223794856,'rand_code|s:32:\"9a6d49dbbb10e0aec2c899957d53fcce\";'),('706b7d3da3e6d97259cc476af399b238',1223794856,'rand_code|s:32:\"b38992a5f41b8adf03e664b60ed67d38\";'),('a4417c881770ae1914e1ffddd8d6d830',1223795131,'rand_code|s:32:\"aa88ff8f773af6d93db031d088cfa933\";'),('a7245a9f0fd26da8ca159b3e5cf799ff',1223795132,'rand_code|s:32:\"4b69a4a95d033a1714635c173045d5f4\";'),('49f59504ca85923d5ca2ceddc1dbf07b',1223795199,'rand_code|s:32:\"86eb97aa17672ed0003968038549c141\";'),('ff153edb5c394e344d1b422730f6d0f9',1223796125,'rand_code|s:32:\"1c37af46048f00cade17d748ad5c8080\";'),('ac63fab9c011b7936ec9ee6e92dc60e8',1223799959,'rand_code|s:32:\"eb05cc1c0d50bb2572cd812b2c3ee521\";'),('41e021b09544019fe6b8a34694ea3c4c',1223800382,'rand_code|s:32:\"912f9e7956c5955ce3f1f8bae1b53d9b\";'),('a1e55a046f5fabc33b6d4d270c1dd84d',1223800382,'rand_code|s:32:\"7891129f48d7b498104e3559249e144c\";'),('e487105e130e97f76c3ec2f9618d53ef',1223803157,'rand_code|s:32:\"eface631dba1967c9f2cfcf55b16c7c2\";'),('295d3d5a5cf65bd8b67c0a3cc8c55e54',1223804072,'rand_code|s:32:\"1da858b51cb426316ba89d9d82148f23\";'),('28ceca284129bc20f67aa9a01b0d6295',1223805394,'rand_code|s:32:\"7e5916eb802b157be15dbd21a9dd4fb9\";'),('1864137a9eca983b791e353449e6bacb',1223810456,'rand_code|s:32:\"32f97a48342e3d46c087108c533faecd\";'),('eed7ddb56c653fff63dd9382431fe84e',1223787209,'rand_code|s:32:\"d81ccc1fbd3a46a1039286dbb8278824\";ban|a:5:{s:12:\"last_checked\";i:1223761694;s:9:\"ID_MEMBER\";i:0;s:2:\"ip\";s:13:\"41.219.225.28\";s:3:\"ip2\";s:13:\"41.219.225.28\";s:5:\"email\";s:0:\"\";}log_time|i:0;timeOnlineUpdated|i:1223787066;old_url|s:86:\"http://dreamersforum.com/index.php?action=logout;sesc=d81ccc1fbd3a46a1039286dbb8278824\";USER_AGENT|s:138:\"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SU 3.011; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.2)\";last_read_topic|i:2;login_SMFCookie463|s:33:\"a:3:{i:0;i:0;i:1;s:0:\"\";i:2;i:0;}\";admin_time|i:1223782180;ID_MSG_LAST_VISIT|s:2:\"52\";unread_messages|i:0;forms|a:1:{i:0;i:5794278;}move_to_topic|i:2;search_cache|a:3:{s:9:\"ID_SEARCH\";s:1:\"2\";s:11:\"num_results\";i:1;s:6:\"params\";s:208:\"YWR2YW5jZWR8J3wxfCJ8YnJkfCd8OSw1LDEwLDMsMiwxMiw0LDE0LDYsNywxMSw4LDEzfCJ8c2hvd19jb21wbGV0ZXwnfHwifHN1YmplY3Rfb25seXwnfHwifHNvcnRfZGlyfCd8ZGVzY3wifHNvcnR8J3xyZWxldmFuY2V8InxzZWFyY2h8J3xzcGlyaXR1YWwgc2hlcGhlcmQ=\";}last_topic_id|i:2;ID_THEME|i:1;'),('f2e2dcb77cce10d1e495a213d51e450c',1223791820,'rand_code|s:32:\"51ff6ccce76364e8d63856488eee8e7c\";'),('8e2335c2b5dd2199d001199e83165ad0',1223782180,'rand_code|s:32:\"bc92ac90c0bbd5cea6e1517b049de7d9\";ban|a:5:{s:12:\"last_checked\";i:1223782180;s:9:\"ID_MEMBER\";i:0;s:2:\"ip\";s:13:\"74.54.131.178\";s:3:\"ip2\";s:13:\"74.54.131.178\";s:5:\"email\";s:0:\"\";}log_time|i:1223782180;timeOnlineUpdated|i:1223782180;old_url|s:90:\"http://dreamersforum.com/Themes/corporate_america/tmp_76776accefc6096cbe1db654c7c6d80c.php\";USER_AGENT|s:0:\"\";'),('78955beb19fbe2274b1db89a395339c4',1223782181,'rand_code|s:32:\"de1648ea0b67b7a48069326273ce701d\";'),('a29d3d57597b958e4bf546a95ea43089',1223785485,'rand_code|s:32:\"ce7a48bdb4f61d218574da69f72426c8\";'),('044fe55651568caa2d5342f853686154',1223785552,'rand_code|s:32:\"88b0dcccf54a4603e03010c3deb10b54\";'),('da4ce59c3e9fe669123267c738b143f4',1223785557,'rand_code|s:32:\"6424cdf161b75272393094c09a32c84b\";'),('3b3020b5a85aa7b8fdbeccc6252f85ac',1223785564,'rand_code|s:32:\"cc3830d31d5fafc9c766a0e83998fc06\";'),('6c6ef06465e91125b0d3760b9919ec72',1223785568,'rand_code|s:32:\"78d27fc24e9ee95787452b08c1ffc1a2\";'),('644d2b7beb750f9ac7c77ac522b69a6b',1223785576,'rand_code|s:32:\"945cd7f62427f64270cbd2fc00d906ed\";'),('4ae329cec74d322513b2e5e98a7ca374',1223785581,'rand_code|s:32:\"018b8591724618fbb07de2282d2e1350\";'),('940376b5ae8a408899804f3bb11dd6b4',1223786216,'rand_code|s:32:\"219ff682e11aac1b4da23cdf5eb4ce85\";'),('85737de8c85401e4cc37c478bcd8955a',1223786315,'rand_code|s:32:\"0f53fd864534503e97486c6ae26b9c7a\";'),('7a33ae88dd3c7bce68c29042ee3cb948',1223786322,'rand_code|s:32:\"a73ce9a02d66175ddfda79192b4eecb6\";'),('5f769d303e2fe9fec6966e4effeff796',1223786596,'rand_code|s:32:\"61b760a0f23c83fa83871234bb4f2ed9\";'),('44f267bc3672d1e5d2f4ad22298dbaba',1223787005,'rand_code|s:32:\"9cdc3be4cbc42ce369a27fdc3a9d91ed\";'),('8d66e5fbee53b6e1e69e493d9841ba5b',1223786735,'rand_code|s:32:\"ebbe52763e57ba1064b4b0da6f87cc55\";'),('ca2ddb10d886b21a1b4e57932d0bfa13',1223792535,'rand_code|s:32:\"9bc3c7e7c1b8904db98d7c329e172145\";'),('65a717b73c92a773cae3eb9dae289456',1223792535,'rand_code|s:32:\"946b15c3191765baa9df92188a69796f\";'),('8fb9c42b960b4a5204087945f25db749',1223784238,'rand_code|s:32:\"0b160e92f978d80a93f4b3569e6aeefa\";'),('b5ff85b3ddcf3ea0d23b0385dc8a26df',1223783793,'rand_code|s:32:\"e04948ef71bcd11c7bd4fcde66574c6c\";'),('7e0ed233c270c93cadaa39edcc16b837',1223793205,'rand_code|s:32:\"7f59c9a87a455ab103e00aa3ffc0a6c3\";'),('27aa9452216214a18fca9a7138966c78',1223793208,'rand_code|s:32:\"34be85e9c37d67cf41b7534e2148f230\";'),('b9db07e809f7f6ec51059f40d2c883a4',1223782998,'rand_code|s:32:\"ae2b2401ec26acd4fd89578d3db2b7db\";'),('5ede8fe6fa697e27d1be6c8b7373f106',1223782739,'rand_code|s:32:\"90c4c6ee78cf22b3ef48eab61b7307ab\";'),('933c3ac8d81d28b34c757a51a7ee805b',1223783764,'rand_code|s:32:\"61c5bb44c731b3f35ce987819230e6c5\";'),('176c756beaa4f06df2d5b99eb922ef73',1223783767,'rand_code|s:32:\"6bfd5a78386f12739127ed9e821c79c7\";'),('e2052fce4674cb889a698ab6b534680c',1223785455,'rand_code|s:32:\"8262ee8ccd56e1562703baa3092cc1a3\";'),('080573ef5f2daf2873e84e3c2e306b63',1223785459,'rand_code|s:32:\"9f588980d85d3b61f5cf3711d74ec0c2\";'),('06aa3464579c2285f1d0f7528337e09f',1223785466,'rand_code|s:32:\"cb92bfd557e2c66bf15f91484a53c7d4\";'),('9525dd5a9ef6c50e3c1f139286983dc2',1223785475,'rand_code|s:32:\"b610a9ce058d521cd582c7073d05d312\";'),('392470e2b9620f7d1ad8251e68a816f4',1223786595,'rand_code|s:32:\"6920beac96628356c962ecc801f272e2\";'),('15cfc53738a021cde9a27587d1baf8c8',1223785138,'rand_code|s:32:\"933a89f63403d5b7b55b1f448714b05e\";'),('e4b2a0a19115f7dcf300de9b0da04abf',1223784264,'rand_code|s:32:\"223d58f0a15ec9239794e421056fdfd6\";'),('7087f7f21d28e4e692adaa8c4026d32f',1223784264,'rand_code|s:32:\"8bd9657ca67ff0398e747194c29e9505\";'),('264baa796ab8a351f7dced75fac64458',1223784693,'rand_code|s:32:\"bc24ab6a46e05dfe371d7a9ad6308e21\";'),('cd8708cfd25c23b8df2ef09550e7e905',1223784716,'rand_code|s:32:\"6c3b31b0c46520346b4ac16159640c4f\";'),('269bea5d772ce5f14c0cc7a99f5b8ea8',1223785125,'rand_code|s:32:\"452d65b5b3a717b8f2c501a516f64e12\";'),('1eaa75aa0f34d6454fafa0ad58845d85',1223785366,'rand_code|s:32:\"0a66d6e47347c7cfe60e8a6c5f4c665e\";'),('84f5b3101efb8a888ddc5552b05666c1',1223785366,'rand_code|s:32:\"99a54dcaa26cf206eb805d8b893b65ab\";'),('615629621063ac65161d8cac349cb97e',1223785379,'rand_code|s:32:\"ad2aa6524a7848dec382a2aa189fbaac\";'),('246820de7c10078dde6e6b0c35471626',1223785431,'rand_code|s:32:\"345daab69c443c737fbe629787d8a700\";'),('51382ff97d2570412559e4701d971397',1223782233,'rand_code|s:32:\"ac108cb36f29c23690522f749b0c047b\";'),('fa047e3179cb11c4c8ef1676ad8e8b09',1223782246,'rand_code|s:32:\"3561ca7ed94d020eb2125fc0894b3ca8\";'),('b4aad8af712e6d590567af52138dd452',1223782255,'rand_code|s:32:\"828fd9e7337384a9e7abfa17ec3363af\";'),('ee3f0fbc498d3dd75f633510102b72c5',1223782272,'rand_code|s:32:\"13579f522a0c43590d7c36a277489db6\";'),('d0d9e7aec226cdcb89713185574bf6ce',1223782319,'rand_code|s:32:\"dca5fcd3a607ad45fec7119b3681d416\";');
/*!40000 ALTER TABLE `smf_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_settings`
--

DROP TABLE IF EXISTS `smf_settings`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_settings` (
  `variable` tinytext NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY  (`variable`(30))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_settings`
--

LOCK TABLES `smf_settings` WRITE;
/*!40000 ALTER TABLE `smf_settings` DISABLE KEYS */;
INSERT INTO `smf_settings` (`variable`, `value`) VALUES ('smfVersion','1.1.5'),('news','If your heart is in your dreams,<br />No request is too extreme<br />For when you wish upon a star,<br />It makes no difference who you are!<br /><br />-remix from a line in the movie \"Pinnochio\"'),('compactTopicPagesContiguous','5'),('compactTopicPagesEnable','1'),('enableStickyTopics','1'),('todayMod','2'),('karmaMode','0'),('karmaTimeRestrictAdmins','1'),('enablePreviousNext','1'),('pollMode','1'),('enableVBStyleLogin','1'),('enableCompressedOutput','1'),('karmaWaitTime','1'),('karmaMinPosts','0'),('karmaLabel','Karma:'),('karmaSmiteLabel','[smite]'),('karmaApplaudLabel','[applaud]'),('attachmentSizeLimit','128'),('attachmentPostLimit','192'),('attachmentNumPerPostLimit','4'),('attachmentDirSizeLimit','10240'),('attachmentUploadDir','/home/damidgr8/public_html/dreamersforum/attachments'),('attachmentExtensions','doc,gif,jpg,mpg,pdf,png,txt,zip'),('attachmentCheckExtensions','0'),('attachmentShowImages','1'),('attachmentEnable','1'),('attachmentEncryptFilenames','1'),('attachmentThumbnails','1'),('attachmentThumbWidth','150'),('attachmentThumbHeight','150'),('censorIgnoreCase','1'),('mostOnline','8'),('mostOnlineToday','4'),('mostDate','1223191458'),('allow_disableAnnounce','1'),('trackStats','1'),('userLanguage','1'),('titlesEnable','1'),('topicSummaryPosts','15'),('enableErrorLogging','1'),('max_image_width','0'),('max_image_height','0'),('onlineEnable','0'),('cal_holidaycolor','000080'),('cal_bdaycolor','920AC4'),('cal_eventcolor','078907'),('cal_enabled','0'),('cal_maxyear','2010'),('cal_minyear','2004'),('cal_daysaslink','0'),('cal_defaultboard',''),('cal_showeventsonindex','0'),('cal_showbdaysonindex','0'),('cal_showholidaysonindex','0'),('cal_showeventsoncalendar','1'),('cal_showbdaysoncalendar','1'),('cal_showholidaysoncalendar','1'),('cal_showweeknum','0'),('cal_maxspan','7'),('smtp_host',''),('smtp_port','25'),('smtp_username',''),('smtp_password',''),('mail_type','0'),('timeLoadPageEnable','0'),('totalTopics','19'),('totalMessages','59'),('simpleSearch','0'),('censor_vulgar',''),('censor_proper',''),('enablePostHTML','1'),('theme_allow','0'),('theme_default','0'),('theme_guests','4'),('enableEmbeddedFlash','0'),('xmlnews_enable','1'),('xmlnews_maxlen','255'),('hotTopicPosts','15'),('hotTopicVeryPosts','25'),('registration_method','0'),('send_validation_onChange','0'),('send_welcomeEmail','1'),('allow_editDisplayName','1'),('allow_hideOnline','1'),('allow_hideEmail','1'),('guest_hideContacts','0'),('spamWaitTime','5'),('pm_spam_settings','10,5,20'),('reserveWord','0'),('reserveCase','1'),('reserveUser','1'),('reserveName','1'),('reserveNames','Admin\nWebmaster\nGuest\nroot'),('autoLinkUrls','1'),('banLastUpdated','0'),('smileys_dir','/home/damidgr8/public_html/dreamersforum/Smileys'),('smileys_url','http://dreamersforum.com/Smileys'),('avatar_directory','/home/damidgr8/public_html/dreamersforum/avatars'),('avatar_url','http://dreamersforum.com/avatars'),('avatar_max_height_external','65'),('avatar_max_width_external','65'),('avatar_action_too_large','option_html_resize'),('avatar_max_height_upload','65'),('avatar_max_width_upload','65'),('avatar_resize_upload','1'),('avatar_download_png','1'),('failed_login_threshold','3'),('oldTopicDays','40'),('edit_wait_time','90'),('edit_disable_time','0'),('autoFixDatabase','1'),('allow_guestAccess','1'),('time_format','%B %d, %Y, %I:%M:%S %p'),('number_format','1234.00'),('enableBBC','1'),('max_messageLength','20000'),('max_signatureLength','300'),('autoOptDatabase','7'),('autoOptMaxOnline','0'),('autoOptLastOpt','1223348709'),('defaultMaxMessages','15'),('defaultMaxTopics','20'),('defaultMaxMembers','30'),('enableParticipation','1'),('recycle_enable','0'),('recycle_board','0'),('maxMsgID','61'),('enableAllMessages','0'),('fixLongWords','0'),('knownThemes','1,2,3,4'),('who_enabled','1'),('time_offset','0'),('cookieTime','60'),('lastActive','15'),('smiley_sets_known','default,classic'),('smiley_sets_names','Default\nClassic'),('smiley_sets_default','default'),('cal_days_for_index','7'),('requireAgreement','1'),('unapprovedMembers','0'),('default_personalText',''),('package_make_backups','1'),('databaseSession_enable','1'),('databaseSession_loose','1'),('databaseSession_lifetime','2880'),('search_cache_size','50'),('search_results_per_page','30'),('search_weight_frequency','30'),('search_weight_age','25'),('search_weight_length','20'),('search_weight_subject','15'),('search_weight_first_message','10'),('search_max_results','1200'),('permission_enable_deny','0'),('permission_enable_postgroups','0'),('permission_enable_by_board','0'),('global_character_set','UTF-8'),('localCookies','1'),('memberlist_updated','1223754120'),('latestMember','16'),('totalMembers','16'),('latestRealName','Dgeneral'),('mostOnlineUpdated','2008-10-11'),('rand_seed','1031600254'),('enableSpellChecking','1'),('cal_today_updated','20081011'),('cal_today_holiday','a:0:{}'),('cal_today_birthday','a:1:{s:10:\"2008-10-18\";a:1:{i:0;a:4:{s:2:\"id\";s:2:\"15\";s:4:\"name\";s:6:\"vivian\";s:3:\"age\";i:22;s:7:\"is_last\";b:1;}}}'),('cal_today_event','a:0:{}'),('hitStats','1'),('queryless_urls','1'),('ads_displayAdsAdmin','0'),('ads_updateReports','0'),('ads_quickDisable','0'),('ads_lookLikePosts','0'),('socialbookmarks','1'),('search_pointer','2');
/*!40000 ALTER TABLE `smf_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_smileys`
--

DROP TABLE IF EXISTS `smf_smileys`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_smileys` (
  `ID_SMILEY` smallint(5) unsigned NOT NULL auto_increment,
  `code` varchar(30) NOT NULL default '',
  `filename` varchar(48) NOT NULL default '',
  `description` varchar(80) NOT NULL default '',
  `smileyRow` tinyint(4) unsigned NOT NULL default '0',
  `smileyOrder` smallint(5) unsigned NOT NULL default '0',
  `hidden` tinyint(4) unsigned NOT NULL default '0',
  PRIMARY KEY  (`ID_SMILEY`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_smileys`
--

LOCK TABLES `smf_smileys` WRITE;
/*!40000 ALTER TABLE `smf_smileys` DISABLE KEYS */;
INSERT INTO `smf_smileys` (`ID_SMILEY`, `code`, `filename`, `description`, `smileyRow`, `smileyOrder`, `hidden`) VALUES (1,':)','smiley.gif','Smiley',0,0,0),(2,';)','wink.gif','Wink',0,1,0),(3,':D','cheesy.gif','Cheesy',0,2,0),(4,';D','grin.gif','Grin',0,3,0),(5,'>:(','angry.gif','Angry',0,4,0),(6,':(','sad.gif','Sad',0,5,0),(7,':o','shocked.gif','Shocked',0,6,0),(8,'8)','cool.gif','Cool',0,7,0),(9,'???','huh.gif','Huh?',0,8,0),(10,'::)','rolleyes.gif','Roll Eyes',0,9,0),(11,':P','tongue.gif','Tongue',0,10,0),(12,':-[','embarrassed.gif','Embarrassed',0,11,0),(13,':-X','lipsrsealed.gif','Lips Sealed',0,12,0),(14,':-\\','undecided.gif','Undecided',0,13,0),(15,':-*','kiss.gif','Kiss',0,14,0),(16,':\'(','cry.gif','Cry',0,15,0),(17,'>:D','evil.gif','Evil',0,16,1),(18,'^-^','azn.gif','Azn',0,17,1),(19,'O0','afro.gif','Afro',0,18,1);
/*!40000 ALTER TABLE `smf_smileys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_themes`
--

DROP TABLE IF EXISTS `smf_themes`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_themes` (
  `ID_MEMBER` mediumint(8) NOT NULL default '0',
  `ID_THEME` tinyint(4) unsigned NOT NULL default '1',
  `variable` tinytext NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY  (`ID_THEME`,`ID_MEMBER`,`variable`(30)),
  KEY `ID_MEMBER` (`ID_MEMBER`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_themes`
--

LOCK TABLES `smf_themes` WRITE;
/*!40000 ALTER TABLE `smf_themes` DISABLE KEYS */;
INSERT INTO `smf_themes` (`ID_MEMBER`, `ID_THEME`, `variable`, `value`) VALUES (0,1,'name','SMF Default Theme - Core'),(0,1,'theme_url','http://dreamersforum.com/Themes/default'),(0,1,'images_url','http://dreamersforum.com/Themes/default/images'),(0,1,'theme_dir','/home/damidgr8/public_html/dreamersforum/Themes/default'),(0,1,'show_bbc','1'),(0,1,'show_latest_member','1'),(0,1,'show_modify','1'),(0,1,'show_user_images','1'),(0,1,'show_blurb','1'),(0,1,'show_gender','0'),(0,1,'show_newsfader','0'),(0,1,'number_recent_posts','0'),(0,1,'show_member_bar','1'),(0,1,'linktree_link','1'),(0,1,'show_profile_buttons','1'),(0,1,'show_mark_read','1'),(0,1,'show_sp1_info','1'),(0,1,'linktree_inline','0'),(0,1,'show_board_desc','1'),(0,1,'newsfader_time','5000'),(0,1,'allow_no_censored','0'),(0,1,'additional_options_collapsable','1'),(0,1,'use_image_buttons','1'),(0,1,'enable_news','1'),(0,2,'name','Classic YaBB SE Theme'),(0,2,'theme_url','http://dreamersforum.com/Themes/classic'),(0,2,'images_url','http://dreamersforum.com/Themes/classic/images'),(0,2,'theme_dir','/home/damidgr8/public_html/dreamersforum/Themes/classic'),(0,3,'name','Babylon Theme'),(0,3,'theme_url','http://dreamersforum.com/Themes/babylon'),(0,3,'images_url','http://dreamersforum.com/Themes/babylon/images'),(0,3,'theme_dir','/home/damidgr8/public_html/dreamersforum/Themes/babylon'),(0,4,'theme_url','http://dreamersforum.com/Themes/corporate_america'),(0,4,'images_url','http://dreamersforum.com/Themes/corporate_america/images'),(0,4,'theme_dir','/home/damidgr8/public_html/dreamersforum/Themes/corporate_america'),(0,4,'name','Corporate America'),(0,4,'theme_layers','main'),(0,4,'theme_templates','index'),(0,4,'header_logo_url',''),(0,4,'number_recent_posts','0'),(0,4,'display_who_viewing','2'),(0,4,'smiley_sets_default',''),(0,4,'show_modify','1'),(0,4,'show_member_bar','1'),(0,4,'linktree_link','1'),(0,4,'show_profile_buttons','1'),(0,4,'show_mark_read','1'),(0,4,'linktree_inline','0'),(0,4,'show_sp1_info','1'),(0,4,'allow_no_censored','0'),(0,4,'show_bbc','1'),(0,4,'additional_options_collapsable','1'),(0,4,'enable_news','1'),(0,4,'show_newsfader','1'),(0,4,'newsfader_time','5000'),(0,4,'show_user_images','1'),(0,4,'show_blurb','1'),(0,4,'show_latest_member','1'),(0,4,'use_image_buttons','1'),(0,4,'show_gender','0'),(0,4,'hide_post_group','0'),(4,1,'show_board_desc','0'),(4,1,'show_children','0'),(4,1,'show_no_avatars','0'),(4,1,'show_no_signatures','0'),(4,1,'return_to_post','1'),(4,1,'no_new_reply_warning','0'),(4,1,'view_newest_first','1'),(4,1,'view_newest_pm_first','1'),(4,1,'calendar_start_day','0'),(4,1,'display_quick_reply','0'),(4,1,'display_quick_mod','0'),(4,1,'copy_to_outbox','0'),(4,1,'popup_messages','1');
/*!40000 ALTER TABLE `smf_themes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `smf_topics`
--

DROP TABLE IF EXISTS `smf_topics`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `smf_topics` (
  `ID_TOPIC` mediumint(8) unsigned NOT NULL auto_increment,
  `isSticky` tinyint(4) NOT NULL default '0',
  `ID_BOARD` smallint(5) unsigned NOT NULL default '0',
  `ID_FIRST_MSG` int(10) unsigned NOT NULL default '0',
  `ID_LAST_MSG` int(10) unsigned NOT NULL default '0',
  `ID_MEMBER_STARTED` mediumint(8) unsigned NOT NULL default '0',
  `ID_MEMBER_UPDATED` mediumint(8) unsigned NOT NULL default '0',
  `ID_POLL` mediumint(8) unsigned NOT NULL default '0',
  `numReplies` int(10) unsigned NOT NULL default '0',
  `numViews` int(10) unsigned NOT NULL default '0',
  `locked` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`ID_TOPIC`),
  UNIQUE KEY `lastMessage` (`ID_LAST_MSG`,`ID_BOARD`),
  UNIQUE KEY `firstMessage` (`ID_FIRST_MSG`,`ID_BOARD`),
  UNIQUE KEY `poll` (`ID_POLL`,`ID_TOPIC`),
  KEY `isSticky` (`isSticky`),
  KEY `ID_BOARD` (`ID_BOARD`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `smf_topics`
--

LOCK TABLES `smf_topics` WRITE;
/*!40000 ALTER TABLE `smf_topics` DISABLE KEYS */;
INSERT INTO `smf_topics` (`ID_TOPIC`, `isSticky`, `ID_BOARD`, `ID_FIRST_MSG`, `ID_LAST_MSG`, `ID_MEMBER_STARTED`, `ID_MEMBER_UPDATED`, `ID_POLL`, `numReplies`, `numViews`, `locked`) VALUES (2,0,5,2,59,1,10,0,9,57,0),(3,0,3,6,6,1,1,0,0,21,0),(4,0,3,9,44,6,4,0,9,45,0),(5,0,4,13,54,6,10,0,5,25,0),(6,0,5,19,19,1,1,0,0,6,0),(7,0,5,22,28,10,1,0,1,10,0),(8,0,3,23,42,10,4,0,1,7,0),(9,0,4,25,55,10,10,0,4,16,0),(10,0,2,26,48,10,10,0,2,17,0),(11,0,6,30,31,9,1,0,1,10,0),(12,0,4,32,53,10,10,0,2,7,0),(13,0,2,35,61,10,9,0,4,17,0),(14,0,8,36,40,10,1,0,1,6,0),(15,0,2,38,38,10,10,0,0,9,0),(16,0,5,41,41,1,1,0,0,8,1),(17,0,7,47,47,10,10,0,0,5,0),(18,0,2,56,57,10,4,0,1,5,0),(19,0,4,58,58,10,10,0,0,2,0),(20,0,9,60,60,1,1,0,0,2,1);
/*!40000 ALTER TABLE `smf_topics` 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 2008-10-12 14:07:05

